mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-29 19:42:42 +00:00
-changes how gloves leaving fingerprints works, now there is a chance if they can leave or not, ported from polaris, fixing #3120 -allows for glasses with the flag AIRTIGHT to protect your eyes from phoron, such as science glasses, ported from polaris, mesons and etc -adds evening gloves, cloth footwraps, toeless working boots and etc at people's requests, ported from several other codebases -removes the last red security piece we had in the code, the red dot of the sec belt -adds a icon for badges on the belt -allows you to flip eye patches to cover different eyes 👎 x 2
59 lines
2.1 KiB
Plaintext
59 lines
2.1 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/glasses/goggles
|
|
display_name = "goggles"
|
|
path = /obj/item/clothing/glasses/goggles
|
|
|
|
/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
|