diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index 2a6b9b8335..e43c425b6e 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -1006,6 +1006,34 @@ override = 1 item_state = "tesh_cloak_saroth" +/obj/item/clothing/accessory/poncho/cloak/fluff/Jaree + name = "plain cloak" + desc = "A plain cloak to be worn for warmth or comfort. Looks cozy." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "jaree_cloak" + icon_override = 'icons/vore/custom_onmob_yw.dmi' + item_state = "jaree_cloak" + override = 1 + +/obj/item/clothing/head/ushanka/alt/fluff/Jaree + name = "ushanka" + desc = "Perfect for winter in Siberia, da?" + icon_state = "ushanka2down" + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_override = 'icons/vore/custom_onmob_yw.dmi' + item_state = "ushanka2down" + flags_inv = HIDEEARS + +/obj/item/clothing/head/ushanka/alt/fluff/Jaree/attack_self(mob/user as mob) + if(src.icon_state == "ushanka2down") + src.icon_state = "ushanka2up" + src.item_state = "ushanka2up" + user << "You raise the ear flaps on the ushanka." + else + src.icon_state = "ushanka2down" + src.item_state = "ushanka2down" + user << "You lower the ear flaps on the ushanka." + // ****** // Benl8561 // ****** diff --git a/code/modules/vore/fluffstuff/custom_items_yw.dm b/code/modules/vore/fluffstuff/custom_items_yw.dm index 3b07d64b2a..2a3f719706 100644 --- a/code/modules/vore/fluffstuff/custom_items_yw.dm +++ b/code/modules/vore/fluffstuff/custom_items_yw.dm @@ -459,4 +459,12 @@ icon_state = "modkit" from_suit = /obj/item/clothing/head/helmet - to_suit = /obj/item/clothing/head/helmet/fluff/skinner \ No newline at end of file + to_suit = /obj/item/clothing/head/helmet/fluff/skinner + +// ************** +// DeepIndigo +// ************** + +/obj/item/weapon/storage/bible/fluff/amina + name = "New Space Pioneer's Bible" + desc = "This one says it was printed in 2492. The name \"Eric Hayvers\" is written on the inside of the cover, crossed out. Under it is written \"Kouri, Amina, Marine Unit 14, Fifth Echelon. Service number NTN-5528928522372\"" \ No newline at end of file diff --git a/config/custom_items.txt b/config/custom_items.txt index 61f4569ae9..ce598b2d3c 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -162,6 +162,24 @@ ckey: dushka character_name: Saroth item_path: /obj/item/weapon/storage/box/fluff/saroth } + +{ +ckey: dushka +character_name: Jaree-Kur +item_path: /obj/item/clothing/accessory/poncho/cloak/fluff/Jaree +} + +{ +ckey: dushka +character_name: Jaree-Kur +item_path: /obj/item/clothing/head/ushanka/alt/fluff/Jaree +} + +{ +ckey: deepindigo +character_name: Amina Dae-Kouri +item_path: /obj/item/weapon/storage/bible/fluff/amina +} # ######## E CKEYS { ckey: esperkin diff --git a/icons/vore/custom_clothes_yw.dmi b/icons/vore/custom_clothes_yw.dmi index 42c3c611ee..9ff270281d 100644 Binary files a/icons/vore/custom_clothes_yw.dmi and b/icons/vore/custom_clothes_yw.dmi differ diff --git a/icons/vore/custom_onmob_yw.dmi b/icons/vore/custom_onmob_yw.dmi index 2ec6026d59..f5a6e0018b 100644 Binary files a/icons/vore/custom_onmob_yw.dmi and b/icons/vore/custom_onmob_yw.dmi differ