Files
Kashargul 5926589c16 removes var/ inside all procs (#19450)
* removes var/ inside all procs

* .

* ugh
2026-05-05 10:55:17 +02:00

21 lines
505 B
Plaintext

/obj/item/projectile/energy/fireball
name = "fireball"
icon_state = "fireball2"
damage = 15
damage_type = BURN
check_armour = "bomb"
armor_penetration = 25 // It's a great ball of fire.
combustion = TRUE
/obj/item/projectile/energy/fireball/on_hit(atom/target, blocked = 0)
new /obj/effect/explosion(get_turf(target))
explosion(target, -1, 0, 2)
..()
/obj/item/projectile/energy/fireball/on_impact(atom/target)
new /obj/effect/explosion(get_turf(target))
explosion(target, -1, 0, 2)
..()