diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 52d57439c4..be2f730c7b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -429,6 +429,13 @@ sprite: Objects/Specific/Hydroponics/corn.rsi - type: Produce seed: corn + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Cornoil + Quantity: 3 + - ReagentId: Enzyme + Quantity: 2 - type: entity name: corn cob diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 0b7740a086..c144321f79 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -57,3 +57,39 @@ effects: - !type:CreateEntityReactionEffect entity: FoodCakeBatter + +# Condiments + +- type: reaction + id: CookingKetchup + reactants: + JuiceTomato: + amount: 10 + Sugar: + amount: 5 + products: + Ketchup: 15 + +- type: reaction + id: CookingBbqSauce + reactants: + Ketchup: + amount: 5 + Vinegar: + amount: 5 + Sugar: + amount: 5 + products: + BbqSauce: 15 + +- type: reaction + id: CookingHotsauce + reactants: + JuiceTomato: + amount: 5 + TableSalt: + amount: 5 + CapsaicinOil: + amount: 5 + products: + Hotsauce: 15 \ No newline at end of file