-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathcostumes_toys.dm
More file actions
40 lines (37 loc) · 1.82 KB
/
Copy pathcostumes_toys.dm
File metadata and controls
40 lines (37 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/datum/supply_pack/costumes_toys/mafia
name = "Cosa Nostra Starter Pack"
desc = "This crate contains everything you need to set up your own ethnicity-based racketeering operation."
cost = 1000
contains = list()
/datum/supply_pack/costumes_toys/mafia/fill(obj/structure/closet/crate/C)
for(var/i in 1 to 4)
new /obj/effect/spawner/random/clothing/mafia_outfit(C)
new /obj/item/virgin_mary(C)
if(prob(30)) //Not all mafioso have mustaches, some people also find this item annoying.
new /obj/item/clothing/mask/fakemoustache/italian(C)
if(prob(10)) //A little extra sugar every now and then to shake things up.
new /obj/item/melee/knife/switchblade(C)
/datum/supply_pack/costumes_toys/wizard
name = "Wizard Costume Crate"
desc = "Pretend to join the Wizard Federation with this full wizard outfit! As required by interstellar law, the seller reminds potential buyers that the Wizard Federation is not real and cannot hurt you."
cost = 2000
contains = list(/obj/item/staff,
/obj/item/clothing/suit/wizrobe/fake,
/obj/item/clothing/shoes/sandal,
/obj/item/clothing/head/wizard/fake)
crate_name = "wizard costume crate"
crate_type = /obj/structure/closet/crate/wooden
/datum/supply_pack/costumes_toys/wedding
name = "Wedding Outfit Crate"
desc = "Want to get married, like right now? This crate contains all the clothing you need to look presentable at the altar!"
cost = 750
contains = list(/obj/item/clothing/under/suit/tuxedo_pants,
/obj/item/clothing/suit/toggle/lawyer/tuxedo,
/obj/item/clothing/accessory/cummerbund,
/obj/item/clothing/shoes/laceup,
/obj/item/clothing/neck/bowtie,
/obj/item/clothing/suit/wedding_dress,
/obj/item/clothing/head/wedding_veil,
/obj/item/clothing/shoes/high_heels/white,
/obj/item/clothing/under/shorts/dolphin)
crate_name = "wedding outfit crate"