From 2febab8574a5d1e5dcd2ae3d2acc842180863c4c Mon Sep 17 00:00:00 2001 From: skull132 Date: Fri, 15 Aug 2014 11:23:17 +0300 Subject: [PATCH] Orderable Atmospherics Equipment Part one, Adds the supply_packs to the orderable items list. They will arrive empty, but will otherwise work as of initial coding. --- code/datums/supplypacks.dm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm index 1c2a508a..e1736c8d 100644 --- a/code/datums/supplypacks.dm +++ b/code/datums/supplypacks.dm @@ -1111,3 +1111,34 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee containername = "Beekeeping crate" access = access_hydroponics group = "Hydroponics" + +/* + *Skull's additions to satisfy the cravings of any atmospheric tech begin here. + */ + +/datum/supply_packs/atmos_freezer + name = "Gas Cooling Unit" + contains = list() //MAKE A FREEZER THAT IS, BY DEFAULT, UNANCHORED! + cost = 50 + containertype = /obj/structure/closet/crate/secure/large //Test if this works ((should)) + containername = "gas cooling unit crate" + access = access_atmospherics + group = "Engineering" + +/datum/supply_packs/atmos_heater + name = "Gas Heating Unit" + contains = list() //MAKE A COOLER THAT IS, BY DEFAULT, UNANCHORED! + cost = 50 + containertype = /obj/structure/closet/crate/secure/large //Test if this works ((should)) + containername = "gas heating unit crate" + access = access_atmospherics + group = "Engineering" + +/daumt/supply_packs/atmos_airtank + name = "Large Air Tank" + contains = list() //MAKE A LARGE RED AIRTANK THAT IS UNWRENCHED, AND CAN BE MANIPULATED AT SPAWN. This may cause issues, hueh. + cost = 65 + containertype = /obj/structure/closet/crate/secure/large //test if this works ((should)) + containername = "large air tank crate" + access = access_atmospherics + group = "Engineering"