public class TestRecipe implements Recipe { //원하는 입력을 넣을 수 있습니다. //Ingredient를 사용하면 태그를 지원 할 수 있어서 사용하는 것이 중요합니다. //위에 문장 이상하면 고쳐주세요. 원문: It is important to always use Ingredient, so you can support tags. private final Ingredient inputA; private final Ingredient inputB; private final ItemStack result; private final Identifier id; public TestRecipe(Identifier id, ItemStack result, Ingredient inputA, Ingredient inputB) { this.id = id; this.inputA = inputA; this.inputB = inputB; this.result = result; } public Ingredient getInputA() { return this.inputA; } public Ingredient getInputB() { return this.inputB; } @Override public ItemStack getOutput() { return this.result; } @Override public Identifier getId() { return this.id; } @Override public boolean matches(CraftingInventory inv, World world) { return false; } @Override public ItemStack craft(CraftingInventory inv) { return null; } @Override public boolean fits(int width, int height) { return false; } @Override public RecipeSerializer getSerializer() { return null; } @Override public RecipeType getType() { return null; } }