mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-29 07:36:58 +01:00
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!!
11 lines
287 B
Plaintext
11 lines
287 B
Plaintext
/// Cluwneifies the target
|
|
/datum/smite/cluwne
|
|
name = "Cluwne"
|
|
|
|
/datum/smite/cluwne/effect(client/user, mob/living/carbon/human/target as mob)
|
|
. = ..()
|
|
if(!iscarbon(target))
|
|
to_chat(usr,"<span class='warning'>This must be used on a carbon mob.</span>")
|
|
return
|
|
target.cluwneify()
|