chore: hoes #6
@ -0,0 +1,14 @@
|
|||||||
|
package cz.jzitnik.game.crafting.recipes;
|
||||||
|
|
||||||
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
||||||
|
|
||||||
|
@CraftingRecipeRegistry(
|
||||||
|
recipe = {
|
||||||
|
"_", "gold_ingot", "gold_ingot",
|
||||||
|
"_", "stick", "_",
|
||||||
|
"_", "stick", "_"
|
||||||
|
},
|
||||||
|
result = "golden_hoe",
|
||||||
|
amount = 1
|
||||||
|
)
|
||||||
|
public class GoldenHoe2Recipe {}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cz.jzitnik.game.crafting.recipes;
|
||||||
|
|
||||||
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
||||||
|
|
||||||
|
@CraftingRecipeRegistry(
|
||||||
|
recipe = {
|
||||||
|
"gold_ingot", "gold_ingot", "_",
|
||||||
|
"_", "stick", "_",
|
||||||
|
"_", "stick", "_"
|
||||||
|
},
|
||||||
|
result = "golden_hoe",
|
||||||
|
amount = 1
|
||||||
|
)
|
||||||
|
public class GoldenHoeRecipe {}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cz.jzitnik.game.crafting.recipes;
|
||||||
|
|
||||||
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
||||||
|
|
||||||
|
@CraftingRecipeRegistry(
|
||||||
|
recipe = {
|
||||||
|
"_", "iron_ingot", "iron_ingot",
|
||||||
|
"_", "stick", "_",
|
||||||
|
"_", "stick", "_"
|
||||||
|
},
|
||||||
|
result = "iron_hoe",
|
||||||
|
amount = 1
|
||||||
|
)
|
||||||
|
public class IronHoe2Recipe {}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cz.jzitnik.game.crafting.recipes;
|
||||||
|
|
||||||
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
||||||
|
|
||||||
|
@CraftingRecipeRegistry(
|
||||||
|
recipe = {
|
||||||
|
"iron_ingot", "iron_ingot", "_",
|
||||||
|
"_", "stick", "_",
|
||||||
|
"_", "stick", "_"
|
||||||
|
},
|
||||||
|
result = "iron_hoe",
|
||||||
|
amount = 1
|
||||||
|
)
|
||||||
|
public class IronHoeRecipe {}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cz.jzitnik.game.crafting.recipes;
|
||||||
|
|
||||||
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
||||||
|
|
||||||
|
@CraftingRecipeRegistry(
|
||||||
|
recipe = {
|
||||||
|
"_", "stone", "stone",
|
||||||
|
"_", "stick", "_",
|
||||||
|
"_", "stick", "_"
|
||||||
|
},
|
||||||
|
result = "stone_hoe",
|
||||||
|
amount = 1
|
||||||
|
)
|
||||||
|
public class StoneHoe2Recipe {}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cz.jzitnik.game.crafting.recipes;
|
||||||
|
|
||||||
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
||||||
|
|
||||||
|
@CraftingRecipeRegistry(
|
||||||
|
recipe = {
|
||||||
|
"_", "oak_planks", "oak_planks",
|
||||||
|
"_", "stick", "_",
|
||||||
|
"_", "stick", "_"
|
||||||
|
},
|
||||||
|
result = "wooden_hoe",
|
||||||
|
amount = 1
|
||||||
|
)
|
||||||
|
public class WoodenHoe2Recipe {}
|
Loading…
x
Reference in New Issue
Block a user