Reverts Incendiary Mitochondria

Instead of incendiary mitochondria being an uncounterable and
untraceable method of dealing massive mounts of burn damage to someone,
it has been reverted to what the power was originally.  It will now
ignite the user when cast. I realize this isn't very useful, but the
alternative is the power being removed altogether.
This commit is contained in:
SamCroswell
2015-01-24 01:16:00 -05:00
parent 34ec82913a
commit b19b7fc973
+5 -2
View File
@@ -320,11 +320,14 @@
icon_power_button = "genetic_incendiary"
/obj/effect/proc_holder/spell/wizard/targeted/immolate/cast(list/targets)
if(!targets.len)
/* if(!targets.len) Uncomment this to allow the power to be used on targets other than yourself. That said, if you uncomment this I will find you and hurt you. Uncounterable and untracable burn damage with a 60-second cooldown is fun for exactly one person, and that's the person who is using it.
usr << "<span class='notice'>No target found in range.</span>"
return
var/mob/living/carbon/L = targets[1]
var/mob/living/carbon/L = targets[1] */
var/mob/living/carbon/L = usr
L.adjust_fire_stacks(0.5) // Same as walking into fire. Was 100 (goon fire)
L.visible_message("\red <b>[L.name]</b> suddenly bursts into flames!")