Files
CHOMPStation2/code/game/objects/items/weapons/storage/boxes_ch.dm
2024-09-30 21:36:41 +02:00

96 lines
2.5 KiB
Plaintext

/obj/item/storage/box/casino
name = "prize box"
desc = "It's a lovely golden tinted cardboard box, maybe theres something valuable inside?"
icon = 'icons/obj/storage_ch.dmi'
icon_state = "box_casino"
/obj/item/storage/box/casino/foamcrossbow
name = "foam crossbow"
starts_with = list(
/obj/item/gun/projectile/revolver/toy/crossbow,
/obj/item/ammo_casing/afoam_dart,
/obj/item/ammo_casing/afoam_dart,
/obj/item/ammo_casing/afoam_dart,
/obj/item/ammo_casing/afoam_dart,
/obj/item/ammo_casing/afoam_dart
)
/obj/item/storage/box/casino/costume_whitebunny
name = "white bunnygirl outfit"
starts_with = list(
/datum/sprite_accessory/ears/bunny_white,
/obj/item/clothing/under/sexybunny_white/sexybunny_black,
/datum/gear/shoes/heels
)
/obj/item/storage/box/casino/costume_blackbunny
name = "black bunnygirl outfit"
starts_with = list(
/datum/sprite_accessory/ears/bunny_white,
/obj/item/clothing/under/sexybunny_white,
/datum/gear/shoes/heels
)
/obj/item/storage/box/casino/costume_sexymime
name = "sexy mime costume"
starts_with = list(
/obj/item/clothing/mask/gas/sexymime,
/obj/item/clothing/under/sexymime,
/obj/item/clothing/shoes/mime,
/obj/item/clothing/head/soft/mime
)
/obj/item/storage/box/casino/costume_sexyclown
name = "sexy clown costume"
starts_with = list(
/obj/item/clothing/mask/gas/clown_hat,
/obj/item/clothing/mask/gas/sexyclown,
/obj/item/clothing/shoes/clown_shoes,
/obj/item/clothing/under/sexyclown
)
/obj/item/storage/box/casino/costume_nyangirl
name = "cat girl costume"
starts_with = list(
/obj/item/clothing/under/schoolgirl,
/obj/item/clothing/head/kitty
)
/obj/item/storage/box/casino/costume_wizard
name = "wizard costume"
starts_with = list(
/obj/item/clothing/suit/wizrobe/fake,
/obj/item/clothing/head/wizard/fake,
/obj/item/staff
)
/obj/item/storage/box/casino/costume_chicken
name = "chicken costume"
starts_with = list(
/obj/item/clothing/suit/chickensuit,
/obj/item/clothing/head/chicken,
/obj/item/reagent_containers/food/snacks/egg
)
/obj/item/storage/box/casino/costume_gladiator
name = "gladiator costume"
starts_with = list(
/obj/item/clothing/under/gladiator,
/obj/item/clothing/head/helmet/gladiator
)
/obj/item/storage/box/casino/costume_imperiummonk
name = "imperium monk costume"
starts_with = list(
/obj/item/clothing/suit/imperium_monk,
/obj/item/clothing/mask/gas/cyborg
)
/obj/item/storage/box/casino/costume_cutewitch
name = "witch costume"
starts_with = list(
/obj/item/clothing/under/sundress,
/obj/item/clothing/head/wizard/marisa/fake,
/obj/item/staff/broom
)