Killer dildo addition

Added a killer dildo, Will kill you if you suicide with it twice. Does 100 brute, 20 oxy dmg, and stuns for 400 ticks.
item id: "obj/item/dildo/flared/killer"

Added the killer dildo sprite "dildo_flared_6"
This commit is contained in:
mirrormagic1
2022-04-24 18:38:35 -04:00
parent 7521766613
commit 2a33f33487
2 changed files with 20 additions and 1 deletions
@@ -129,6 +129,13 @@ obj/item/dildo/flared/gigantic
desc = "You can barely carry this thing! Meant for... \"advanced\" interrogation techniques."
dildo_size = 5
attack_verb = list("penetrated", "slapped", "gaped", "prolapsed", "inseminated", "destroyed", "broke", "demolished", "whacked")
//killerdildokillerdildo
obj/item/dildo/flared/killer
name = "bitch killer"
desc = "The fact you're able to carry this is insane. Initally made to be used as a new death penalty, Using this will definitely kill you."
dildo_size = 6
attack_verb = list("penetrated", "beat", "gaped", "prolapsed", "destroyed", "broke", "demolished", "whacked", "bruised", "tore")
obj/item/dildo/custom
name = "customizable dildo"
@@ -138,6 +145,7 @@ obj/item/dildo/custom
random_shape = TRUE
random_size = TRUE
// Suicide acts, by request
/obj/item/dildo/proc/manual_suicide(mob/living/user)
@@ -173,4 +181,15 @@ obj/item/dildo/custom
user.adjust_eye_damage(20)
user.adjustOxyLoss(15)
return MANUAL_SUICIDE
// Two tries, then you're dead bud.
/obj/item/dildo/flared/killer/suicide_act(mob/living/user)
if(do_after(user,45,target=src))
user.visible_message("<span class='suicide'>[user] screams in pain as they insert the [src] into their ass! WHY WOULD THEY DO THAT? It looks like [user.p_theyre()] trying to commit suicide!!</span>")
playsound(loc, 'sound/voice/scream/scream_r.ogg', 50, 2, -1)
playsound(loc, 'sound/lewd/champ_fingering.ogg', 50, 2, -1)
playsound(loc, 'sound/effects/gib_step.ogg', 50, 2, -1)
user.Stun(400)
user.adjust_blurriness(24)
user.adjustBruteLoss(100)
user.adjustOxyLoss(20)
return MANUAL_SUICIDE