Files
Bubberstation/code/game/objects/items/granters/magic/fireball.dm
SkyratBot c68fea7cba [MIRROR] Completely removes proc_holders from existence. Refactors all wizard, xeno, spider, and genetics powers to be actions. Also refactors and sorts ton of accompanying code. [MDB IGNORE] (#14666)
* Completely removes `proc_holders` from existence. Refactors all wizard, xeno, spider, and genetics powers to be actions. Also refactors and sorts ton of accompanying code.

* our changes

* yes

* 0

* Update blackmesa.dmm

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
2022-07-01 20:33:30 +01:00

28 lines
784 B
Plaintext

/obj/item/book/granter/action/spell/fireball
granted_action = /datum/action/cooldown/spell/pointed/projectile/fireball
action_name = "fireball"
icon_state ="bookfireball"
desc = "This book feels warm to the touch."
remarks = list(
"Aim...AIM, FOOL!",
"Just catching them on fire won't do...",
"Accounting for crosswinds... really?",
"I think I just burned my hand...",
"Why the dumb stance? It's just a flick of the hand...",
"OMEE... ONI... Ugh...",
"What's the difference between a fireball and a pyroblast...",
)
/obj/item/book/granter/action/spell/fireball/recoil(mob/living/user)
. = ..()
explosion(
user,
devastation_range = 1,
light_impact_range = 2,
flame_range = 2,
flash_range = 3,
adminlog = FALSE,
explosion_cause = src,
)
qdel(src)