Skip to content

Commit

Permalink
meepmop
Browse files Browse the repository at this point in the history
  • Loading branch information
polygoblyn committed Nov 19, 2023
1 parent e4e0206 commit b9f07a4
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 0 deletions.
7 changes: 7 additions & 0 deletions monkestation/code/modules/donator/code/datum/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,10 @@
item_path = /obj/item/clothing/head/costume/space_marine
donator_only = TRUE
requires_purchase = FALSE

//rickdude
/datum/loadout_item/suit/aotcloak
name = "Survey Corps Cloak"
item_path = /obj/item/clothing/suit/hooded/aotcloak
donator_only = TRUE
requires_purchase = FALSE
38 changes: 38 additions & 0 deletions monkestation/code/modules/donator/code/item/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,41 @@
icon_state = "kriegmask"
inhand_icon_state = null
flags_inv = HIDEFACE

/obj/item/clothing/suit/hooded/aotcloak
name = "survey corps cloak"
desc = "A lightweight but durable cloak with an emblem emblazoned on the back."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "aotcloak"
body_parts_covered = CHEST|ARMS
cold_protection = CHEST|ARMS
allowed = list()
armor_type = /datum/armor/hooded_wintercoat
hoodtype = /obj/item/clothing/head/hooded/aotcloak
layer = NECK_LAYER

/obj/item/clothing/suit/hooded/aotcloak/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/head/hooded/aotcloak
name = "survey corps cloak hood"
desc = "A cozy winter hood attached to a heavy winter jacket."
icon = 'monkestation/code/modules/donator/icons/obj/clothing.dmi'
worn_icon = 'monkestation/code/modules/donator/icons/mob/clothing.dmi'
icon_state = "aotcloak_hood"
body_parts_covered = HEAD
cold_protection = HEAD
flags_inv = HIDEHAIR|HIDEEARS
armor_type = /datum/armor/hooded_winterhood
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.
1 change: 1 addition & 0 deletions strings/pill_names.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"Bloody",
"Blue",
"Bomb",
"Bobo",
"Bot",
"Bourbon",
"Borbop",
Expand Down

0 comments on commit b9f07a4

Please sign in to comment.