diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index 2fd208cfd7..d407963d2d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -51,3 +51,8 @@ display_name = "KH Life Crystal" path = /obj/item/weapon/storage/box/khcrystal description = "A small necklace device that will notify an offsite cloning facility should you expire after activating it." + +/datum/gear/accessory/tronket + display_name = "Metal necklace" + description = "A shiny steel chain with a vague metallic object dangling off it." + path = /obj/item/clothing/accessory/tronket \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm index e1a01568e2..6ed8f3f59c 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm @@ -1,3 +1,11 @@ /*/datum/gear/head/cap/sol display_name = "cap, sol" - path = /obj/item/clothing/head/soft/sol*/ \ No newline at end of file + path = /obj/item/clothing/head/soft/sol*/ + +/datum/gear/head/headbando + display_name = "Basic Headband" + path = /obj/item/clothing/head/fluff/headbando + +/datum/gear/head/headbando/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 9257ee8e6d..137e66dcb1 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -1468,4 +1468,15 @@ Departamental Swimsuits, for general use icon_state = "sfjacket" icon_override = 'icons/vore/custom_clothes_vr.dmi' - item_state = "sfjacket_mob" \ No newline at end of file + item_state = "sfjacket_mob" + +//General use +/obj/item/clothing/head/fluff/headbando + name = "basic headband" + desc = "Perfect for martial artists, sweaty rogue operators, and tunnel gangsters." + + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "headbando" + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "headbando" \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 48d892c2b8..306bad2094 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -996,6 +996,30 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie item_state_slots = list(slot_r_hand_str = "glasses", slot_l_hand_str = "glasses") item_flags = AIRTIGHT +//verkister: Opie Eggbert - Spiffy fluff goggles +/obj/item/clothing/glasses/spiffygogs + name = "Chad Goggles" + desc = "You can almost feel the raw power radiating off these strange specs." + icon = 'icons/vore/custom_items_vr.dmi' + icon_override = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "spiffygogs" + item_state_slots = list(slot_r_hand_str = "glasses", slot_l_hand_str = "glasses") + toggleable = 1 + off_state = "spiffygogsup" + +//General use +/obj/item/clothing/accessory/tronket + name = "metal necklace" + desc = "A shiny steel chain with a vague metallic object dangling off it." + w_class = ITEMSIZE_SMALL + icon = 'icons/vore/custom_items_vr.dmi' + icon_override = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "tronket" + item_state = "tronket" + overlay_state = "tronket" + slot_flags = SLOT_TIE + slot = "over" + //The perfect adminboos device? /obj/item/device/perfect_tele name = "personal translocator" diff --git a/config/custom_items.txt b/config/custom_items.txt index c5c7492f82..90e934f639 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -622,6 +622,11 @@ character_name: Cameron Eggbert item_path: /obj/item/weapon/disk/limb/eggnerdltd } { +ckey: verkister +character_name: Opie Eggbert +item_path: /obj/item/clothing/glasses/spiffygogs +} +{ ckey: virgo113 character_name: Verin Raharra item_path: /obj/item/clothing/suit/storage/hazardvest/fluff/verin diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 9123ebb0fa..eeb4ecbc3b 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index 591caa8916..ad81f857d9 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ