2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("InitCrafting.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.crafting;
|
2015-01-30 20:16:32 +01:00
|
|
|
|
2016-05-20 17:55:33 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
2016-09-01 22:11:51 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.fluids.InitFluids;
|
2016-05-20 17:55:33 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.InitItems;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
|
2017-02-22 13:28:53 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.misc.apiimpl.farmer.*;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2016-05-20 17:55:33 +02:00
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-11-22 00:11:58 +01:00
|
|
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
2016-07-17 13:27:20 +02:00
|
|
|
import net.minecraftforge.oredict.RecipeSorter;
|
2015-01-30 20:16:32 +01:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public final class InitCrafting{
|
2015-01-30 20:16:32 +01:00
|
|
|
|
|
|
|
public static void init(){
|
2015-07-01 21:32:48 +02:00
|
|
|
ModUtil.LOGGER.info("Initializing Crafting Recipes...");
|
2015-01-30 20:16:32 +01:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
ItemCrafting.init();
|
|
|
|
BlockCrafting.init();
|
|
|
|
MiscCrafting.init();
|
|
|
|
FoodCrafting.init();
|
|
|
|
ToolCrafting.init();
|
2016-05-20 17:55:33 +02:00
|
|
|
|
2016-12-04 00:10:52 +01:00
|
|
|
ActuallyAdditionsAPI.addCompostRecipe(new ItemStack(InitItems.itemMisc, 1, TheMiscItems.MASHED_FOOD.ordinal()), Blocks.LEAVES, new ItemStack(InitItems.itemFertilizer), Blocks.DIRT);
|
|
|
|
ActuallyAdditionsAPI.addCompostRecipe(new ItemStack(InitItems.itemCanolaSeed), Blocks.DIRT, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.BIOMASS.ordinal()), Blocks.SOUL_SAND);
|
2016-07-17 13:27:20 +02:00
|
|
|
|
2016-11-21 13:30:38 +01:00
|
|
|
ActuallyAdditionsAPI.addOilGenRecipe(InitFluids.fluidCanolaOil.getName(), 40, 100);
|
2016-12-27 13:24:08 +01:00
|
|
|
ActuallyAdditionsAPI.addOilGenRecipe(InitFluids.fluidOil.getName(), 80, 120);
|
|
|
|
ActuallyAdditionsAPI.addOilGenRecipe(InitFluids.fluidCrystalOil.getName(), 100, 280);
|
|
|
|
ActuallyAdditionsAPI.addOilGenRecipe(InitFluids.fluidEmpoweredOil.getName(), 120, 400);
|
2016-09-01 22:11:51 +02:00
|
|
|
|
2016-12-04 15:03:01 +01:00
|
|
|
ActuallyAdditionsAPI.addFarmerBehavior(new DefaultFarmerBehavior());
|
2016-12-04 15:36:14 +01:00
|
|
|
ActuallyAdditionsAPI.addFarmerBehavior(new CactusFarmerBehavior());
|
2016-12-04 16:15:32 +01:00
|
|
|
ActuallyAdditionsAPI.addFarmerBehavior(new NetherWartFarmerBehavior());
|
2017-01-31 18:49:42 +01:00
|
|
|
ActuallyAdditionsAPI.addFarmerBehavior(new ReedFarmerBehavior());
|
2017-02-22 13:28:53 +01:00
|
|
|
ActuallyAdditionsAPI.addFarmerBehavior(new MelonPumpkinFarmerBehavior());
|
2016-12-04 15:03:01 +01:00
|
|
|
|
2016-08-04 11:57:35 +02:00
|
|
|
RecipeSorter.register(ModUtil.MOD_ID+":recipeKeepDataShaped", RecipeKeepDataShaped.class, RecipeSorter.Category.SHAPED, "after:minecraft:shaped");
|
|
|
|
RecipeSorter.register(ModUtil.MOD_ID+":recipeKeepDataShapeless", RecipeKeepDataShapeless.class, RecipeSorter.Category.SHAPELESS, "after:minecraft:shapeless");
|
2016-11-22 00:11:58 +01:00
|
|
|
|
|
|
|
GameRegistry.addRecipe(new RecipePotionRingCharging());
|
2016-12-06 18:10:43 +01:00
|
|
|
RecipeSorter.register(ModUtil.MOD_ID+":recipePotionRingCharging", RecipePotionRingCharging.class, RecipeSorter.Category.SHAPELESS, "after:minecraft:shapeless");
|
2017-01-30 18:33:18 +01:00
|
|
|
|
|
|
|
GameRegistry.addRecipe(new RecipeBioMash());
|
|
|
|
RecipeSorter.register(ModUtil.MOD_ID+":recipeBioMash", RecipeBioMash.class, RecipeSorter.Category.SHAPELESS, "after:minecraft:shapeless");
|
2015-01-30 20:16:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|