mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 02:56:14 +01:00
Adds fluff item: Tally's voodoo doll (#17891)
* fixed the fucky wucky * Changed Returns * I forgor the if 💀 Co-authored-by: ShadowLarkens <shadowlarkens@gmail.com> --------- Co-authored-by: VM_USER <VM_USER> Co-authored-by: ShadowLarkens <shadowlarkens@gmail.com>
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user