mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-07-20 20:22:56 +01:00
c8983e1b03
AKA [PORT] Refactors smiting, adds smite build mode tgstation/tgstation#55327 !! NOT!! A!! RUNNING!! BUILD!! LIGHTNING IS BROKEN IMMERSE IS COMMENTED OUT HALF OF THIS SHIT IS BROKEN DO NOT BASE YOURSELF ON THIS BUILD!!
13 lines
412 B
Plaintext
13 lines
412 B
Plaintext
/// Gives the target fake scars
|
|
/datum/smite/scarify
|
|
name = "Scarify"
|
|
|
|
/datum/smite/scarify/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/dude = target
|
|
dude.generate_fake_scars(rand(1, 4))
|
|
to_chat(dude, span_warning("You feel your body grow jaded and torn..."))
|