Skip to content

Commit

Permalink
Forgot stone
Browse files Browse the repository at this point in the history
Wood -> stone -> gold -> iron -> diamond
  • Loading branch information
isaaclepes committed Oct 9, 2022
1 parent 2537380 commit 17ff17c
Show file tree
Hide file tree
Showing 10 changed files with 65 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/crafting/recipes/axe_gold.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_axe"
"item": "minecraft:stone_axe"
},
"addition": {
"item": "minecraft:gold_ingot"
Expand Down
12 changes: 12 additions & 0 deletions data/crafting/recipes/axe_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_axe"
},
"addition": {
"item": "minecraft:stone"
},
"result": {
"item": "minecraft:stone_axe"
}
}
2 changes: 1 addition & 1 deletion data/crafting/recipes/hoe_gold.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_hoe"
"item": "minecraft:stone_hoe"
},
"addition": {
"item": "minecraft:gold_ingot"
Expand Down
12 changes: 12 additions & 0 deletions data/crafting/recipes/hoe_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_hoe"
},
"addition": {
"item": "minecraft:stone"
},
"result": {
"item": "minecraft:stone_hoe"
}
}
2 changes: 1 addition & 1 deletion data/crafting/recipes/pickaxe_gold.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_pickaxe"
"item": "minecraft:stone_pickaxe"
},
"addition": {
"item": "minecraft:gold_ingot"
Expand Down
12 changes: 12 additions & 0 deletions data/crafting/recipes/pickaxe_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_pickaxe"
},
"addition": {
"item": "minecraft:stone"
},
"result": {
"item": "minecraft:stone_pickaxe"
}
}
2 changes: 1 addition & 1 deletion data/crafting/recipes/shovel_gold.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_shovel"
"item": "minecraft:stone_shovel"
},
"addition": {
"item": "minecraft:gold_ingot"
Expand Down
12 changes: 12 additions & 0 deletions data/crafting/recipes/shovel_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_shovel"
},
"addition": {
"item": "minecraft:stone"
},
"result": {
"item": "minecraft:stone_shovel"
}
}
2 changes: 1 addition & 1 deletion data/crafting/recipes/sword_gold.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_sword"
"item": "minecraft:stone_sword"
},
"addition": {
"item": "minecraft:gold_ingot"
Expand Down
12 changes: 12 additions & 0 deletions data/crafting/recipes/sword_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:wooden_sword"
},
"addition": {
"item": "minecraft:iron_ingot"
},
"result": {
"item": "minecraft:iron_sword"
}
}

0 comments on commit 17ff17c

Please sign in to comment.