mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-29 19:42:42 +00:00
-removes the jaunt spell from the wizard corrupt form -increases the price of raise dead to two points -adds a new wizards spell; flesh to stone, that traps your target in a statue for some time -added a chance of creating a central command report everytime the lich is send back to his heart, telling the possible location of the heart
23 lines
789 B
Plaintext
23 lines
789 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."
|
|
feedback = "FS"
|
|
school = "transmutation"
|
|
charge_max = 600
|
|
spell_flags = NEEDSCLOTHES | SELECTABLE
|
|
range = 3
|
|
max_targets = 1
|
|
invocation = "STAUN EI"
|
|
invocation_type = SpI_SHOUT
|
|
amt_stunned = 5
|
|
cooldown_min = 200
|
|
cast_sound = 'sound/magic/FleshToStone.ogg'
|
|
|
|
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)
|
|
target.visible_message("<span class='danger'>[target] turns into a statue!</span>", "<span class='danger'>Your body turns into stone and you find yourself paralyzed!</span>")
|
|
return |