mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-03 05:21:27 +00: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
846 B
Plaintext
21 lines
846 B
Plaintext
/obj/item/book/granter/action/spell/forcewall
|
|
granted_action = /datum/action/cooldown/spell/forcewall
|
|
action_name = "forcewall"
|
|
icon_state ="bookforcewall"
|
|
desc = "This book has a dedication to mimes everywhere inside the front cover."
|
|
remarks = list(
|
|
"I can go through the wall! Neat.",
|
|
"Why are there so many mime references...?",
|
|
"This would cause much grief in a hallway...",
|
|
"This is some surprisingly strong magic to create a wall nobody can pass through...",
|
|
"Why the dumb stance? It's just a flick of the hand...",
|
|
"Why are the pages so hard to turn, is this even paper?",
|
|
"I can't mo Oh, i'm fine...",
|
|
)
|
|
|
|
/obj/item/book/granter/action/spell/forcewall/recoil(mob/living/user)
|
|
. = ..()
|
|
to_chat(user, span_warning("You suddenly feel very solid!"))
|
|
user.Stun(4 SECONDS, ignore_canstun = TRUE)
|
|
user.petrify(6 SECONDS)
|