16 lines
399 B
Java

package cz.jzitnik.game.crafting.recipes;
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
@CraftingRecipeRegistry(
recipe = {
"^.*_wool$", "^.*_wool$", "^.*_wool$",
"oak_planks", "oak_planks", "oak_planks",
"_", "_", "_"
},
result = "bed",
amount = 1,
usingRegex = true
)
public class BedRecipe {}