diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm index 6973fd04ad3..00c02511814 100644 --- a/code/datums/components/crafting/tailoring.dm +++ b/code/datums/components/crafting/tailoring.dm @@ -104,9 +104,9 @@ reqs = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses = 1) category = CAT_CLOTHING -/datum/crafting_recipe/beergoggles - name = "Beer Goggles" - result = /obj/item/clothing/glasses/sunglasses/reagent +/datum/crafting_recipe/scienceglasses + name = "Science Glasses" + result = /obj/item/clothing/glasses/sunglasses/chemical time = 20 tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) reqs = list(/obj/item/clothing/glasses/science = 1, @@ -114,8 +114,8 @@ /obj/item/stack/cable_coil = 5) category = CAT_CLOTHING -/datum/crafting_recipe/beergogglesremoval - name = "Beer Goggles removal" +/datum/crafting_recipe/scienceglassesremoval + name = "Science Glasses Dissemble" result = /obj/item/clothing/glasses/sunglasses time = 20 tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) diff --git a/code/modules/clothing/glasses/_glasses.dm b/code/modules/clothing/glasses/_glasses.dm index 6693d192741..20b859af05f 100644 --- a/code/modules/clothing/glasses/_glasses.dm +++ b/code/modules/clothing/glasses/_glasses.dm @@ -199,6 +199,7 @@ /obj/item/clothing/glasses/sunglasses/reagent name = "beer goggles" + icon_state = "sunhudbeer" desc = "A pair of sunglasses outfitted with apparatus to scan reagents, as well as providing an innate understanding of liquid viscosity while in motion." clothing_flags = SCAN_REAGENTS @@ -211,6 +212,12 @@ . = ..() REMOVE_TRAIT(user, TRAIT_BOOZE_SLIDER, CLOTHING_TRAIT) +/obj/item/clothing/glasses/sunglasses/chemical + name = "science glasses" + icon_state = "sunhudsci" + desc = "A pair of tacky purple sunglasses that allow the wearer to recognize various chemical compounds with only a glance." + clothing_flags = SCAN_REAGENTS + /obj/item/clothing/glasses/sunglasses/garb name = "black gar glasses" desc = "Go beyond impossible and kick reason to the curb!" diff --git a/icons/mob/clothing/eyes.dmi b/icons/mob/clothing/eyes.dmi index e5b1e7d1579..2045f7e88ff 100644 Binary files a/icons/mob/clothing/eyes.dmi and b/icons/mob/clothing/eyes.dmi differ diff --git a/icons/obj/clothing/glasses.dmi b/icons/obj/clothing/glasses.dmi index 2a1a51f1673..301a32753eb 100644 Binary files a/icons/obj/clothing/glasses.dmi and b/icons/obj/clothing/glasses.dmi differ