mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
20 lines
763 B
Plaintext
20 lines
763 B
Plaintext
/obj/item/book/granter/crafting_recipe/combat_baking
|
|
name = "the anarchist's cookbook"
|
|
desc = "A widely illegal recipe book which will teach you how to bake croissants to die for."
|
|
crafting_recipe_types = list(
|
|
/datum/crafting_recipe/throwing_croissant
|
|
)
|
|
icon_state = "cooking_learing_illegal"
|
|
remarks = list(
|
|
"\"Austrian? Not French?\"",
|
|
"\"Got to get the butter ratio right...\"",
|
|
"\"This is the greatest thing since sliced bread!\"",
|
|
"\"I'll leave no trace except crumbs!\"",
|
|
"\"Who knew that bread could hurt a man so badly?\""
|
|
)
|
|
|
|
/obj/item/book/granter/crafting_recipe/combat_baking/recoil(mob/living/user)
|
|
to_chat(user, SPAN_WARNING("The book dissolves into burnt flour!"))
|
|
new /obj/effect/decal/cleanable/ash(get_turf(src))
|
|
qdel(src)
|