Skip to content

Commit

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

## Что этот PR делает
немного забалансил вещи донатерского уборщика, поправил иконку карты

## Тестирование
всё ворк

## Changelog

:cl:
tweak: Донатный уборщик немного сбалансирован. Так же починил иконку его
карты.
tweak: У донатного уборщика теперь крутое мыло.
/:cl:

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

---------

Co-authored-by: PhantornRU <[email protected]>
Co-authored-by: dj-34 <[email protected]>
  • Loading branch information
3 people authored Jun 24, 2024
1 parent e2fed87 commit cd82cde
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions modular_ss220/aesthetics/soap/code/soap.dm
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
/obj/item/soap
icon = 'modular_ss220/aesthetics/soap/icons/soap.dmi'

/obj/item/soap/nanotrasen/prime
desc = "Мыло марки Нанотрейзен выполненное по спецзаказу для лучших из лучших уборщиков."
cleanspeed = 20
2 changes: 1 addition & 1 deletion modular_ss220/jobs/code/card_id.dm
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ GLOBAL_LIST_INIT(card_skins_donor_ss220, list(
name = "Clining Manager ID"
access = list(ACCESS_JANITOR, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_MEDICAL)
icon = 'modular_ss220/aesthetics/better_ids/icons/better_ids.dmi'
icon_state = "cleaningmanager"
icon_state = "managerjanitor"

/obj/item/card/id/apprentice
name = "Apprentice ID"
Expand Down
5 changes: 3 additions & 2 deletions modular_ss220/jobs/code/donor/job/3_tier_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@

uniform = /obj/item/clothing/under/rank/civilian/janitor
suit = /obj/item/clothing/suit/apron/overalls
shoes = /obj/item/clothing/shoes/galoshes/dry
shoes = /obj/item/clothing/shoes/galoshes/dry/lightweight
gloves = /obj/item/clothing/gloves/color/purple
mask = /obj/item/clothing/mask/bandana/purple
head = /obj/item/clothing/head/soft/purple
belt = /obj/item/storage/belt/janitor/full
belt = /obj/item/storage/belt/janitor/full/donor
r_pocket = /obj/item/door_remote/janikeyring
l_ear = /obj/item/radio/headset/headset_service
pda = /obj/item/pda/janitor
Expand All @@ -161,6 +161,7 @@
/obj/item/clothing/head/beret/purple_normal = 1,
/obj/item/clothing/suit/storage/iaa/purplejacket = 1,
/obj/item/clipboard = 1,
/obj/item/reagent_containers/spray/cleaner = 1,
)


Expand Down
10 changes: 10 additions & 0 deletions modular_ss220/jobs/code/objects/job_objects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,13 @@
/obj/item/gun/energy/clown/security/warden
name = "Личное ХОНК-ружье смотрителя"
desc = "Личное смертоносное оружие клоуна-смотрителя, выданное за заслуги перед НТ и \[ДАННЫЕ ХОНКНУТЫ\]. Ходят слухи что это один из первых экземпляров произведенных во время войны мимов и клоунов на родной планете клоунов."

// JANITOR //
/obj/item/storage/belt/janitor/full/donor/populate_contents()
new /obj/item/holosign_creator/janitor(src)
new /obj/item/reagent_containers/spray/cleaner(src)
new /obj/item/storage/bag/trash(src)
new /obj/item/soap/nanotrasen/prime(src)
new /obj/item/grenade/chem_grenade/cleaner(src)
new /obj/item/grenade/chem_grenade/cleaner(src)
update_icon()

0 comments on commit cd82cde

Please sign in to comment.