2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("BlockCrafting.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
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-12-30 22:02:15 +01:00
|
|
|
package de.ellpeck.actuallyadditions.crafting;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
2015-12-30 22:02:15 +01:00
|
|
|
import de.ellpeck.actuallyadditions.blocks.BlockColoredLamp;
|
|
|
|
import de.ellpeck.actuallyadditions.blocks.InitBlocks;
|
|
|
|
import de.ellpeck.actuallyadditions.blocks.metalists.TheMiscBlocks;
|
|
|
|
import de.ellpeck.actuallyadditions.config.values.ConfigCrafting;
|
|
|
|
import de.ellpeck.actuallyadditions.items.InitItems;
|
|
|
|
import de.ellpeck.actuallyadditions.items.metalists.TheCrystals;
|
|
|
|
import de.ellpeck.actuallyadditions.items.metalists.TheMiscItems;
|
|
|
|
import de.ellpeck.actuallyadditions.util.Util;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-08-29 01:09:09 +02:00
|
|
|
import net.minecraft.item.crafting.IRecipe;
|
2015-04-04 05:20:19 +02:00
|
|
|
import net.minecraftforge.oredict.ShapedOreRecipe;
|
|
|
|
import net.minecraftforge.oredict.ShapelessOreRecipe;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
public class BlockCrafting{
|
|
|
|
|
2015-08-29 01:09:09 +02:00
|
|
|
public static IRecipe recipeSmileyCloud;
|
|
|
|
public static IRecipe recipePhantomface;
|
|
|
|
public static IRecipe recipeLiquiface;
|
|
|
|
public static IRecipe recipeEnergyface;
|
|
|
|
public static IRecipe recipePhantomBreaker;
|
|
|
|
public static IRecipe recipePhantomPlacer;
|
|
|
|
public static IRecipe recipeBreaker;
|
|
|
|
public static IRecipe recipePlacer;
|
|
|
|
public static IRecipe recipeLiquidPlacer;
|
|
|
|
public static IRecipe recipeLiquidCollector;
|
2015-08-30 01:19:03 +02:00
|
|
|
public static IRecipe recipeCase;
|
2015-10-29 20:54:10 +01:00
|
|
|
public static IRecipe recipeIronCase;
|
2015-08-30 01:19:03 +02:00
|
|
|
public static IRecipe recipeEnderCase;
|
|
|
|
public static IRecipe recipeEnderPearlBlock;
|
|
|
|
public static IRecipe recipeESD;
|
|
|
|
public static IRecipe recipeAdvancedESD;
|
|
|
|
public static IRecipe recipePhantomBooster;
|
2015-08-30 04:02:28 +02:00
|
|
|
public static IRecipe recipeCoffeeMachine;
|
2015-08-30 05:11:05 +02:00
|
|
|
public static IRecipe recipeCrusher;
|
|
|
|
public static IRecipe recipeDoubleCrusher;
|
2015-08-30 19:10:10 +02:00
|
|
|
public static IRecipe recipeFurnace;
|
2015-08-31 05:44:09 +02:00
|
|
|
public static IRecipe recipeSolidifier;
|
|
|
|
public static IRecipe recipeCasing;
|
|
|
|
public static IRecipe recipeGlass;
|
|
|
|
public static IRecipe recipeLavaFactory;
|
|
|
|
public static IRecipe recipeEnergizer;
|
|
|
|
public static IRecipe recipeEnervator;
|
2015-08-31 07:24:58 +02:00
|
|
|
public static IRecipe recipeSolar;
|
|
|
|
public static IRecipe recipeHeatCollector;
|
|
|
|
public static IRecipe recipeCoalGen;
|
|
|
|
public static IRecipe recipeOilGen;
|
|
|
|
public static IRecipe recipeRepairer;
|
|
|
|
public static IRecipe recipeFisher;
|
|
|
|
public static IRecipe recipeQuartzBlock;
|
|
|
|
public static IRecipe recipeQuartzChiseled;
|
|
|
|
public static IRecipe recipeQuartzPillar;
|
2015-08-31 10:45:05 +02:00
|
|
|
public static IRecipe recipeBlockChar;
|
|
|
|
public static IRecipe recipeFeeder;
|
|
|
|
public static IRecipe recipeCompost;
|
2015-09-06 23:18:50 +02:00
|
|
|
public static IRecipe recipeCrate;
|
|
|
|
public static IRecipe recipeFermentingBarrel;
|
|
|
|
public static IRecipe recipeCanolaPress;
|
2015-09-09 23:44:53 +02:00
|
|
|
public static IRecipe[] recipesLamps = new IRecipe[BlockColoredLamp.allLampTypes.length];
|
|
|
|
public static IRecipe recipePowerer;
|
2015-10-01 12:11:38 +02:00
|
|
|
public static IRecipe recipeLeafGen;
|
2015-10-05 19:55:28 +02:00
|
|
|
public static IRecipe recipeDirectionalBreaker;
|
2015-10-06 12:40:13 +02:00
|
|
|
public static IRecipe recipeDropper;
|
2015-10-10 03:39:42 +02:00
|
|
|
public static IRecipe recipeRangedCollector;
|
2015-10-28 20:35:39 +01:00
|
|
|
public static IRecipe recipeLaserRelay;
|
2015-11-15 15:15:32 +01:00
|
|
|
public static IRecipe recipeAtomicReconstructor;
|
2015-11-24 20:19:27 +01:00
|
|
|
public static IRecipe recipeBookStand;
|
2015-12-09 20:59:10 +01:00
|
|
|
public static IRecipe recipeMiner;
|
2015-12-13 17:43:35 +01:00
|
|
|
public static IRecipe recipeFireworkBox;
|
2015-08-29 01:09:09 +02:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
public static void init(){
|
|
|
|
|
2015-11-24 20:19:27 +01:00
|
|
|
//Book Stand
|
2015-12-03 20:15:07 +01:00
|
|
|
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitBlocks.blockBookletStand), new ItemStack(InitItems.itemBooklet), "plankWood"));
|
2015-11-24 20:19:27 +01:00
|
|
|
recipeBookStand = Util.GetRecipes.lastIRecipe();
|
|
|
|
|
2015-12-13 17:43:35 +01:00
|
|
|
//Firework Box
|
|
|
|
if(ConfigCrafting.FIREWORK_BOX.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFireworkBox),
|
|
|
|
"GGG", "SSS", "CCC",
|
|
|
|
'G', new ItemStack(Items.gunpowder),
|
|
|
|
'S', new ItemStack(Items.stick),
|
|
|
|
'C', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal())));
|
|
|
|
recipeFireworkBox = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-12-09 20:59:10 +01:00
|
|
|
//Miner
|
|
|
|
if(ConfigCrafting.MINER.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMiner),
|
|
|
|
"IRI", "RCR", "IDI",
|
|
|
|
'R', "blockRedstone",
|
|
|
|
'I', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'C', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.COAL.ordinal()),
|
|
|
|
'D', new ItemStack(InitItems.itemDrill, 1, Util.WILDCARD)));
|
|
|
|
recipeMiner = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-12-17 20:18:22 +01:00
|
|
|
//Quartz
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockQuartzWall, 6),
|
|
|
|
"XXX", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal())));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockQuartzSlab, 6),
|
|
|
|
"XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal())));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockQuartzStair, 6),
|
|
|
|
"X ", "XX ", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal())));
|
|
|
|
|
|
|
|
//PillarQuartz
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPillarQuartzWall, 6),
|
|
|
|
"XXX", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal())));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPillarQuartzSlab, 6),
|
|
|
|
"XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal())));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPillarQuartzStair, 6),
|
|
|
|
"X ", "XX ", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal())));
|
|
|
|
|
|
|
|
//ChiseledQuartz
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockChiseledQuartzWall, 6),
|
|
|
|
"XXX", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_CHISELED.ordinal())));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockChiseledQuartzSlab, 6),
|
|
|
|
"XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_CHISELED.ordinal())));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockChiseledQuartzStair, 6),
|
|
|
|
"X ", "XX ", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_CHISELED.ordinal())));
|
|
|
|
|
2015-11-20 22:31:43 +01:00
|
|
|
//White Ethetic Blocks
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteFence, 6),
|
|
|
|
"XXX", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall)));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteSlab, 6),
|
|
|
|
"XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall)));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteStairs, 6),
|
|
|
|
"X ", "XX ", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall)));
|
|
|
|
|
|
|
|
//Green Ethetic Blocks
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenFence, 6),
|
|
|
|
"XXX", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall)));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenSlab, 6),
|
|
|
|
"XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall)));
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenStairs, 6),
|
|
|
|
"X ", "XX ", "XXX",
|
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall)));
|
|
|
|
|
2015-11-15 15:15:32 +01:00
|
|
|
//Atomic Reconstructor
|
|
|
|
if(ConfigCrafting.ATOMIC_RECONSTRUCTOR.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockAtomicReconstructor),
|
|
|
|
"IRI", "RCR", "IRI",
|
2015-12-09 17:58:20 +01:00
|
|
|
'R', "dustRedstone",
|
2015-11-15 15:15:32 +01:00
|
|
|
'I', "ingotIron",
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal())));
|
|
|
|
recipeAtomicReconstructor = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-10-28 20:35:39 +01:00
|
|
|
//Laser Relay
|
|
|
|
if(ConfigCrafting.LASER_RELAY.isEnabled()){
|
2015-10-29 20:54:10 +01:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockLaserRelay, 2),
|
|
|
|
"OBO", "RCR", "OBO",
|
|
|
|
'B', new ItemStack(Blocks.redstone_block),
|
2015-10-28 20:35:39 +01:00
|
|
|
'O', new ItemStack(Blocks.obsidian),
|
2015-12-01 23:23:55 +01:00
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-10-28 20:35:39 +01:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
|
|
|
recipeLaserRelay = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-10-10 03:39:42 +02:00
|
|
|
//Ranged Collector
|
|
|
|
if(ConfigCrafting.RANGED_COLLECTOR.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockRangedCollector),
|
2015-11-15 17:50:31 +01:00
|
|
|
" A ", "EHE", " C ",
|
2015-10-10 03:39:42 +02:00
|
|
|
'E', new ItemStack(Items.ender_pearl),
|
|
|
|
'H', new ItemStack(Blocks.hopper),
|
2015-12-26 23:48:49 +01:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
'A', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal())));
|
2015-10-10 03:39:42 +02:00
|
|
|
recipeRangedCollector = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-10-05 19:55:28 +02:00
|
|
|
//Directional Breaker
|
|
|
|
if(ConfigCrafting.DIRECTIONAL_BREAKER.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockDirectionalBreaker),
|
2015-11-15 17:50:31 +01:00
|
|
|
"BBB", " C ",
|
2015-12-01 23:23:55 +01:00
|
|
|
'C', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()),
|
2015-10-05 19:55:28 +02:00
|
|
|
'B', new ItemStack(InitBlocks.blockBreaker)));
|
|
|
|
recipeDirectionalBreaker = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-08-26 17:14:07 +02:00
|
|
|
//Smiley Cloud
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.CLOUD.isEnabled()){
|
2015-08-26 17:14:07 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockSmileyCloud),
|
|
|
|
" W ", "WXW", " W ",
|
|
|
|
'W', new ItemStack(Blocks.wool, 1, Util.WILDCARD),
|
2015-12-28 15:05:56 +01:00
|
|
|
'X', new ItemStack(InitItems.itemSolidifiedExperience)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeSmileyCloud = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-08-26 17:14:07 +02:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
//Compost
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.COMPOST.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockCompost),
|
2015-04-06 15:51:59 +02:00
|
|
|
"W W", "W W", "WCW",
|
2015-04-04 05:20:19 +02:00
|
|
|
'W', "plankWood",
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCompost = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-04-04 05:20:19 +02:00
|
|
|
|
2015-07-17 22:49:00 +02:00
|
|
|
//XP Solidifier
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.XP_SOLIDIFIER.isEnabled()){
|
2015-07-17 22:49:00 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockXPSolidifier),
|
|
|
|
"XXX", "DCD", "XXX",
|
2015-12-28 15:05:56 +01:00
|
|
|
'X', new ItemStack(InitItems.itemSolidifiedExperience),
|
2015-12-01 23:41:33 +01:00
|
|
|
'D', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2015-07-17 22:49:00 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeSolidifier = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-07-17 22:49:00 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Charcoal Block
|
|
|
|
GameRegistry.addRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.CHARCOAL_BLOCK.ordinal()),
|
|
|
|
"CCC", "CCC", "CCC",
|
|
|
|
'C', new ItemStack(Items.coal, 1, 1));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeBlockChar = Util.GetRecipes.lastIRecipe();
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addShapelessRecipe(new ItemStack(Items.coal, 9, 1),
|
|
|
|
new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.CHARCOAL_BLOCK.ordinal()));
|
|
|
|
|
2015-04-04 05:20:19 +02:00
|
|
|
//Wood Casing
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.WOOD_CASING.isEnabled()){
|
2015-04-24 19:22:03 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
|
|
|
"WSW", "SRS", "WSW",
|
|
|
|
'W', "plankWood",
|
2015-07-01 18:14:21 +02:00
|
|
|
'R', "logWood",
|
2015-04-24 19:22:03 +02:00
|
|
|
'S', "stickWood"));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCase = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-04-04 05:20:19 +02:00
|
|
|
|
2015-10-29 20:54:10 +01:00
|
|
|
//Iron Casing
|
|
|
|
if(ConfigCrafting.IRON_CASING.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
"WSW", "SQS", "WSW",
|
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()),
|
|
|
|
'W', "ingotIron",
|
|
|
|
'S', "stickWood"));
|
|
|
|
recipeIronCase = Util.GetRecipes.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
//Ender Casing
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.ENDER_CASING.isEnabled()){
|
2015-06-12 19:12:06 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()),
|
|
|
|
"WSW", "SRS", "WSW",
|
2015-07-02 10:45:15 +02:00
|
|
|
'W', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()),
|
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
'S', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeEnderCase = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
|
|
|
//Phantom Booster
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PHANTOM_BOOSTER.isEnabled()){
|
2015-06-12 19:12:06 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomBooster),
|
|
|
|
"RDR", "DCD", "RDR",
|
2015-12-01 23:23:55 +01:00
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipePhantomBooster = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
|
|
|
//Coffee Machine
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.COFFEE_MACHINE.isEnabled()){
|
2015-06-12 19:12:06 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockCoffeeMachine),
|
2015-11-15 17:50:31 +01:00
|
|
|
" C ", " S ", "AMA",
|
2015-12-01 23:23:55 +01:00
|
|
|
'M', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', InitItems.itemCoffeeBean,
|
2015-12-26 23:48:49 +01:00
|
|
|
'S', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'A', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCoffeeMachine = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
//Energizer
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.ENERGIZER.isEnabled()){
|
2015-06-21 02:28:49 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockEnergizer),
|
|
|
|
"I I", "CAC", "I I",
|
2015-12-01 23:23:55 +01:00
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2015-10-29 20:54:10 +01:00
|
|
|
'A', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeEnergizer = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2015-08-31 05:44:09 +02:00
|
|
|
//Enervator
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.ENERVATOR.isEnabled()){
|
2015-06-21 02:28:49 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockEnervator),
|
|
|
|
" I ", "CAC", " I ",
|
2015-12-01 23:23:55 +01:00
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2015-10-29 20:54:10 +01:00
|
|
|
'A', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeEnervator = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
//Lava Factory
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.LAVA_FACTORY.isEnabled()){
|
2015-06-12 19:12:06 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockLavaFactoryController),
|
2015-08-02 02:04:31 +02:00
|
|
|
"SCS", "ISI", "LLL",
|
2015-10-29 20:54:10 +01:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2015-12-01 23:41:33 +01:00
|
|
|
'I', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.IRON.ordinal()),
|
2015-06-12 19:12:06 +02:00
|
|
|
'L', Items.lava_bucket));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeLavaFactory = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-08-01 01:30:50 +02:00
|
|
|
//Casing
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.CASING.isEnabled()){
|
2015-08-02 02:04:31 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 32, TheMiscBlocks.LAVA_FACTORY_CASE.ordinal()),
|
2015-06-12 19:12:06 +02:00
|
|
|
"ICI",
|
2015-10-29 20:54:10 +01:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-12-01 23:41:33 +01:00
|
|
|
'I', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.IRON.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCasing = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Canola Press
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.CANOLA_PRESS.isEnabled()){
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockCanolaPress),
|
|
|
|
"CHC", "CDC", "CRC",
|
|
|
|
'C', "cobblestone",
|
2015-12-01 23:23:55 +01:00
|
|
|
'H', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.CANOLA.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCanolaPress = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
//Fermenting Barrel
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.FERMENTING_BARREL.isEnabled()){
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFermentingBarrel),
|
|
|
|
"CHC", "CDC", "CRC",
|
|
|
|
'C', "logWood",
|
2015-12-01 23:23:55 +01:00
|
|
|
'H', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.CANOLA.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeFermentingBarrel = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
//Phantomface
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PHANTOMFACE.isEnabled()){
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomface),
|
2015-05-30 17:47:57 +02:00
|
|
|
" C ", "EBE", " S ",
|
2015-12-01 23:23:55 +01:00
|
|
|
'E', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2015-05-20 22:39:43 +02:00
|
|
|
'C', Blocks.chest,
|
2015-07-02 10:45:15 +02:00
|
|
|
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipePhantomface = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-05-30 17:47:57 +02:00
|
|
|
//Phantom Placer
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PHANTOM_PLACER.isEnabled()){
|
2015-05-30 17:47:57 +02:00
|
|
|
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitBlocks.blockPhantomPlacer),
|
2015-07-02 10:45:15 +02:00
|
|
|
InitBlocks.blockPlacer,
|
|
|
|
InitBlocks.blockPhantomface));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipePhantomPlacer = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Phantom Breaker
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PHANTOM_BREAKER.isEnabled()){
|
2015-05-30 17:47:57 +02:00
|
|
|
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitBlocks.blockPhantomBreaker),
|
2015-07-02 10:45:15 +02:00
|
|
|
InitBlocks.blockBreaker,
|
|
|
|
InitBlocks.blockPhantomface));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipePhantomBreaker = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Phantom Energyface
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PHANTOM_ENERGYFACE.isEnabled()){
|
2015-05-30 17:47:57 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomEnergyface),
|
|
|
|
" R ", "RFR", " R ",
|
2015-12-01 23:23:55 +01:00
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'F', InitBlocks.blockPhantomface));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeEnergyface = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Phantom Liquiface
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PHANTOM_LIQUIFACE.isEnabled()){
|
2015-05-30 17:47:57 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomLiquiface),
|
|
|
|
"RFR",
|
|
|
|
'R', Items.bucket,
|
2015-07-02 10:45:15 +02:00
|
|
|
'F', InitBlocks.blockPhantomface));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeLiquiface = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Liquid Placer
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.LIQUID_PLACER.isEnabled()){
|
2015-05-30 17:47:57 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFluidPlacer),
|
|
|
|
"RFR",
|
|
|
|
'R', Items.bucket,
|
2015-07-02 10:45:15 +02:00
|
|
|
'F', InitBlocks.blockPlacer));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeLiquidPlacer = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Liquid Breaker
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.LIQUID_BREAKER.isEnabled()){
|
2015-05-30 17:47:57 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFluidCollector),
|
|
|
|
"RFR",
|
|
|
|
'R', Items.bucket,
|
2015-07-02 10:45:15 +02:00
|
|
|
'F', InitBlocks.blockBreaker));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeLiquidCollector = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-30 17:47:57 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Oil Generator
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.OIL_GENERATOR.isEnabled()){
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockOilGenerator),
|
|
|
|
"CRC", "CBC", "CRC",
|
|
|
|
'C', "cobblestone",
|
2015-12-26 23:48:49 +01:00
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'B', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.CANOLA.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeOilGen = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
//Coal Generator
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.COAL_GENERATOR.isEnabled()){
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockCoalGenerator),
|
|
|
|
"CRC", "CBC", "CRC",
|
|
|
|
'C', "cobblestone",
|
2015-12-26 23:48:49 +01:00
|
|
|
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'R', new ItemStack(Items.coal, 1, Util.WILDCARD)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCoalGen = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-10-01 12:11:38 +02:00
|
|
|
//Leaf Generator
|
|
|
|
if(ConfigCrafting.LEAF_GENERATOR.isEnabled()){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockLeafGenerator),
|
|
|
|
"IEI", "GLG", "ICI",
|
2015-12-01 23:23:55 +01:00
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'G', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-10-29 20:54:10 +01:00
|
|
|
'E', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-10-01 12:11:38 +02:00
|
|
|
'L', "treeLeaves",
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeLeafGen = Util.GetRecipes.lastIRecipe();
|
2015-10-01 12:11:38 +02:00
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Enderpearl Block
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()),
|
|
|
|
"EE", "EE",
|
|
|
|
'E', Items.ender_pearl));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeEnderPearlBlock = Util.GetRecipes.lastIRecipe();
|
2015-05-20 22:39:43 +02:00
|
|
|
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(Items.ender_pearl, 4),
|
2015-07-02 10:45:15 +02:00
|
|
|
new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal())));
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-03-30 15:08:19 +02:00
|
|
|
//Quartz Block
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()),
|
2015-03-30 15:08:19 +02:00
|
|
|
"QQ", "QQ",
|
2015-07-02 10:45:15 +02:00
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeQuartzBlock = Util.GetRecipes.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
//Fishing Net
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.FISHING_NET.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFishingNet),
|
2015-03-31 20:37:55 +02:00
|
|
|
"SSS", "SDS", "SSS",
|
2015-12-01 23:23:55 +01:00
|
|
|
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2015-04-04 05:20:19 +02:00
|
|
|
'S', Items.string));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeFisher = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2015-04-02 12:06:42 +02:00
|
|
|
//Repairer
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.REPAIRER.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockItemRepairer),
|
2015-04-06 15:51:59 +02:00
|
|
|
"DID", "OCO", "DID",
|
2015-12-01 23:41:33 +01:00
|
|
|
'D', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'O', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeRepairer = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
//Solar Panel
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.SOLAR_PANEL.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFurnaceSolar),
|
2015-04-06 15:51:59 +02:00
|
|
|
"IQI", "CDC", "IBI",
|
2015-12-01 23:41:33 +01:00
|
|
|
'D', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
2015-10-29 20:54:10 +01:00
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2015-05-20 22:39:43 +02:00
|
|
|
'B', new ItemStack(Blocks.iron_bars)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeSolar = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
|
|
|
|
//Heat Collector
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.HEAT_COLLECTOR.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockHeatCollector),
|
2015-04-06 15:51:59 +02:00
|
|
|
"BRB", "CDC", "BQB",
|
2015-12-01 23:23:55 +01:00
|
|
|
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
2015-03-31 20:37:55 +02:00
|
|
|
'R', new ItemStack(Items.repeater),
|
2015-10-29 20:54:10 +01:00
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-03-31 20:37:55 +02:00
|
|
|
'L', new ItemStack(Items.lava_bucket),
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2015-05-20 22:39:43 +02:00
|
|
|
'B', new ItemStack(Blocks.iron_bars)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeHeatCollector = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
//Quartz Pillar
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal()),
|
2015-03-30 15:08:19 +02:00
|
|
|
"Q", "Q",
|
2015-07-02 10:45:15 +02:00
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeQuartzPillar = Util.GetRecipes.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
//Chiseled Quartz
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockMisc, 2, TheMiscBlocks.QUARTZ_CHISELED.ordinal()),
|
2015-03-30 15:08:19 +02:00
|
|
|
"Q", "Q",
|
2015-07-02 10:45:15 +02:00
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeQuartzChiseled = Util.GetRecipes.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
2015-03-21 16:11:22 +01:00
|
|
|
//Inputter
|
2015-04-24 19:22:03 +02:00
|
|
|
if(ConfigCrafting.INPUTTER.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockInputter),
|
2015-04-06 15:51:59 +02:00
|
|
|
"WWW", "CHC", "WWW",
|
2015-04-04 05:20:19 +02:00
|
|
|
'W', "plankWood",
|
2015-07-02 10:45:15 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
'H', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeESD = Util.GetRecipes.lastIRecipe();
|
2015-04-04 05:20:19 +02:00
|
|
|
|
|
|
|
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitBlocks.blockInputterAdvanced),
|
2015-07-02 10:45:15 +02:00
|
|
|
InitBlocks.blockInputter,
|
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeAdvancedESD = Util.GetRecipes.lastIRecipe();
|
2015-04-04 05:20:19 +02:00
|
|
|
}
|
2015-03-21 16:11:22 +01:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
//Crusher
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.CRUSHER.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGrinder),
|
2015-11-15 17:50:31 +01:00
|
|
|
"MFC", "DQD", "CFM",
|
2015-12-01 23:23:55 +01:00
|
|
|
'M', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-04-04 05:20:19 +02:00
|
|
|
'C', "cobblestone",
|
2015-07-02 10:45:15 +02:00
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2015-12-26 23:48:49 +01:00
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-03-07 02:23:31 +01:00
|
|
|
'P', new ItemStack(Blocks.piston),
|
2015-04-04 05:20:19 +02:00
|
|
|
'F', new ItemStack(Items.flint)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCrusher = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Double Crusher
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.DOUBLE_CRUSHER.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGrinderDouble),
|
2015-04-06 15:51:59 +02:00
|
|
|
"CDC", "RFR", "CDC",
|
2015-04-04 05:20:19 +02:00
|
|
|
'C', "cobblestone",
|
2015-07-02 10:45:15 +02:00
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
'R', InitBlocks.blockGrinder,
|
2015-12-26 23:48:49 +01:00
|
|
|
'F', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-04-04 05:20:19 +02:00
|
|
|
'P', new ItemStack(Blocks.piston)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeDoubleCrusher = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Double Furnace
|
2015-11-15 17:50:31 +01:00
|
|
|
if(ConfigCrafting.DOUBLE_FURNACE.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFurnaceDouble),
|
2015-11-15 17:50:31 +01:00
|
|
|
"PDC", "RFR", "CDP",
|
2015-04-04 05:20:19 +02:00
|
|
|
'C', "cobblestone",
|
2015-07-02 10:45:15 +02:00
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2015-03-07 02:23:31 +01:00
|
|
|
'R', new ItemStack(Blocks.furnace),
|
2015-12-26 23:48:49 +01:00
|
|
|
'F', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2015-12-01 23:23:55 +01:00
|
|
|
'P', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeFurnace = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Feeder
|
2015-11-15 17:50:31 +01:00
|
|
|
if(ConfigCrafting.FEEDER.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockFeeder),
|
2015-04-06 15:51:59 +02:00
|
|
|
"WCW", "DHD", "WCW",
|
2015-04-04 05:20:19 +02:00
|
|
|
'W', "plankWood",
|
2015-07-02 10:45:15 +02:00
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2015-03-07 02:23:31 +01:00
|
|
|
'C', new ItemStack(Items.golden_carrot),
|
2015-07-02 10:45:15 +02:00
|
|
|
'H', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeFeeder = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Giant Chest
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.GIANT_CHEST.isEnabled()){
|
2015-04-04 05:20:19 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGiantChest),
|
2015-04-06 15:51:59 +02:00
|
|
|
"CWC", "WDW", "CWC",
|
2015-03-07 02:23:31 +01:00
|
|
|
'C', new ItemStack(Blocks.chest),
|
2015-07-02 10:45:15 +02:00
|
|
|
'D', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
2015-04-04 05:20:19 +02:00
|
|
|
'W', "plankWood"));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeCrate = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-04-24 19:22:03 +02:00
|
|
|
//Greenhouse Glass
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.GREENHOUSE_GLASS.isEnabled()){
|
2015-07-17 22:49:00 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGreenhouseGlass, 3),
|
2015-04-24 19:22:03 +02:00
|
|
|
"GSG", "SDS", "GSG",
|
|
|
|
'G', "blockGlass",
|
2015-12-01 23:41:33 +01:00
|
|
|
'D', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.LAPIS.ordinal()),
|
2015-04-24 19:22:03 +02:00
|
|
|
'S', "treeSapling"));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeGlass = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-04-24 19:22:03 +02:00
|
|
|
|
|
|
|
//Placer
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.PLACER.isEnabled()){
|
2015-04-24 19:22:03 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPlacer),
|
|
|
|
"CCC", "CRP", "CCC",
|
|
|
|
'C', "cobblestone",
|
2015-07-02 10:45:15 +02:00
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2015-12-26 16:36:52 +01:00
|
|
|
'P', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipePlacer = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-04-24 19:22:03 +02:00
|
|
|
|
|
|
|
//Breaker
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.BREAKER.isEnabled()){
|
2015-04-24 19:22:03 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockBreaker),
|
|
|
|
"CCC", "CRP", "CCC",
|
|
|
|
'C', "cobblestone",
|
2015-07-02 10:45:15 +02:00
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2015-12-26 16:36:52 +01:00
|
|
|
'P', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipeBreaker = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-04-24 19:22:03 +02:00
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
//Dropper
|
2015-08-29 01:09:09 +02:00
|
|
|
if(ConfigCrafting.DROPPER.isEnabled()){
|
2015-05-04 17:26:50 +02:00
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockDropper),
|
2015-11-15 17:50:31 +01:00
|
|
|
"CBC", "CDR", "CBC",
|
2015-12-01 23:41:33 +01:00
|
|
|
'B', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()),
|
2015-05-04 17:26:50 +02:00
|
|
|
'C', "cobblestone",
|
|
|
|
'D', Blocks.dropper,
|
2015-07-02 10:45:15 +02:00
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
2015-10-06 12:40:13 +02:00
|
|
|
recipeDropper = Util.GetRecipes.lastIRecipe();
|
2015-08-29 01:09:09 +02:00
|
|
|
}
|
2015-05-04 17:26:50 +02:00
|
|
|
|
2015-07-02 01:39:15 +02:00
|
|
|
if(ConfigCrafting.LAMPS.isEnabled()){
|
|
|
|
for(int i = 0; i < BlockColoredLamp.allLampTypes.length; i++){
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockColoredLamp, 6, i),
|
2015-11-15 17:50:31 +01:00
|
|
|
"GCG", "DQD", "GCG",
|
2015-12-01 23:41:33 +01:00
|
|
|
'C', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()),
|
2015-07-02 01:39:15 +02:00
|
|
|
'G', "glowstone",
|
|
|
|
'D', "dye"+BlockColoredLamp.allLampTypes[i].name,
|
2015-07-02 10:45:15 +02:00
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal())));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipesLamps[i] = Util.GetRecipes.lastIRecipe();
|
2015-07-02 01:39:15 +02:00
|
|
|
}
|
2015-07-07 15:31:10 +02:00
|
|
|
|
|
|
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockLampPowerer, 4),
|
|
|
|
"XXX", "XLX", "XXX",
|
2015-12-01 23:23:55 +01:00
|
|
|
'X', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2015-07-07 15:31:10 +02:00
|
|
|
'L', new ItemStack(InitBlocks.blockColoredLamp, 1, Util.WILDCARD)));
|
2015-10-03 23:28:32 +02:00
|
|
|
recipePowerer = Util.GetRecipes.lastIRecipe();
|
2015-07-02 01:39:15 +02:00
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2015-12-01 23:41:33 +01:00
|
|
|
}
|