Merge pull request #2895 from Verkister/doofle

Adds dufflebags and saddlebags to utility loadout.
This commit is contained in:
Aronai Sieyes
2018-01-30 17:41:41 -05:00
committed by GitHub
4 changed files with 64 additions and 21 deletions
@@ -35,26 +35,6 @@
/datum/gear/accessory/white_vest
allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor","Chemist")
/datum/gear/accessory/saddlebag
display_name = "Saddle Bag, Horse"
path = /obj/item/weapon/storage/backpack/saddlebag
slot = slot_back
/datum/gear/accessory/saddlebag_common
display_name = "Saddle Bag, Common"
path = /obj/item/weapon/storage/backpack/saddlebag_common
slot = slot_back
/datum/gear/accessory/saddlebag_common/robust
display_name = "Saddle Bag, Robust"
path = /obj/item/weapon/storage/backpack/saddlebag_common/robust
slot = slot_back
/datum/gear/accessory/saddlebag_common/vest
display_name = "Taur Duty Vest (backpack)"
path = /obj/item/weapon/storage/backpack/saddlebag_common/vest
slot = slot_back
/datum/gear/accessory/khcrystal
display_name = "KH Life Crystal"
path = /obj/item/weapon/storage/box/khcrystal
@@ -0,0 +1,57 @@
/datum/gear/utility/saddlebag
display_name = "Saddle Bag, Horse"
path = /obj/item/weapon/storage/backpack/saddlebag
slot = slot_back
cost = 2
/datum/gear/utility/saddlebag_common
display_name = "Saddle Bag, Common"
path = /obj/item/weapon/storage/backpack/saddlebag_common
slot = slot_back
cost = 2
/datum/gear/utility/saddlebag_common/robust
display_name = "Saddle Bag, Robust"
path = /obj/item/weapon/storage/backpack/saddlebag_common/robust
slot = slot_back
cost = 2
/datum/gear/utility/saddlebag_common/vest
display_name = "Taur Duty Vest (backpack)"
path = /obj/item/weapon/storage/backpack/saddlebag_common/vest
slot = slot_back
cost = 1
/datum/gear/utility/dufflebag
display_name = "Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag
slot = slot_back
cost = 2
/datum/gear/utility/dufflebag/black
display_name = "Black Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/fluff
/datum/gear/utility/dufflebag/med
display_name = "Medical Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/med
allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist","Psychiatrist","Search and Rescue")
/datum/gear/utility/dufflebag/med/emt
display_name = "EMT Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/emt
/datum/gear/utility/dufflebag/sec
display_name = "Security Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/sec
allowed_roles = list("Head of Security","Warden","Detective","Security Officer")
/datum/gear/utility/dufflebag/eng
display_name = "Engineering Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/eng
allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer")
/datum/gear/utility/dufflebag/sci
display_name = "Science Dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/sci
allowed_roles = list("Research Director","Scientist","Roboticist","Xenobiologist","Explorer")