diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm index f75ae256d5..f62080a6fc 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm @@ -229,6 +229,12 @@ ckeywhitelist = list("bricker98") character_name = list("Nettie Stough") +/datum/gear/fluff/tally_doll + path = /obj/item/remote_scene_tool/tally_necklace + display_name = "Custom Collar" + ckeywhitelist = list("bricker98") + character_name = list("Talenya Lapushkina") + /datum/gear/fluff/xin_sovietuniform path = /obj/item/clothing/under/soviet display_name = "Xin's Soviet Uniform" diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 6b6cfbbd35..9483f89a7e 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1580,3 +1580,33 @@ icon_override = 'icons/vore/custom_clothes_vr.dmi' icon_state = "kintacts" item_state = "kintacts_mob" + +//Bricker98: Talenya Lapushkina +/obj/item/remote_scene_tool/tally_necklace //A reskinned sticker for the collar, using a modified golden collar sprite + name = "link bell collar" + desc = "A collar with a seemingly simple golden bell that contains advanced bluespace tech inside, allowing it to link to, and even recall, a matching doll." + icon = 'icons/vore/custom_remote_scene_tools.dmi' + icon_override = 'icons/vore/custom_remote_scene_tools.dmi' + icon_state = "collar_inactive" + icon_root = "collar" + item_state = "on_mob_collar" + slot_flags = SLOT_MASK | SLOT_OCLOTHING + replacementType = /obj/item/remote_scene_tool/tally_doll + +/obj/item/remote_scene_tool/tally_necklace/mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0) + if(..()) + if(H.ckey != "bricker98") + if(!disable_warning) + to_chat(H, span_warning("The collar doesn't fit you!")) + return FALSE + return TRUE + +/obj/item/remote_scene_tool/tally_doll //A reskinned sticker for the doll, using a custom sprite + name = "Talenya's voodoo doll" + desc = "A cute custom plushie made to look like Talenya! With her bell and glassy beads for eyes, all the clothing articles are removable, it is incredibly detailed!" + icon = 'icons/vore/custom_remote_scene_tools.dmi' + icon_state = "doll_inactive" + icon_root = "doll" + slot_flags = NONE + can_summon = FALSE + can_replace = FALSE diff --git a/icons/vore/custom_remote_scene_tools.dmi b/icons/vore/custom_remote_scene_tools.dmi new file mode 100644 index 0000000000..f371eef52b Binary files /dev/null and b/icons/vore/custom_remote_scene_tools.dmi differ