diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm index 9189fad6c49..f975dac4d87 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm @@ -24,6 +24,7 @@ glasses["glasses, jamjar"] = /obj/item/clothing/glasses/regular/jamjar glasses["glasses, monocle"] = /obj/item/clothing/glasses/monocle glasses["glasses, safety"] = /obj/item/clothing/glasses/safety + glasses["glasses, safety (prescription)"] = /obj/item/clothing/glasses/safety/prescription gear_tweaks += new /datum/gear_tweak/path(glasses) /datum/gear/eyes/fakesunglasses @@ -66,6 +67,7 @@ ..() var/list/goggles = list() goggles["goggles, safety"] = /obj/item/clothing/glasses/safety/goggles + goggles["goggles, safety (prescription)"] = /obj/item/clothing/glasses/safety/goggles/prescription goggles["goggles, scanning"] = /obj/item/clothing/glasses/regular/scanners goggles["goggles, science"] = /obj/item/clothing/glasses/science goggles["goggles, orange"] = /obj/item/clothing/glasses/spiffygogs diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index ecfd8e60a2f..934b1d49c6d 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -223,6 +223,11 @@ BLIND // can't see anything item_flags = AIRTIGHT|THICKMATERIAL unacidable = 1 +/obj/item/clothing/glasses/safety/prescription + name = "prescription safety glasses" + desc = "A simple pair of safety glasses. Thinner than their goggle counterparts and comes with a prescription overlay." + prescription = 7 + /obj/item/clothing/glasses/safety/goggles name = "safety goggles" desc = "A simple pair of safety goggles. It's general chemistry all over again." @@ -260,6 +265,11 @@ BLIND // can't see anything update_icon() usr.update_action_buttons() +/obj/item/clothing/glasses/safety/goggles/prescription + name = "prescription safety goggles" + desc = "A simple pair of safety goggles. It's general chemistry all over again. Comes with a prescription overlay." + prescription = 7 + /obj/item/clothing/glasses/safety/goggles/wasteland name = "wasteland goggles" desc = "A pair of old goggles common in the Wasteland. A few denizens unfortunate enough to not \ diff --git a/html/changelogs/sapphicoverload-safetygoggles.yml b/html/changelogs/sapphicoverload-safetygoggles.yml new file mode 100644 index 00000000000..80f2da77711 --- /dev/null +++ b/html/changelogs/sapphicoverload-safetygoggles.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: SapphicOverload + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds prescription safety goggles/glasses."