Skip to content

Commit

Permalink
lil more
Browse files Browse the repository at this point in the history
  • Loading branch information
DimWhat committed May 21, 2024
1 parent c8fd0f9 commit d225df9
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
14 changes: 14 additions & 0 deletions monkestation/code/modules/donator/code/datum/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -388,3 +388,17 @@
item_path = /obj/item/clothing/neck/bell
donator_only = TRUE
requires_purchase = FALSE
//OLIVER ITEMS
/datum/loadout_item/suit/jacket_oliver
name = "Scarved Jacket"
item_path = /obj/item/clothing/suit/toggle/jacket_oliver
donator_only = TRUE
requires_purchase = FALSE

//GNOB ITEMS
/datum/loadout_item/glasses/sechud_terminated
name = "Terminated Sechuds"
item_path = /obj/item/clothing/glasses/hud/security/terminated
donator_only = TRUE
requires_purchase = FALSE
restricted_roles = list(JOB_SECURITY_OFFICER,JOB_SECURITY_ASSISTANT,JOB_HEAD_OF_SECURITY,JOB_WARDEN)
27 changes: 27 additions & 0 deletions monkestation/code/modules/donator/code/item/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -362,3 +362,30 @@
icon_state = "fingerless_long"


/obj/item/clothing/suit/toggle/jacket_oliver
name = "scarved jacket"
desc = "A jacket that has a scarf. Dandy."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "jacket_oliver"
toggle_noun = "scarf"

/obj/item/clothing/suit/toggle/jacket_oliver/Initialize(mapload)
. = ..()
allowed += list(
/obj/item/flashlight,
/obj/item/lighter,
/obj/item/modular_computer/pda,
/obj/item/radio,
/obj/item/storage/bag/books,
/obj/item/storage/fancy/cigarettes,
/obj/item/tank/internals/emergency_oxygen,
/obj/item/tank/internals/plasmaman,
/obj/item/toy,
)
/obj/item/clothing/glasses/hud/security/terminated
name = "terminated security HUD"
desc = "My job is to protect you."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "sechud_terminated"
Binary file modified monkestation/code/modules/donator/icons/mob/clothing.dmi
Binary file not shown.
Binary file modified monkestation/code/modules/donator/icons/obj/clothing.dmi
Binary file not shown.

0 comments on commit d225df9

Please sign in to comment.