Skip to content

Commit

Permalink
what the fuck?
Browse files Browse the repository at this point in the history
  • Loading branch information
SapphicOverload committed Sep 13, 2024
1 parent 1f6f9d2 commit 25b83e4
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions monkestation/code/modules/admin/smites/rip_and_tear.dm
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/datum/smite/rip_and_tear
name = "rip and tear those tendons"

/datum/smite/rip_and_tear/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/carbon_target = target
for(var/_limb in carbon_target.bodyparts)
var/obj/item/bodypart/limb = _limb // fine to use this raw, its a meme smite
var/type_wound = pick(list(/datum/wound/muscle/severe, /datum/wound/muscle/moderate))
limb.force_wound_upwards(type_wound, smited = TRUE)
type_wound = pick(list( /datum/wound/muscle/severe, /datum/wound/muscle/moderate))
limb.force_wound_upwards(type_wound, smited = TRUE)
type_wound = pick(list(/datum/wound/muscle/moderate, /datum/wound/muscle/severe))
limb.force_wound_upwards(type_wound, smited = TRUE)
/datum/smite/rip_and_tear
name = "rip and tear those tendons"

/datum/smite/rip_and_tear/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/carbon_target = target
for(var/_limb in carbon_target.bodyparts)
var/obj/item/bodypart/limb = _limb // fine to use this raw, its a meme smite
var/type_wound = pick(list(/datum/wound/muscle/severe, /datum/wound/muscle/moderate))
limb.force_wound_upwards(type_wound, smited = TRUE)
type_wound = pick(list( /datum/wound/muscle/severe, /datum/wound/muscle/moderate))
limb.force_wound_upwards(type_wound, smited = TRUE)
type_wound = pick(list(/datum/wound/muscle/moderate, /datum/wound/muscle/severe))
limb.force_wound_upwards(type_wound, smited = TRUE)

0 comments on commit 25b83e4

Please sign in to comment.