Skip to content

Commit

Permalink
Merge pull request #1234 from DimWhat/hold_things
Browse files Browse the repository at this point in the history
Let's you store tiny items in bunny suits.
  • Loading branch information
dwasint authored Feb 20, 2024
2 parents 588600e + 759155d commit 3563b46
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions monkestation/code/modules/clothing/under/costume.dm
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ BUNNY SUITS
body_parts_covered = CHEST|GROIN|LEGS
alt_covers_chest = TRUE

/obj/item/clothing/under/costume/playbunny/Initialize(mapload)
. = ..()

create_storage(storage_type = /datum/storage/pockets/tiny)

/obj/item/clothing/under/syndicate/syndibunny //heh
name = "blood-red bunny suit"
desc = "The staple of any bunny themed syndicate assassins. Are those carbon nanotube stockings?"
Expand All @@ -148,13 +153,32 @@ BUNNY SUITS
icon_state = "syndibunny"
body_parts_covered = CHEST|GROIN|LEGS

/obj/item/clothing/under/syndicate/syndibunny/Initialize(mapload)
. = ..()

create_storage(storage_type = /datum/storage/pockets/small)

/obj/item/clothing/under/costume/playbunny/magician
name = "magician's bunny suit"
desc = "The staple of any bunny themed stage magician."
icon_state = "playbunny_wiz"
greyscale_config = null
greyscale_config_worn = null
greyscale_colors = null
greyscale_config_worn_digitigrade = null

/obj/item/clothing/under/costume/playbunny/magician/Initialize(mapload)
. = ..()

create_storage(storage_type = /datum/storage/pockets/tiny/magician)

/datum/storage/pockets/tiny/magician/New() //this is probably a good idea
. = ..()
var/static/list/exception_cache = typecacheof(list(
/obj/item/gun/magic/wand,
/obj/item/warp_whistle,
))
exception_hold = exception_cache

/obj/item/clothing/under/costume/playbunny/centcom
name = "centcom bunnysuit"
Expand Down

0 comments on commit 3563b46

Please sign in to comment.