Files
Qwertytoforty d42d2f647d Added the Combat Bakery Kit (#21901)
* QUASO

* Apply suggestions from code review

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>

* blame lewc for giving me spaces

* Update code/datums/uplink_items/uplink_traitor.dm

Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>

* Update code/datums/components/boomerang.dm

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>

* Update code/game/objects/items/granters/_granters.dm

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>

* purge that

---------

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
2023-09-13 21:32:30 +01:00

20 lines
778 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 class='warning'>The book dissolves into burnt flour!</span>")
new /obj/effect/decal/cleanable/ash(get_turf(src))
qdel(src)