From d9613e7a25a438dc4e9a26f7c38049e145ea9c83 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 5 Apr 2015 22:12:47 +0200 Subject: [PATCH 1/2] Adds the most important suicide_act Lolzy suicide_act for the replica katana, as requested by nomzy-xilia --- code/game/objects/items/toys.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index aee0c667847..8df66c3eed3 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -429,6 +429,11 @@ attack_verb = list("attacked", "slashed", "stabbed", "sliced") hitsound = 'sound/weapons/bladeslice.ogg' +/obj/item/toy/katana/suicide_act(mob/user) + var/dmsg = pick("[user] tries to stab \the [src] into their abdomen, but it shatters! They looks as if they might die from the shame.","[user] tries to stab \the [src] into their abdomen, but \the [src] bends and breaks in half! They looks as if they might die from the shame.","[user] tries to slice their own throat, but the plastic blade has no sharpness, causing them to lose their balance, slip over, and break their neck with a loud snap!") + user.visible_message("[dmsg] It looks like they are trying to commit suicide.") + return (BRUTELOSS) + /* * Crayons */ From fcf6f268eec47a8d75cfa54387eaabe6ee25df97 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 5 Apr 2015 23:44:22 +0200 Subject: [PATCH 2/2] I can type, I swaer! --- code/game/objects/items/toys.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 8df66c3eed3..60f9beb8592 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -430,7 +430,7 @@ hitsound = 'sound/weapons/bladeslice.ogg' /obj/item/toy/katana/suicide_act(mob/user) - var/dmsg = pick("[user] tries to stab \the [src] into their abdomen, but it shatters! They looks as if they might die from the shame.","[user] tries to stab \the [src] into their abdomen, but \the [src] bends and breaks in half! They looks as if they might die from the shame.","[user] tries to slice their own throat, but the plastic blade has no sharpness, causing them to lose their balance, slip over, and break their neck with a loud snap!") + var/dmsg = pick("[user] tries to stab \the [src] into their abdomen, but it shatters! They look as if they might die from the shame.","[user] tries to stab \the [src] into their abdomen, but \the [src] bends and breaks in half! They look as if they might die from the shame.","[user] tries to slice their own throat, but the plastic blade has no sharpness, causing them to lose their balance, slip over, and break their neck with a loud snap!") user.visible_message("[dmsg] It looks like they are trying to commit suicide.") return (BRUTELOSS)