Adds departmental winter coats to loadout lists, adds cold protection to jackets

Pre-existing winter coats can now be taken in loadouts.

/toggle/ jackets now grant the same cold protection as winter coats.
This commit is contained in:
faaaay
2021-06-25 23:29:23 +01:00
parent 69a3b58ae0
commit 10f65e1cc9
8 changed files with 119 additions and 3 deletions
@@ -0,0 +1,18 @@
/datum/gear/coat_qm
name = "Quartermaster's winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/qm
restricted_roles = list("Quartermaster")
/datum/gear/coat_cargo
name = "Cargo winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/cargo
restricted_roles = list("Chief Medical Officer", "Shaft Miner", "Cargo Technician")
restricted_desc = "Cargo"
/datum/gear/coat_miner
name = "Mining winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/miner
restricted_roles = list("Quartermaster", "Miner")
@@ -0,0 +1,11 @@
/datum/gear/coat_cap
name = "Captain's winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/captain
restricted_roles = list("Captain")
/datum/gear/coat_hop
name = "Head of Personnel's winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/hop
restricted_roles = list("Head of Personnel")
@@ -0,0 +1,18 @@
/datum/gear/coat_engi
name = "Engineering winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/engineering
restricted_roles = list("Chief Engineer", "Station Engineer", "Atmospheric Technician")
restricted_desc = "Engineering"
/datum/gear/coat_atmos
name = "Atmospherics winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/engineering/atmos
restricted_roles = list("Chief Engineer", "Atmospheric Technician")
/datum/gear/coat_ce
name = "Chief Engineer's winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/ce
restricted_roles = list("Chief Engineer")
@@ -1,4 +1,4 @@
/datum/gear/stethoscope
/datum/gear/med_briefcase
name = "Medical Briefcase"
category = SLOT_HANDS
path = /obj/item/storage/briefcase/medical
@@ -16,7 +16,7 @@
path = /obj/item/clothing/under/rank/medical/blue
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
/datum/gear/greenscrubs
name = "Green Scrubs"
category = SLOT_W_UNIFORM
@@ -30,3 +30,28 @@
path = /obj/item/clothing/under/rank/medical/purple
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
/datum/gear/coat_med
name = "Medical winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/medical
restricted_roles = list("Medical Doctor", "Chief Medical Officer", "Geneticist", "Chemist", "Virologist")
restricted_desc = "Medical"
/datum/gear/coat_cmo
name = "Chief Medical Officer's winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/cmo
restricted_roles = list("Chief Medical Officer")
/datum/gear/coat_viro
name = "Virology winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/viro
restricted_roles = list("Virologist")
/datum/gear/coat_chem
name = "Chemistry winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/chemistry
restricted_roles = list("Chemist")
@@ -0,0 +1,18 @@
/datum/gear/coat_rnd
name = "Research winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/science
restricted_roles = list("Research Director", "Roboticist", "Scientist")
restricted_desc = "Research"
/datum/gear/coat_robo
name = "Robotics winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/robotics
restricted_roles = list("Research Director", "Roboticist")
/datum/gear/coat_rd
name = "Robotics winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/rd
restricted_roles = list("Research Director")
@@ -16,4 +16,16 @@
category = SLOT_IN_BACKPACK
path = /obj/item/toy/plush/narplush
cost = 5
restricted_roles = list("Chaplain")
restricted_roles = list("Chaplain")
/datum/gear/coat_janitor
name = "Janitor's winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/janitor
restricted_roles = list("Janitor")
/datum/gear/hydro
name = "Botany winter coat"
category = SLOT_WEAR_SUIT
path = /obj/item/clothing/suit/hooded/wintercoat/hydro
restricted_roles = list("Botanist")