From 368fbaf23124acbe19557e7a56005a58b3e3480a Mon Sep 17 00:00:00 2001 From: DexeeXI <120314509+DexeeXI@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:14:54 -0600 Subject: [PATCH] expansion adjustments name adjusted to be plainly obvious that one kills. added a second one that just plain strips'm and drops'm to the floor. --- .../{dagothsmite.dm => dagothkillsmite.dm} | 10 ++++++---- .../modules/admin/smites/dagothstripsmite.dm | 17 +++++++++++++++++ tgstation.dme | 3 ++- 3 files changed, 25 insertions(+), 5 deletions(-) rename monkestation/code/modules/admin/smites/{dagothsmite.dm => dagothkillsmite.dm} (66%) create mode 100644 monkestation/code/modules/admin/smites/dagothstripsmite.dm diff --git a/monkestation/code/modules/admin/smites/dagothsmite.dm b/monkestation/code/modules/admin/smites/dagothkillsmite.dm similarity index 66% rename from monkestation/code/modules/admin/smites/dagothsmite.dm rename to monkestation/code/modules/admin/smites/dagothkillsmite.dm index 758753a4a54c..e8c58260673d 100644 --- a/monkestation/code/modules/admin/smites/dagothsmite.dm +++ b/monkestation/code/modules/admin/smites/dagothkillsmite.dm @@ -1,8 +1,10 @@ -// Dagoth Smite! (ported from Biblefart code) - Dexee -/datum/smite/dagothsmite - name = "Dagoth Smite" +// Dagoth KILL Smite! (ported from Biblefart code) - Dexee +// tweaked the name of this to make it extremely apparent that someone's gonna get fucked up. completely and utterly apparent. will be making a separate funny smite that doesn't kill -/datum/smite/dagothsmite/effect(client/user, mob/living/target) +/datum/smite/dagothkillsmite + name = "Dagoth KILL Smite" + +/datum/smite/dagothkillsmite/effect(client/user, mob/living/target) . = ..() if (!iscarbon(target)) to_chat(user, span_warning("This must be used on a carbon mob."), confidential = TRUE) diff --git a/monkestation/code/modules/admin/smites/dagothstripsmite.dm b/monkestation/code/modules/admin/smites/dagothstripsmite.dm new file mode 100644 index 000000000000..89839cd60fa1 --- /dev/null +++ b/monkestation/code/modules/admin/smites/dagothstripsmite.dm @@ -0,0 +1,17 @@ +// The Dagoth Strip! To have something that doesn't kill but you still wanna humiliate someone! -Dexee + +/datum/smite/dagothstripsmite + name = "Dagoth STRIP" + +/datum/smite/dagothstripsmite/effect(client/user, mob/living/target) + . = ..() + if (!iscarbon(target)) + to_chat(user, span_warning("This must be used on a carbon mob."), confidential = TRUE) + return + var/mob/living/carbon/human/Person = target + to_chat(Person,span_ratvar("Why have you come unprepared?")) + Person.unequip_everything() + Person.Paralyze(15) + playsound(target,'monkestation/sound/misc/dagothgod.ogg', 80) + return + diff --git a/tgstation.dme b/tgstation.dme index 40386788a387..e995c3261f6d 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -5551,7 +5551,8 @@ #include "monkestation\code\modules\admin\antag_tokens.dm" #include "monkestation\code\modules\admin\camera_view.dm" #include "monkestation\code\modules\admin\ggg\where_are_your_fingers.dm" -#include "monkestation\code\modules\admin\smites\dagothsmite.dm" +#include "monkestation\code\modules\admin\smites\dagothkillsmite.dm" +#include "monkestation\code\modules\admin\smites\dagothstripsmite.dm" #include "monkestation\code\modules\aesthetics\airlock\airlock.dm" #include "monkestation\code\modules\aesthetics\items\clothing.dm" #include "monkestation\code\modules\aesthetics\mapping\tilecoloring.dm"