Merge pull request #5272 from Lorwp/SARloadout

Adds SAR to allowed_roles of certain loadout items
This commit is contained in:
Anewbe
2018-05-23 23:38:33 -05:00
committed by GitHub
4 changed files with 12 additions and 6 deletions

View File

@@ -147,17 +147,17 @@
/datum/gear/accessory/brown_drop_pouches /datum/gear/accessory/brown_drop_pouches
display_name = "drop pouches, brown" display_name = "drop pouches, brown"
path = /obj/item/clothing/accessory/storage/brown_drop_pouches path = /obj/item/clothing/accessory/storage/brown_drop_pouches
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor") allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue")
/datum/gear/accessory/black_drop_pouches /datum/gear/accessory/black_drop_pouches
display_name = "drop pouches, black" display_name = "drop pouches, black"
path = /obj/item/clothing/accessory/storage/black_drop_pouches path = /obj/item/clothing/accessory/storage/black_drop_pouches
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor") allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue")
/datum/gear/accessory/white_drop_pouches /datum/gear/accessory/white_drop_pouches
display_name = "drop pouches, white" display_name = "drop pouches, white"
path = /obj/item/clothing/accessory/storage/white_drop_pouches path = /obj/item/clothing/accessory/storage/white_drop_pouches
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor") allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue")
/datum/gear/accessory/fannypack /datum/gear/accessory/fannypack
display_name = "fannypack selection" display_name = "fannypack selection"
@@ -236,7 +236,7 @@
/datum/gear/accessory/stethoscope /datum/gear/accessory/stethoscope
display_name = "stethoscope" display_name = "stethoscope"
path = /obj/item/clothing/accessory/stethoscope path = /obj/item/clothing/accessory/stethoscope
allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic") allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Search and Rescue")
/datum/gear/accessory/locket /datum/gear/accessory/locket
display_name = "locket" display_name = "locket"

View File

@@ -57,7 +57,7 @@
/datum/gear/eyes/medical /datum/gear/eyes/medical
display_name = "Medical HUD (Medical)" display_name = "Medical HUD (Medical)"
path = /obj/item/clothing/glasses/hud/health path = /obj/item/clothing/glasses/hud/health
allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist") allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Search and Rescue")
/datum/gear/eyes/medical/prescriptionmed /datum/gear/eyes/medical/prescriptionmed
display_name = "Medical HUD, prescription (Medical)" display_name = "Medical HUD, prescription (Medical)"

View File

@@ -440,7 +440,7 @@ datum/gear/suit/duster
/datum/gear/suit/snowsuit/medical /datum/gear/suit/snowsuit/medical
display_name = "snowsuit, medical" display_name = "snowsuit, medical"
path = /obj/item/clothing/suit/storage/snowsuit/medical path = /obj/item/clothing/suit/storage/snowsuit/medical
allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist") allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Search and Rescue")
/datum/gear/suit/snowsuit/science /datum/gear/suit/snowsuit/science
display_name = "snowsuit, science" display_name = "snowsuit, science"

View File

@@ -0,0 +1,6 @@
author: lorwp
delete-after: True
changes:
- tweak: "Search and Rescue can now add certain medical restricted items to their loadouts"