/spell/targeted/torment name = "Torment" desc = "this spell causes pain to all those in its radius." feedback = "TM" school = "evocation" charge_max = 150 spell_flags = 0 invocation = "RAI DI KAAL" invocation_type = SpI_SHOUT range = 5 level_max = list(Sp_TOTAL = 1, Sp_SPEED = 0, Sp_POWER = 1) cooldown_min = 50 message = "So much pain! All you can hear is screaming!" max_targets = 0 compatible_mobs = list(/mob/living/carbon/human) var/loss = 30 hud_state = "wiz_horse" /spell/targeted/torment/cast(var/list/targets, var/mob/user) gibs(user.loc) for(var/mob/living/carbon/human/H in targets) H.adjustHalLoss(loss) /spell/targeted/torment/empower_spell() if(!..()) return 0 loss += 30 return "[src] will now cause more pain."