Skip to content

Commit

Permalink
expansion adjustments
Browse files Browse the repository at this point in the history
name adjusted to be plainly obvious that one kills. added a second one that just plain strips'm and drops'm to the floor.
  • Loading branch information
DexeeXI committed Nov 1, 2023
1 parent 9bb5ca6 commit 368fbaf
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
17 changes: 17 additions & 0 deletions monkestation/code/modules/admin/smites/dagothstripsmite.dm
Original file line number Diff line number Diff line change
@@ -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

3 changes: 2 additions & 1 deletion tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 368fbaf

Please sign in to comment.