mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 17:45:02 +01:00
8ee1cd2474
## About The Pull Request closes #93805 ## Why It's Good For The Game we actually have almost no emp logging at all lol, not even emp chem reaction, so you barely can track potential griefer? ## Changelog 🆑 admin: EMP logs are improved, additionally chemical EMP reactions are now logged. /🆑
22 lines
611 B
Plaintext
22 lines
611 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, emp_source = src)
|
|
|