diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index d8fcf7e5be..fc1fe9d0ff 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -1811,3 +1811,41 @@ Departamental Swimsuits, for general use body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS w_class = ITEMSIZE_NORMAL slot = ACCESSORY_SLOT_OVER + +//General definition for bracer items. No icons. +/obj/item/clothing/accessory/bracer + name = "bracer" + desc = "A bracer." + icon_state = null + item_state = null + icon_override = null + slot_flags = SLOT_GLOVES | SLOT_TIE + w_class = ITEMSIZE_SMALL + slot = ACCESSORY_SLOT_ARMBAND + +//AegisOA:Xander Bevin +//WanderingDeviant:S'thasha Tavakdavi +/obj/item/clothing/accessory/bracer/fluff/xander_sthasha + name = "Plasteel Bracer" + desc = "A sturdy arm-guard of polished plasteel that sports gold trimming, silver tribal-looping etchings, and a single cut diamond set into its side. Attached to one's forearm with a small, magnetic clasp." + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "bracer_xander_sthasha" + icon_override = 'icons/vore/custom_onmob_vr.dmi' + item_state = "bracer_xander_sthasha" + +/obj/item/clothing/accessory/bracer/fluff/xander_sthasha/digest_act(var/atom/movable/item_storage = null) + return FALSE + +/obj/item/clothing/accessory/bracer/fluff/xander_sthasha/gurgle_contaminate(var/atom/movable/item_storage = null) + return FALSE + +//Heroman3003:Lauren Zackson +/obj/item/clothing/accessory/collar/fluff/goldenstring + name = "golden string" + desc = "It appears to just be a length of gold-colored string attached to a simple plastic clasp, meant to be worn around the neck" + icon = 'icons/vore/custom_items_vr.dmi' + icon_override = 'icons/vore/custom_onmob_vr.dmi' + icon_state = "goldenstring" + item_state = "goldenstring" + w_class = ITEMSIZE_TINY + slot_flags = SLOT_TIE \ 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 b2c001ed3f..ff2c752e33 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1998,4 +1998,13 @@ name = "gold-trimmed hypospray" desc = "A gold-trimmed MKII hypospray. The name 'Kenzie Houser' is engraved on the side." icon = 'icons/vore/custom_items_vr.dmi' - icon_state = "kenziehypo" \ No newline at end of file + icon_state = "kenziehypo" + +//Semaun - Viktor Solothurn +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/viktor + name = "flask of expensive alcohol" + desc = "A standard vacuum-flask filled with good and expensive drink." + +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/viktor/Initialize() + ..() + reagents.add_reagent("pwine", 60) \ No newline at end of file diff --git a/config/custom_items.txt b/config/custom_items.txt index e77b043178..42912d4969 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -60,6 +60,12 @@ character_name: Lethe item_path: /obj/item/clothing/head/helmet/hos/fluff/lethe } +{ +ckey: aegisoa +character_name: Xander Bevin +item_path: /obj/item/clothing/accessory/bracer/fluff/xander_sthasha +} + { ckey: argobargsoup character_name: Lynn Shady @@ -262,6 +268,18 @@ item_path: /obj/item/weapon/implanter/reagent_generator/eldi } # ######## H CKEYS +{ +ckey: heroman3003 +character_name: Lauren Zackson +item_path: /obj/item/clothing/accessory/medal/conduct +} + +{ +ckey: heroman3003 +character_name: Lauren Zackson +item_path: /obj/item/clothing/accessory/collar/fluff/goldenstring +} + { ckey: hottokeeki character_name: Belle Day @@ -556,6 +574,12 @@ item_path: /obj/item/clothing/suit/security/navyhos req_access: 58 } +{ +ckey: mr_signmeup +character_name: Daniel Fisher +item_path: /obj/item/clothing/accessory/medal/conduct +} + # ######## N CKEYS { ckey: natje @@ -648,6 +672,12 @@ character_name: Joseph Skinner item_path: /obj/item/clothing/under/rank/security/fluff/formalsec } +{ +ckey: semaun +character_name: Viktor Solothurn +item_path: /obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/viktor +} + { ckey: scree character_name: Scree @@ -869,6 +899,12 @@ item_path: /obj/item/clothing/mask/gas/sexymime } # ######## W CKEYS +{ +ckey: wanderingdeviant +character_name: S'thasha Tavakdavi +item_path: /obj/item/clothing/accessory/bracer/fluff/xander_sthasha +} + { ckey: werebear character_name: Silas Newton diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index 1402c72ccc..b38a0e2113 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi index 3b41ff2020..d94c0da70d 100644 Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ