Skip to content

Commit

Permalink
Fix palm log/stripped log and wood recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Jan 17, 2024
1 parent 5867e98 commit f3ab86e
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/resources/data/unicopia/recipes/palm_planks.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"group": "planks",
"ingredients": [
{ "item": "unicopia:palm_log" }
{ "tag": "unicopia:palm_logs" }
],
"result": {
"item": "unicopia:palm_planks",
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/data/unicopia/recipes/palm_wood.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"group": "bark",
"pattern": [
"##",
"##"
Expand All @@ -10,6 +12,7 @@
}
},
"result": {
"count": 3,
"item": "unicopia:palm_wood"
}
}
18 changes: 18 additions & 0 deletions src/main/resources/data/unicopia/recipes/stripped_palm_wood.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"group": "bark",
"pattern": [
"##",
"##"
],
"key": {
"#": {
"item": "unicopia:stripped_palm_log"
}
},
"result": {
"count": 3,
"item": "unicopia:stripped_palm_wood"
}
}
9 changes: 9 additions & 0 deletions src/main/resources/data/unicopia/tags/blocks/palm_logs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"replace": false,
"values": [
"unicopia:palm_log",
"unicopia:palm_wood",
"unicopia:stripped_palm_log",
"unicopia:stripped_palm_wood"
]
}
9 changes: 9 additions & 0 deletions src/main/resources/data/unicopia/tags/items/palm_logs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"replace": false,
"values": [
"unicopia:palm_log",
"unicopia:palm_wood",
"unicopia:stripped_palm_log",
"unicopia:stripped_palm_wood"
]
}

0 comments on commit f3ab86e

Please sign in to comment.