Skip to content

Commit

Permalink
Add compatibility for c:wood_sticks in recipes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltMolnarrr committed Jan 14, 2024
1 parent 2178fe0 commit f6c8fed
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 1.0.5

- Add compatibility for `c:wood_sticks` in recipes #16
- Fix `wizards:staves` tag when BetterX mods are not present
- Update Chinese translation, thanks to Sillymoon

Expand Down
11 changes: 8 additions & 3 deletions src/main/resources/data/wizards/recipes/staff_arcane.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
"G": {
"item": "minecraft:gold_ingot"
},
"S": {
"item": "minecraft:stick"
}
"S": [
{
"tag": "c:wood_sticks"
},
{
"item": "minecraft:stick"
}
]
},
"pattern": [
" AP",
Expand Down
11 changes: 8 additions & 3 deletions src/main/resources/data/wizards/recipes/staff_fire.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
"G": {
"item": "minecraft:gold_ingot"
},
"S": {
"item": "minecraft:stick"
}
"S": [
{
"tag": "c:wood_sticks"
},
{
"item": "minecraft:stick"
}
]
},
"pattern": [
" NP",
Expand Down
11 changes: 8 additions & 3 deletions src/main/resources/data/wizards/recipes/staff_frost.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
"I": {
"item": "minecraft:iron_ingot"
},
"S": {
"item": "minecraft:stick"
}
"S": [
{
"tag": "c:wood_sticks"
},
{
"item": "minecraft:stick"
}
]
},
"pattern": [
" BP",
Expand Down
11 changes: 8 additions & 3 deletions src/main/resources/data/wizards/recipes/staff_wizard.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
"Q": {
"item": "minecraft:quartz"
},
"S": {
"item": "minecraft:stick"
}
"S": [
{
"tag": "c:wood_sticks"
},
{
"item": "minecraft:stick"
}
]
},
"pattern": [
" Q",
Expand Down
11 changes: 8 additions & 3 deletions src/main/resources/data/wizards/recipes/wand_novice.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
"C": {
"item": "minecraft:coal"
},
"S": {
"item": "minecraft:stick"
}
"S": [
{
"tag": "c:wood_sticks"
},
{
"item": "minecraft:stick"
}
]
},
"pattern": [
" C",
Expand Down

0 comments on commit f6c8fed

Please sign in to comment.