Add cheese & dough reactions (#5547)
* git mv * rename CreateEntityReaction -> CreateEntityTileReaction * cheese * change microwave recipes * remove unnecessary test * TryGet->Get
This commit is contained in:
@@ -4,19 +4,18 @@
|
||||
name: cheeseburger recipe
|
||||
result: FoodBurgerCheese
|
||||
time: 5
|
||||
reagents:
|
||||
Flour: 5
|
||||
solids:
|
||||
FoodBreadPlainSlice: 2 # its not a burger bun, but its good enough
|
||||
FoodMeat: 1
|
||||
FoodCheeseSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeClownBurger
|
||||
name: clownburger recipe
|
||||
result: FoodBurgerClown
|
||||
time: 5
|
||||
reagents:
|
||||
Flour: 5
|
||||
solids:
|
||||
FoodBreadPlainSlice: 2
|
||||
ClothingMaskClown: 1
|
||||
|
||||
# - type: microwaveMealRecipe
|
||||
@@ -34,9 +33,8 @@
|
||||
name: xenoburger recipe
|
||||
result: FoodBurgerXeno
|
||||
time: 5
|
||||
reagents:
|
||||
Flour: 5
|
||||
solids:
|
||||
FoodBreadPlainSlice: 2
|
||||
FoodMeatXeno: 1
|
||||
|
||||
#- type: microwaveMealRecipe
|
||||
@@ -60,8 +58,8 @@
|
||||
name: bread recipe
|
||||
result: FoodBreadPlain
|
||||
time: 15
|
||||
reagents:
|
||||
Flour: 15
|
||||
solids:
|
||||
FoodDough: 1
|
||||
|
||||
# - type: microwaveMealRecipe
|
||||
# id: RecipeSandwich
|
||||
@@ -105,9 +103,8 @@
|
||||
name: cream cheese bread recipe
|
||||
result: FoodBreadCreamcheese
|
||||
time: 20
|
||||
reagents:
|
||||
Flour: 15
|
||||
solids:
|
||||
FoodDough: 1
|
||||
FoodCheeseSlice: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
@@ -115,11 +112,8 @@
|
||||
name: banana bread recipe
|
||||
result: FoodBreadBanana
|
||||
time: 25
|
||||
reagents:
|
||||
Flour: 15
|
||||
Milk: 5
|
||||
solids:
|
||||
FoodEgg: 3
|
||||
FoodDough: 1
|
||||
FoodBanana: 1
|
||||
|
||||
#Pizzas
|
||||
@@ -128,9 +122,8 @@
|
||||
name: margherita pizza recipe
|
||||
result: FoodPizzaMargherita
|
||||
time: 30
|
||||
reagents:
|
||||
Flour: 10
|
||||
solids:
|
||||
FoodDough: 1
|
||||
FoodCheeseSlice: 4
|
||||
FoodTomato: 1
|
||||
|
||||
@@ -139,9 +132,8 @@
|
||||
name: mushroom pizza recipe
|
||||
result: FoodPizzaMushroom
|
||||
time: 25
|
||||
reagents:
|
||||
Flour: 10
|
||||
solids:
|
||||
FoodDough: 1
|
||||
FoodMushroom: 5
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
@@ -149,9 +141,8 @@
|
||||
name: meat pizza recipe
|
||||
result: FoodPizzaMeat
|
||||
time: 30
|
||||
reagents:
|
||||
Flour: 10
|
||||
solids:
|
||||
FoodDough: 1
|
||||
FoodMeat: 3
|
||||
FoodCheeseSlice: 1
|
||||
FoodTomato: 1
|
||||
@@ -161,9 +152,8 @@
|
||||
name: vegetable pizza recipe
|
||||
result: FoodPizzaVegetable
|
||||
time: 30
|
||||
reagents:
|
||||
Flour: 10
|
||||
solids:
|
||||
FoodDough: 1
|
||||
FoodEggplant: 1
|
||||
FoodCarrot: 1
|
||||
FoodCorn: 1
|
||||
@@ -365,9 +355,8 @@
|
||||
name: banana cream pie
|
||||
result: FoodPieBananaCream
|
||||
time: 15
|
||||
reagents:
|
||||
Flour: 10
|
||||
solids:
|
||||
FoodCakeBatter: 1 # should really be pie pastry or whatever. Good enough.
|
||||
FoodBanana: 3
|
||||
|
||||
#Donks i guess
|
||||
|
||||
59
Resources/Prototypes/Recipes/Reactions/food.yml
Normal file
59
Resources/Prototypes/Recipes/Reactions/food.yml
Normal file
@@ -0,0 +1,59 @@
|
||||
- type: reaction
|
||||
id: Curdling
|
||||
impact: Low
|
||||
quantized: true
|
||||
reactants:
|
||||
Milk:
|
||||
amount: 40
|
||||
Enzyme:
|
||||
amount: 5
|
||||
catalyst: true
|
||||
effects:
|
||||
- !type:CreateEntityReactionEffect
|
||||
entity: FoodCheese
|
||||
|
||||
- type: reaction
|
||||
id: CreateDough
|
||||
impact: Low
|
||||
quantized: true
|
||||
reactants:
|
||||
Flour:
|
||||
amount: 15
|
||||
Water:
|
||||
amount: 10
|
||||
effects:
|
||||
- !type:CreateEntityReactionEffect
|
||||
entity: FoodDough
|
||||
|
||||
- type: reaction
|
||||
id: CreateCakeBatter
|
||||
impact: Low
|
||||
quantized: true
|
||||
reactants:
|
||||
Flour:
|
||||
amount: 15
|
||||
Egg:
|
||||
amount: 12
|
||||
Sugar:
|
||||
amount: 5
|
||||
effects:
|
||||
- !type:CreateEntityReactionEffect
|
||||
entity: FoodCakeBatter
|
||||
|
||||
# TG has a cake recipe that uses soy milk instead of eggs.
|
||||
# but afaik it spawns the exact same cake batter entity.
|
||||
# Maybe change this if you want to do allergies or something
|
||||
- type: reaction
|
||||
id: CreateVeganCakeBatter
|
||||
impact: Low
|
||||
quantized: true
|
||||
reactants:
|
||||
Flour:
|
||||
amount: 15
|
||||
MilkSoy:
|
||||
amount: 12
|
||||
Sugar:
|
||||
amount: 5
|
||||
effects:
|
||||
- !type:CreateEntityReactionEffect
|
||||
entity: FoodCakeBatter
|
||||
Reference in New Issue
Block a user