mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-26 01:52:29 +00:00
* Adds Orange Teshari-Goggles, Species-fits some sprites, Updates Undercoats Backports orange Teshari goggles Species-fits rings for Teshari Fixes captain glove sprites for Teshari Species-fits hudpatches & white blindfold for Teshari Species-fits some jacket accessories for Teshari (tan, charcoal, navy, burgundy, checkered) Updates all Teshari undercoats so the leg portion fits better (like smocks) * Adds Goggles to Loadout & Changelog Missed a spot * Woops, forgot job undercoats Fix fix fix. * Alright Y'all Asked for it Replaces undercoats & cloaks with upgraded downstream versions Adds hooded & belted cloaks Adds white/recolourable blindfold * Adds Worksuits, Adjusts Blindfold Loadout, Reduces Icon Size Makes _s (object) states unidirectional Adds Teshari worksuits (the icons were already here wtf) Renames the recolourable blindfold in loadout selection * Update the CL Noob * Sort out Restrictions & Fix Typo
165 lines
5.8 KiB
Plaintext
165 lines
5.8 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/eyepatchwhite
|
|
display_name = "eyepatch (recolorable)"
|
|
path = /obj/item/clothing/glasses/eyepatchwhite
|
|
slot = slot_glasses
|
|
sort_category = "Glasses and Eyewear"
|
|
|
|
/datum/gear/eyes/eyepatchwhite/New()
|
|
..()
|
|
gear_tweaks += gear_tweak_free_color_choice
|
|
|
|
/datum/gear/eyes/blindfold
|
|
display_name = "blindfold"
|
|
path = /obj/item/clothing/glasses/sunglasses/blindfold
|
|
|
|
/datum/gear/eyes/whiteblindfold //I may have lost my sight, but at least these folks can see my RAINBOW BLINDFOLD
|
|
display_name = "blindfold, white (recolorable)"
|
|
path = /obj/item/clothing/glasses/sunglasses/blindfold/whiteblindfold
|
|
|
|
/datum/gear/eyes/whiteblindfold/New()
|
|
..()
|
|
gear_tweaks += gear_tweak_free_color_choice
|
|
|
|
/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/goggles
|
|
display_name = "plain goggles"
|
|
path = /obj/item/clothing/glasses/goggles
|
|
|
|
/datum/gear/eyes/goggles/scanning
|
|
display_name = "scanning goggles"
|
|
path = /obj/item/clothing/glasses/regular/scanners
|
|
|
|
/datum/gear/eyes/goggles/science
|
|
display_name = "Science Goggles"
|
|
path = /obj/item/clothing/glasses/science
|
|
|
|
/datum/gear/eyes/security
|
|
display_name = "Security HUD (Security)"
|
|
path = /obj/item/clothing/glasses/hud/security
|
|
allowed_roles = list("Security Officer","Head of Security","Warden", "Detective")
|
|
|
|
/datum/gear/eyes/security/prescriptionsec
|
|
display_name = "Security HUD, prescription (Security)"
|
|
path = /obj/item/clothing/glasses/hud/security/prescription
|
|
|
|
/datum/gear/eyes/security/sunglasshud
|
|
display_name = "Security HUD, sunglasses (Security)"
|
|
path = /obj/item/clothing/glasses/sunglasses/sechud
|
|
|
|
/datum/gear/eyes/security/aviator
|
|
display_name = "Security HUD Aviators (Security)"
|
|
path = /obj/item/clothing/glasses/sunglasses/sechud/aviator
|
|
|
|
/datum/gear/eyes/security/aviator/prescription
|
|
display_name = "Security HUD Aviators, prescription (Security)"
|
|
path = /obj/item/clothing/glasses/sunglasses/sechud/aviator/prescription
|
|
|
|
/datum/gear/eyes/medical
|
|
display_name = "Medical HUD (Medical)"
|
|
path = /obj/item/clothing/glasses/hud/health
|
|
allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Search and Rescue")
|
|
|
|
/datum/gear/eyes/medical/prescriptionmed
|
|
display_name = "Medical HUD, prescription (Medical)"
|
|
path = /obj/item/clothing/glasses/hud/health/prescription
|
|
|
|
/datum/gear/eyes/medical/aviator
|
|
display_name = "Medical HUD Aviators (Medical)"
|
|
path = /obj/item/clothing/glasses/hud/health/aviator
|
|
|
|
/datum/gear/eyes/medical/aviator/prescription
|
|
display_name = "Medical HUD Aviators, prescription (Medical)"
|
|
path = /obj/item/clothing/glasses/hud/health/aviator/prescription
|
|
|
|
/datum/gear/eyes/meson
|
|
display_name = "Optical Meson Scanners (Engineering, Science, Mining)"
|
|
path = /obj/item/clothing/glasses/meson
|
|
allowed_roles = list("Station Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Shaft Miner")
|
|
|
|
/datum/gear/eyes/meson/prescription
|
|
display_name = "Optical Meson Scanners, prescription (Engineering, Science, Mining)"
|
|
path = /obj/item/clothing/glasses/meson/prescription
|
|
|
|
/datum/gear/eyes/material
|
|
display_name = "Optical Material Scanners (Mining)"
|
|
path = /obj/item/clothing/glasses/material
|
|
allowed_roles = list("Shaft Miner","Quartermaster")
|
|
|
|
/datum/gear/eyes/material/prescription
|
|
display_name = "Prescription Optical Material Scanners (Mining)"
|
|
path = /obj/item/clothing/glasses/material/prescription
|
|
|
|
/datum/gear/eyes/meson/aviator
|
|
display_name = "Optical Meson Aviators, (Engineering, Science, Mining)"
|
|
path = /obj/item/clothing/glasses/meson/aviator
|
|
|
|
/datum/gear/eyes/meson/aviator/prescription
|
|
display_name = "Optical Meson Aviators, prescription (Engineering, Science, Mining)"
|
|
path = /obj/item/clothing/glasses/meson/aviator/prescription
|
|
|
|
/datum/gear/eyes/glasses/fakesun
|
|
display_name = "Sunglasses, stylish"
|
|
path = /obj/item/clothing/glasses/fakesunglasses
|
|
|
|
/datum/gear/eyes/glasses/fakeaviator
|
|
display_name = "Sunglasses, stylish aviators"
|
|
path = /obj/item/clothing/glasses/fakesunglasses/aviator
|
|
|
|
/datum/gear/eyes/sun
|
|
display_name = "Sunglasses (Security/Command)"
|
|
path = /obj/item/clothing/glasses/sunglasses
|
|
allowed_roles = list("Security Officer","Head of Security","Warden","Site Manager","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective")
|
|
|
|
/datum/gear/eyes/sun/shades
|
|
display_name = "Sunglasses, fat (Security/Command)"
|
|
path = /obj/item/clothing/glasses/sunglasses/big
|
|
|
|
/datum/gear/eyes/sun/aviators
|
|
display_name = "Sunglasses, aviators (Security/Command)"
|
|
path = /obj/item/clothing/glasses/sunglasses/aviator
|
|
|
|
/datum/gear/eyes/sun/prescriptionsun
|
|
display_name = "sunglasses, presciption (Security/Command)"
|
|
path = /obj/item/clothing/glasses/sunglasses/prescription
|
|
|
|
/datum/gear/eyes/circuitry
|
|
display_name = "goggles, circuitry (empty)"
|
|
path = /obj/item/clothing/glasses/circuitry
|
|
|
|
/datum/gear/eyes/glasses/rimless
|
|
display_name = "Glasses, rimless"
|
|
path = /obj/item/clothing/glasses/rimless
|
|
|
|
/datum/gear/eyes/glasses/prescriptionrimless
|
|
display_name = "Glasses, prescription rimless"
|
|
path = /obj/item/clothing/glasses/regular/rimless
|
|
|
|
/datum/gear/eyes/glasses/thin
|
|
display_name = "Glasses, thin frame"
|
|
path = /obj/item/clothing/glasses/thin
|
|
|
|
/datum/gear/eyes/glasses/prescriptionthin
|
|
display_name = "Glasses, prescription thin frame"
|
|
path = /obj/item/clothing/glasses/regular/thin |