-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make most pot recipes requires 100mb, allow making cured maize with 1…
…-5 grains instead of only 1, add freshwater beet sugar recipe, improve dependency for tfc to hopefully appear correctly on modrinth
- Loading branch information
1 parent
9a7de27
commit ab17d7f
Showing
13 changed files
with
255 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
src/main/resources/data/firmalife/recipes/pot/beet_sugar_freshwater.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:pot", | ||
"ingredients": [ | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/beet" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/beet" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/beet" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/beet" | ||
} | ||
}, | ||
{ | ||
"item": "tfc:powder/salt" | ||
} | ||
], | ||
"fluid_ingredient": { | ||
"ingredient": "minecraft:water", | ||
"amount": 100 | ||
}, | ||
"duration": 2000, | ||
"temperature": 300, | ||
"item_output": [ | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
} | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
src/main/resources/data/firmalife/recipes/pot/cured_maize_1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:pot", | ||
"ingredients": [ | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
} | ||
], | ||
"fluid_ingredient": { | ||
"ingredient": "tfc:limewater", | ||
"amount": 100 | ||
}, | ||
"duration": 3000, | ||
"temperature": 300, | ||
"item_output": [ | ||
{ | ||
"item": "firmalife:food/cured_maize" | ||
} | ||
] | ||
} |
29 changes: 29 additions & 0 deletions
29
src/main/resources/data/firmalife/recipes/pot/cured_maize_2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:pot", | ||
"ingredients": [ | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
} | ||
], | ||
"fluid_ingredient": { | ||
"ingredient": "tfc:limewater", | ||
"amount": 100 | ||
}, | ||
"duration": 3000, | ||
"temperature": 300, | ||
"item_output": [ | ||
{ | ||
"item": "firmalife:food/cured_maize" | ||
} | ||
] | ||
} |
35 changes: 35 additions & 0 deletions
35
src/main/resources/data/firmalife/recipes/pot/cured_maize_3.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:pot", | ||
"ingredients": [ | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
} | ||
], | ||
"fluid_ingredient": { | ||
"ingredient": "tfc:limewater", | ||
"amount": 100 | ||
}, | ||
"duration": 3000, | ||
"temperature": 300, | ||
"item_output": [ | ||
{ | ||
"item": "firmalife:food/cured_maize" | ||
} | ||
] | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/resources/data/firmalife/recipes/pot/cured_maize_4.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:pot", | ||
"ingredients": [ | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
} | ||
], | ||
"fluid_ingredient": { | ||
"ingredient": "tfc:limewater", | ||
"amount": 100 | ||
}, | ||
"duration": 3000, | ||
"temperature": 300, | ||
"item_output": [ | ||
{ | ||
"item": "firmalife:food/cured_maize" | ||
} | ||
] | ||
} |
47 changes: 47 additions & 0 deletions
47
src/main/resources/data/firmalife/recipes/pot/cured_maize_5.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:pot", | ||
"ingredients": [ | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
}, | ||
{ | ||
"type": "tfc:not_rotten", | ||
"ingredient": { | ||
"item": "tfc:food/maize_grain" | ||
} | ||
} | ||
], | ||
"fluid_ingredient": { | ||
"ingredient": "tfc:limewater", | ||
"amount": 100 | ||
}, | ||
"duration": 3000, | ||
"temperature": 300, | ||
"item_output": [ | ||
{ | ||
"item": "firmalife:food/cured_maize" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters