Files
CHOMPStation2/code/game/objects/items/weapons/storage/boxes_ch.dm
Shadowfire ce1c0ec533 Casino prize dispenser update
Redoing since github believes theres to be a conflict when in reality there was just changes made to files already been worked on in the casinoupdate branch
2020-03-13 03:36:47 +01:00

118 lines
3.3 KiB
Plaintext

/obj/item/weapon/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/weapon/storage/box/casino/foamcrossbow
name = "foam crossbow"
starts_with = list(
/obj/item/toy/crossbow,
/obj/item/toy/ammo/crossbow,
/obj/item/toy/ammo/crossbow,
/obj/item/toy/ammo/crossbow,
/obj/item/toy/ammo/crossbow,
/obj/item/toy/ammo/crossbow
)
/obj/item/weapon/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/weapon/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/weapon/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/weapon/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/weapon/storage/box/casino/costume_nyangirl
name = "cat girl costume"
starts_with = list(
/obj/item/clothing/under/schoolgirl,
/obj/item/clothing/head/kitty
)
/obj/item/weapon/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/weapon/staff
)
/obj/item/weapon/storage/box/casino/costume_chicken
name = "chicken costume"
starts_with = list(
/obj/item/clothing/suit/chickensuit,
/obj/item/clothing/head/chicken,
/obj/item/weapon/reagent_containers/food/snacks/egg
)
/obj/item/weapon/storage/box/casino/costume_gladiator
name = "gladiator costume"
starts_with = list(
/obj/item/clothing/under/gladiator,
/obj/item/clothing/head/helmet/gladiator
)
/obj/item/weapon/storage/box/casino/costume_pirate
name = "pirate costume"
starts_with = list(
/obj/item/clothing/under/pirate,
/obj/item/clothing/suit/pirate,
/obj/item/clothing/head/pirate,
/obj/item/clothing/glasses/eyepatch
)
/obj/item/weapon/storage/box/casino/costume_commie
name = "communist costume"
starts_with = list(
/obj/item/clothing/under/soviet,
/obj/item/clothing/head/ushanka
)
/obj/item/weapon/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/weapon/storage/box/casino/costume_plaguedoctor
name = "plague doctor costume"
starts_with = list(
/obj/item/clothing/suit/bio_suit/plaguedoctorsuit,
/obj/item/clothing/head/plaguedoctorhat
)
/obj/item/weapon/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/weapon/staff/broom
)