generated from Slimefun/Addon-Template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6ab2b4
commit 0ac5ff7
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
package club.claycoffee.ClayTech; | ||
|
||
import org.bukkit.NamespacedKey; | ||
|
||
import club.claycoffee.ClayTech.utils.Lang; | ||
import me.mrCookieSlime.Slimefun.Lists.RecipeType; | ||
import me.mrCookieSlime.Slimefun.api.SlimefunItemStack; | ||
|
||
@SuppressWarnings("deprecation") | ||
public class TRecipe { | ||
public static final RecipeType CLAY_CRAFTING_TABLE = new RecipeType( | ||
new SlimefunItemStack("CLAY_CRAFTING_TABLE", Defines.CLAY_CRAFTING_TABLE), "", | ||
new NamespacedKey(ClayTech.plugin,"CLAY_CRAFTIONG_TABLE"),new SlimefunItemStack("CLAY_CRAFTING_TABLE", Defines.CLAY_CRAFTING_TABLE), "", | ||
Lang.readMachineRecipesText("CLAY_FUSION_MACHINE")); | ||
public static final RecipeType CLAY_FOOD_CAULDRON = new RecipeType( | ||
new SlimefunItemStack("CLAY_FOOD_CAULDRON", Defines.CLAY_FOOD_CAULDRON), "", | ||
new NamespacedKey(ClayTech.plugin,"CLAY_FOOD_CAULDRON"),new SlimefunItemStack("CLAY_FOOD_CAULDRON", Defines.CLAY_FOOD_CAULDRON), "", | ||
Lang.readMachineRecipesText("CLAY_ELETRIC_CAULDRON")); | ||
public static final RecipeType CLAY_FOOD_CHALKING_MACHINE = new RecipeType( | ||
new SlimefunItemStack("CLAY_FOOD_CHALKING_MACHINE", Defines.CLAY_FOOD_CHALKING_MACHINE), "", | ||
new NamespacedKey(ClayTech.plugin,"CLAY_FOOD_CHALKING_MACHINE"),new SlimefunItemStack("CLAY_FOOD_CHALKING_MACHINE", Defines.CLAY_FOOD_CHALKING_MACHINE), "", | ||
Lang.readMachineRecipesText("CLAY_FOOD_CHALKING_MACHINE")); | ||
public static final RecipeType CLAY_ELEMENT_EXTRACTER = new RecipeType( | ||
new SlimefunItemStack("CLAY_ELEMENT_EXTRACTER", Defines.CLAY_ELEMENT_EXTRACTER), "", | ||
new NamespacedKey(ClayTech.plugin,"CLAY_ELEMENT_EXTRACTER"),new SlimefunItemStack("CLAY_ELEMENT_EXTRACTER", Defines.CLAY_ELEMENT_EXTRACTER), "", | ||
Lang.readMachineRecipesText("CLAY_ELEMENT_EXTRACTER")); | ||
} |