From 93148c27c3a85d16caf99764f3828bc5f2b4c2db Mon Sep 17 00:00:00 2001 From: Mark9013100 Date: Tue, 26 Jan 2016 04:54:22 -0500 Subject: [PATCH] Adds/edits a few cargo crates --- code/datums/supplypacks.dm | 67 +++++++++++++++++++++++++++++++++++--- 1 file changed, 63 insertions(+), 4 deletions(-) diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm index f1d1b94aac1..19dea63f140 100644 --- a/code/datums/supplypacks.dm +++ b/code/datums/supplypacks.dm @@ -51,6 +51,7 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee /obj/item/weapon/storage/box/swabs, /obj/item/weapon/storage/box/swabs, /obj/item/weapon/storage/box/slides, + /obj/item/device/uv_light, /obj/item/weapon/reagent_containers/spray/luminol) cost = 30 containertype = /obj/structure/closet/crate @@ -1093,7 +1094,7 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee group = "Hospitality" /datum/supply_packs/randomised/costume - num_contained = 2 + num_contained = 3 contains = list(/obj/item/clothing/suit/pirate, /obj/item/clothing/suit/judgerobe, /obj/item/clothing/suit/wcoat, @@ -1437,7 +1438,7 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee containername = "Actor hats crate" containertype = /obj/structure/closet cost = 10 - num_contained = 2 + num_contained = 3 contains = list(/obj/item/clothing/head/redcoat, /obj/item/clothing/head/mailman, /obj/item/clothing/head/plaguedoctorhat, @@ -1469,7 +1470,7 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee containername = "Pretty dress locker" containertype = /obj/structure/closet cost = 15 - num_contained = 1 + num_contained = 3 contains = list(/obj/item/clothing/under/wedding/bride_orange, /obj/item/clothing/under/wedding/bride_purple, /obj/item/clothing/under/wedding/bride_blue, @@ -2174,6 +2175,64 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee /obj/item/weapon/storage/box/masks, /obj/item/weapon/storage/box/gloves) cost = 50 + containertype = "/obj/structure/closet/crate/secure" containername = "Medical biohazard equipment" access = access_medical_equip - group = "Medical" \ No newline at end of file + group = "Medical" + +/datum/supply_packs/portablefreezers + name = "Portable freezers crate" + contains = list(/obj/item/weapon/storage/box/freezer, + /obj/item/weapon/storage/box/freezer, + /obj/item/weapon/storage/box/freezer, + /obj/item/weapon/storage/box/freezer, + /obj/item/weapon/storage/box/freezer, + /obj/item/weapon/storage/box/freezer, + /obj/item/weapon/storage/box/freezer) + cost = 25 + containertype = "/obj/structure/closet/crate/secure" + containername = "Portable freezers" + access = access_medical_equip + group = "Medical" + +/datum/supply_packs/minergear + name = "Shaft miner equipment" + contains = list(/obj/item/weapon/storage/backpack/industrial, + /obj/item/weapon/storage/backpack/satchel_eng, + /obj/item/clothing/suit/storage/hooded/wintercoat/miner, + /obj/item/device/radio/headset/headset_cargo, + /obj/item/clothing/under/rank/miner, + /obj/item/clothing/gloves/black, + /obj/item/clothing/shoes/black, + /obj/item/device/analyzer, + /obj/item/weapon/storage/bag/ore, + /obj/item/device/flashlight/lantern, + /obj/item/weapon/shovel, + /obj/item/weapon/pickaxe, + /obj/item/weapon/mining_scanner, + /obj/item/clothing/glasses/material, + /obj/item/clothing/glasses/meson) + cost = 15 + containertype = "/obj/structure/closet/crate/secure" + containername = "Shaft miner equipment" + access = access_mining + group = "Supply" + +/datum/supply_packs/chaplaingear + name = "Chaplain equipment" + contains = list(/obj/item/clothing/under/rank/chaplain, + /obj/item/clothing/shoes/black, + /obj/item/clothing/suit/nun, + /obj/item/clothing/head/nun_hood, + /obj/item/clothing/suit/chaplain_hoodie, + /obj/item/clothing/head/chaplain_hood, + /obj/item/clothing/suit/holidaypriest, + /obj/item/clothing/under/wedding/bride_white, + /obj/item/weapon/storage/backpack/cultpack, + /obj/item/weapon/storage/fancy/candle_box, + /obj/item/weapon/storage/fancy/candle_box, + /obj/item/weapon/storage/fancy/candle_box) + cost = 10 + containertype = "/obj/structure/closet/crate" + containername = "Chaplain equipment crate" + group = "Miscellaneous" \ No newline at end of file