15 lines
374 B
Java
15 lines
374 B
Java
package cz.jzitnik.game.crafting.recipes;
|
|
|
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
|
|
|
@CraftingRecipeRegistry(
|
|
recipe = {
|
|
"cobblestone", "cobblestone", "_",
|
|
"cobblestone", "stick", "_",
|
|
"_", "stick", "_"
|
|
},
|
|
result = "stone_pickaxe",
|
|
amount = 1
|
|
)
|
|
public class StoneAxeRecipe {}
|