ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/crafting/CrusherCrafting.java

88 lines
3.8 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("CrusherCrafting.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* <EFBFBD> 2015 Ellpeck
*/
package ellpeck.actuallyadditions.crafting;
import ellpeck.actuallyadditions.config.values.ConfigCrafting;
import ellpeck.actuallyadditions.recipe.CrusherRecipeRegistry;
2015-07-01 21:32:48 +02:00
import ellpeck.actuallyadditions.util.ModUtil;
import ellpeck.actuallyadditions.util.Util;
public class CrusherCrafting{
public static CrusherRecipeRegistry.CrusherRecipe recipeSugar;
public static CrusherRecipeRegistry.CrusherRecipe recipeIronHorseArmor;
public static CrusherRecipeRegistry.CrusherRecipe recipeGoldHorseArmor;
public static CrusherRecipeRegistry.CrusherRecipe recipeDiamondHorseArmor;
public static void init(){
2015-07-01 21:32:48 +02:00
ModUtil.LOGGER.info("Initializing Crusher Recipes...");
2015-10-02 16:48:01 +02:00
if(ConfigCrafting.REDSTONE.isEnabled()){
CrusherRecipeRegistry.addRecipe("oreRedstone", "dustRedstone", 10);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.LAPIS.isEnabled()){
CrusherRecipeRegistry.addRecipe("oreLapis", "gemLapis", 12);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.COAL.isEnabled()){
CrusherRecipeRegistry.addRecipe("coal", "dustCoal", 1);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.COAL_ORE.isEnabled()){
CrusherRecipeRegistry.addRecipe("oreCoal", "coal", 3);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.COAL_BLOCKS.isEnabled()){
CrusherRecipeRegistry.addRecipe("blockCoal", "coal", 9);
2015-10-02 16:48:01 +02:00
}
2015-10-03 22:09:53 +02:00
if(ConfigCrafting.QUARTZ_ORE.isEnabled()){
CrusherRecipeRegistry.addRecipe("oreQuartz", "gemQuartz", 3);
}
2015-10-02 16:48:01 +02:00
if(ConfigCrafting.COBBLESTONE.isEnabled()){
CrusherRecipeRegistry.addRecipe("cobblestone", "sand", 1);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.GRAVEL.isEnabled()){
CrusherRecipeRegistry.addRecipe("gravel", "flint", 1);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.STONE.isEnabled()){
CrusherRecipeRegistry.addRecipe("stone", "cobblestone", 1);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.RICE_SUGAR.isEnabled()){
CrusherRecipeRegistry.addRecipe("cropRice", "sugar", 2);
recipeSugar = Util.GetRecipes.lastCrusherRecipe();
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.NICKEL.isEnabled()){
CrusherRecipeRegistry.addRecipe("oreNickel", "dustNickel", 2, "dustPlatinum", 1, 15);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.IRON.isEnabled()){
CrusherRecipeRegistry.addRecipe("oreIron", "dustIron", 2, "dustGold", 1, 20);
2015-10-02 16:48:01 +02:00
}
if(ConfigCrafting.HORSE_ARMORS.isEnabled()){
CrusherRecipeRegistry.addRecipe("armorHorseIron", "dustIron", 8);
recipeIronHorseArmor = Util.GetRecipes.lastCrusherRecipe();
CrusherRecipeRegistry.addRecipe("armorHorseGold", "dustGold", 8);
recipeGoldHorseArmor = Util.GetRecipes.lastCrusherRecipe();
CrusherRecipeRegistry.addRecipe("armorHorseDiamond", "dustDiamond", 8);
recipeDiamondHorseArmor = Util.GetRecipes.lastCrusherRecipe();
}
CrusherRecipeRegistry.searchCases.add(new CrusherRecipeRegistry.SearchCase("oreNether", 6));
CrusherRecipeRegistry.searchCases.add(new CrusherRecipeRegistry.SearchCase("orePoor", 4, "nugget"));
CrusherRecipeRegistry.searchCases.add(new CrusherRecipeRegistry.SearchCase("denseore", 8));
CrusherRecipeRegistry.searchCases.add(new CrusherRecipeRegistry.SearchCase("gem", 1));
CrusherRecipeRegistry.searchCases.add(new CrusherRecipeRegistry.SearchCase("ingot", 1));
CrusherRecipeRegistry.searchCases.add(new CrusherRecipeRegistry.SearchCase("ore", 2));
CrusherRecipeRegistry.registerFinally();
}
}