Merge pull request #10322 from Birdtalon/speciesboxes

Speciesboxes; species specific starting boxes
This commit is contained in:
variableundefined
2018-12-11 19:57:30 +08:00
committed by GitHub
6 changed files with 34 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()