Loadout tweaks (#11391)

This commit is contained in:
flpfs
2021-03-10 15:44:15 -03:00
committed by GitHub
parent 937d47e205
commit a574c0bc52
5 changed files with 53 additions and 20 deletions

View File

@@ -44,7 +44,7 @@
display_name = "flash-proof sunglasses selection (Security/Command)"
description = "A selection of flash-proof sunglasses."
path = /obj/item/clothing/glasses/sunglasses
allowed_roles = list("Security Officer", "Head of Security", "Warden", "Captain", "Head of Personnel", "Quartermaster", "Internal Affairs Agent", "Detective", "Forensic Technician")
allowed_roles = list("Security Officer", "Head of Security", "Warden", "Captain", "Head of Personnel", "Quartermaster", "Detective", "Forensic Technician")
/datum/gear/eyes/sunglasses/New()
..()

View File

@@ -64,7 +64,3 @@
/datum/gear/religion/dominia/accessory
display_name = "tribunal necklace"
path = "/obj/item/clothing/accessory/dominia"
/datum/gear/religion/shaman_staff
display_name = "shaman staff"
path = /obj/item/cane/shaman

View File

@@ -171,6 +171,8 @@
coat["trenchcoat, grey"] = /obj/item/clothing/suit/storage/toggle/trench/grey
coat["trenchcoat, dark brown"] = /obj/item/clothing/suit/storage/toggle/trench/alt
coat["trenchcoat, grey alternate"] = /obj/item/clothing/suit/storage/toggle/trench/grey_alt
coat["brown trenchcoat (Detective)"] = /obj/item/clothing/suit/storage/toggle/det_trench
coat["black trenchcoat (Detective)"] = /obj/item/clothing/suit/storage/toggle/det_trench/black
gear_tweaks += new/datum/gear_tweak/path(coat)
/datum/gear/suit/trenchcoat_colorable
@@ -179,20 +181,6 @@
path = /obj/item/clothing/suit/storage/toggle/trench/colorable
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/suit/det_trenchcoat
display_name = "detective trenchcoat selection"
description = "A selection of detective trenchcoats."
path = /obj/item/clothing/suit/storage/toggle/det_trench
allowed_roles = list("Detective")
/datum/gear/suit/det_trenchcoat/New()
..()
var/coat = list()
coat["brown trenchcoat (Detective)"] = /obj/item/clothing/suit/storage/toggle/det_trench
coat["black trenchcoat (Detective)"] = /obj/item/clothing/suit/storage/toggle/det_trench/black
gear_tweaks += new/datum/gear_tweak/path(coat)
/datum/gear/suit/ian
display_name = "worn shirt"
description = "A worn out, curiously comfortable t-shirt with a picture of Ian."

View File

@@ -203,4 +203,10 @@
var/augs = list()
augs["farseer eye"] = /obj/item/organ/internal/augment/farseer_eye
augs["eye flashlight"] = /obj/item/organ/internal/augment/eye_flashlight
gear_tweaks += new /datum/gear_tweak/path(augs)
gear_tweaks += new /datum/gear_tweak/path(augs)
/datum/gear/religion/shaman_staff
display_name = "shaman staff"
path = /obj/item/cane/shaman
sort_category = "Xenowear - Unathi"
whitelisted = list(SPECIES_UNATHI)