diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml index 90a255197a..219b15b997 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml @@ -29,6 +29,7 @@ - FoodMealEggsbenedict - FoodMealOmelette - FoodMealFriedegg + - FoodMealScrambledEggs - FoodMealQueso - FoodMealSashimi - FoodMealEnchiladas diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index 614d975844..446c24529d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -529,6 +529,31 @@ - ReagentId: Amatoxin Quantity: 6 +- type: entity + name: scrambled eggs + parent: FoodBowlBase + id: FoodMealScrambledEggs + description: Some cooked eggs with salt. Yummy! + components: + - type: FlavorProfile + flavors: + - egg + - salty + - type: Sprite + layers: + - state: bowl + - state: scrambled-eggs + - type: SolutionContainerManager + solutions: + food: + maxvol: 10 + reagents: + - ReagentId: Nutriment + Quantity: 9 + - ReagentId: TableSalt + Quantity: 1 +# Tastes like eggs, butter and salt + # Soup - type: entity diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index c3f6ec2d88..c7f631e9b2 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1255,6 +1255,19 @@ solids: FoodDoughSlice: 3 +- type: microwaveMealRecipe + id: RecipeScrambledEggs + name: scrambled eggs recipe + result: FoodMealScrambledEggs + time: 5 + reagents: + TableSalt: 5 + solids: + FoodBowlBig: 1 + FoodEgg: 3 + FoodButter: 1 + + #Donks i guess - type: microwaveMealRecipe id: RecipeWarmDonkpocket diff --git a/Resources/Textures/Objects/Consumable/Food/bowl.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/bowl.rsi/meta.json index 509fedb6fe..c1ef6c7305 100644 --- a/Resources/Textures/Objects/Consumable/Food/bowl.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/bowl.rsi/meta.json @@ -167,6 +167,9 @@ }, { "name": "kimchi" + }, + { + "name": "scrambled-eggs" } ] } diff --git a/Resources/Textures/Objects/Consumable/Food/bowl.rsi/scrambled-eggs.png b/Resources/Textures/Objects/Consumable/Food/bowl.rsi/scrambled-eggs.png new file mode 100644 index 0000000000..236d490e39 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/bowl.rsi/scrambled-eggs.png differ