-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
3 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
10 changes: 6 additions & 4 deletions
10
.../code/modules/admin/smites/dagothsmite.dm → ...e/modules/admin/smites/dagothkillsmite.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
monkestation/code/modules/admin/smites/dagothstripsmite.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters