Adds Marooning Equipment (#14630)

This commit is contained in:
SleepyGemmy
2022-08-22 13:52:33 +02:00
committed by GitHub
parent b191d68b49
commit e5b04475de
8 changed files with 105 additions and 17 deletions
@@ -155,6 +155,20 @@
..()
icon_state = pick("brute","brute2","brute3")
/obj/item/storage/firstaid/marooning_equipment
name = "marooning first aid kit"
desc = "A first aid kit for marooned personnel."
starts_with = list(
/obj/item/stack/medical/bruise_pack = 2,
/obj/item/stack/medical/ointment = 2,
/obj/item/device/healthanalyzer = 1,
/obj/item/reagent_containers/pill/bicaridine = 1,
/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline = 1,
/obj/item/reagent_containers/hypospray/autoinjector/dylovene = 1,
/obj/item/reagent_containers/hypospray/autoinjector/coagzolug = 1,
/obj/item/storage/pill_bottle/perconol = 1
)
/*
* Pill Bottles
*/
@@ -40,6 +40,15 @@
icon_state = "oxygen_br"
item_state = "oxygen_br"
/obj/item/tank/oxygen/marooning_equipment
name = "marooning oxygen tank"
desc = "A tank of oxygen, this one is yellow. Issued to marooned personnel."
icon_state = "oxygen_f"
item_state = "oxygen_f"
/obj/item/tank/oxygen/marooning_equipment/adjust_initial_gas()
air_contents.adjust_gas(GAS_OXYGEN, (10*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C))
/*
* Anesthetic
*/