Skip to content

Commit

Permalink
Add recipes for copper tools
Browse files Browse the repository at this point in the history
  • Loading branch information
xYundy committed Mar 10, 2024
1 parent fb85ff7 commit a394b55
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/resources/data/squaredadditions/recipes/copper_axe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"CC ",
"CS ",
" S "
],
"key": {
"C": {
"item": "minecraft:copper_ingot"
},
"S": {
"item": "minecraft:stick"
}
},
"result": {
"item": "squaredadditions:copper_axe"
}
}
20 changes: 20 additions & 0 deletions src/main/resources/data/squaredadditions/recipes/copper_hoe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"CC ",
" S ",
" S "
],
"key": {
"C": {
"item": "minecraft:copper_ingot"
},
"S": {
"item": "minecraft:stick"
}
},
"result": {
"item": "squaredadditions:copper_hoe"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"CCC",
" S ",
" S "
],
"key": {
"C": {
"item": "minecraft:copper_ingot"
},
"S": {
"item": "minecraft:stick"
}
},
"result": {
"item": "squaredadditions:copper_pickaxe"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"C",
"S",
"S"
],
"key": {
"C": {
"item": "minecraft:copper_ingot"
},
"S": {
"item": "minecraft:stick"
}
},
"result": {
"item": "squaredadditions:copper_shovel"
}
}
20 changes: 20 additions & 0 deletions src/main/resources/data/squaredadditions/recipes/copper_sword.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"C",
"C",
"S"
],
"key": {
"C": {
"item": "minecraft:copper_ingot"
},
"S": {
"item": "minecraft:stick"
}
},
"result": {
"item": "squaredadditions:copper_sword"
}
}

0 comments on commit a394b55

Please sign in to comment.