mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
[MIRROR] People wearing kitty ears can have their tails pulled [MDB IGNORE] (#17152)
* People wearing kitty ears can have their tails pulled (#70759) Extends tail pulling to people wearing kitty ears. If you pull on their fake tail it will tip off and give you a mood debuff for ripping someone's tail off. Added a new sound cloth_rip.ogg, a shortened version of dimensional_rend.ogg with one ripping noise. * People wearing kitty ears can have their tails pulled Co-authored-by: Thunder12345 <Thunder12345@users.noreply.github.com>
This commit is contained in:
@@ -410,3 +410,8 @@
|
||||
description = "I just got squeezed way too hard."
|
||||
mood_change = -1
|
||||
timeout = 2 MINUTES
|
||||
|
||||
/datum/mood_event/rippedtail
|
||||
description = "I ripped their tail right off, what have I done!"
|
||||
mood_change = -5
|
||||
timeout = 30 SECONDS
|
||||
|
||||
@@ -512,6 +512,17 @@
|
||||
else
|
||||
add_mood_event("tailpulled", /datum/mood_event/tailpulled)
|
||||
|
||||
else if ((helper.zone_selected == BODY_ZONE_PRECISE_GROIN) && (istype(head, /obj/item/clothing/head/costume/kitty) || istype(head, /obj/item/clothing/head/collectable/kitty)))
|
||||
var/obj/item/clothing/head/faketail = head
|
||||
helper.visible_message(span_danger("[helper] pulls on [src]'s tail... and it rips off!"), \
|
||||
null, span_hear("You hear a ripping sound."), DEFAULT_MESSAGE_RANGE, list(helper, src))
|
||||
to_chat(helper, span_danger("You pull on [src]'s tail... and it rips off!"))
|
||||
to_chat(src, span_userdanger("[helper] pulls on your tail... and it rips off!"))
|
||||
playsound(loc, 'sound/effects/cloth_rip.ogg', 75, TRUE)
|
||||
dropItemToGround(faketail)
|
||||
helper.put_in_hands(faketail)
|
||||
helper.add_mood_event("rippedtail", /datum/mood_event/rippedtail)
|
||||
|
||||
else
|
||||
if (helper.grab_state >= GRAB_AGGRESSIVE)
|
||||
helper.visible_message(span_notice("[helper] embraces [src] in a tight bear hug!"), \
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user