mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-17 09:59:55 +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>
52 lines
1.8 KiB
Plaintext
52 lines
1.8 KiB
Plaintext
/singleton/recipe/popcorn
|
|
appliance = SAUCEPAN | MICROWAVE
|
|
fruit = list("corn" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/popcorn
|
|
|
|
/singleton/recipe/popcorn_chocolate
|
|
appliance = MIX
|
|
reagents = list(/singleton/reagent/condiment/syrup_chocolate = 5)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/popcorn
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/popcorn/chocolate
|
|
|
|
/singleton/recipe/popcorn_caramel
|
|
appliance = MIX
|
|
reagents = list(/singleton/reagent/condiment/syrup_caramel = 5)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/popcorn
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/popcorn/caramel
|
|
|
|
/singleton/recipe/popcorn_cheese
|
|
appliance = MIX
|
|
reagents = list(/singleton/reagent/nutriment/protein/cheese = 5)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/popcorn
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/popcorn/cheese
|
|
|
|
// Jellies
|
|
/singleton/recipe/amanitajelly
|
|
appliance = SAUCEPAN | MICROWAVE
|
|
reagents = list(/singleton/reagent/water = 5, /singleton/reagent/alcohol/vodka = 5, /singleton/reagent/toxin/amatoxin = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/amanitajelly
|
|
|
|
/singleton/recipe/amanitajelly/make_food(var/obj/container as obj)
|
|
. = ..(container)
|
|
for (var/obj/item/reagent_containers/food/snacks/amanitajelly/being_cooked in .)
|
|
being_cooked.reagents.del_reagent(/singleton/reagent/toxin/amatoxin)
|
|
|
|
/singleton/recipe/mint
|
|
appliance = SAUCEPAN | MICROWAVE
|
|
reagents = list(/singleton/reagent/sugar = 5, /singleton/reagent/frostoil = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/mint
|
|
|
|
/singleton/recipe/microchips
|
|
appliance = MICROWAVE
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/rawsticks
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/microchips
|