-
Notifications
You must be signed in to change notification settings - Fork 192
Grass seeds #2558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Grass seeds #2558
Changes from 4 commits
771ac00
38bb65f
e620239
988f2d7
4b871aa
9b11ac8
3457b66
e12641a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| .{ | ||
| .tags = .{}, | ||
| .texture = "grass_seeds.png", | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -156,4 +156,29 @@ | |
| .output = "4 cubyz:pebbles", | ||
| .reversible = true, | ||
| }, | ||
| .{ | ||
| .inputs = .{"cubyz:{type}_grass_vegetation"}, | ||
| .output = "3 cubyz:grass_seeds", | ||
| .reversible = true, | ||
| }, | ||
| .{ | ||
| .inputs = .{"cubyz:soil", "cubyz:grass_seeds"}, | ||
| .output = "cubyz:grass", | ||
| .reversible = true, | ||
| }, | ||
| .{ | ||
| .inputs = .{"cubyz:dirt", "cubyz:grass_seeds"}, | ||
| .output = "cubyz:dry_grass", | ||
| .reversible = true, | ||
| }, | ||
| .{ | ||
| .inputs = .{"cubyz:permafrost", "cubyz:grass_seeds"}, | ||
| .output = "cubyz:cold_grass", | ||
| .reversible = true, | ||
| }, | ||
| .{ | ||
| .inputs = .{"cubyz:mud", "cubyz:grass_seeds"}, | ||
| .output = "cubyz:lush_grass", | ||
| .reversible = true, | ||
| }, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Recipes with multiple inputs can't be reversible (you get an error for this ingame)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. forgot this when copy and pasting |
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't allow converting regular/temperate grass vegetation into seeds (since it's just
cubyz:grass_vegetation)Also, this should be 1 grass : 4 seed to be a little more generous
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did both of these htings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mayhaps
cubyz:grass_vegetationshould becubyz:regular_grass_vegetationor something of the like in a future pr, for consistencyUh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all the grass items should be migrated to
cubyz:grass/{type}andcubyz:grass/vegetation/{type}and default grass should be "temperate grass"