Inflatables for all (#7823)

This commit is contained in:
Aboshedab
2019-12-30 11:27:05 +01:00
committed by Matt Atlas
parent 3049524b27
commit 0fcb4af8e3
2 changed files with 57 additions and 2 deletions
@@ -20,7 +20,7 @@
icon_opened = "emergencyopen"
/obj/structure/closet/emcloset/fill()
switch (pickweight(list("small" = 55, "aid" = 25, "tank" = 10, "both" = 10)))
switch (pickweight(list("small" = 50, "aid" = 20, "tank" = 10, "seal" = 10, "all" = 10)))
if ("small")
new /obj/item/tank/emergency_oxygen(src)
new /obj/item/tank/emergency_oxygen(src)
@@ -47,7 +47,17 @@
new /obj/item/device/oxycandle(src)
new /obj/item/device/oxycandle(src)
new /obj/item/airbubble(src)
if ("both")
if ("seal")
new /obj/item/tank/emergency_oxygen(src)
new /obj/item/storage/toolbox/emergency(src)
new /obj/item/clothing/mask/breath(src)
new /obj/item/clothing/suit/space/emergency(src)
new /obj/item/clothing/head/helmet/space/emergency(src)
new /obj/item/device/oxycandle(src)
new /obj/item/inflatable/door(src)
new /obj/item/inflatable/wall(src)
new /obj/item/inflatable/wall(src)
if ("all")
new /obj/item/storage/toolbox/emergency(src)
new /obj/item/tank/emergency_oxygen/engi(src)
new /obj/item/clothing/mask/breath(src)
@@ -61,6 +71,9 @@
new /obj/item/device/oxycandle(src)
new /obj/item/airbubble(src)
new /obj/item/airbubble(src)
new /obj/item/inflatable/door(src)
new /obj/item/inflatable/wall(src)
new /obj/item/inflatable/wall(src)
/obj/structure/closet/emcloset/legacy/fill()
..()