mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 03:51:49 +01:00
<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>
133 lines
5.0 KiB
Plaintext
133 lines
5.0 KiB
Plaintext
|
|
// see code/datums/recipe.dm
|
|
|
|
/singleton/recipe/humankabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/meat/human,
|
|
/obj/item/reagent_containers/food/snacks/meat/human
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/human/kabob
|
|
|
|
/singleton/recipe/monkeykabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/meat,
|
|
/obj/item/reagent_containers/food/snacks/meat
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/monkeykabob
|
|
|
|
/singleton/recipe/syntikabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
|
|
/obj/item/reagent_containers/food/snacks/meat/syntiflesh
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/monkeykabob
|
|
|
|
/singleton/recipe/tofukabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/tofu,
|
|
/obj/item/reagent_containers/food/snacks/tofu
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/tofukabob
|
|
|
|
/singleton/recipe/hengsharolls
|
|
fruit = list("cabbage" = 1, "corn" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/mashedpotato,
|
|
/obj/item/reagent_containers/food/snacks/tofu
|
|
)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
result = /obj/item/reagent_containers/food/snacks/hengsharolls
|
|
|
|
// Salads
|
|
|
|
/singleton/recipe/applesalad
|
|
fruit = list("cabbage" = 2, "tomato" = 1, "carrot" = 1, "apple" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/applesalad
|
|
|
|
/singleton/recipe/aesirsalad
|
|
fruit = list("goldapple" = 1, "ambrosiadeus" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/aesirsalad
|
|
|
|
/singleton/recipe/validsalad
|
|
fruit = list("potato" = 1, "ambrosia" = 3)
|
|
items = list(/obj/item/reagent_containers/food/snacks/meatball)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/validsalad
|
|
|
|
/singleton/recipe/validsalad/make_food(var/obj/container as obj)
|
|
. = ..(container)
|
|
for (var/obj/item/reagent_containers/food/snacks/salad/validsalad/being_cooked in .)
|
|
being_cooked.reagents.del_reagent(/singleton/reagent/toxin)
|
|
|
|
/singleton/recipe/tabboulehsalad
|
|
fruit = list("mint" = 3, "tomato" = 1, "wheat" = 1, "lemon" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tabboulehsalad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/tunasalad
|
|
fruit = list("mint" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/fish
|
|
)
|
|
reagents = list(/singleton/reagent/nutriment/mayonnaise = 5)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tunasalad
|
|
|
|
/singleton/recipe/tunapastasalad
|
|
fruit = list("mint" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/boiledspaghetti,
|
|
/obj/item/reagent_containers/food/snacks/fish
|
|
)
|
|
reagents = list(/singleton/reagent/nutriment/mayonnaise = 5)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tunapasta
|
|
|
|
/singleton/recipe/potato_salad //ported from tg
|
|
fruit = list("potato" = 2, "onion" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/boiledegg,
|
|
/obj/item/reagent_containers/food/snacks/boiledegg
|
|
)
|
|
reagents = list(/singleton/reagent/nutriment/mayonnaise = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/potato_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/fruit_salad //ported from tg
|
|
fruit = list("orange" = 1, "apple" = 1, "grapes" = 1, "watermelon slice" = 2)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/fruit_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/caesar_salad //ported from tg with a changed recipe
|
|
fruit = list("cabbage" = 1, "garlic" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/fish,
|
|
/obj/item/reagent_containers/food/snacks/cheesewedge
|
|
)
|
|
reagents = list(/singleton/reagent/drink/lemonjuice = 5, /singleton/reagent/nutriment/protein/egg = 3)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/caesar_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/citrus_delight //ported from tg
|
|
fruit = list("orange" = 1, "lemon" = 1, "lime" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/citrus_delight
|
|
|
|
/singleton/recipe/spring_salad //ported from tg
|
|
fruit = list("peas" = 1, "carrot" = 1, "cabbage" = 2)
|
|
reagents = list(/singleton/reagent/sodiumchloride = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/spring_salad
|
|
|
|
/singleton/recipe/jungle_salad //ported from tg
|
|
fruit = list("banana" = 2, "apple" = 1, "grapes" = 1, "watermelon slice" = 2)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/jungle_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/tossed_salad
|
|
fruit = list("cabbage" = 1, "tomato" = 1, "cucumber" = 1)
|
|
reagents = list(/singleton/reagent/sodiumchloride = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tossed_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|