Skip to content

Commit

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

## Что этот PR делает
Добавил в вендомат тренеров черную униформу.

Я не виноват что он такой черный. Это все оффы.

## Почему это хорошо для игры
Потому что хочу цвета НТ

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

![image](https://github.com/user-attachments/assets/f9060df1-c6fa-4f6c-944f-aef2636c7acb)

![image](https://github.com/user-attachments/assets/c1c38d70-5a6e-4cbc-85eb-5d3b3c79e33d)


## Тестирование
работает 

## Changelog

:cl:
imageadd: В вендомат NCT добавлена черная униформа тренера.
/:cl:

<!-- Оба :cl:'а должны быть на месте, что-бы чейнджлог работал! Вы
можете написать свой ник справа от первого :cl:, если хотите. Иначе
будет использован ваш ник на ГитХабе. -->
<!-- Вы можете использовать несколько записей с одинаковым префиксом
(Они используются только для иконки в игре) и удалить ненужные. Помните,
что чейнджлог должен быть понятен обычным игроком. -->
<!-- Если чейнджлог не влияет на игроков(например, это рефактор), вы
можете исключить всю секцию. -->

## Summary by Sourcery

Update the Nanotrasen Corporate Trainer (NCT) uniform to match the
Central Command (CC) color scheme.

New Features:
- Introduce a new uniform for Nanotrasen Corporate Trainers.

Tests:
- Verify the new uniform is functional.

---------

Co-authored-by: Mikhail Dzianishchyts <mikhail.dzianishchyts@gmail.com>
  • Loading branch information
Kar4es and m-dzianishchyts authored Jan 21, 2025
1 parent 3410510 commit 1088e58
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 0 deletions.
21 changes: 21 additions & 0 deletions modular_ss220/clothing/code/under.dm
Original file line number Diff line number Diff line change
Expand Up @@ -314,3 +314,24 @@
"Vox" = 'modular_ss220/clothing/icons/mob/species/vox/under.dmi',
"Drask" = 'modular_ss220/clothing/icons/mob/species/drask/under.dmi',
)

/obj/item/clothing/under/rank/procedure/nct/black
icon = 'modular_ss220/clothing/icons/object/under.dmi'
desc = "A neatly pressed black shirt paired with black jeans, worn by those dedicated to shaping the future of the workforce."
sprite_sheets = list(
"Human" = 'modular_ss220/clothing/icons/mob/under.dmi',
"Vox" = 'modular_ss220/clothing/icons/mob/species/vox/under.dmi',
"Drask" = 'modular_ss220/clothing/icons/mob/species/drask/under.dmi',
"Grey" = 'modular_ss220/clothing/icons/mob/species/grey/under.dmi',
"Kidan" = 'modular_ss220/clothing/icons/mob/species/kidan/under.dmi'
)
icon_state = "trainer_black"
item_state = "trainer_black"
item_color = "trainer_black"

/obj/item/clothing/under/rank/procedure/nct/black/skirt
name = "\improper NT Career Trainer's skirt"
desc = "A neatly pressed black shirt paired with a sleek black skirt, worn by those committed to mentoring the next generation."
icon_state = "trainer_black_skirt"
item_state = "trainer_black_skirt"
item_color = "trainer_black_skirt"
Binary file modified modular_ss220/clothing/icons/mob/species/drask/under.dmi
Binary file not shown.
Binary file modified modular_ss220/clothing/icons/mob/species/grey/under.dmi
Binary file not shown.
Binary file modified modular_ss220/clothing/icons/mob/species/kidan/under.dmi
Binary file not shown.
Binary file modified modular_ss220/clothing/icons/mob/species/vox/under.dmi
Binary file not shown.
Binary file modified modular_ss220/clothing/icons/mob/under.dmi
Binary file not shown.
Binary file modified modular_ss220/clothing/icons/object/under.dmi
Binary file not shown.
7 changes: 7 additions & 0 deletions modular_ss220/vending/code/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,10 @@

/obj/machinery/economy/vending/engidrobe/free
prices = list()

/obj/machinery/economy/vending/traindrobe/Initialize(mapload)
products |= list(
/obj/item/clothing/under/rank/procedure/nct/black = 2,
/obj/item/clothing/under/rank/procedure/nct/black/skirt = 2
)
. = ..()

0 comments on commit 1088e58

Please sign in to comment.