Skip to content

Commit

Permalink
fix(mods/DinoMod): Fix Dinomod overwriting various egg-based food rec…
Browse files Browse the repository at this point in the history
…ipes (#4085)

* Fix Dinomod's Egg-related recipes

This is why you don't forget to use id_suffix

* style(autofix.ci): automated formatting

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
RobbieNeko and autofix-ci[bot] authored Jan 10, 2024
1 parent 8618c68 commit 63166e6
Showing 1 changed file with 12 additions and 28 deletions.
40 changes: 12 additions & 28 deletions data/mods/DinoMod/recipes/food_egg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
"type": "recipe",
"result": "scrambled_eggs",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_OTHER",
"skill_used": "cooking",
Expand All @@ -17,6 +18,7 @@
{
"type": "recipe",
"result": "scrambled_eggs",
"id_suffix": "from_large_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_OTHER",
"skill_used": "cooking",
Expand Down Expand Up @@ -74,6 +76,7 @@
{
"type": "recipe",
"result": "deluxe_eggs",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_OTHER",
"skill_used": "cooking",
Expand All @@ -88,6 +91,7 @@
{
"type": "recipe",
"result": "pancakes",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_BREAD",
"skill_used": "cooking",
Expand All @@ -109,6 +113,7 @@
{
"type": "recipe",
"result": "fruit_pancakes",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_VEGGI",
"skill_used": "cooking",
Expand All @@ -131,6 +136,7 @@
{
"type": "recipe",
"result": "choc_pancakes",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_BREAD",
"skill_used": "cooking",
Expand All @@ -153,6 +159,7 @@
{
"type": "recipe",
"result": "frenchtoast",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_BREAD",
"skill_used": "cooking",
Expand All @@ -172,6 +179,7 @@
{
"type": "recipe",
"result": "waffles",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_BREAD",
"skill_used": "cooking",
Expand All @@ -193,6 +201,7 @@
{
"type": "recipe",
"result": "fruit_waffles",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_VEGGI",
"skill_used": "cooking",
Expand All @@ -215,6 +224,7 @@
{
"type": "recipe",
"result": "choc_waffles",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_BREAD",
"skill_used": "cooking",
Expand All @@ -237,6 +247,7 @@
{
"type": "recipe",
"result": "powder_eggs",
"id_suffix": "from_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_DRY",
"skill_used": "cooking",
Expand All @@ -251,20 +262,7 @@
{
"type": "recipe",
"result": "powder_eggs",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_DRY",
"skill_used": "cooking",
"difficulty": 2,
"charges": 30,
"time": "34 m",
"autolearn": true,
"batch_time_factors": [ 67, 5 ],
"tools": [ [ [ "dehydrator", 60 ], [ "char_smoker", 60 ] ], [ [ "surface_heat", 15, "LIST" ] ] ],
"components": [ [ [ "eggs_dino", 1, "LIST" ] ] ]
},
{
"type": "recipe",
"result": "powder_eggs",
"id_suffix": "from_large_dino",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_DRY",
"skill_used": "cooking",
Expand All @@ -275,19 +273,5 @@
"batch_time_factors": [ 67, 5 ],
"tools": [ [ [ "dehydrator", 140 ], [ "char_smoker", 140 ] ] ],
"components": [ [ [ "eggs_dino_large", 1, "LIST" ] ] ]
},
{
"type": "recipe",
"result": "powder_eggs",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_DRY",
"skill_used": "cooking",
"difficulty": 2,
"charges": 70,
"time": "60 m",
"autolearn": true,
"batch_time_factors": [ 67, 5 ],
"tools": [ [ [ "dehydrator", 140 ], [ "char_smoker", 140 ] ], [ [ "surface_heat", 35, "LIST" ] ] ],
"components": [ [ [ "eggs_dino_large", 1, "LIST" ] ] ]
}
]

0 comments on commit 63166e6

Please sign in to comment.