forked from jzitnik/twodcraft
Co-authored-by: jull <sefljulie@gmail.com> Co-committed-by: jull <sefljulie@gmail.com>
14 lines
331 B
Java
14 lines
331 B
Java
package cz.jzitnik.game.crafting.recipes;
|
|
|
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
|
|
|
@CraftingRecipeRegistry(
|
|
recipe = {
|
|
"coal_block", "_", "_",
|
|
"_", "_", "_",
|
|
"_", "_", "_"
|
|
},
|
|
result = "coal",
|
|
amount = 9
|
|
)
|
|
public class CoalRecipe {} |