mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-16 02:24:11 +01:00
c68fea7cba
* 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>
20 lines
775 B
Plaintext
20 lines
775 B
Plaintext
/obj/item/book/granter/crafting_recipe/trash_cannon
|
|
name = "diary of a demoted engineer"
|
|
desc = "A lost journal. The engineer seems very deranged about their demotion."
|
|
crafting_recipe_types = list(
|
|
/datum/crafting_recipe/trash_cannon,
|
|
/datum/crafting_recipe/trashball,
|
|
)
|
|
icon_state = "book1"
|
|
remarks = list(
|
|
"\"I'll show them! I'll build a CANNON!\"",
|
|
"\"Gunpowder is ideal, but i'll have to improvise...\"",
|
|
"\"I savor the look on the CE's face when I BLOW down the walls to engineering!\"",
|
|
"\"If the supermatter gets loose from my rampage, so be it!\"",
|
|
"\"I'VE GONE COMPLETELY MENTAL!\"",
|
|
)
|
|
|
|
/obj/item/book/granter/crafting_recipe/trash_cannon/recoil(mob/living/user)
|
|
to_chat(user, span_warning("The book turns to dust in your hands."))
|
|
qdel(src)
|