Skip to content

Commit

Permalink
Squeak! Мышиные ушки в донор лодауте (#1826)
Browse files Browse the repository at this point in the history
<!-- Пишите **НИЖЕ** заголовков и **ВЫШЕ** комментариев, иначе что то
может пойти не так. -->
<!-- Вы можете прочитать Contributing.MD, если хотите узнать больше. -->

## Что этот PR делает
Добавляет мышиные ушки в лодаут донатеров со 2-го тира. Меняет спрайт
мышиных ушек, на более тёмный по цветам.

## Почему это хорошо для игры
Больше косметики!

## Изображения изменений

![image](https://github.com/user-attachments/assets/14ab8381-f621-49e0-ad72-942eb9579b4f)


## Changelog

:cl:
add: В лодаут доната добавлены мышиные ушки ᓚ₍ ^. .^₎
/:cl:

## Обзор от Sourcery

Новые функции:
- Добавляет мышиные ушки в набор донатера для донатеров 2-го уровня.

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

New Features:
- Adds mouse ears to the donator loadout for tier 2 donators.

</details>

---------

Co-authored-by: Mikhail Dzianishchyts <[email protected]>
  • Loading branch information
Drsmail and m-dzianishchyts authored Mar 2, 2025
1 parent 06e6f48 commit 3c84ebb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/clothing/head/misc_special.dm
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@
return
var/obj/item/organ/external/head/head_organ = user.get_organ("head")

mob = new/icon("icon" = 'icons/mob/clothing/head.dmi', "icon_state" = icon_state)
mob = new/icon("icon" = icon_override, "icon_state" = icon_state) // SS220 EDIT - Заменил хард код пути на, icon_override
mob.Blend(head_organ.hair_colour, ICON_ADD)

var/icon/earbit = new/icon("icon" = 'icons/mob/clothing/head.dmi', "icon_state" = "[icon_state]inner")
var/icon/earbit = new/icon("icon" = icon_override, "icon_state" = "[icon_state]inner") // SS220 EDIT - Заменил хард код пути на, icon_override
mob.Blend(earbit, ICON_OVERLAY)

icon_override = mob
Expand Down
3 changes: 3 additions & 0 deletions modular_ss220/clothing/code/hats.dm
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,6 @@
name = "nanotrasen intern beret"
desc = "Берет стажера НТ. Белый берет с зеленой звездой. Выглядит подозрительно похожим на берет главного инженера..."
icon_state = "beret_ce"

/obj/item/clothing/head/kitty
icon_override = 'modular_ss220/clothing/icons/mob/hats.dmi'
Binary file modified modular_ss220/clothing/icons/mob/hats.dmi
Binary file not shown.
6 changes: 6 additions & 0 deletions modular_ss220/loadout/code/donor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@
donator_tier = 2
cost = 1

/datum/gear/donor/mouse_ears
display_name = "Мышиные ушки"
path = /obj/item/clothing/head/kitty/mouse
donator_tier = 2
cost = 1

/datum/gear/donor/driver
display_name = "Driver jacket"
path = /obj/item/clothing/suit/jacket/driver
Expand Down

0 comments on commit 3c84ebb

Please sign in to comment.