diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index f5fef1be70..8d8ffb21be 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -114,6 +114,13 @@ usr.update_inv_glasses() +/obj/item/clothing/glasses/welding/superior + name = "superior welding goggles" + desc = "Welding goggles made from more expensive materials." + icon_state = "rwelding-g" + item_state = "rwelding-g" + icon_action_button = "action_welding_g" + /obj/item/clothing/glasses/sunglasses/blindfold name = "blindfold" desc = "Covers the eyes, preventing sight." diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index c6482846e0..9123dad435 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -263,6 +263,14 @@ hi body_parts_covered = null flags = FPRINT|TABLEPASS +/obj/item/weapon/lighter/fluff //Dragor23: Michael Guess + name = "engraved lighter" + desc = "A golden lighter, engraved with some ornaments and a G.." + icon_state = "guessip" + item_state = "guessip" + icon_on = "guessipon" + icon_off = "guessip" + //Strange penlight, Nerezza: Asher Spock /obj/item/weapon/reagent_containers/hypospray/fluff/asher_spock_1 @@ -466,6 +474,12 @@ hi desc = "Much safer than a hard helmet." icon = 'custom_items.dmi' icon_state = "neilpatterson0_hat" + +/obj/item/clothing/head/fluff/krinnhat //Shirotyrant: Krinn Seeskale + name = "saucepan hat" + desc = "This hat is the shiniest shiny Krinn has ever owned." + icon = 'custom_items.dmi' + icon_state = "krinn_hat" //////////// Suits //////////// /obj/item/clothing/suit/storage/labcoat/fluff/pink //spaceman96: Trenna Seber @@ -503,6 +517,13 @@ hi icon_state = "deus_blueshield" item_state = "deus_blueshield" +/obj/item/clothing/suit/fluff/oldscarf //Writerer2: Sharik Israa + name = "old scarf" + desc = "An old looking scarf, it seems to be fairly worn." + icon_state = "mantle-unathi" + item_state = "mantle-unathi" + body_parts_covered = UPPER_TORSO + //////////// Uniforms //////////// /obj/item/clothing/under/fluff/jumpsuitdown //searif: Yuki Matsuda diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi index 8a2d55463f..cde19553cc 100644 Binary files a/icons/mob/eyes.dmi and b/icons/mob/eyes.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index f16c6daced..6c07e1090c 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index cb35f8aa07..d4f7a2fcdc 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 4141cca718..6d2abfacd9 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ