Adds the requested club sandwich.

Torture your chef, today!

Recipe: 2 bread, 1 raw chicken breast, 1 raw bacon, 1 lettuce, 1 tomato, 1 cheese wedge, 5u mayonnaise.
This commit is contained in:
Doctress
2022-10-17 23:46:03 +10:30
parent 3e092d401e
commit 63fe84cb9a
3 changed files with 20 additions and 0 deletions
+9
View File
@@ -2104,6 +2104,15 @@
. = ..()
reagents.add_reagent("protein", 3)
/obj/item/reagent_containers/food/snacks/clubsandwich
name = "Club Sandwich"
desc = "Tastes like the good feelings when you're part of a clique."
icon_state = "clubsandwich"
trash = "obj/item/trash/plate"
nutriment_amt = 3
nutriment_desc = list("a galactic economy coming together in pursuit of mundane foods" = 3)
bitesize = 2
/obj/item/reagent_containers/food/snacks/toastedsandwich
name = "Toasted Sandwich"
desc = "Now if you only had a pepper bar."
+11
View File
@@ -235,6 +235,17 @@ I said no!
)
result = /obj/item/reagent_containers/food/snacks/jellysandwich/peanutbutter
/datum/recipe/clubsandwich
reagents = list("mayo" = 5)
items = list(
/obj/item/reagent_containers/food/snacks/slice/bread,
/obj/item/reagent_containers/food/snacks/slice/bread,
/obj/item/reagent_containers/food/snacks/meat/chicken,
/obj/item/reagent_containers/food/snacks/bacon,
/obj/item/reagent_containers/food/snacks/cheesewedge
)
fruit = list("tomato" = 1, "lettuce" = 1)
result = /obj/item/reagent_containers/food/snacks/clubsandwich
/datum/recipe/tomatosoup
fruit = list("tomato" = 2)