mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-28 11:02:08 +00:00
-fixes #4172 -fixes #4193 -fixes #4192 -fixes #4189 -fixes #4179 -fixes #4170 -fixes #4197 -fixes #4201 -changes the access of the security checkpoint, so all heads of staff can use it -fixes the hop being unable to access the account's computer -fixes being able to feed holodeck penguins -fixes modular laser weapons not interacting with firing pins -fixes more guns not interacting with pins and remove the need for pins from certain guns, like crossbow, alien weapons and etc -fixes unstable matter's portals and the elixir of life -nerfs liquid fire a bit
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", "Psychiatrist", "Medical Resident")
|
|
|
|
/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
|