mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-16 01:23:41 +01:00
d42d2f647d
* 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>
20 lines
778 B
Plaintext
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)
|