adds species starting boxes

This commit is contained in:
Birdtalon
2018-11-27 12:42:43 +00:00
parent 713754b76c
commit b5e506d40c
5 changed files with 32 additions and 3 deletions
@@ -74,6 +74,26 @@
new /obj/item/reagent_containers/hypospray/autoinjector( src )
return
/obj/item/storage/box/survival_vox
icon_state = "box_civ"
/obj/item/storage/box/survival_vox/New()
..()
contents = list()
new /obj/item/clothing/mask/breath/vox(src)
new /obj/item/tank/emergency_oxygen/nitrogen(src)
new /obj/item/reagent_containers/hypospray/autoinjector(src)
/obj/item/storage/box/survival_plasmaman
icon_state = "box_civ"
/obj/item/storage/box/survival_plasmaman/New()
..()
contents = list()
new /obj/item/clothing/mask/breath(src)
new /obj/item/tank/emergency_oxygen/plasma(src)
new /obj/item/reagent_containers/hypospray/autoinjector(src)
/obj/item/storage/box/engineer
icon_state = "box_eng"
New()