mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 03:59:59 +01:00
* 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>
21 lines
592 B
Plaintext
21 lines
592 B
Plaintext
/obj/item/book/granter/action/spell/charge
|
|
granted_action = /datum/action/cooldown/spell/charge
|
|
action_name = "charge"
|
|
icon_state ="bookcharge"
|
|
desc = "This book is made of 100% postconsumer wizard."
|
|
remarks = list(
|
|
"I feel ALIVE!",
|
|
"I CAN TASTE THE MANA!",
|
|
"What a RUSH!",
|
|
"I'm FLYING through these pages!",
|
|
"THIS GENIUS IS MAKING IT!",
|
|
"This book is ACTION PAcKED!",
|
|
"HE'S DONE IT",
|
|
"LETS GOOOOOOOOOOOO",
|
|
)
|
|
|
|
/obj/item/book/granter/action/spell/charge/recoil(mob/living/user)
|
|
. = ..()
|
|
to_chat(user,span_warning("[src] suddenly feels very warm!"))
|
|
empulse(src, 1, 1)
|