mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-24 09:03:05 +00:00
Does offer a much more pleasant basis to work with in the future, if someone wishes to add more spell-like abilities.
21 lines
646 B
Plaintext
21 lines
646 B
Plaintext
/spell/targeted/flesh_to_stone
|
|
name = "Flesh to Stone"
|
|
desc = "This spell turns a single person into an inert statue for a long period of time."
|
|
|
|
school = "transmutation"
|
|
charge_max = 600
|
|
spell_flags = NEEDSCLOTHES
|
|
range = 3
|
|
max_targets = 1
|
|
invocation = "STAUN EI"
|
|
invocation_type = SpI_SHOUT
|
|
amt_stunned = 5//just exists to make sure the statue "catches" them
|
|
cooldown_min = 200 //100 deciseconds reduction per rank
|
|
|
|
hud_state = "wiz_statue"
|
|
|
|
/spell/targeted/flesh_to_stone/cast(var/list/targets, mob/user)
|
|
..()
|
|
for(var/mob/living/target in targets)
|
|
new /obj/structure/closet/statue(target.loc, target) //makes the statue
|
|
return |