mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-30 03:52:52 +00:00
-adds turbans at some people's request -adds the forensic technician's allowed roles to sec related custom loadout -fixes shoes having two species_restricted vars -add species restrictions to galoshes and the like -changed how the force var works on the shoes, regular shoes have 0, boots have 3 and combat boots/magboots have 5 -adds nitrile gloves after a forum request
55 lines
2.0 KiB
Plaintext
55 lines
2.0 KiB
Plaintext
// Eyes
|
|
/datum/gear/eyes
|
|
display_name = "eyepatch"
|
|
path = /obj/item/clothing/glasses/eyepatch
|
|
slot = slot_glasses
|
|
sort_category = "Glasses and Eyewear"
|
|
|
|
/datum/gear/eyes/glasses
|
|
display_name = "glasses, prescription"
|
|
path = /obj/item/clothing/glasses/regular
|
|
|
|
/datum/gear/eyes/glasses/green
|
|
display_name = "glasses, green"
|
|
path = /obj/item/clothing/glasses/gglasses
|
|
|
|
/datum/gear/eyes/glasses/prescriptionhipster
|
|
display_name = "glasses, hipster"
|
|
path = /obj/item/clothing/glasses/regular/hipster
|
|
|
|
/datum/gear/eyes/glasses/monocle
|
|
display_name = "monocle"
|
|
path = /obj/item/clothing/glasses/monocle
|
|
|
|
/datum/gear/eyes/scanning_goggles
|
|
display_name = "scanning goggles"
|
|
path = /obj/item/clothing/glasses/regular/scanners
|
|
|
|
/datum/gear/eyes/sciencegoggles
|
|
display_name = "science Goggles"
|
|
path = /obj/item/clothing/glasses/science
|
|
|
|
/datum/gear/eyes/mesonprescription
|
|
display_name = "meson goggles, prescription"
|
|
path = /obj/item/clothing/glasses/meson/prescription
|
|
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Engineering Apprentice", "Research Director","Scientist")
|
|
|
|
/datum/gear/eyes/security
|
|
display_name = "security HUD"
|
|
path = /obj/item/clothing/glasses/hud/security
|
|
allowed_roles = list("Security Officer", "Head of Security", "Warden", "Security Cadet", "Detective", "Forensic Technician")
|
|
|
|
/datum/gear/eyes/medical
|
|
display_name = "medical HUD"
|
|
path = /obj/item/clothing/glasses/hud/health
|
|
allowed_roles = list("Medical Doctor", "Chief Medical Officer", "Chemist", "Paramedic", "Geneticist", "Nursing Intern")
|
|
|
|
/datum/gear/eyes/shades
|
|
display_name = "sunglasses, fat"
|
|
path = /obj/item/clothing/glasses/sunglasses/big
|
|
allowed_roles = list("Security Officer", "Head of Security", "Warden", "Captain", "Head of Personnel", "Quartermaster", "Internal Affairs Agent", "Detective", "Forensic Technician")
|
|
|
|
/datum/gear/eyes/shades/prescriptionsun
|
|
display_name = "sunglasses, presciption"
|
|
path = /obj/item/clothing/glasses/sunglasses/prescription
|