Wizard Update Part 6

- Attempt to fix back sprite for new staffs.
- Fireball wand now has a proximity detonation similar to the fireball
spell.

Ported from /tg/.
This commit is contained in:
DZD
2015-01-15 15:50:10 -05:00
parent 9af973a835
commit 62c76ba2ef
5 changed files with 17 additions and 7 deletions
+4 -1
View File
@@ -17,7 +17,7 @@
/obj/item/projectile/magic/fireball
name = "bolt of fireball"
icon_state = "fireball"
damage = 25 //The spell fireball additionally does 20 burn, so the wand fireball is marginally less painful
damage = 10
damage_type = BRUTE
nodamage = 0
flag = "magic"
@@ -25,6 +25,9 @@
/obj/item/projectile/magic/fireball/on_hit(var/target)
var/turf/T = get_turf(target)
explosion(T, -1, 0, 2, 3, 0)
if(ismob(target)) //multiple flavors of pain
var/mob/living/M = target
M.take_overall_damage(0,10) //between this 10 burn, the 10 brute, the explosion brute, and the onfire burn, your at about 65 damage if you stop drop and roll immediately
/obj/item/projectile/magic/resurrection
name = "bolt of resurrection"