[Recipe Suggestion] Cutting Wheat into Wheat Seeds and Straw #1167
fabien-gigante
started this conversation in
Ideas
Replies: 2 comments
-
|
This is actually a change I made in my personal datapack, but id say the seed should definitely be guaranteed. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
First off: Wheat can give Straw, but only during harvest. It will drop 1 Straw when mined using a Knife. Wheat is a tough case, because it doesn't have any believable "middleman" for Cutting Board processing:
The current processing pipeline of straw-on-harvest was my solution for this case. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Suggestion
Currrently, Rice Panicles and Bamboo Blocks are the only sources of Straw. This makes Straw a difficult to ressource to obtain.
I believe that adding the following recipe would help in this regards, would remain consistent with the mod spirit, and would add some sort of realism as well :
Proposed Implementation
Add following
\data\farmersdelight\recipe\cutting\wheat.jsonto the mod :{ "type": "farmersdelight:cutting", "ingredients": [ { "item": "minecraft:wheat" } ], "result": [ { "chance": 0.5, "item": { "count": 1, "id": "minecraft:wheat_seeds" } }, { "chance": 0.5, "item": { "count": 1, "id": "farmersdelight:straw" } } ], "tool": { "tag": "c:tools/knife" } }Beta Was this translation helpful? Give feedback.
All reactions