Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 064597e

Browse files
authored
Changes a few food recipes (#20072)
1 parent 89cd656 commit 064597e

4 files changed

Lines changed: 14 additions & 9 deletions

File tree

code/modules/food_and_drinks/food/snacks_meat.dm

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
icon_state = "khinkali"
318318
list_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1, /datum/reagent/consumable/garlic = 1)
319319
tastes = list("meat" = 1, "onions" = 1, "garlic" = 1)
320-
foodtype = MEAT | GRAIN | RAW
320+
foodtype = MEAT | GRAIN | RAW | VEGETABLES
321321

322322
/obj/item/reagent_containers/food/snacks/rawkhinkali/MakeGrillable()
323323
AddComponent(/datum/component/grillable, /obj/item/reagent_containers/food/snacks/khinkali, rand(50 SECONDS, 60 SECONDS), TRUE)
@@ -330,9 +330,8 @@
330330
bitesize = 3
331331
filling_color = "#F0F0F0"
332332
tastes = list("meat" = 1, "onions" = 1, "garlic" = 1)
333-
foodtype = MEAT
334333
burns_on_grill = TRUE
335-
foodtype = MEAT | GRAIN
334+
foodtype = MEAT | GRAIN | VEGETABLES
336335

337336
/obj/item/reagent_containers/food/snacks/enchiladas
338337
name = "enchiladas"
@@ -343,7 +342,7 @@
343342
filling_color = "#FFA07A"
344343
list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/capsaicin = 6)
345344
tastes = list("hot peppers" = 1, "meat" = 3, "cheese" = 1, "tortilla" = 1)
346-
foodtype = MEAT | GRAIN | VEGETABLES
345+
foodtype = MEAT | GRAIN | VEGETABLES | DAIRY
347346

348347
/obj/item/reagent_containers/food/snacks/chipsandsalsa
349348
name = "chips and salsa"

code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
reqs = list(
8383
/obj/item/reagent_containers/food/snacks/meat/cutlet = 2,
8484
/obj/item/reagent_containers/food/snacks/grown/chili = 2,
85-
/obj/item/reagent_containers/food/snacks/tortilla = 2
85+
/obj/item/reagent_containers/food/snacks/tortilla = 2,
86+
/obj/item/reagent_containers/food/snacks/cheesewedge = 1
8687
)
8788
result = /obj/item/reagent_containers/food/snacks/enchiladas
8889
category = CAT_MEAT
@@ -111,7 +112,9 @@
111112
name = "Raw Khinkali"
112113
reqs = list(
113114
/obj/item/reagent_containers/food/snacks/doughslice = 1,
114-
/obj/item/reagent_containers/food/snacks/meatball = 1
115+
/obj/item/reagent_containers/food/snacks/meatball = 1,
116+
/obj/item/reagent_containers/food/snacks/onion_slice = 1,
117+
/obj/item/reagent_containers/food/snacks/grown/garlic = 1
115118
)
116119
result = /obj/item/reagent_containers/food/snacks/rawkhinkali
117120
category = CAT_MEAT

code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
/datum/crafting_recipe/food/chocoorange
109109
name = "Chocolate Orange"
110110
reqs = list(
111-
/obj/item/reagent_containers/food/snacks/grown/citrus/orange = 1,
111+
/datum/reagent/consumable/orangejuice = 2,
112112
/obj/item/reagent_containers/food/snacks/chocolatebar = 1
113113
)
114114
result = /obj/item/reagent_containers/food/snacks/chocoorange

code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@
7474
name = "Mushroom Pizza"
7575
reqs = list(
7676
/obj/item/reagent_containers/food/snacks/flatdough = 1,
77-
/obj/item/reagent_containers/food/snacks/grown/mushroom = 5
77+
/obj/item/reagent_containers/food/snacks/grown/mushroom = 5,
78+
/obj/item/reagent_containers/food/snacks/cheesewedge = 1,
79+
/obj/item/reagent_containers/food/snacks/grown/tomato = 1
7880
)
7981
result = /obj/item/reagent_containers/food/snacks/pizza/mushroom/raw
8082
category = CAT_PIZZA
@@ -108,7 +110,8 @@
108110
/obj/item/reagent_containers/food/snacks/grown/eggplant = 1,
109111
/obj/item/reagent_containers/food/snacks/grown/carrot = 1,
110112
/obj/item/reagent_containers/food/snacks/grown/corn = 1,
111-
/obj/item/reagent_containers/food/snacks/grown/tomato = 1
113+
/obj/item/reagent_containers/food/snacks/grown/tomato = 1,
114+
/obj/item/reagent_containers/food/snacks/cheesewedge = 1
112115
)
113116
result = /obj/item/reagent_containers/food/snacks/pizza/vegetable/raw
114117
category = CAT_PIZZA

0 commit comments

Comments
 (0)