mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 03:51:49 +01:00
* Notella food, drinks, and crepes Added some foods and drinks using notella. Made several different kinds of crepes. * added changelog changelog wooo * fixed merge conflicts * Update code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> * Update code/modules/reagents/reagent_containers/food/snacks/confections.dm Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> * Update code/modules/reagents/reagent_containers/food/snacks/pastries.dm Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> * changed all the notella names to NTella --------- Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>
26 lines
1013 B
Plaintext
26 lines
1013 B
Plaintext
/singleton/recipe/mashedpotato
|
|
fruit = list("potato" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/mashedpotato
|
|
|
|
/singleton/recipe/sauerkraut
|
|
appliance = MIX
|
|
fruit = list("cabbage" = 1)
|
|
reagents = list(/singleton/reagent/enzyme = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/sauerkraut
|
|
reagent_mix = RECIPE_REAGENT_REPLACE
|
|
|
|
/singleton/recipe/whitechocolate
|
|
appliance = MIX
|
|
reagents = list(/singleton/reagent/nutriment/vanilla = 2, /singleton/reagent/drink/milk = 2, /singleton/reagent/sugar = 2)
|
|
result = /obj/item/reagent_containers/food/snacks/whitechocolate
|
|
reagent_mix = RECIPE_REAGENT_REPLACE
|
|
|
|
/singleton/recipe/whitechocolate/soy
|
|
reagents = list(/singleton/reagent/nutriment/vanilla = 2, /singleton/reagent/drink/milk/soymilk = 2, /singleton/reagent/sugar = 2)
|
|
|
|
/singleton/recipe/plaincrepe
|
|
appliance = SKILLET
|
|
reagents = list(/singleton/reagent/nutriment/coating/batter = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/plaincrepe
|
|
reagent_mix = RECIPE_REAGENT_REPLACE
|