2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("BlockCrafting.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-03-07 02:23:31 +01:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.BlockColoredLamp;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.metalists.TheMiscBlocks;
|
2016-07-26 19:40:28 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.InitItems;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheCrystals;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
|
2017-06-17 00:48:49 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2016-03-18 18:41:37 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.RecipeUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.Util;
|
2017-06-17 00:48:49 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.crafting.RecipeHandler;
|
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;
|
2017-06-17 00:48:49 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public final class BlockCrafting{
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public static final IRecipe[] RECIPES_LAMPS = new IRecipe[BlockColoredLamp.ALL_LAMP_TYPES.length];
|
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;
|
2016-06-27 20:34:58 +02:00
|
|
|
public static IRecipe recipeCrateMedium;
|
|
|
|
public static IRecipe recipeCrateLarge;
|
2015-09-06 23:18:50 +02:00
|
|
|
public static IRecipe recipeFermentingBarrel;
|
|
|
|
public static IRecipe recipeCanolaPress;
|
2015-09-09 23:44:53 +02:00
|
|
|
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;
|
2016-07-17 14:09:57 +02:00
|
|
|
public static IRecipe recipeLaserRelayAdvanced;
|
|
|
|
public static IRecipe recipeLaserRelayExtreme;
|
2015-11-15 15:15:32 +01:00
|
|
|
public static IRecipe recipeAtomicReconstructor;
|
2015-12-09 20:59:10 +01:00
|
|
|
public static IRecipe recipeMiner;
|
2015-12-13 17:43:35 +01:00
|
|
|
public static IRecipe recipeFireworkBox;
|
2016-05-05 17:37:12 +02:00
|
|
|
public static IRecipe recipePhantomRedstoneface;
|
2016-05-11 19:30:19 +02:00
|
|
|
public static IRecipe recipeLaserRelayItemWhitelist;
|
|
|
|
public static IRecipe recipeItemInterface;
|
2016-12-18 14:06:42 +01:00
|
|
|
public static IRecipe recipeItemInterfaceHopping;
|
2016-06-05 04:34:01 +02:00
|
|
|
public static IRecipe recipePlayerInterface;
|
2016-06-09 17:39:01 +02:00
|
|
|
public static IRecipe recipeDisplayStand;
|
2016-07-05 18:32:22 +02:00
|
|
|
public static IRecipe recipeShockSuppressor;
|
2016-08-03 19:01:12 +02:00
|
|
|
public static IRecipe recipeEmpowerer;
|
2016-07-14 22:04:24 +02:00
|
|
|
public static IRecipe[] recipesTinyTorch = new IRecipe[2];
|
2016-09-17 12:12:59 +02:00
|
|
|
public static IRecipe recipeBioReactor;
|
2016-10-31 19:03:04 +01:00
|
|
|
public static IRecipe recipeFarmer;
|
2016-12-18 17:37:43 +01:00
|
|
|
public static IRecipe recipeBatteryBox;
|
2015-08-29 01:09:09 +02:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
public static void init(){
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockOilGenerator), new ItemStack(InitBlocks.blockOilGenerator));
|
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockFluidPlacer), new ItemStack(InitBlocks.blockFluidPlacer));
|
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockFluidCollector), new ItemStack(InitBlocks.blockFluidCollector));
|
2017-01-28 17:47:14 +01:00
|
|
|
|
2016-12-18 17:37:43 +01:00
|
|
|
//Battery Box
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockBatteryBox),
|
2016-12-18 17:37:43 +01:00
|
|
|
new ItemStack(InitBlocks.blockEnergizer),
|
|
|
|
new ItemStack(InitBlocks.blockEnervator),
|
2017-06-17 00:48:49 +02:00
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()));
|
2016-12-18 17:37:43 +01:00
|
|
|
recipeBatteryBox = RecipeUtil.lastIRecipe();
|
|
|
|
|
2016-10-31 19:03:04 +01:00
|
|
|
//Farmer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFarmer),
|
2016-11-30 17:05:49 +01:00
|
|
|
"ISI", "SCS", "ISI",
|
|
|
|
'I', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'S', new ItemStack(Items.WHEAT_SEEDS));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeFarmer = RecipeUtil.lastIRecipe();
|
2016-10-31 19:03:04 +01:00
|
|
|
|
2016-08-03 19:01:12 +02:00
|
|
|
//Empowerer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockEmpowerer),
|
2016-11-30 17:05:49 +01:00
|
|
|
" R ", " B ", "CDC",
|
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'B', new ItemStack(InitItems.itemBatteryDouble, 1, Util.WILDCARD),
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'D', new ItemStack(InitBlocks.blockDisplayStand));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeEmpowerer = RecipeUtil.lastIRecipe();
|
2016-08-03 19:01:12 +02:00
|
|
|
|
2016-07-14 22:04:24 +02:00
|
|
|
//Tiny Torch
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTinyTorch, 2),
|
2016-07-14 22:04:24 +02:00
|
|
|
"C",
|
|
|
|
"W",
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_COAL.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'W', "stickWood");
|
2016-07-14 22:04:24 +02:00
|
|
|
recipesTinyTorch[0] = RecipeUtil.lastIRecipe();
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTinyTorch, 2),
|
2016-07-14 22:04:24 +02:00
|
|
|
"C",
|
|
|
|
"W",
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_CHAR.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'W', "stickWood");
|
2016-07-14 22:04:24 +02:00
|
|
|
recipesTinyTorch[1] = RecipeUtil.lastIRecipe();
|
|
|
|
|
2015-12-13 17:43:35 +01:00
|
|
|
//Firework Box
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFireworkBox),
|
2016-12-29 21:53:34 +01:00
|
|
|
"GFG", "SAS", "CCC",
|
2016-11-30 17:05:49 +01:00
|
|
|
'G', new ItemStack(Items.GUNPOWDER),
|
|
|
|
'S', new ItemStack(Items.STICK),
|
2016-12-29 21:53:34 +01:00
|
|
|
'A', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'F', new ItemStack(Items.FIREWORKS, 1, Util.WILDCARD),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeFireworkBox = RecipeUtil.lastIRecipe();
|
2015-12-13 17:43:35 +01:00
|
|
|
|
2016-07-05 18:32:22 +02:00
|
|
|
//Shock Suppressor
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockShockSuppressor),
|
2016-11-30 17:05:49 +01:00
|
|
|
"OAO", "ACA", "OAO",
|
|
|
|
'A', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.COAL.ordinal()),
|
|
|
|
'O', new ItemStack(Blocks.OBSIDIAN),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeShockSuppressor = RecipeUtil.lastIRecipe();
|
2016-07-05 18:32:22 +02:00
|
|
|
|
2016-06-09 17:39:01 +02:00
|
|
|
//Display Stand
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockDisplayStand),
|
2016-11-30 17:05:49 +01:00
|
|
|
" R ", "EEE", "GGG",
|
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
'E', new ItemStack(InitBlocks.blockTestifiBucksGreenWall),
|
2017-06-17 00:48:49 +02:00
|
|
|
'G', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeDisplayStand = RecipeUtil.lastIRecipe();
|
2016-06-09 17:39:01 +02:00
|
|
|
|
2015-12-09 20:59:10 +01:00
|
|
|
//Miner
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMiner),
|
2016-11-30 17:05:49 +01:00
|
|
|
"IRI", "RCR", "IDI",
|
|
|
|
'R', "blockRedstone",
|
|
|
|
'I', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'C', new ItemStack(InitBlocks.blockCrystalEmpowered, 1, TheCrystals.COAL.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'D', new ItemStack(InitItems.itemDrill, 1, Util.WILDCARD));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeMiner = RecipeUtil.lastIRecipe();
|
2015-12-09 20:59:10 +01:00
|
|
|
|
2015-12-17 20:18:22 +01:00
|
|
|
//Quartz
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockQuartzWall, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"XXX", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockQuartzSlab, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockQuartzStair, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"X ", "XX ", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()));
|
2015-12-17 20:18:22 +01:00
|
|
|
|
|
|
|
//PillarQuartz
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPillarQuartzWall, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"XXX", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal()));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPillarQuartzSlab, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal()));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPillarQuartzStair, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"X ", "XX ", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal()));
|
2015-12-17 20:18:22 +01:00
|
|
|
|
|
|
|
//ChiseledQuartz
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockChiseledQuartzWall, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"XXX", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_CHISELED.ordinal()));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockChiseledQuartzSlab, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_CHISELED.ordinal()));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockChiseledQuartzStair, 6),
|
2015-12-17 20:18:22 +01:00
|
|
|
"X ", "XX ", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_CHISELED.ordinal()));
|
2015-12-17 20:18:22 +01:00
|
|
|
|
2015-11-20 22:31:43 +01:00
|
|
|
//White Ethetic Blocks
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteFence, 6),
|
2015-11-20 22:31:43 +01:00
|
|
|
"XXX", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteSlab, 6),
|
2015-11-20 22:31:43 +01:00
|
|
|
"XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteStairs, 6),
|
2015-11-20 22:31:43 +01:00
|
|
|
"X ", "XX ", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall));
|
2015-11-20 22:31:43 +01:00
|
|
|
|
|
|
|
//Green Ethetic Blocks
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenFence, 6),
|
2015-11-20 22:31:43 +01:00
|
|
|
"XXX", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenSlab, 6),
|
2015-11-20 22:31:43 +01:00
|
|
|
"XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall));
|
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenStairs, 6),
|
2015-11-20 22:31:43 +01:00
|
|
|
"X ", "XX ", "XXX",
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall));
|
2015-11-20 22:31:43 +01:00
|
|
|
|
2015-11-15 15:15:32 +01:00
|
|
|
//Atomic Reconstructor
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockAtomicReconstructor),
|
2017-03-08 20:06:55 +01:00
|
|
|
"IRI", "RCR", "IRI",
|
|
|
|
'R', "dustRedstone",
|
|
|
|
'I', "ingotIron",
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeAtomicReconstructor = RecipeUtil.lastIRecipe();
|
2015-11-15 15:15:32 +01:00
|
|
|
|
2015-10-28 20:35:39 +01:00
|
|
|
//Laser Relay
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockLaserRelay, 4),
|
2016-11-30 17:05:49 +01:00
|
|
|
"OBO", "RCR", "OBO",
|
|
|
|
'B', new ItemStack(Blocks.REDSTONE_BLOCK),
|
|
|
|
'O', new ItemStack(Blocks.OBSIDIAN),
|
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLaserRelay = RecipeUtil.lastIRecipe();
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockLaserRelayAdvanced),
|
2016-11-30 17:05:49 +01:00
|
|
|
" I ", "XRX", " I ",
|
|
|
|
'I', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'R', new ItemStack(InitBlocks.blockLaserRelay),
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLaserRelayAdvanced = RecipeUtil.lastIRecipe();
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockLaserRelayExtreme),
|
2016-11-30 17:05:49 +01:00
|
|
|
" I ", "XRX", " I ",
|
|
|
|
'I', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
|
|
|
'R', new ItemStack(InitBlocks.blockLaserRelayAdvanced),
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLaserRelayExtreme = RecipeUtil.lastIRecipe();
|
2015-10-28 20:35:39 +01:00
|
|
|
|
2016-05-11 19:30:19 +02:00
|
|
|
//Whitelist Item Laser Relay
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockLaserRelayItemWhitelist),
|
2016-11-30 17:05:49 +01:00
|
|
|
new ItemStack(InitBlocks.blockLaserRelayItem),
|
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLaserRelayItemWhitelist = RecipeUtil.lastIRecipe();
|
2016-05-11 19:30:19 +02:00
|
|
|
|
|
|
|
//Item Interface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockItemViewer),
|
2016-11-30 17:05:49 +01:00
|
|
|
"OBO", "RCR", "OBO",
|
|
|
|
'B', new ItemStack(Items.REDSTONE),
|
|
|
|
'O', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', "chestWood");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeItemInterface = RecipeUtil.lastIRecipe();
|
2016-05-11 19:30:19 +02:00
|
|
|
|
2016-12-18 14:06:42 +01:00
|
|
|
//Hopping Item Interface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockItemViewerHopping),
|
2016-12-18 14:06:42 +01:00
|
|
|
new ItemStack(InitBlocks.blockItemViewer),
|
2017-06-17 00:48:49 +02:00
|
|
|
new ItemStack(Blocks.HOPPER));
|
2016-12-18 14:06:42 +01:00
|
|
|
recipeItemInterfaceHopping = RecipeUtil.lastIRecipe();
|
|
|
|
|
2015-10-10 03:39:42 +02:00
|
|
|
//Ranged Collector
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockRangedCollector),
|
2016-11-30 17:05:49 +01:00
|
|
|
" A ", "EHE", " C ",
|
|
|
|
'E', new ItemStack(Items.ENDER_PEARL),
|
|
|
|
'H', new ItemStack(Blocks.HOPPER),
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'A', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeRangedCollector = RecipeUtil.lastIRecipe();
|
2015-10-10 03:39:42 +02:00
|
|
|
|
2015-10-05 19:55:28 +02:00
|
|
|
//Directional Breaker
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockDirectionalBreaker),
|
2016-11-30 17:05:49 +01:00
|
|
|
"BBB", " C ",
|
|
|
|
'C', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(InitBlocks.blockBreaker));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeDirectionalBreaker = RecipeUtil.lastIRecipe();
|
2015-10-05 19:55:28 +02:00
|
|
|
|
2015-08-26 17:14:07 +02:00
|
|
|
//Smiley Cloud
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockSmileyCloud),
|
2016-11-30 17:05:49 +01:00
|
|
|
" W ", "WXW", " W ",
|
|
|
|
'W', new ItemStack(Blocks.WOOL, 1, Util.WILDCARD),
|
2017-06-17 00:48:49 +02:00
|
|
|
'X', new ItemStack(InitItems.itemSolidifiedExperience));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeSmileyCloud = RecipeUtil.lastIRecipe();
|
2015-08-26 17:14:07 +02:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
//Compost
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockCompost),
|
2016-11-30 17:05:49 +01:00
|
|
|
"W W", "W W", "WCW",
|
|
|
|
'W', "plankWood",
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCompost = RecipeUtil.lastIRecipe();
|
2015-04-04 05:20:19 +02:00
|
|
|
|
2015-07-17 22:49:00 +02:00
|
|
|
//XP Solidifier
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockXPSolidifier),
|
2016-11-30 17:05:49 +01:00
|
|
|
"XXX", "DCD", "XXX",
|
|
|
|
'X', new ItemStack(InitItems.itemSolidifiedExperience),
|
|
|
|
'D', new ItemStack(InitBlocks.blockCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeSolidifier = RecipeUtil.lastIRecipe();
|
|
|
|
|
|
|
|
//Charcoal Block
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapedRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.CHARCOAL_BLOCK.ordinal()),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CCC", "CCC", "CCC",
|
|
|
|
'C', new ItemStack(Items.COAL, 1, 1));
|
|
|
|
recipeBlockChar = RecipeUtil.lastIRecipe();
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessRecipe(new ItemStack(Items.COAL, 9, 1),
|
2016-11-30 17:05:49 +01:00
|
|
|
new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.CHARCOAL_BLOCK.ordinal()));
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-04-04 05:20:19 +02:00
|
|
|
//Wood Casing
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
2016-11-30 17:05:49 +01:00
|
|
|
"WSW", "SRS", "WSW",
|
|
|
|
'W', "plankWood",
|
|
|
|
'R', "logWood",
|
2017-06-17 00:48:49 +02:00
|
|
|
'S', ConfigBoolValues.SUPER_DUPER_HARD_MODE.isEnabled() ? new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()) : "stickWood");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCase = RecipeUtil.lastIRecipe();
|
2015-04-04 05:20:19 +02:00
|
|
|
|
2015-10-29 20:54:10 +01:00
|
|
|
//Iron Casing
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2016-11-30 17:05:49 +01:00
|
|
|
"WSW", "SQS", "WSW",
|
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()),
|
|
|
|
'W', "ingotIron",
|
2017-06-17 00:48:49 +02:00
|
|
|
'S', ConfigBoolValues.SUPER_DUPER_HARD_MODE.isEnabled() ? new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()) : "stickWood");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeIronCase = RecipeUtil.lastIRecipe();
|
2015-10-29 20:54:10 +01:00
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
//Ender Casing
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()),
|
2016-11-30 17:05:49 +01:00
|
|
|
"WSW", "SRS", "WSW",
|
|
|
|
'W', ConfigBoolValues.SUPER_DUPER_HARD_MODE.isEnabled() ? new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()) : new ItemStack(Items.ENDER_PEARL),
|
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'S', ConfigBoolValues.SUPER_DUPER_HARD_MODE.isEnabled() ? new ItemStack(Blocks.DIAMOND_BLOCK) : new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeEnderCase = RecipeUtil.lastIRecipe();
|
2015-06-12 19:12:06 +02:00
|
|
|
|
|
|
|
//Phantom Booster
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPhantomBooster),
|
2016-11-30 17:05:49 +01:00
|
|
|
"RDR", "DCD", "RDR",
|
|
|
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePhantomBooster = RecipeUtil.lastIRecipe();
|
2015-06-12 19:12:06 +02:00
|
|
|
|
|
|
|
//Coffee Machine
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockCoffeeMachine),
|
2016-11-30 17:05:49 +01:00
|
|
|
" C ", " S ", "AMA",
|
|
|
|
'M', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()),
|
|
|
|
'C', InitItems.itemCoffeeBean,
|
|
|
|
'S', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'A', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCoffeeMachine = RecipeUtil.lastIRecipe();
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
//Energizer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockEnergizer),
|
2016-11-30 17:05:49 +01:00
|
|
|
"I I", "CAC", "I I",
|
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'A', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeEnergizer = RecipeUtil.lastIRecipe();
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2015-08-31 05:44:09 +02:00
|
|
|
//Enervator
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockEnervator),
|
2016-11-30 17:05:49 +01:00
|
|
|
" I ", "CAC", " I ",
|
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'A', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeEnervator = RecipeUtil.lastIRecipe();
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
//Lava Factory
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockLavaFactoryController),
|
2016-11-30 17:05:49 +01:00
|
|
|
"SCS", "ISI", "LLL",
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
'I', new ItemStack(InitBlocks.blockCrystalEmpowered, 1, TheCrystals.IRON.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'L', Items.LAVA_BUCKET);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLavaFactory = RecipeUtil.lastIRecipe();
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-08-01 01:30:50 +02:00
|
|
|
//Casing
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 32, TheMiscBlocks.LAVA_FACTORY_CASE.ordinal()),
|
2016-11-30 17:05:49 +01:00
|
|
|
"ICI",
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'I', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.IRON.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCasing = RecipeUtil.lastIRecipe();
|
2015-06-12 19:12:06 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Canola Press
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockCanolaPress),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CHC", "CDC", "CRC",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'H', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.CANOLA.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCanolaPress = RecipeUtil.lastIRecipe();
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
//Fermenting Barrel
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFermentingBarrel),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CHC", "CDC", "CRC",
|
|
|
|
'C', "logWood",
|
|
|
|
'H', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.CANOLA.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeFermentingBarrel = RecipeUtil.lastIRecipe();
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
//Phantomface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPhantomface),
|
2016-11-30 17:05:49 +01:00
|
|
|
" C ", "EBE", " S ",
|
|
|
|
'E', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
|
|
|
'C', "chestWood",
|
|
|
|
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePhantomface = RecipeUtil.lastIRecipe();
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2016-06-05 04:34:01 +02:00
|
|
|
//Player Interface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPlayerInterface),
|
2016-11-30 17:05:49 +01:00
|
|
|
"BCB", "EBE", "BSB",
|
|
|
|
'E', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
|
|
|
'C', new ItemStack(Items.SKULL, 1, 1),
|
|
|
|
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePlayerInterface = RecipeUtil.lastIRecipe();
|
2016-06-05 04:34:01 +02:00
|
|
|
|
2015-05-30 17:47:57 +02:00
|
|
|
//Phantom Placer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockPhantomPlacer),
|
2016-11-30 17:05:49 +01:00
|
|
|
InitBlocks.blockPlacer,
|
2017-06-17 00:48:49 +02:00
|
|
|
InitBlocks.blockPhantomface);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePhantomPlacer = RecipeUtil.lastIRecipe();
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Phantom Breaker
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockPhantomBreaker),
|
2016-11-30 17:05:49 +01:00
|
|
|
InitBlocks.blockBreaker,
|
2017-06-17 00:48:49 +02:00
|
|
|
InitBlocks.blockPhantomface);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePhantomBreaker = RecipeUtil.lastIRecipe();
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Phantom Energyface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPhantomEnergyface),
|
2016-11-30 17:05:49 +01:00
|
|
|
" R ", "RFR", " R ",
|
|
|
|
'R', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.REDSTONE.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'F', InitBlocks.blockPhantomface);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeEnergyface = RecipeUtil.lastIRecipe();
|
2015-05-30 17:47:57 +02:00
|
|
|
|
2016-05-05 17:37:12 +02:00
|
|
|
//Phantom Redstoneface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPhantomRedstoneface),
|
2016-11-30 17:05:49 +01:00
|
|
|
"SRS", "RFR", "SRS",
|
|
|
|
'R', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'S', new ItemStack(Items.REDSTONE),
|
2017-06-17 00:48:49 +02:00
|
|
|
'F', InitBlocks.blockPhantomface);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePhantomRedstoneface = RecipeUtil.lastIRecipe();
|
2016-05-05 17:37:12 +02:00
|
|
|
|
2015-05-30 17:47:57 +02:00
|
|
|
//Phantom Liquiface
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPhantomLiquiface),
|
2016-11-30 17:05:49 +01:00
|
|
|
"RFR",
|
|
|
|
'R', Items.BUCKET,
|
2017-06-17 00:48:49 +02:00
|
|
|
'F', InitBlocks.blockPhantomface);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLiquiface = RecipeUtil.lastIRecipe();
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Liquid Placer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFluidPlacer),
|
2016-11-30 17:05:49 +01:00
|
|
|
"RFR",
|
|
|
|
'R', Items.BUCKET,
|
2017-06-17 00:48:49 +02:00
|
|
|
'F', InitBlocks.blockPlacer);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLiquidPlacer = RecipeUtil.lastIRecipe();
|
2015-05-30 17:47:57 +02:00
|
|
|
|
|
|
|
//Liquid Breaker
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFluidCollector),
|
2016-11-30 17:05:49 +01:00
|
|
|
"RFR",
|
|
|
|
'R', Items.BUCKET,
|
2017-06-17 00:48:49 +02:00
|
|
|
'F', InitBlocks.blockBreaker);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLiquidCollector = RecipeUtil.lastIRecipe();
|
2015-05-30 17:47:57 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Oil Generator
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockOilGenerator),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CRC", "CBC", "CRC",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.CANOLA.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeOilGen = RecipeUtil.lastIRecipe();
|
|
|
|
|
2016-09-17 12:12:59 +02:00
|
|
|
//Bio Reactor
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockBioReactor),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CRC", "CBC", "CRC",
|
|
|
|
'C', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'R', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(Blocks.SAPLING, 1, Util.WILDCARD));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeBioReactor = RecipeUtil.lastIRecipe();
|
2016-09-17 12:12:59 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Coal Generator
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockCoalGenerator),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CRC", "CBC", "CRC",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'R', new ItemStack(Items.COAL, 1, Util.WILDCARD));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCoalGen = RecipeUtil.lastIRecipe();
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-10-01 12:11:38 +02:00
|
|
|
//Leaf Generator
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockLeafGenerator),
|
2016-11-30 17:05:49 +01:00
|
|
|
"IEI", "GLG", "ICI",
|
|
|
|
'I', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'G', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'E', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'L', "treeLeaves",
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeLeafGen = RecipeUtil.lastIRecipe();
|
2015-10-01 12:11:38 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
//Enderpearl Block
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()),
|
2015-05-20 22:39:43 +02:00
|
|
|
"EE", "EE",
|
2017-06-17 00:48:49 +02:00
|
|
|
'E', Items.ENDER_PEARL);
|
2016-03-18 18:41:37 +01:00
|
|
|
recipeEnderPearlBlock = RecipeUtil.lastIRecipe();
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(Items.ENDER_PEARL, 4),
|
|
|
|
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
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()),
|
2015-03-30 15:08:19 +02:00
|
|
|
"QQ", "QQ",
|
2017-06-17 00:48:49 +02:00
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
2016-03-18 18:41:37 +01:00
|
|
|
recipeQuartzBlock = RecipeUtil.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
//Fishing Net
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFishingNet),
|
2016-11-30 17:05:49 +01:00
|
|
|
"SSS", "SDS", "SSS",
|
|
|
|
'D', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.EMERALD.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'S', Items.STRING);
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeFisher = RecipeUtil.lastIRecipe();
|
2015-03-31 20:37:55 +02:00
|
|
|
|
2015-04-02 12:06:42 +02:00
|
|
|
//Repairer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockItemRepairer),
|
2016-11-30 17:05:49 +01:00
|
|
|
"DID", "OCO", "DID",
|
|
|
|
'D', new ItemStack(InitBlocks.blockCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
|
|
|
'I', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'O', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeRepairer = RecipeUtil.lastIRecipe();
|
2015-04-02 12:06:42 +02:00
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
//Solar Panel
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFurnaceSolar),
|
2016-11-30 17:05:49 +01:00
|
|
|
"IQI", "CDC", "IBI",
|
|
|
|
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
|
|
|
|
'I', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(Blocks.IRON_BARS));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeSolar = RecipeUtil.lastIRecipe();
|
2015-03-31 20:37:55 +02:00
|
|
|
|
|
|
|
//Heat Collector
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockHeatCollector),
|
2016-11-30 17:05:49 +01:00
|
|
|
"BRB", "CDC", "BQB",
|
|
|
|
'D', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()),
|
|
|
|
'R', new ItemStack(Items.REPEATER),
|
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
|
|
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'B', new ItemStack(Blocks.IRON_BARS));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeHeatCollector = RecipeUtil.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
//Quartz Pillar
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ_PILLAR.ordinal()),
|
2015-03-30 15:08:19 +02:00
|
|
|
"Q", "Q",
|
2017-06-17 00:48:49 +02:00
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
2016-03-18 18:41:37 +01:00
|
|
|
recipeQuartzPillar = RecipeUtil.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
//Chiseled Quartz
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockMisc, 2, TheMiscBlocks.QUARTZ_CHISELED.ordinal()),
|
2015-03-30 15:08:19 +02:00
|
|
|
"Q", "Q",
|
2017-06-17 00:48:49 +02:00
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.QUARTZ.ordinal()));
|
2016-03-18 18:41:37 +01:00
|
|
|
recipeQuartzChiseled = RecipeUtil.lastIRecipe();
|
2015-03-30 15:08:19 +02:00
|
|
|
|
2015-03-21 16:11:22 +01:00
|
|
|
//Inputter
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockInputter),
|
2016-11-30 17:05:49 +01:00
|
|
|
"WWW", "CHC", "WWW",
|
|
|
|
'W', "plankWood",
|
|
|
|
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'H', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeESD = RecipeUtil.lastIRecipe();
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addShapelessOreDictRecipe(new ItemStack(InitBlocks.blockInputterAdvanced),
|
2016-11-30 17:05:49 +01:00
|
|
|
InitBlocks.blockInputter,
|
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeAdvancedESD = RecipeUtil.lastIRecipe();
|
2015-03-21 16:11:22 +01:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
//Crusher
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockGrinder),
|
2016-11-30 17:05:49 +01:00
|
|
|
"MFC", "DQD", "CFM",
|
|
|
|
'M', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
|
|
|
'C', "cobblestone",
|
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
|
|
|
'Q', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'F', new ItemStack(Items.FLINT));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCrusher = RecipeUtil.lastIRecipe();
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Double Crusher
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockGrinderDouble),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CDC", "RFR", "CDC",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
|
|
|
'R', InitBlocks.blockGrinder,
|
2017-06-29 18:30:02 +02:00
|
|
|
'F', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeDoubleCrusher = RecipeUtil.lastIRecipe();
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Double Furnace
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFurnaceDouble),
|
2016-11-30 17:05:49 +01:00
|
|
|
"PDC", "RFR", "CDP",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
|
|
|
'R', new ItemStack(Blocks.FURNACE),
|
|
|
|
'F', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.IRON_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'P', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeFurnace = RecipeUtil.lastIRecipe();
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Feeder
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockFeeder),
|
2016-11-30 17:05:49 +01:00
|
|
|
"WCW", "DHD", "WCW",
|
|
|
|
'W', "plankWood",
|
|
|
|
'D', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
|
|
|
'C', new ItemStack(Items.GOLDEN_CARROT),
|
2017-06-17 00:48:49 +02:00
|
|
|
'H', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeFeeder = RecipeUtil.lastIRecipe();
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
//Giant Chest
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockGiantChest),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CWC", "WDW", "CWC",
|
|
|
|
'C', "chestWood",
|
|
|
|
'D', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'W', "plankWood");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCrate = RecipeUtil.lastIRecipe();
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
new RecipeKeepDataShaped(new ResourceLocation(ModUtil.MOD_ID, "giant_chest_media"), new ItemStack(InitBlocks.blockGiantChestMedium), new ItemStack(InitBlocks.blockGiantChest),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CWC", "WDW", "CWC",
|
|
|
|
'C', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.COAL.ordinal()),
|
|
|
|
'D', new ItemStack(InitBlocks.blockGiantChest),
|
2017-06-17 00:48:49 +02:00
|
|
|
'W', "plankWood");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCrateMedium = RecipeUtil.lastIRecipe();
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
new RecipeKeepDataShaped(new ResourceLocation(ModUtil.MOD_ID, "giant_chest_large"), new ItemStack(InitBlocks.blockGiantChestLarge), new ItemStack(InitBlocks.blockGiantChestMedium),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CWC", "WDW", "CWC",
|
|
|
|
'C', new ItemStack(InitBlocks.blockCrystalEmpowered, 1, TheCrystals.COAL.ordinal()),
|
|
|
|
'D', new ItemStack(InitBlocks.blockGiantChestMedium),
|
2017-06-17 00:48:49 +02:00
|
|
|
'W', "plankWood");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeCrateLarge = RecipeUtil.lastIRecipe();
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2015-04-24 19:22:03 +02:00
|
|
|
//Greenhouse Glass
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockGreenhouseGlass, 3),
|
2016-11-30 17:05:49 +01:00
|
|
|
"GSG", "SDS", "GSG",
|
|
|
|
'G', "blockGlass",
|
|
|
|
'D', new ItemStack(InitBlocks.blockCrystalEmpowered, 1, TheCrystals.LAPIS.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'S', "treeSapling");
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeGlass = RecipeUtil.lastIRecipe();
|
2015-04-24 19:22:03 +02:00
|
|
|
|
|
|
|
//Placer
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockPlacer),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CCC", "CRP", "CCC",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'P', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePlacer = RecipeUtil.lastIRecipe();
|
2015-04-24 19:22:03 +02:00
|
|
|
|
|
|
|
//Breaker
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockBreaker),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CCC", "CRP", "CCC",
|
|
|
|
'C', "cobblestone",
|
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'P', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeBreaker = RecipeUtil.lastIRecipe();
|
2015-04-24 19:22:03 +02:00
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
//Dropper
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockDropper),
|
2016-11-30 17:05:49 +01:00
|
|
|
"CBC", "CDR", "CBC",
|
|
|
|
'B', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()),
|
|
|
|
'C', "cobblestone",
|
|
|
|
'D', Blocks.DROPPER,
|
2017-06-17 00:48:49 +02:00
|
|
|
'R', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipeDropper = RecipeUtil.lastIRecipe();
|
|
|
|
|
|
|
|
for(int i = 0; i < BlockColoredLamp.ALL_LAMP_TYPES.length; i++){
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockColoredLamp, 6, i),
|
2016-11-30 17:05:49 +01:00
|
|
|
"GCG", "DQD", "GCG",
|
|
|
|
'C', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()),
|
|
|
|
'G', "glowstone",
|
|
|
|
'D', "dye"+BlockColoredLamp.ALL_LAMP_TYPES[i].oreName,
|
2017-06-17 00:48:49 +02:00
|
|
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
2016-11-30 17:05:49 +01:00
|
|
|
RECIPES_LAMPS[i] = RecipeUtil.lastIRecipe();
|
|
|
|
}
|
|
|
|
|
2017-06-17 00:48:49 +02:00
|
|
|
RecipeHandler.addOreDictRecipe(new ItemStack(InitBlocks.blockLampPowerer, 4),
|
2016-11-30 17:05:49 +01:00
|
|
|
"XXX", "XLX", "XXX",
|
|
|
|
'X', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
2017-06-17 00:48:49 +02:00
|
|
|
'L', new ItemStack(InitBlocks.blockColoredLamp, 1, Util.WILDCARD));
|
2016-11-30 17:05:49 +01:00
|
|
|
recipePowerer = RecipeUtil.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
|
|
|
}
|