Files
Aurora.3/code/modules/cooking/recipes/recipes_eggs.dm
T
738b72e0b9 Cytherian cuisine, Tajaran tastiness and food fixes (#21881)
<img width="209" height="212" alt="image_2026-02-18_163749448"
src="https://github.com/user-attachments/assets/dd40e552-6752-41bc-8c1f-1d6759ed19e5"
/>

-Adds Cytherian cuisine to the game with 4 specifically cytherian dishes
as well as some popcorn flavors.

-Adds Adhomian cheese and two new Adhomian cuisine dishes for everyone
who has been asking for more Tajaran foods.

-Adds an alternate, vegan way to make dough that doesn't require eggs.

-Adds cheese-less omelettes.

-Adds a few other miscellaneous dishes such as Poutine, Churros, and
chocolate pizzas.

-Adds trays of clams casino now dispense individual clams that can be
eaten seperately.

-Adds a new kitchen bounty for some of the new desserts and added the
new tajaran dishes to the adhomian cuisine bounty.

-Changes North Sixty seafood platters to include regular clams instead
of R'sval clams since R'sval clams are Adhomian and I suspect regular
clams were the intention for this dish all along.

-Renames the old tossed salad to 'apple salad', now that there's a
newer, less fruit-based tossed salad.

-Makes it so onion rings can be placed freely like every other food
instead of being locked to one spot.

-Fixes some food description typos.

---------

Signed-off-by: tomixcomics <11053204+tomixcomics@users.noreply.github.com>
Co-authored-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
2026-02-21 20:24:44 +00:00

108 lines
4.0 KiB
Plaintext

/singleton/recipe/chocolateegg
appliance = SAUCEPAN | POT | MICROWAVE // melt the chocolate
items = list(
/obj/item/reagent_containers/food/snacks/egg,
/obj/item/reagent_containers/food/snacks/chocolatebar
)
result = /obj/item/reagent_containers/food/snacks/chocolateegg
/singleton/recipe/friedegg
appliance = SKILLET | MICROWAVE
items = list(
/obj/item/reagent_containers/food/snacks/friedegg/overeasy
)
result = /obj/item/reagent_containers/food/snacks/friedegg
/singleton/recipe/friedegg_easy
appliance = SKILLET | MICROWAVE
reagents = list(/singleton/reagent/sodiumchloride = 1, /singleton/reagent/blackpepper = 1)
items = list(
/obj/item/reagent_containers/food/snacks/egg
)
result = /obj/item/reagent_containers/food/snacks/friedegg/overeasy
/singleton/recipe/boiledegg
appliance = SAUCEPAN | POT | MICROWAVE
reagents = list(/singleton/reagent/water = 5)
reagent_mix = RECIPE_REAGENT_REPLACE
items = list(
/obj/item/reagent_containers/food/snacks/egg
)
result = /obj/item/reagent_containers/food/snacks/boiledegg
/singleton/recipe/bacon_and_eggs
appliance = SKILLET | MICROWAVE
items = list(
/obj/item/reagent_containers/food/snacks/bacon,
/obj/item/reagent_containers/food/snacks/friedegg
)
result = /obj/item/reagent_containers/food/snacks/bacon_and_eggs
/singleton/recipe/omelette
appliance = SKILLET
reagents = list(/singleton/reagent/nutriment/protein/egg = 6, /singleton/reagent/drink/milk = 5)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/omelette
/singleton/recipe/omelette_veggie
appliance = SKILLET
fruit = list("onion" = 1) //if herbs ever get added to the game please add them to this recipe
reagents = list(/singleton/reagent/nutriment/protein/egg = 3, /singleton/reagent/drink/milk = 5)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/omelette/veggie
/singleton/recipe/omelette_du_fromage
appliance = SKILLET
items = list(
/obj/item/reagent_containers/food/snacks/cheesewedge,
/obj/item/reagent_containers/food/snacks/cheesewedge
)
reagents = list(/singleton/reagent/nutriment/protein/egg = 6)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/omelette/fromage
/singleton/recipe/poachedegg
appliance = SKILLET | SAUCEPAN
reagents = list(/singleton/reagent/spacespice = 1, /singleton/reagent/sodiumchloride = 1, /singleton/reagent/blackpepper = 1, /singleton/reagent/water = 5)
items = list(
/obj/item/reagent_containers/food/snacks/egg
)
reagent_mix = RECIPE_REAGENT_REPLACE //Get that water outta here
result = /obj/item/reagent_containers/food/snacks/poachedegg
/singleton/recipe/chawanmushi
appliance = SAUCEPAN
fruit = list("mushroom" = 1)
reagents = list(/singleton/reagent/water = 5, /singleton/reagent/nutriment/soysauce = 5, /singleton/reagent/nutriment/protein/egg = 6)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/chawanmushi
/singleton/recipe/shakshouka
appliance = SKILLET
fruit = list("tomato" = 2)
reagent_mix = RECIPE_REAGENT_REPLACE //Get that water outta here
reagents = list(/singleton/reagent/spacespice = 2, /singleton/reagent/blackpepper = 1, /singleton/reagent/nutriment/protein/egg = 6)
result = /obj/item/reagent_containers/food/snacks/shakshouka
/singleton/recipe/eggs_benedict
appliance = MIX
reagents = list(/singleton/reagent/nutriment/protein/egg = 3, /singleton/reagent/blackpepper = 1)
items = list(
/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit,
/obj/item/reagent_containers/food/snacks/poachedegg,
/obj/item/reagent_containers/food/snacks/cutlet
)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/eggs_benedict
/singleton/recipe/nakarka_omelette
appliance = SKILLET
items = list(
/obj/item/reagent_containers/food/snacks/nakarka_wedge,
/obj/item/reagent_containers/food/snacks/nakarka_wedge
)
reagents = list(/singleton/reagent/nutriment/protein/egg = 6)
reagent_mix = RECIPE_REAGENT_REPLACE
result = /obj/item/reagent_containers/food/snacks/nakarka_omelette