Adds new foods, fixed food bug and 1 food tweak (#18356)

* created a PR

with a whole buncha stuff :D

* Update recipes_breads.dm
This commit is contained in:
tomixcomics
2024-02-08 12:30:19 +00:00
committed by GitHub
parent f42e7dd388
commit f05a932212
17 changed files with 186 additions and 2 deletions
@@ -322,6 +322,17 @@
reagent_data = list(/singleton/reagent/nutriment = list("dryness" = 2, "bread" = 2))
bitesize = 1
/obj/item/reagent_containers/food/snacks/angry_bread
name = "angry bread"
desc = "Slices of flatbread with strips of grilled or ground xenomeat lying on top of thinly sliced grilled carrots, topped with walnuts, spices and/or grated cheddar. This recipe was created by a miner from New Gibson who runs a food blog."
icon = 'icons/obj/item/reagent_containers/food/bread.dmi'
icon_state = "angrybread"
bitesize = 5
trash = /obj/item/trash/plate
filling_color = "#1d5a25"
reagents_to_add = list(/singleton/reagent/nutriment = 5, /singleton/reagent/nutriment/protein = 9)
reagent_data = list(/singleton/reagent/nutriment = list("toasted bread" = 10, "carrot" = 6), /singleton/reagent/nutriment/protein = list("nutty umami meat" = 10, "cheese" = 5))
//================================
// Toasts and Toasted Sandwiches
//================================
@@ -199,3 +199,41 @@
reagents_to_add = list(/singleton/reagent/nutriment = 5)
reagent_data = list(/singleton/reagent/nutriment = list("chives" = 2))
bitesize = 3
/obj/item/reagent_containers/food/snacks/custard
name = "custard"
desc = "A lovely dessert that can also be used to make other, much less lazy desserts."
icon = 'icons/obj/item/reagent_containers/food/confections.dmi'
icon_state = "custard"
trash = /obj/item/trash/custard_bowl
filling_color = "#ebedc2"
reagents_to_add = list(/singleton/reagent/nutriment = 3, /singleton/reagent/nutriment/protein/egg = 2, /singleton/reagent/nutriment/glucose = 5)
reagent_data = list(/singleton/reagent/nutriment = list("custard" = 5))
bitesize = 2
drop_sound = 'sound/items/drop/glass.ogg'
pickup_sound = 'sound/items/pickup/glass.ogg'
is_liquid = TRUE
//Custard + blowtorch = creme brulee
/obj/item/reagent_containers/food/snacks/custard/attackby(obj/item/W, mob/living/user)
. = ..()
if(W.iswelder())
var/obj/item/weldingtool/welder = W
if(welder.isOn())
new /obj/item/reagent_containers/food/snacks/creme_brulee(src)
to_chat(user, "You apply the flame to the sugary custard, caramelizing it.")
playsound(get_turf(src), 'sound/items/flare.ogg', 100, 1)
qdel(src)
/obj/item/reagent_containers/food/snacks/creme_brulee
name = "creme brulee"
desc = "You know what would makes a nice, sweet dessert better? A BLOWTORCH!"
icon = 'icons/obj/item/reagent_containers/food/confections.dmi'
icon_state = "brulee"
trash = /obj/item/trash/custard_bowl
filling_color = "#e9c35b"
reagents_to_add = list(/singleton/reagent/nutriment = 3, /singleton/reagent/nutriment/protein/egg = 1, /singleton/reagent/nutriment/glucose = 2, /singleton/reagent/nutriment/caramel = 4)
reagent_data = list(/singleton/reagent/nutriment = list("custard" = 5))
bitesize = 2
drop_sound = 'sound/items/drop/glass.ogg'
pickup_sound = 'sound/items/pickup/glass.ogg'
@@ -101,7 +101,7 @@
/obj/item/reagent_containers/food/snacks/bacon_stick
name = "eggpop"
desc = "A bacon wrapped boiled egg, conviently skewered on a wooden stick."
icon = 'icons/obj/item/reagent_containers/food/egg.dmi'
icon = 'icons/obj/item/reagent_containers/food/cultural/unathi.dmi'
icon_state = "bacon_stick"
reagents_to_add = list(/singleton/reagent/nutriment/protein = 3, /singleton/reagent/nutriment/protein/egg = 1)
filling_color = "#FFFEE8"
@@ -202,3 +202,14 @@
reagents_to_add = list(/singleton/reagent/nutriment/protein/egg = 3, /singleton/reagent/nutriment = 4)
reagent_data = list(/singleton/reagent/nutriment = list("zesty tomatoes" = 4))
filling_color = "#BB2912"
/obj/item/reagent_containers/food/snacks/eggs_benedict
name = "eggs benedict"
gender = PLURAL
desc = "A dish consisting of poached eggs and sliced ham on half a toasted english muffin, then covered with hollandaise sauce. Usually served in pairs."
icon = 'icons/obj/item/reagent_containers/food/egg.dmi'
icon_state = "benedict"
reagents_to_add = list(/singleton/reagent/nutriment/protein/egg = 6, /singleton/reagent/nutriment/protein = 2, /singleton/reagent/nutriment = 4)
reagent_data = list(/singleton/reagent/nutriment/protein/egg = list("rich, creamy eggs" = 10), /singleton/reagent/nutriment = list("toasted bread" = 5, "ham" = 3))
filling_color = "#ebcd49"
bitesize = 3
@@ -385,3 +385,25 @@
filling_color = "#74812c"
reagents_to_add = list(/singleton/reagent/nutriment = 3)
reagent_data = list(/singleton/reagent/nutriment = list("fried chickpeas" = 3))
/obj/item/reagent_containers/food/snacks/fries_olympia_with_cheese
name = "fries olympia with cheese"
gender = PLURAL
desc = "A simple Martian street food dish of crispy spiral-cut potatoes that are cut in two, deep fried, coated in paprika, and optionally covered in molten cheese. This is the cheesy version! It is sometimes called 'Chips Olympia', especially after 'Fries Olympia' became the punch line to a bunch of dark jokes about Violet Dawn."
icon = 'icons/obj/item/reagent_containers/food/fryer.dmi'
icon_state = "fries_olympia_cheesy"
filling_color = "#c0871d"
bitesize = 3
reagents_to_add = list(/singleton/reagent/nutriment = 4, /singleton/reagent/nutriment/triglyceride/oil = 1.2, /singleton/reagent/capsaicin = 2, /singleton/reagent/nutriment/protein/cheese = 3)
reagent_data = list(/singleton/reagent/nutriment = list("crispy potato" = 5), /singleton/reagent/capsaicin = list("paprika" = 5))
/obj/item/reagent_containers/food/snacks/fries_olympia
name = "fries olympia"
gender = PLURAL
desc = "A simple Martian street food dish of crispy spiral-cut potatoes that are cut in two, deep fried, coated in paprika, and optionally covered in molten cheese. This is the non-cheesy version! It is sometimes called 'Chips Olympia', especially after 'Fries Olympia' became the punch line to a bunch of dark jokes about Violet Dawn."
icon = 'icons/obj/item/reagent_containers/food/fryer.dmi'
icon_state = "fries_olympia_no_cheese"
filling_color = "#c0871d"
bitesize = 3
reagents_to_add = list(/singleton/reagent/nutriment = 4, /singleton/reagent/nutriment/triglyceride/oil = 1.2, /singleton/reagent/capsaicin = 2)
reagent_data = list(/singleton/reagent/nutriment = list("crispy potato" = 5), /singleton/reagent/capsaicin = list("paprika" = 5))