diff --git a/code/modules/food/recipes_microwave_vr.dm b/code/modules/food/recipes_microwave_vr.dm index d5565824e9..5fadc6d118 100644 --- a/code/modules/food/recipes_microwave_vr.dm +++ b/code/modules/food/recipes_microwave_vr.dm @@ -192,4 +192,14 @@ items = list( /obj/item/weapon/reagent_containers/food/snacks/rawcutlet ) - result = /obj/item/weapon/reagent_containers/food/snacks/tocino \ No newline at end of file + result = /obj/item/weapon/reagent_containers/food/snacks/tocino + +/datum/recipe/garlicbread + reagents = list("sodiumchloride" = 2, "blackpepper" = 2) + fruit = list("onion" = 1) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/cheesewedge, + /obj/item/weapon/reagent_containers/food/snacks/slice/bread, + /obj/item/weapon/reagent_containers/food/snacks/slice/bread + ) + result = /obj/item/weapon/reagent_containers/food/snacks/garlicbread \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 91fe4241f8..38121665a2 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -2240,35 +2240,35 @@ /datum/chemical_reaction/drinks/bubbleteawatermelon name = "Watermelon bubble tea" id = "bubbleteawatermelon" - result = "watermelon bubble tea" + result = "watermelonbubbletea" required_reagents = list("gelatin" = 2, "watermelontea" = 6, "milk" = 2) result_amount = 10 /datum/chemical_reaction/drinks/bubbleteastrawberry name = "Strawberry bubble tea" id = "bubbleteastrawberry" - result = "strawberry bubble tea" + result = "strawberrybubbletea" required_reagents = list("gelatin" = 2, "berrytea" = 6, "milk" = 2) result_amount = 10 /datum/chemical_reaction/drinks/bubbleteacherry name = "Cherry bubble tea" id = "bubbleteacherry" - result = "cherry bubble tea" + result = "cherrybubbletea" required_reagents = list("gelatin" = 2, "cherrytea" = 6, "milk" = 2) result_amount = 10 /datum/chemical_reaction/drinks/bubbleteacoffee name = "Coffee bubble tea" id = "bubbleteacoffee" - result = "coffee bubble tea" + result = "coffeebubbletea" required_reagents = list("gelatin" = 2, "tea" = 5, "cafe_latte" = 3) result_amount = 10 /datum/chemical_reaction/drinks/bubbleteabanana name = "Banana bubble tea" id = "bubbleteabanana" - result = "banana bubble tea" + result = "bananabubbletea" required_reagents = list("gelatin" = 2, "tea" = 5, "banana" = 1, "milk" = 2) result_amount = 10 diff --git a/code/modules/reagents/reagent_containers/food/snacks_vr.dm b/code/modules/reagents/reagent_containers/food/snacks_vr.dm index 9b9fcb5ce3..e102328fe6 100644 --- a/code/modules/reagents/reagent_containers/food/snacks_vr.dm +++ b/code/modules/reagents/reagent_containers/food/snacks_vr.dm @@ -356,6 +356,18 @@ ..() bitesize = 3 +/obj/item/weapon/reagent_containers/food/snacks/garlicbread + name = "Garlic bread" + desc = "Two slices of bread cooked with garlic, cheese and herbs on top to make a delicious sidedish." + icon = 'icons/obj/food.dmi' + icon_state = "garlicbread" + nutriment_amt = 2 + nutriment_desc = list("onions and melted cheese" = 2, "bread and seasonings" = 2) + +/obj/item/weapon/reagent_containers/food/snacks/garlicbread/New() + ..() + bitesize = 3 + /obj/item/weapon/reagent_containers/food/snacks/monkeycube/sobakacube name = "sobaka cube" monkey_type = "Sobaka" diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi index c8ad22b155..d3bac96aab 100644 Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ