Merge pull request #2166 from Neopatra/Neopatra-Taursuits

Neopatra's taursuits
This commit is contained in:
Spades
2017-09-16 18:56:45 -04:00
committed by GitHub
9 changed files with 471 additions and 2 deletions
@@ -0,0 +1,6 @@
/datum/supply_packs/eng/radsuit
contains = list(
/obj/item/clothing/suit/radiation = 2,
/obj/item/clothing/suit/radiation/taur = 1,
/obj/item/clothing/head/radiation = 3
)
+34
View File
@@ -0,0 +1,34 @@
/datum/supply_packs/med/medicalbiosuits
contains = list(
/obj/item/clothing/head/bio_hood/scientist = 3,
/obj/item/clothing/suit/bio_suit/scientist = 2,
/obj/item/clothing/suit/bio_suit/scientist/taur = 1,
/obj/item/clothing/suit/bio_suit/virology = 2,
/obj/item/clothing/suit/bio_suit/virology/taur = 1,
/obj/item/clothing/head/bio_hood/virology = 3,
/obj/item/clothing/suit/bio_suit/cmo,
/obj/item/clothing/suit/bio_suit/cmo/taur,
/obj/item/clothing/head/bio_hood/cmo,
/obj/item/clothing/shoes/white = 7,
/obj/item/clothing/mask/gas = 7,
/obj/item/weapon/tank/oxygen = 7,
/obj/item/weapon/storage/box/masks,
/obj/item/weapon/storage/box/gloves
)
cost = 40
/datum/supply_packs/med/virologybiosuits
name = "Virology biohazard gear"
contains = list(
/obj/item/clothing/suit/bio_suit/virology = 2,
/obj/item/clothing/suit/bio_suit/virology/taur = 1,
/obj/item/clothing/head/bio_hood/virology = 3,
/obj/item/clothing/mask/gas = 3,
/obj/item/weapon/tank/oxygen = 3,
/obj/item/weapon/storage/box/masks,
/obj/item/weapon/storage/box/gloves
)
cost = 40
containertype = "/obj/structure/closet/crate/secure"
containername = "Virology biohazard equipment"
access = access_medical_equip
+15 -1
View File
@@ -7,4 +7,18 @@
access = list(
access_security,
access_xenobiology)
*/
*/
/datum/supply_packs/security/biosuit
contains = list(
/obj/item/clothing/head/bio_hood/security = 3,
/obj/item/clothing/under/rank/security = 3,
/obj/item/clothing/suit/bio_suit/security = 2,
/obj/item/clothing/suit/bio_suit/security/taur = 1,
/obj/item/clothing/shoes/white = 3,
/obj/item/clothing/mask/gas = 3,
/obj/item/weapon/tank/oxygen = 3,
/obj/item/clothing/gloves/sterile/latex,
/obj/item/weapon/storage/box/gloves
)
cost = 40
+80
View File
@@ -0,0 +1,80 @@
/datum/supply_packs/voidsuits/atmos
contains = list(
/obj/item/clothing/suit/space/void/atmos = 2,
/obj/item/clothing/suit/space/void/atmos/taur = 1,
/obj/item/clothing/head/helmet/space/void/atmos = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3,
)
/datum/supply_packs/voidsuits/engineering
contains = list(
/obj/item/clothing/suit/space/void/engineering = 2,
/obj/item/clothing/suit/space/void/engineering/taur = 1,
/obj/item/clothing/head/helmet/space/void/engineering = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3
)
/datum/supply_packs/voidsuits/medical
contains = list(
/obj/item/clothing/suit/space/void/medical = 2,
/obj/item/clothing/suit/space/void/medical/taur = 1,
/obj/item/clothing/head/helmet/space/void/medical = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3
)
/datum/supply_packs/voidsuits/medical/alt
contains = list(
/obj/item/clothing/suit/space/void/medical/alt = 2,
/obj/item/clothing/suit/space/void/medical/alt/taur = 1,
/obj/item/clothing/head/helmet/space/void/medical/alt = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3
)
/datum/supply_packs/voidsuits/security
contains = list(
/obj/item/clothing/suit/space/void/security = 2,
/obj/item/clothing/suit/space/void/security/taur =1,
/obj/item/clothing/head/helmet/space/void/security = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3
)
/datum/supply_packs/voidsuits/security/crowd
contains = list(
/obj/item/clothing/suit/space/void/security/riot = 2,
/obj/item/clothing/suit/space/void/security/riot/taur = 1,
/obj/item/clothing/head/helmet/space/void/security/riot = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3
)
/datum/supply_packs/voidsuits/security/alt
contains = list(
/obj/item/clothing/suit/space/void/security/alt = 2,
/obj/item/clothing/suit/space/void/security/alt/taur =1,
/obj/item/clothing/head/helmet/space/void/security/alt = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/clothing/shoes/magboots = 3,
/obj/item/weapon/tank/oxygen = 3
)
/datum/supply_packs/voidsuits/supply
name = "Mining voidsuits"
contains = list(
/obj/item/clothing/suit/space/void/mining = 2,
/obj/item/clothing/suit/space/void/mining/taur = 1,
/obj/item/clothing/head/helmet/space/void/mining = 3,
/obj/item/clothing/mask/breath = 3,
/obj/item/weapon/tank/oxygen = 3
)