2013-01-18 23:43:53 -08:00
package tinker.tconstruct ;
2013-02-27 14:13:27 -08:00
import java.util.ArrayList ;
2013-01-18 23:43:53 -08:00
import net.minecraft.block.Block ;
import net.minecraft.block.material.Material ;
import net.minecraft.item.Item ;
import net.minecraft.item.ItemStack ;
2013-01-20 01:14:32 -08:00
import net.minecraft.item.crafting.FurnaceRecipes ;
2013-01-18 23:43:53 -08:00
import net.minecraft.nbt.NBTTagCompound ;
import net.minecraftforge.common.MinecraftForge ;
2013-02-27 14:13:27 -08:00
import net.minecraftforge.liquids.LiquidContainerData ;
import net.minecraftforge.liquids.LiquidContainerRegistry ;
import net.minecraftforge.liquids.LiquidDictionary ;
2013-02-14 10:57:49 -08:00
import net.minecraftforge.liquids.LiquidStack ;
2013-02-11 12:25:40 -08:00
import net.minecraftforge.oredict.OreDictionary ;
2013-01-18 23:43:53 -08:00
import net.minecraftforge.oredict.ShapedOreRecipe ;
2013-02-27 14:13:27 -08:00
import tinker.common.IPattern ;
2013-02-19 18:11:05 -08:00
import tinker.common.fancyitem.FancyEntityItem ;
2013-02-14 10:57:49 -08:00
import tinker.tconstruct.blocks.* ;
import tinker.tconstruct.blocks.liquids.* ;
2013-02-27 14:13:27 -08:00
import tinker.tconstruct.client.gui.ToolGuiElement ;
2013-02-14 10:57:49 -08:00
import tinker.tconstruct.crafting.* ;
2013-02-19 18:11:05 -08:00
import tinker.tconstruct.entity.* ;
2013-02-14 10:57:49 -08:00
import tinker.tconstruct.items.* ;
2013-02-27 14:13:27 -08:00
import tinker.tconstruct.logic.* ;
2013-02-14 10:57:49 -08:00
import tinker.tconstruct.modifiers.* ;
import tinker.tconstruct.tools.* ;
2013-01-23 17:53:32 -08:00
import cpw.mods.fml.common.IFuelHandler ;
2013-01-26 01:52:26 -08:00
import cpw.mods.fml.common.registry.EntityRegistry ;
2013-01-18 23:43:53 -08:00
import cpw.mods.fml.common.registry.GameRegistry ;
2013-02-04 12:37:37 -08:00
public class TContent implements IFuelHandler
2013-01-18 23:43:53 -08:00
{
//Patterns and other materials
2013-01-22 00:14:19 -08:00
public static Item blankPattern ;
2013-01-18 23:43:53 -08:00
public static Item materials ;
public static Item toolRod ;
public static Item toolShard ;
public static Item woodPattern ;
2013-02-28 18:24:12 -08:00
public static Item metalPattern ;
2013-02-02 01:48:55 -08:00
public static Item manualBook ;
2013-02-27 14:13:27 -08:00
public static Item buckets ;
2013-01-18 23:43:53 -08:00
//public static Item stonePattern;
//public static Item netherPattern;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
//Tools
public static ToolCore pickaxe ;
public static ToolCore shovel ;
public static ToolCore axe ;
public static ToolCore broadsword ;
public static ToolCore longsword ;
public static ToolCore rapier ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
public static ToolCore frypan ;
public static ToolCore battlesign ;
2013-01-21 14:02:28 -08:00
//public static ToolCore longbow;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
public static ToolCore mattock ;
public static ToolCore lumberaxe ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
//Tool parts
public static Item pickaxeHead ;
public static Item shovelHead ;
public static Item axeHead ;
public static Item swordBlade ;
public static Item largeGuard ;
public static Item medGuard ;
public static Item crossbar ;
public static Item binding ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
public static Item frypanHead ;
public static Item signHead ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
public static Item lumberHead ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
//Crafting blocks
2013-02-27 14:13:27 -08:00
public static Block woodCrafter ;
2013-01-18 23:43:53 -08:00
public static Block heldItemBlock ;
public static Block craftedSoil ;
2013-02-27 14:13:27 -08:00
public static Block smeltery ;
public static Block lavaTank ;
public static Block searedBlock ;
2013-02-19 18:11:05 -08:00
public static Block oreSlag ;
2013-02-28 18:24:12 -08:00
public static Block metalBlock ;
2013-02-14 10:57:49 -08:00
//Traps
public static Block landmine ;
2013-02-06 18:19:14 -08:00
2013-02-14 10:57:49 -08:00
//Liquids
2013-02-06 18:19:14 -08:00
public static Block ironFlowing ;
public static Block ironStill ;
public static Block goldFlowing ;
public static Block goldStill ;
public static Block copperFlowing ;
public static Block copperStill ;
public static Block tinFlowing ;
public static Block tinStill ;
public static Block aluminumFlowing ;
public static Block aluminumStill ;
public static Block cobaltFlowing ;
public static Block cobaltStill ;
public static Block arditeFlowing ;
public static Block arditeStill ;
public static Block bronzeFlowing ;
public static Block bronzeStill ;
2013-02-16 18:53:54 -08:00
public static Block alBrassFlowing ;
public static Block alBrassStill ;
2013-02-06 18:19:14 -08:00
public static Block manyullynFlowing ;
public static Block manyullynStill ;
public static Block alumiteFlowing ;
public static Block alumiteStill ;
public static Block obsidianFlowing ;
public static Block obsidianStill ;
2013-02-19 18:11:05 -08:00
public static Block steelFlowing ;
public static Block steelStill ;
2013-02-14 10:57:49 -08:00
2013-01-26 01:52:26 -08:00
//public static Block axle;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
//Tool modifiers
public static ModElectric modE ;
2013-01-31 02:55:09 -08:00
2013-02-04 12:37:37 -08:00
public TContent ( )
2013-01-18 23:43:53 -08:00
{
2013-01-26 01:52:26 -08:00
createEntities ( ) ;
2013-02-06 18:19:14 -08:00
registerBlocks ( ) ;
2013-02-28 18:24:12 -08:00
registerItems ( ) ;
2013-01-31 02:55:09 -08:00
addRenderMappings ( ) ;
2013-01-18 23:43:53 -08:00
registerMaterials ( ) ;
addToolRecipes ( ) ;
2013-02-06 18:19:14 -08:00
addSmelteryRecipes ( ) ;
2013-01-18 23:43:53 -08:00
addCraftingRecipes ( ) ;
setupToolTabs ( ) ;
2013-01-31 02:55:09 -08:00
addToolButtons ( ) ;
2013-01-23 17:53:32 -08:00
GameRegistry . registerFuelHandler ( this ) ;
2013-02-02 01:48:55 -08:00
}
2013-01-31 02:55:09 -08:00
void createEntities ( )
2013-01-26 01:52:26 -08:00
{
2013-02-19 18:11:05 -08:00
EntityRegistry . registerModEntity ( CartEntity . class , " Small Wagon " , 0 , TConstruct . instance , 32 , 5 , true ) ;
EntityRegistry . registerModEntity ( Skyla . class , " Skyla " , 1 , TConstruct . instance , 32 , 5 , true ) ;
EntityRegistry . registerModEntity ( FancyEntityItem . class , " Fancy Item " , 1 , TConstruct . instance , 32 , 5 , true ) ;
2013-01-26 01:52:26 -08:00
}
2013-02-06 18:19:14 -08:00
void registerBlocks ( )
2013-01-18 23:43:53 -08:00
{
2013-02-14 10:57:49 -08:00
//Tool Station
2013-01-18 23:43:53 -08:00
woodCrafter = new ToolStationBlock ( PHConstruct . woodCrafter , Material . wood ) ;
2013-02-27 14:13:27 -08:00
GameRegistry . registerBlock ( woodCrafter , ToolStationItemBlock . class , " ToolStationBlock " ) ;
GameRegistry . registerTileEntity ( ToolStationLogic . class , " ToolStation " ) ;
GameRegistry . registerTileEntity ( PartCrafterLogic . class , " PartCrafter " ) ;
GameRegistry . registerTileEntity ( PatternChestLogic . class , " PatternHolder " ) ;
GameRegistry . registerTileEntity ( PatternShaperLogic . class , " PatternShaper " ) ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
heldItemBlock = new EquipBlock ( PHConstruct . heldItemBlock , Material . wood ) ;
GameRegistry . registerBlock ( heldItemBlock , " HeldItemBlock " ) ;
GameRegistry . registerTileEntity ( tinker . tconstruct . logic . FrypanLogic . class , " FrypanLogic " ) ;
2013-02-14 10:57:49 -08:00
craftedSoil = new TConstructBlock ( PHConstruct . craftedSoil , 96 , Material . sand , 3 . 0F , 2 ) ;
craftedSoil . stepSound = Block . soundGravelFootstep ;
GameRegistry . registerBlock ( craftedSoil , tinker . tconstruct . items . CraftedSoilItemBlock . class , " CraftedSoil " ) ;
2013-02-28 18:24:12 -08:00
metalBlock = new TConstructBlock ( PHConstruct . metalBlock , 128 , Material . iron , 10 . 0F , 10 ) ;
metalBlock . stepSound = Block . soundMetalFootstep ;
GameRegistry . registerBlock ( metalBlock , tinker . tconstruct . items . MetalItemBlock . class , " MetalBlock " ) ;
2013-01-31 02:55:09 -08:00
2013-02-14 10:57:49 -08:00
//Smeltery
2013-02-18 00:56:20 -08:00
smeltery = new SmelteryBlock ( PHConstruct . smeltery ) . setBlockName ( " Smeltery " ) ;
GameRegistry . registerBlock ( smeltery , SmelteryItemBlock . class , " Smeltery " ) ;
2013-02-27 14:13:27 -08:00
GameRegistry . registerTileEntity ( SmelteryLogic . class , " TConstruct.Smeltery " ) ;
GameRegistry . registerTileEntity ( SmelteryDrainLogic . class , " TConstruct.SmelteryDrain " ) ;
GameRegistry . registerTileEntity ( MultiServantLogic . class , " TConstruct.Servants " ) ;
2013-02-16 18:53:54 -08:00
2013-02-27 14:13:27 -08:00
lavaTank = new LavaTankBlock ( PHConstruct . lavaTank ) . setBlockName ( " LavaTank " ) ;
2013-02-19 18:11:05 -08:00
lavaTank . setStepSound ( Block . soundGlassFootstep ) ;
2013-02-27 14:13:27 -08:00
GameRegistry . registerBlock ( lavaTank , LavaTankItemBlock . class , " LavaTank " ) ;
2013-02-16 18:53:54 -08:00
GameRegistry . registerTileEntity ( tinker . tconstruct . logic . LavaTankLogic . class , " TConstruct.LavaTank " ) ;
2013-02-27 14:13:27 -08:00
searedBlock = new SearedBlock ( PHConstruct . searedTable ) . setBlockName ( " SearedTable " ) ;
GameRegistry . registerBlock ( searedBlock , SearedTableItemBlock . class , " SearedTable " ) ;
GameRegistry . registerTileEntity ( CastingTableLogic . class , " CastingTable " ) ;
GameRegistry . registerTileEntity ( FaucetLogic . class , " Faucet " ) ;
2013-01-31 02:55:09 -08:00
2013-02-19 18:11:05 -08:00
oreSlag = new MetalOre ( PHConstruct . oreSlag , 80 , Material . iron , 10 . 0F , 6 ) ;
GameRegistry . registerBlock ( oreSlag , tinker . tconstruct . items . MetalOreItemBlock . class , " SearedBrick " ) ;
MinecraftForge . setBlockHarvestLevel ( oreSlag , 0 , " pickaxe " , 2 ) ;
MinecraftForge . setBlockHarvestLevel ( oreSlag , 1 , " pickaxe " , 4 ) ;
MinecraftForge . setBlockHarvestLevel ( oreSlag , 2 , " pickaxe " , 4 ) ;
MinecraftForge . setBlockHarvestLevel ( oreSlag , 3 , " pickaxe " , 1 ) ;
MinecraftForge . setBlockHarvestLevel ( oreSlag , 4 , " pickaxe " , 1 ) ;
MinecraftForge . setBlockHarvestLevel ( oreSlag , 5 , " pickaxe " , 1 ) ;
//Traps
2013-02-27 14:13:27 -08:00
/ * landmine = new Landmine ( PHConstruct . landmine , 0 , EnumMobType . mobs , Material . cactus ) . setBlockName ( " landmine " ) ;
GameRegistry . registerBlock ( landmine , " landmine " ) ; * /
2013-01-18 23:43:53 -08:00
2013-02-14 10:57:49 -08:00
//Liquids
ironFlowing = new IronFlowing ( PHConstruct . ironFlowing ) . setBlockName ( " liquid.ironFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( ironFlowing , " Liquid Iron Flowing " ) ;
ironStill = new IronStill ( PHConstruct . ironStill ) . setBlockName ( " liquid.ironStill " ) ;
GameRegistry . registerBlock ( ironStill , " Liquid Iron Still " ) ;
2013-02-11 12:25:40 -08:00
goldFlowing = new GoldFlowing ( PHConstruct . goldFlowing ) . setBlockName ( " liquid.goldFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( goldFlowing , " Liquid Gold Flowing " ) ;
2013-02-11 12:25:40 -08:00
goldStill = new GoldStill ( PHConstruct . goldStill ) . setBlockName ( " liquid.goldStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( goldStill , " Liquid Gold Still " ) ;
2013-02-11 12:25:40 -08:00
copperFlowing = new CopperFlowing ( PHConstruct . copperFlowing ) . setBlockName ( " liquid.copperFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( copperFlowing , " Liquid copper Flowing " ) ;
2013-02-11 12:25:40 -08:00
copperStill = new CopperStill ( PHConstruct . copperStill ) . setBlockName ( " liquid.copperStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( copperStill , " Liquid copper Still " ) ;
2013-02-11 12:25:40 -08:00
tinFlowing = new TinFlowing ( PHConstruct . tinFlowing ) . setBlockName ( " liquid.tinFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( tinFlowing , " Liquid tin Flowing " ) ;
2013-02-11 12:25:40 -08:00
tinStill = new TinStill ( PHConstruct . tinStill ) . setBlockName ( " liquid.tinStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( tinStill , " Liquid tin Still " ) ;
2013-02-11 12:25:40 -08:00
aluminumFlowing = new AluminumFlowing ( PHConstruct . aluminumFlowing ) . setBlockName ( " liquid.aluminumFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( aluminumFlowing , " Liquid aluminum Flowing " ) ;
2013-02-11 12:25:40 -08:00
aluminumStill = new AluminumStill ( PHConstruct . aluminumStill ) . setBlockName ( " liquid.aluminumStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( aluminumStill , " Liquid aluminum Still " ) ;
2013-02-11 12:25:40 -08:00
cobaltFlowing = new CobaltFlowing ( PHConstruct . cobaltFlowing ) . setBlockName ( " liquid.cobaltFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( cobaltFlowing , " Liquid cobalt Flowing " ) ;
2013-02-11 12:25:40 -08:00
cobaltStill = new CobaltStill ( PHConstruct . cobaltStill ) . setBlockName ( " liquid.cobaltStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( cobaltStill , " Liquid cobalt Still " ) ;
2013-02-11 12:25:40 -08:00
arditeFlowing = new ArditeFlowing ( PHConstruct . arditeFlowing ) . setBlockName ( " liquid.arditeFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( arditeFlowing , " Liquid ardite Flowing " ) ;
2013-02-11 12:25:40 -08:00
arditeStill = new ArditeStill ( PHConstruct . arditeStill ) . setBlockName ( " liquid.arditeStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( arditeStill , " Liquid ardite Still " ) ;
2013-02-11 12:25:40 -08:00
bronzeFlowing = new BronzeFlowing ( PHConstruct . bronzeFlowing ) . setBlockName ( " liquid.bronzeFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( bronzeFlowing , " Liquid bronze Flowing " ) ;
2013-02-11 12:25:40 -08:00
bronzeStill = new BronzeStill ( PHConstruct . bronzeStill ) . setBlockName ( " liquid.bronzeStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( bronzeStill , " Liquid bronze Still " ) ;
2013-02-16 18:53:54 -08:00
alBrassFlowing = new AlBrassFlowing ( PHConstruct . brassFlowing ) . setBlockName ( " liquid.brassFlow " ) ;
GameRegistry . registerBlock ( alBrassFlowing , " Liquid albrass Flowing " ) ;
alBrassStill = new AlBrassStill ( PHConstruct . brassStill ) . setBlockName ( " liquid.brassStill " ) ;
GameRegistry . registerBlock ( alBrassStill , " Liquid albrass Still " ) ;
2013-02-11 12:25:40 -08:00
manyullynFlowing = new ManyullynFlowing ( PHConstruct . manyullynFlowing ) . setBlockName ( " liquid.manyullynFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( manyullynFlowing , " Liquid manyullyn Flowing " ) ;
2013-02-11 12:25:40 -08:00
manyullynStill = new ManyullynStill ( PHConstruct . manyullynStill ) . setBlockName ( " liquid.manyullynStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( manyullynStill , " Liquid manyullun Still " ) ;
2013-02-11 12:25:40 -08:00
alumiteFlowing = new AlumiteFlowing ( PHConstruct . alumiteFlowing ) . setBlockName ( " liquid.alumiteFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( alumiteFlowing , " Liquid alumite Flowing " ) ;
2013-02-11 12:25:40 -08:00
alumiteStill = new AlumiteStill ( PHConstruct . alumiteStill ) . setBlockName ( " liquid.alumiteStill " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( alumiteStill , " Liquid alumite Still " ) ;
2013-02-11 12:25:40 -08:00
obsidianFlowing = new ObsidianFlowing ( PHConstruct . obsidianFlowing ) . setBlockName ( " liquid.obsidianFlow " ) ;
2013-02-06 18:19:14 -08:00
GameRegistry . registerBlock ( obsidianFlowing , " Liquid obsidian Flowing " ) ;
2013-02-11 12:25:40 -08:00
obsidianStill = new ObsidianStill ( PHConstruct . obsidianStill ) . setBlockName ( " liquid.obsidianStill " ) ;
2013-02-14 10:57:49 -08:00
GameRegistry . registerBlock ( obsidianStill , " Liquid obsidian Still " ) ;
2013-02-19 18:11:05 -08:00
steelFlowing = new SteelFlowing ( PHConstruct . steelFlowing ) . setBlockName ( " liquid.steelFlow " ) ;
GameRegistry . registerBlock ( steelFlowing , " Liquid steel Flowing " ) ;
steelStill = new SteelStill ( PHConstruct . steelStill ) . setBlockName ( " liquid.steelStill " ) ;
GameRegistry . registerBlock ( steelStill , " Liquid steel Still " ) ;
2013-02-06 18:19:14 -08:00
}
2013-02-28 18:24:12 -08:00
void registerItems ( )
2013-02-06 18:19:14 -08:00
{
2013-02-28 18:24:12 -08:00
blankPattern = new BlankPattern ( PHConstruct . blankPattern , 96 , craftingTexture ) . setItemName ( " tconstruct.blankpattern " ) ;
2013-01-20 01:14:32 -08:00
materials = new Materials ( PHConstruct . materials , 128 , craftingTexture ) . setItemName ( " tconstruct.Materials " ) ;
2013-01-18 23:43:53 -08:00
toolRod = new ToolPart ( PHConstruct . toolRod , 0 , craftingTexture ) . setItemName ( " tconstruct.ToolRod " ) ;
2013-02-04 12:37:37 -08:00
toolShard = new ToolShard ( PHConstruct . toolShard , 64 , craftingTexture ) . setItemName ( " tconstruct.ToolShard " ) ;
2013-01-18 23:43:53 -08:00
woodPattern = new Pattern ( PHConstruct . woodPattern , 0 , patternTexture ) . setItemName ( " tconstruct.Pattern " ) ;
2013-02-28 18:24:12 -08:00
metalPattern = new MetalPattern ( PHConstruct . metalPattern , 64 , patternTexture ) . setItemName ( " tconstruct.MetalPattern " ) ;
2013-01-18 23:43:53 -08:00
//stonePattern = new Pattern(PHTools.stonePattern, 64, patternTexture).setItemName("tconstruct.Pattern");
//netherPattern = new Pattern(PHTools.netherPattern, 128, patternTexture).setItemName("tconstruct.Pattern");
2013-01-31 02:55:09 -08:00
2013-02-02 01:48:55 -08:00
manualBook = new PatternManual ( PHConstruct . manual ) ;
2013-02-27 14:13:27 -08:00
buckets = new FilledBucket ( PHConstruct . buckets ) ;
2013-02-02 01:48:55 -08:00
2013-01-18 23:43:53 -08:00
pickaxe = new Pickaxe ( PHConstruct . pickaxe , pickaxeTexture ) ;
shovel = new Shovel ( PHConstruct . shovel , shovelTexture ) ;
axe = new Axe ( PHConstruct . axe , axeTexture ) ;
broadsword = new Broadsword ( PHConstruct . broadsword , broadswordTexture ) ;
longsword = new Longsword ( PHConstruct . longsword , longswordTexture ) ;
rapier = new Rapier ( PHConstruct . rapier , rapierTexture ) ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
frypan = new FryingPan ( PHConstruct . frypan , frypanTexture ) ;
battlesign = new BattleSign ( PHConstruct . battlesign , signTexture ) ;
2013-01-21 14:02:28 -08:00
//longbow = new RangedWeapon(PHConstruct.longbow, bowTexture);
2013-01-18 23:43:53 -08:00
mattock = new Mattock ( PHConstruct . mattock , mattockTexture ) ;
2013-02-11 12:25:40 -08:00
//lumberaxe = new LumberAxe(PHConstruct.lumberaxe, lumberaxeTexture);
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
pickaxeHead = new ToolPart ( PHConstruct . pickaxeHead , 0 , baseHeads ) . setItemName ( " tconstruct.PickaxeHead " ) ;
shovelHead = new ToolPart ( PHConstruct . shovelHead , 64 , baseHeads ) . setItemName ( " tconstruct.ShovelHead " ) ;
axeHead = new ToolPart ( PHConstruct . axeHead , 128 , baseHeads ) . setItemName ( " tconstruct.AxeHead " ) ;
swordBlade = new ToolPart ( PHConstruct . swordBlade , 0 , swordparts ) . setItemName ( " tconstruct.SwordBlade " ) ;
largeGuard = new ToolPart ( PHConstruct . largeGuard , 64 , swordparts ) . setItemName ( " tconstruct.LargeGuard " ) ;
medGuard = new ToolPart ( PHConstruct . medGuard , 128 , swordparts ) . setItemName ( " tconstruct.MediumGuard " ) ;
crossbar = new ToolPart ( PHConstruct . crossbar , 192 , swordparts ) . setItemName ( " tconstruct.Crossbar " ) ;
binding = new ToolPart ( PHConstruct . binding , 0 , baseAccessories ) . setItemName ( " tconstruct.Binding " ) ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
frypanHead = new ToolPart ( PHConstruct . frypanHead , 0 , jokeparts ) . setItemName ( " tconstruct.FrypanHead " ) ;
signHead = new ToolPart ( PHConstruct . signHead , 64 , jokeparts ) . setItemName ( " tconstruct.SignHead " ) ;
2013-01-31 02:55:09 -08:00
2013-01-20 20:38:23 -08:00
//lumberHead = new ToolPart(PHConstruct.lumberHead, 0, broadheads).setItemName("tconstruct.LumberHead");
2013-01-18 23:43:53 -08:00
}
2013-01-31 02:55:09 -08:00
void addRenderMappings ( )
2013-01-18 23:43:53 -08:00
{
2013-02-28 18:24:12 -08:00
String [ ] partTypes = { " wood " , " stone " , " iron " , " flint " , " cactus " , " bone " , " obsidian " , " netherrack " , " slime " , " paper " , " cobalt " , " ardite " , " manyullyn " , " copper " , " bronze " , " alumite " , " steel " } ;
2013-01-31 02:55:09 -08:00
String [ ] effectTypes = { " diamond " , " emerald " , " redstone " , " glowstone " , " moss " , " ice " , " lava " , " blaze " , " necrotic " , " electric " , " lapis " } ;
for ( int partIter = 0 ; partIter < partTypes . length ; partIter + + )
{
materialRenderMap ( partIter , partTypes [ partIter ] ) ;
}
for ( int effectIter = 0 ; effectIter < effectTypes . length ; effectIter + + )
{
effectRenderMap ( effectIter , effectTypes [ effectIter ] ) ;
}
}
void materialRenderMap ( int materialID , String partialLocation )
{
for ( ToolCore tool : TConstructRegistry . getToolMapping ( ) )
{
2013-02-02 01:48:55 -08:00
tool . partTextures . put ( materialID , tool . getToolTextureFile ( ) + partialLocation ) ;
2013-01-31 02:55:09 -08:00
}
}
void effectRenderMap ( int materialID , String partialLocation )
{
for ( ToolCore tool : TConstructRegistry . getToolMapping ( ) )
2013-01-18 23:43:53 -08:00
{
2013-02-02 01:48:55 -08:00
tool . effectTextures . put ( materialID , tool . getToolTextureFile ( ) + partialLocation ) ;
2013-01-18 23:43:53 -08:00
}
}
2013-01-31 02:55:09 -08:00
void registerMaterials ( )
{
2013-02-02 01:48:55 -08:00
TConstructRegistry . addToolMaterial ( 0 , " Wood " , 1 , 0 , 59 , 200 , 0 , 1 . 0F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 1 , " Stone " , 1 , 1 , 131 , 400 , 1 , 0 . 5F , 0 , 1f ) ;
TConstructRegistry . addToolMaterial ( 2 , " Iron " , 1 , 2 , 250 , 600 , 2 , 1 . 3F , 1 , 0f ) ;
TConstructRegistry . addToolMaterial ( 3 , " Flint " , 1 , 1 , 171 , 525 , 2 , 0 . 7F , 0 , 1f ) ;
TConstructRegistry . addToolMaterial ( 4 , " Cactus " , 1 , 1 , 150 , 500 , 2 , 1 . 0F , 0 , - 1f ) ;
TConstructRegistry . addToolMaterial ( 5 , " Bone " , 1 , 1 , 200 , 500 , 2 , 1 . 0F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 6 , " Obsidian " , 1 , 3 , 89 , 700 , 2 , 0 . 8F , 3 , 0f ) ;
TConstructRegistry . addToolMaterial ( 7 , " Netherrack " , 1 , 2 , 131 , 400 , 1 , 1 . 2F , 0 , 1f ) ;
TConstructRegistry . addToolMaterial ( 8 , " Slime " , 1 , 3 , 1500 , 150 , 0 , 5 . 0F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 9 , " Paper " , 1 , 0 , 131 , 200 , 0 , 0 . 1F , 0 , 0f ) ;
2013-02-28 18:24:12 -08:00
TConstructRegistry . addToolMaterial ( 10 , " Cobalt " , 2 , 4 , 800 , 800 , 3 , 1 . 75F , 2 , 0f ) ;
TConstructRegistry . addToolMaterial ( 11 , " Ardite " , 2 , 4 , 600 , 800 , 3 , 2 . 0F , 0 , 0f ) ;
2013-02-02 01:48:55 -08:00
TConstructRegistry . addToolMaterial ( 12 , " Manyullyn " , 2 , 5 , 1200 , 1000 , 4 , 2 . 5F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 13 , " Copper " , 1 , 1 , 180 , 500 , 2 , 1 . 15F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 14 , " Bronze " , 1 , 2 , 250 , 600 , 2 , 1 . 3F , 1 , 0f ) ;
2013-02-28 18:24:12 -08:00
TConstructRegistry . addToolMaterial ( 15 , " Alumite " , 2 , 4 , 550 , 800 , 3 , 1 . 3F , 2 , 0f ) ;
TConstructRegistry . addToolMaterial ( 16 , " Steel " , 2 , 3 , 750 , 800 , 3 , 1 . 3F , 2 , 0f ) ;
2013-02-06 18:19:14 -08:00
//Thaumcraft
TConstructRegistry . addToolMaterial ( 21 , " Thaumium " , 2 , 2 , 250 , 600 , 2 , 1 . 3F , 1 , 0f ) ;
//Metallurgy
TConstructRegistry . addToolMaterial ( 22 , " Heptazion " , 2 , 2 , 300 , 800 , 1 , 1 . 0F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 23 , " Damascus Steel " , 2 , 3 , 500 , 600 , 2 , 1 . 35F , 1 , 0f ) ;
TConstructRegistry . addToolMaterial ( 24 , " Angmallen " , 2 , 2 , 300 , 800 , 2 , 0 . 8F , 0 , 0f ) ;
2013-02-28 18:24:12 -08:00
TConstructRegistry . addToolMaterial ( 25 , " Promethium " , 1 , 1 , 200 , 400 , 1 , 1 . 0F , 0 , 0 . 5f ) ;
TConstructRegistry . addToolMaterial ( 26 , " Deep Iron " , 1 , 2 , 250 , 600 , 2 , 1 . 3F , 1 , 0f ) ;
TConstructRegistry . addToolMaterial ( 27 , " Oureclase " , 2 , 3 , 750 , 800 , 2 , 1 . 2F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 28 , " Aredrite " , 2 , 3 , 1000 , 400 , 2 , 1 . 5F , 0 , 1 . 0f ) ;
TConstructRegistry . addToolMaterial ( 29 , " Astral Silver " , 1 , 4 , 35 , 1200 , 1 , 0 . 5F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 30 , " Carmot " , 1 , 4 , 50 , 1200 , 1 , 0 . 5F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 31 , " Mithril " , 2 , 4 , 1000 , 900 , 3 , 1 . 25F , 3 , 0f ) ;
TConstructRegistry . addToolMaterial ( 32 , " Orichalcum " , 2 , 5 , 1350 , 900 , 3 , 1 . 25F , 0 , 0f ) ;
TConstructRegistry . addToolMaterial ( 33 , " Adamantine " , 3 , 6 , 1550 , 1000 , 4 , 1 . 5F , 1 , 0f ) ;
TConstructRegistry . addToolMaterial ( 34 , " Atlarus " , 3 , 6 , 1750 , 1000 , 4 , 1 . 6F , 2 , 0f ) ;
2013-02-06 18:19:14 -08:00
2013-02-28 18:24:12 -08:00
TConstructRegistry . addToolMaterial ( 35 , " Black Steel " , 2 , 2 , 500 , 800 , 2 , 1 . 3F , 2 , 0f ) ;
TConstructRegistry . addToolMaterial ( 36 , " Quicksilver " , 2 , 4 , 1100 , 1400 , 3 , 1 . 0F , 1 , 0f ) ;
TConstructRegistry . addToolMaterial ( 37 , " Haderoth " , 2 , 4 , 1250 , 1200 , 3 , 1 . 0F , 2 , 0f ) ;
TConstructRegistry . addToolMaterial ( 38 , " Celenegil " , 3 , 5 , 1600 , 1400 , 3 , 1 . 0F , 2 , 0f ) ;
TConstructRegistry . addToolMaterial ( 39 , " Tartarite " , 3 , 7 , 3000 , 1400 , 5 , 1 . 6667F , 4 , 0f ) ;
2013-02-02 01:48:55 -08:00
2013-01-31 02:55:09 -08:00
PatternBuilder pb = PatternBuilder . instance ;
pb . registerFullMaterial ( Block . planks , 2 , " Wood " , new ItemStack ( Item . stick ) , new ItemStack ( Item . stick ) , 0 ) ;
pb . registerFullMaterial ( Block . stone , 2 , " Stone " , 1 ) ;
pb . registerMaterial ( Block . cobblestone , 2 , " Stone " ) ;
pb . registerFullMaterial ( Item . ingotIron , 2 , " Iron " , 2 ) ;
pb . registerFullMaterial ( Item . flint , 2 , " Flint " , 3 ) ;
pb . registerFullMaterial ( Block . cactus , 2 , " Cactus " , 4 ) ;
pb . registerFullMaterial ( Item . bone , 2 , " Bone " , new ItemStack ( Item . dyePowder , 1 , 15 ) , new ItemStack ( Item . bone ) , 5 ) ;
pb . registerFullMaterial ( Block . obsidian , 2 , " Obsidian " , 6 ) ;
pb . registerFullMaterial ( Block . netherrack , 2 , " Netherrack " , 7 ) ;
pb . registerFullMaterial ( new ItemStack ( materials , 1 , 1 ) , 2 , " Slime " , new ItemStack ( toolShard , 1 , 8 ) , new ItemStack ( toolRod , 1 , 8 ) , 8 ) ;
pb . registerFullMaterial ( new ItemStack ( materials , 1 , 0 ) , 2 , " Paper " , new ItemStack ( Item . paper ) , new ItemStack ( toolRod , 1 , 9 ) , 9 ) ;
pb . registerMaterialSet ( " Copper " , new ItemStack ( toolShard , 1 , 13 ) , new ItemStack ( toolRod , 1 , 13 ) , 13 ) ;
pb . registerMaterialSet ( " Bronze " , new ItemStack ( toolShard , 1 , 14 ) , new ItemStack ( toolRod , 1 , 14 ) , 14 ) ;
pb . addToolPattern ( ( IPattern ) woodPattern ) ;
}
public static Item [ ] patternOutputs ;
2013-02-28 18:24:12 -08:00
public static LiquidStack [ ] liquids ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
void addToolRecipes ( )
{
2013-01-31 02:55:09 -08:00
patternOutputs = new Item [ ] { toolRod , pickaxeHead , shovelHead , axeHead , swordBlade , largeGuard , medGuard , crossbar , binding , frypanHead , signHead } ;
2013-01-18 23:43:53 -08:00
ToolBuilder tb = ToolBuilder . instance ;
tb . addToolRecipe ( pickaxe , pickaxeHead , binding ) ;
tb . addToolRecipe ( broadsword , swordBlade , largeGuard ) ;
tb . addToolRecipe ( axe , axeHead ) ;
tb . addToolRecipe ( shovel , shovelHead ) ;
tb . addToolRecipe ( longsword , swordBlade , medGuard ) ;
tb . addToolRecipe ( rapier , swordBlade , crossbar ) ;
tb . addToolRecipe ( frypan , frypanHead ) ;
tb . addToolRecipe ( battlesign , signHead ) ;
tb . addToolRecipe ( mattock , axeHead , shovelHead ) ;
2013-01-21 14:02:28 -08:00
//tb.addToolRecipe(longbow, toolRod, toolRod);
2013-01-20 20:38:23 -08:00
//tb.addToolRecipe(lumberaxe, lumberHead);
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
tb . registerToolMod ( new ModRepair ( ) ) ;
2013-01-31 02:55:09 -08:00
tb . registerToolMod ( new ModDurability ( new ItemStack [ ] { new ItemStack ( Item . diamond ) } , 0 , 500 , 0f , 3 , " Diamond " , " \ u00a7bDurability +500 " , " \ u00a7b " ) ) ;
tb . registerToolMod ( new ModDurability ( new ItemStack [ ] { new ItemStack ( Item . emerald ) } , 1 , 0 , 0 . 5f , 2 , " Emerald " , " \ u00a72Durability +50% " , " \ u00a72 " ) ) ;
2013-01-18 23:43:53 -08:00
modE = new ModElectric ( ) ;
tb . registerToolMod ( modE ) ;
2013-01-31 02:55:09 -08:00
tb . registerToolMod ( new ModRedstone ( new ItemStack [ ] { new ItemStack ( Item . redstone ) } , 2 , 1 ) ) ;
2013-01-18 23:43:53 -08:00
tb . registerToolMod ( new ModRedstone ( new ItemStack [ ] { new ItemStack ( Item . redstone ) , new ItemStack ( Item . redstone ) } , 2 , 2 ) ) ;
2013-01-31 02:55:09 -08:00
tb . registerToolMod ( new ModLapisIncrease ( new ItemStack [ ] { new ItemStack ( Item . dyePowder , 1 , 4 ) } , 10 , 1 ) ) ;
tb . registerToolMod ( new ModLapisIncrease ( new ItemStack [ ] { new ItemStack ( Item . dyePowder , 1 , 4 ) , new ItemStack ( Item . dyePowder , 1 , 4 ) } , 10 , 2 ) ) ;
tb . registerToolMod ( new ModLapisIncrease ( new ItemStack [ ] { new ItemStack ( Block . blockLapis ) } , 10 , 9 ) ) ;
tb . registerToolMod ( new ModLapisIncrease ( new ItemStack [ ] { new ItemStack ( Item . dyePowder , 1 , 4 ) , new ItemStack ( Block . blockLapis ) } , 10 , 10 ) ) ;
tb . registerToolMod ( new ModLapisIncrease ( new ItemStack [ ] { new ItemStack ( Block . blockLapis ) , new ItemStack ( Block . blockLapis ) } , 10 , 18 ) ) ;
tb . registerToolMod ( new ModLapisBase ( new ItemStack [ ] { new ItemStack ( Block . blockLapis ) , new ItemStack ( Block . blockLapis ) } , 10 ) ) ;
tb . registerToolMod ( new ModInteger ( new ItemStack [ ] { new ItemStack ( materials , 1 , 6 ) } , 4 , " Moss " , 3 , " \ u00a72 " , " Auto-Repair " ) ) ;
tb . registerToolMod ( new ModBlaze ( new ItemStack [ ] { new ItemStack ( Item . blazePowder ) } , 7 , 1 ) ) ;
tb . registerToolMod ( new ModBlaze ( new ItemStack [ ] { new ItemStack ( Item . blazePowder ) , new ItemStack ( Item . blazePowder ) } , 7 , 2 ) ) ;
tb . registerToolMod ( new ModBoolean ( new ItemStack [ ] { new ItemStack ( materials , 1 , 7 ) } , 6 , " Lava " , " \ u00a74 " , " Auto-Smelt " ) ) ;
tb . registerToolMod ( new ModInteger ( new ItemStack [ ] { new ItemStack ( materials , 1 , 8 ) } , 8 , " Necrotic " , 1 , " \ u00a78 " , " Life Steal " ) ) ;
2013-02-28 18:24:12 -08:00
ItemStack ingotcast = new ItemStack ( metalPattern , 1 , 0 ) ;
LiquidCasting lc = LiquidCasting . instance ;
//Blank
lc . addCastingRecipe ( new ItemStack ( blankPattern , 1 , 1 ) , new LiquidStack ( alBrassStill . blockID , 1 , 0 ) , 50 ) ;
//Ingots
lc . addCastingRecipe ( new ItemStack ( Item . ingotIron ) , new LiquidStack ( ironStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( Item . ingotGold ) , new LiquidStack ( goldStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 9 ) , new LiquidStack ( copperStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 10 ) , new LiquidStack ( tinStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 11 ) , new LiquidStack ( aluminumStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 3 ) , new LiquidStack ( cobaltStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 4 ) , new LiquidStack ( arditeStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 5 ) , new LiquidStack ( manyullynStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 13 ) , new LiquidStack ( bronzeStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 14 ) , new LiquidStack ( alBrassStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 15 ) , new LiquidStack ( alumiteStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
lc . addCastingRecipe ( new ItemStack ( materials , 1 , 16 ) , new LiquidStack ( steelStill . blockID , 1 , 0 ) , ingotcast , 50 ) ;
liquids = new LiquidStack [ ] {
new LiquidStack ( ironStill , 1 ) ,
new LiquidStack ( copperStill , 1 ) ,
new LiquidStack ( cobaltStill , 1 ) ,
new LiquidStack ( arditeStill , 1 ) ,
new LiquidStack ( manyullynStill , 1 ) ,
new LiquidStack ( bronzeStill , 1 ) ,
new LiquidStack ( alumiteStill , 1 ) ,
new LiquidStack ( steelStill , 1 )
} ;
int [ ] liquidDamage = new int [ ] {
2 , 13 , 10 , 11 , 12 , 14 , 15 , 16
} ;
for ( int iter = 0 ; iter < patternOutputs . length ; iter + + )
{
ItemStack cast = new ItemStack ( metalPattern , 1 , iter + 1 ) ;
for ( int iterTwo = 0 ; iterTwo < liquids . length ; iterTwo + + )
{
lc . addCastingRecipe ( new ItemStack ( patternOutputs [ iter ] , 1 , liquidDamage [ iterTwo ] ) , liquids [ iterTwo ] , cast , 50 ) ;
}
}
2013-01-18 23:43:53 -08:00
}
2013-02-06 18:19:14 -08:00
void addSmelteryRecipes ( )
{
2013-02-28 18:24:12 -08:00
//Ore
Smeltery . addMelting ( Block . oreIron , 0 , 600 , new LiquidStack ( ironStill . blockID , 250 , 0 ) ) ;
Smeltery . addMelting ( Block . oreGold , 0 , 550 , new LiquidStack ( goldStill . blockID , 250 , 0 ) ) ;
//Ingots
Smeltery . addMelting ( new ItemStack ( Item . ingotIron , 8 ) , Block . blockSteel . blockID , 0 , 500 , new LiquidStack ( ironStill . blockID , 250 , 0 ) ) ;
Smeltery . addMelting ( new ItemStack ( Item . ingotGold , 8 ) , Block . blockGold . blockID , 0 , 450 , new LiquidStack ( goldStill . blockID , 250 , 0 ) ) ;
2013-02-15 00:30:58 -08:00
2013-02-28 18:24:12 -08:00
//Blocks
Smeltery . addMelting ( Block . blockSteel , 0 , 600 , new LiquidStack ( ironStill . blockID , 2250 , 0 ) ) ;
Smeltery . addMelting ( Block . blockGold , 0 , 550 , new LiquidStack ( goldStill . blockID , 2250 , 0 ) ) ;
Smeltery . addMelting ( Block . obsidian , 0 , 800 , new LiquidStack ( obsidianStill . blockID , 250 , 0 ) ) ;
//Alloys
2013-02-15 00:30:58 -08:00
Smeltery . addAlloyMixing ( new LiquidStack ( bronzeStill . blockID , 4 , 0 ) , new LiquidStack ( copperStill . blockID , 3 , 0 ) , new LiquidStack ( tinStill . blockID , 1 , 0 ) ) ;
2013-02-16 18:53:54 -08:00
Smeltery . addAlloyMixing ( new LiquidStack ( alBrassStill . blockID , 4 , 0 ) , new LiquidStack ( aluminumStill . blockID , 3 , 0 ) , new LiquidStack ( copperStill . blockID , 1 , 0 ) ) ;
2013-02-06 18:19:14 -08:00
}
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
void addCraftingRecipes ( )
{
/ * GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 0 ) , " c " , 'c' , Block . workbench ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 1 ) , " cc " , 'c' , Block . workbench ) ; * /
2013-01-22 00:14:19 -08:00
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 0 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , Block . workbench ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 1 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . wood , 1 , 0 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 2 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . wood , 1 , 1 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 3 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . wood , 1 , 2 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 4 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . wood , 1 , 3 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 5 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , Block . chest ) ;
2013-01-23 17:53:32 -08:00
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 10 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . planks , 1 , 0 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 11 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . planks , 1 , 1 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 12 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . planks , 1 , 2 ) ) ;
GameRegistry . addRecipe ( new ItemStack ( woodCrafter , 1 , 13 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , new ItemStack ( Block . planks , 1 , 3 ) ) ;
2013-01-31 02:55:09 -08:00
GameRegistry . addRecipe ( new ShapedOreRecipe ( new ItemStack ( woodCrafter , 1 , 1 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , " logWood " ) ) ;
GameRegistry . addRecipe ( new ShapedOreRecipe ( new ItemStack ( woodCrafter , 1 , 10 ) , " p " , " w " , 'p' , new ItemStack ( blankPattern , 1 , 0 ) , 'w' , " plankWood " ) ) ;
GameRegistry . addRecipe ( new ShapedOreRecipe ( new ItemStack ( blankPattern , 1 , 0 ) , " ps " , " sp " , 'p' , " plankWood " , 's' , Item . stick ) ) ;
2013-02-02 01:48:55 -08:00
GameRegistry . addRecipe ( new ItemStack ( manualBook ) , " wp " , 'w' , new ItemStack ( blankPattern , 1 , 0 ) , 'p' , Item . paper ) ;
2013-01-31 02:55:09 -08:00
2013-01-21 14:02:28 -08:00
GameRegistry . addRecipe ( new ItemStack ( materials , 1 , 0 ) , " pp " , " pp " , 'p' , Item . paper ) ; //Paper stack
GameRegistry . addRecipe ( new ItemStack ( materials , 1 , 6 ) , " ppp " , " ppp " , " ppp " , 'p' , Block . cobblestoneMossy ) ; //Moss ball
2013-01-23 17:53:32 -08:00
GameRegistry . addRecipe ( new ItemStack ( materials , 1 , 7 ) , " xcx " , " cbc " , " xcx " , 'b' , Item . bucketLava , 'c' , Item . coal , 'x' , Block . netherrack ) ; //Auto-smelt
2013-01-22 00:14:19 -08:00
GameRegistry . addShapelessRecipe ( new ItemStack ( materials , 1 , 8 ) , Item . bone , Item . rottenFlesh , Item . chickenRaw , Item . beefRaw , Item . porkRaw , Item . fishRaw ) ; //Necrotic bone
2013-01-21 14:02:28 -08:00
GameRegistry . addShapelessRecipe ( new ItemStack ( craftedSoil , 1 , 0 ) , Item . slimeBall , Item . slimeBall , Item . slimeBall , Item . slimeBall , Block . sand , Block . dirt ) ; //Slimy sand
GameRegistry . addShapelessRecipe ( new ItemStack ( craftedSoil , 1 , 1 ) , Item . clay , Block . sand , Block . gravel ) ; //Grout, Add stone dust?
2013-01-31 02:55:09 -08:00
2013-01-20 01:14:32 -08:00
FurnaceRecipes . smelting ( ) . addSmelting ( craftedSoil . blockID , 0 , new ItemStack ( materials , 1 , 1 ) , 2f ) ; //Slime
FurnaceRecipes . smelting ( ) . addSmelting ( craftedSoil . blockID , 1 , new ItemStack ( materials , 1 , 2 ) , 2f ) ; //Seared brick item
2013-02-19 18:11:05 -08:00
GameRegistry . addRecipe ( new ItemStack ( oreSlag , 1 , 0 ) , " pp " , " pp " , 'p' , new ItemStack ( materials , 1 , 2 ) ) ; //Seared brick block
2013-02-11 12:25:40 -08:00
2013-02-19 18:11:05 -08:00
FurnaceRecipes . smelting ( ) . addSmelting ( oreSlag . blockID , 1 , new ItemStack ( materials , 1 , 3 ) , 3f ) ;
FurnaceRecipes . smelting ( ) . addSmelting ( oreSlag . blockID , 2 , new ItemStack ( materials , 1 , 4 ) , 3f ) ;
FurnaceRecipes . smelting ( ) . addSmelting ( oreSlag . blockID , 3 , new ItemStack ( materials , 1 , 9 ) , 0 . 5f ) ;
FurnaceRecipes . smelting ( ) . addSmelting ( oreSlag . blockID , 4 , new ItemStack ( materials , 1 , 10 ) , 0 . 5f ) ;
FurnaceRecipes . smelting ( ) . addSmelting ( oreSlag . blockID , 5 , new ItemStack ( materials , 1 , 12 ) , 0 . 5f ) ;
2013-02-28 18:24:12 -08:00
//Smeltery
ItemStack searedBrick = new ItemStack ( materials , 1 , 2 ) ;
GameRegistry . addRecipe ( new ItemStack ( smeltery , 1 , 0 ) , " bbb " , " b b " , " bbb " , 'b' , searedBrick ) ;
GameRegistry . addRecipe ( new ItemStack ( smeltery , 1 , 1 ) , " b b " , " b b " , " bbb " , 'b' , searedBrick ) ;
GameRegistry . addRecipe ( new ItemStack ( smeltery , 1 , 2 ) , " bb " , " bb " , 'b' , searedBrick ) ;
GameRegistry . addRecipe ( new ItemStack ( lavaTank , 1 , 0 ) , " bbb " , " bgb " , " bbb " , 'b' , searedBrick , 'g' , Block . glass ) ;
GameRegistry . addRecipe ( new ItemStack ( lavaTank , 1 , 1 ) , " bgb " , " ggg " , " bgb " , 'b' , searedBrick , 'g' , Block . glass ) ;
GameRegistry . addRecipe ( new ItemStack ( lavaTank , 1 , 2 ) , " bgb " , " bgb " , " bgb " , 'b' , searedBrick , 'g' , Block . glass ) ;
GameRegistry . addRecipe ( new ItemStack ( searedBlock , 1 , 0 ) , " bbb " , " b b " , " b b " , 'b' , searedBrick ) ;
GameRegistry . addRecipe ( new ItemStack ( searedBlock , 1 , 1 ) , " b b " , " b " , 'b' , searedBrick ) ;
2013-01-18 23:43:53 -08:00
}
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
void setupToolTabs ( )
{
2013-02-04 12:37:37 -08:00
TConstruct . materialTab . init ( new ItemStack ( TContent . woodPattern , 1 , 255 ) ) ;
2013-01-18 23:43:53 -08:00
TConstruct . blockTab . init ( new ItemStack ( woodCrafter ) ) ;
ItemStack tool = new ItemStack ( longsword , 1 , 0 ) ;
NBTTagCompound compound = new NBTTagCompound ( ) ;
compound . setCompoundTag ( " InfiTool " , new NBTTagCompound ( ) ) ;
compound . getCompoundTag ( " InfiTool " ) . setInteger ( " RenderHead " , 2 ) ;
compound . getCompoundTag ( " InfiTool " ) . setInteger ( " RenderHandle " , 0 ) ;
compound . getCompoundTag ( " InfiTool " ) . setInteger ( " RenderAccessory " , 10 ) ;
tool . setTagCompound ( compound ) ;
TConstruct . toolTab . init ( tool ) ;
}
2013-01-31 02:55:09 -08:00
static int [ ] [ ] slotTypes = { new int [ ] { 0 , 3 , 0 } , //Repair
new int [ ] { 1 , 4 , 0 } , //Pickaxe
new int [ ] { 2 , 5 , 0 } , //Shovel
new int [ ] { 2 , 6 , 0 } , //Axe
//new int[] {2, 9, 0}, //Lumber Axe
//new int[] {1, 7, 0}, //Ice Axe
new int [ ] { 3 , 8 , 0 } , //Mattock
new int [ ] { 1 , 0 , 1 } , //Broadsword
new int [ ] { 1 , 1 , 1 } , //Longsword
new int [ ] { 1 , 2 , 1 } , //Rapier
new int [ ] { 2 , 3 , 1 } , //Frying pan
new int [ ] { 2 , 4 , 1 } //Battlesign
} ;
static int [ ] [ ] iconCoords = { new int [ ] { 0 , 1 , 2 } , new int [ ] { 13 , 13 , 13 } , //Repair
new int [ ] { 0 , 0 , 1 } , new int [ ] { 2 , 3 , 3 } , //Pickaxe
new int [ ] { 3 , 0 , 13 } , new int [ ] { 2 , 3 , 13 } , //Shovel
new int [ ] { 2 , 0 , 13 } , new int [ ] { 2 , 3 , 13 } , //Axe
//new int[] { 6, 0, 13 }, new int[] { 2, 3, 13 }, //Lumber Axe
//new int[] { 0, 0, 5 }, new int[] { 2, 3, 3 }, //Ice Axe
new int [ ] { 2 , 0 , 3 } , new int [ ] { 2 , 3 , 2 } , //Mattock
new int [ ] { 1 , 0 , 2 } , new int [ ] { 2 , 3 , 3 } , //Broadsword
new int [ ] { 1 , 0 , 3 } , new int [ ] { 2 , 3 , 3 } , //Longsword
new int [ ] { 1 , 0 , 4 } , new int [ ] { 2 , 3 , 3 } , //Rapier
new int [ ] { 4 , 0 , 13 } , new int [ ] { 2 , 3 , 13 } , //Frying Pan
new int [ ] { 5 , 0 , 13 } , new int [ ] { 2 , 3 , 13 } //Battlesign
} ;
static String [ ] toolNames = { " Repair and Modification " , " Pickaxe " , " Shovel " , " Axe " ,
//"Lumber Axe",
//"Ice Axe",
" Mattock " , " Broadsword " , " Longsword " , " Rapier " , " Frying Pan " , " Battlesign " } ;
2013-02-28 18:24:12 -08:00
static String [ ] toolDescriptions = { " The main way to repair or change your tools. Place a tool and a material on the left to get started. " ,
" The Pickaxe is a basic mining tool. It is effective on stone and ores. \ n \ nRequired parts: \ n- Pickaxe Head \ n- Tool Binding \ n- Handle " ,
" The Shovel is a basic digging tool. It is effective on dirt, sand, and snow. \ n \ nRequired parts: \ n- Shovel Head \ n- Handle " ,
" The Axe is a basic chopping tool. It is effective on wood and leaves. \ n \ nRequired parts: \ n- Axe Head \ n- Handle " ,
2013-01-31 02:55:09 -08:00
//"The Lumber Axe is a broad chopping tool. It harvests wood in a wide range and can fell entire trees.\n\nRequired parts:\n- Broad Axe Head\n- Handle",
//"The Ice Axe is a tool for harvesting ice, mining, and attacking foes.\n\nSpecial Ability:\n- Wall Climb\nNatural Ability:\n- Ice Harvest\nDamage: Moderate\n\nRequired parts:\n- Pickaxe Head\n- Spike\n- Handle",
2013-02-28 18:24:12 -08:00
" The Cutter Mattock is a versatile farming tool. It is effective on wood, dirt, and plants. \ n \ nSpecial Ability: Hoe \ n \ nRequired parts: \ n- Axe Head \ n- Shovel Head \ n- Handle " ,
" The Broadsword is a defensive weapon. Blocking cuts damage in half. \ n \ nSpecial Ability: Block \ nDamage: Moderate \ nDurability: High \ n \ nRequired parts: \ n- Sword Blade \ n- Wide Guard \ n- Handle " ,
" The Longsword is a balanced weapon. It is useful for knocking enemies away or getting in and out of battle quickly. \ n \ nNatural Ability: \ n- Charge Boost \ nDamage: Moderate \ nDurability: Moderate \ n \ nRequired parts: \ n- Sword Blade \ n- Hand Guard \ n- Handle " ,
" The Rapier is an offensive weapon that relies on quick strikes to defeat foes. \ n \ nNatural Abilities: \ n- Armor Pierce \ n- Quick Strike \ n- Charge Boost \ nDamage: High \ nDurability: Low \ n \ nRequired parts: \ n- Sword Blade \ n- Crossbar \ n- Handle " ,
" The Frying is a heavy weapon that uses sheer weight to stun foes. \ n \ nSpecial Ability: Block \ nNatural Ability: Bash \ nShift+rClick: Place Frying Pan \ nDamage: Low \ nDurability: High \ n \ nRequired parts: \ n- Pan \ n- Handle " ,
2013-01-31 02:55:09 -08:00
//"The Battlesign is an advance in weapon technology worthy of Zombie Pigmen everywhere.\n\nSpecial Ability: Block\nShift-rClick: Place sign\nDamage: Low\nDurability: Average\n\nRequired parts:\n- Board\n- Handle"
" The Battlesign is an advance in weapon technology worthy of Zombie Pigmen everywhere. \ n \ nSpecial Ability: Block \ nDamage: Low \ nDurability: Average \ n \ nRequired parts: \ n- Sign Board \ n- Handle " } ;
void addToolButtons ( )
{
for ( int i = 0 ; i < toolNames . length ; i + + )
{
addToolButton ( slotTypes [ i ] [ 0 ] , slotTypes [ i ] [ 1 ] , slotTypes [ i ] [ 2 ] , iconCoords [ i * 2 ] , iconCoords [ i * 2 + 1 ] , toolNames [ i ] , toolDescriptions [ i ] ) ;
}
}
void addToolButton ( int slotType , int xButton , int yButton , int [ ] xIcons , int [ ] yIcons , String title , String body )
{
TConstructRegistry . toolButtons . add ( new ToolGuiElement ( slotType , xButton , yButton , xIcons , yIcons , title , body ) ) ;
}
2013-02-11 12:25:40 -08:00
public void oreRegistry ( )
{
2013-02-19 18:11:05 -08:00
OreDictionary . registerOre ( " oreCobalt " , new ItemStack ( oreSlag , 1 , 1 ) ) ;
OreDictionary . registerOre ( " oreArdite " , new ItemStack ( oreSlag , 1 , 2 ) ) ;
OreDictionary . registerOre ( " oreCopper " , new ItemStack ( oreSlag , 1 , 3 ) ) ;
OreDictionary . registerOre ( " oreTin " , new ItemStack ( oreSlag , 1 , 4 ) ) ;
OreDictionary . registerOre ( " oreAluminum " , new ItemStack ( oreSlag , 1 , 5 ) ) ;
2013-02-11 12:25:40 -08:00
OreDictionary . registerOre ( " ingotCobalt " , new ItemStack ( materials , 1 , 3 ) ) ;
OreDictionary . registerOre ( " ingotArdite " , new ItemStack ( materials , 1 , 4 ) ) ;
OreDictionary . registerOre ( " ingotManyullyn " , new ItemStack ( materials , 1 , 5 ) ) ;
OreDictionary . registerOre ( " ingotCopper " , new ItemStack ( materials , 1 , 9 ) ) ;
OreDictionary . registerOre ( " ingotTin " , new ItemStack ( materials , 1 , 10 ) ) ;
OreDictionary . registerOre ( " ingotAluminum " , new ItemStack ( materials , 1 , 11 ) ) ;
2013-02-27 14:13:27 -08:00
OreDictionary . registerOre ( " naturalAluminum " , new ItemStack ( materials , 1 , 12 ) ) ;
2013-02-28 18:24:12 -08:00
OreDictionary . registerOre ( " ingotBronze " , new ItemStack ( materials , 1 , 13 ) ) ;
OreDictionary . registerOre ( " ingotAluminumBrass " , new ItemStack ( materials , 1 , 14 ) ) ;
OreDictionary . registerOre ( " ingotAlumite " , new ItemStack ( materials , 1 , 15 ) ) ;
OreDictionary . registerOre ( " ingotSteel " , new ItemStack ( materials , 1 , 16 ) ) ;
OreDictionary . registerOre ( " blockCobalt " , new ItemStack ( metalBlock , 1 , 0 ) ) ;
OreDictionary . registerOre ( " blockArdite " , new ItemStack ( metalBlock , 1 , 1 ) ) ;
OreDictionary . registerOre ( " blockManyullyn " , new ItemStack ( metalBlock , 1 , 2 ) ) ;
OreDictionary . registerOre ( " blockCopper " , new ItemStack ( metalBlock , 1 , 3 ) ) ;
OreDictionary . registerOre ( " blockBronze " , new ItemStack ( metalBlock , 1 , 4 ) ) ;
OreDictionary . registerOre ( " blockTin " , new ItemStack ( metalBlock , 1 , 5 ) ) ;
OreDictionary . registerOre ( " blockAluminum " , new ItemStack ( metalBlock , 1 , 6 ) ) ;
OreDictionary . registerOre ( " blockAluminumBrass " , new ItemStack ( metalBlock , 1 , 7 ) ) ;
OreDictionary . registerOre ( " blockAlumite " , new ItemStack ( metalBlock , 1 , 8 ) ) ;
OreDictionary . registerOre ( " blockSteel " , new ItemStack ( metalBlock , 1 , 9 ) ) ;
2013-02-11 12:25:40 -08:00
}
2013-01-31 02:55:09 -08:00
public void modIntegration ( )
2013-02-27 14:13:27 -08:00
{
/* Liquids */
Block [ ] liquids = new Block [ ] { ironStill , goldStill , copperStill , tinStill , aluminumStill , cobaltStill ,
arditeStill , bronzeStill , alBrassStill , manyullynStill , alumiteStill , obsidianStill , steelStill } ;
String [ ] liquidNames = new String [ ] { " Iron " , " Gold " , " Copper " , " Tin " , " Aluminum " , " Cobalt " , " Ardite " , " Bronze " , " Brass " , " Manyullyn " , " Alumite " , " Obsidian " , " Steel " } ;
for ( int i = 0 ; i < liquids . length ; i + + )
{
LiquidStack liquidstack = new LiquidStack ( liquids [ i ] . blockID , LiquidContainerRegistry . BUCKET_VOLUME , i ) ;
LiquidDictionary . getOrCreateLiquid ( " Liquid " + liquidNames [ i ] , liquidstack ) ;
LiquidContainerRegistry . registerLiquid ( new LiquidContainerData ( liquidstack , new ItemStack ( buckets , 1 , i ) , new ItemStack ( Item . bucketEmpty ) ) ) ;
}
/* Ore Dictionary */
ArrayList < ItemStack > copperIngots = OreDictionary . getOres ( " ingotCopper " ) ;
for ( ItemStack copper : copperIngots )
{
PatternBuilder . instance . registerMaterial ( copper , 2 , " Copper " ) ;
2013-02-28 18:24:12 -08:00
Smeltery . addMelting ( copper , metalBlock . blockID , 3 , 450 , new LiquidStack ( copperStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > tinIngots = OreDictionary . getOres ( " ingotTin " ) ;
for ( ItemStack tin : tinIngots )
{
Smeltery . addMelting ( tin , metalBlock . blockID , 5 , 175 , new LiquidStack ( tinStill . blockID , 250 , 0 ) ) ;
2013-02-27 14:13:27 -08:00
}
ArrayList < ItemStack > bronzeIngots = OreDictionary . getOres ( " ingotBronze " ) ;
for ( ItemStack bronze : bronzeIngots )
{
PatternBuilder . instance . registerMaterial ( bronze , 2 , " Bronze " ) ;
2013-02-28 18:24:12 -08:00
Smeltery . addMelting ( bronze , metalBlock . blockID , 4 , 500 , new LiquidStack ( bronzeStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > cobaltIngots = OreDictionary . getOres ( " ingotCobalt " ) ;
for ( ItemStack cobalt : cobaltIngots )
{
Smeltery . addMelting ( cobalt , metalBlock . blockID , 0 , 650 , new LiquidStack ( cobaltStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > arditeIngots = OreDictionary . getOres ( " ingotArdite " ) ;
for ( ItemStack ardite : arditeIngots )
{
Smeltery . addMelting ( ardite , metalBlock . blockID , 1 , 650 , new LiquidStack ( arditeStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > aluminumIngots = OreDictionary . getOres ( " ingotAluminum " ) ;
for ( ItemStack aluminum : aluminumIngots )
{
Smeltery . addMelting ( aluminum , metalBlock . blockID , 6 , 250 , new LiquidStack ( aluminumStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > aluminumRaw = OreDictionary . getOres ( " naturalAluminum " ) ;
for ( ItemStack aluminum : aluminumRaw )
{
Smeltery . addMelting ( aluminum , metalBlock . blockID , 6 , 250 , new LiquidStack ( aluminumStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > manyullynIngots = OreDictionary . getOres ( " ingotManyullyn " ) ;
for ( ItemStack manyullyn : manyullynIngots )
{
Smeltery . addMelting ( manyullyn , metalBlock . blockID , 2 , 750 , new LiquidStack ( manyullynStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > alBrassIngots = OreDictionary . getOres ( " ingotAluminumBrass " ) ;
for ( ItemStack alBrass : alBrassIngots )
{
Smeltery . addMelting ( alBrass , metalBlock . blockID , 7 , 350 , new LiquidStack ( alBrassStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > alumiteIngots = OreDictionary . getOres ( " ingotAlumite " ) ;
for ( ItemStack alumite : alumiteIngots )
{
Smeltery . addMelting ( alumite , metalBlock . blockID , 8 , 500 , new LiquidStack ( alumiteStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > steelIngots = OreDictionary . getOres ( " ingotSteel " ) ;
for ( ItemStack steel : steelIngots )
{
Smeltery . addMelting ( steel , metalBlock . blockID , 9 , 500 , new LiquidStack ( steelStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > cobaltOres = OreDictionary . getOres ( " oreCobalt " ) ;
for ( ItemStack cobalt : cobaltOres )
{
Smeltery . addMelting ( cobalt , 750 , new LiquidStack ( cobaltStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > arditeOres = OreDictionary . getOres ( " oreArdite " ) ;
for ( ItemStack ardite : arditeOres )
{
Smeltery . addMelting ( ardite , 750 , new LiquidStack ( arditeStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > copperOres = OreDictionary . getOres ( " oreCopper " ) ;
for ( ItemStack copper : copperOres )
{
Smeltery . addMelting ( copper , 750 , new LiquidStack ( copperStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > tinOres = OreDictionary . getOres ( " oreTin " ) ;
for ( ItemStack tin : tinOres )
{
Smeltery . addMelting ( tin , 750 , new LiquidStack ( tinStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > aluminumOres = OreDictionary . getOres ( " oreAluminum " ) ;
for ( ItemStack aluminum : aluminumOres )
{
Smeltery . addMelting ( aluminum , 750 , new LiquidStack ( aluminumStill . blockID , 250 , 0 ) ) ;
}
ArrayList < ItemStack > copperblocks = OreDictionary . getOres ( " blockCopper " ) ;
for ( ItemStack copper : copperblocks )
{
Smeltery . addMelting ( copper , 450 , new LiquidStack ( copperStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > tinblocks = OreDictionary . getOres ( " blockTin " ) ;
for ( ItemStack tin : tinblocks )
{
Smeltery . addMelting ( tin , 175 , new LiquidStack ( tinStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > bronzeblocks = OreDictionary . getOres ( " blockBronze " ) ;
for ( ItemStack bronze : bronzeblocks )
{
Smeltery . addMelting ( bronze , 500 , new LiquidStack ( bronzeStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > cobaltblocks = OreDictionary . getOres ( " blockCobalt " ) ;
for ( ItemStack cobalt : cobaltblocks )
{
Smeltery . addMelting ( cobalt , 650 , new LiquidStack ( cobaltStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > arditeblocks = OreDictionary . getOres ( " blockArdite " ) ;
for ( ItemStack ardite : arditeblocks )
{
Smeltery . addMelting ( ardite , 650 , new LiquidStack ( arditeStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > aluminumblocks = OreDictionary . getOres ( " blockAluminum " ) ;
for ( ItemStack aluminum : aluminumblocks )
{
Smeltery . addMelting ( aluminum , 250 , new LiquidStack ( aluminumStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > manyullynblocks = OreDictionary . getOres ( " blockManyullyn " ) ;
for ( ItemStack manyullyn : manyullynblocks )
{
Smeltery . addMelting ( manyullyn , 750 , new LiquidStack ( manyullynStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > alBrassblocks = OreDictionary . getOres ( " blockAluminumBrass " ) ;
for ( ItemStack alBrass : alBrassblocks )
{
Smeltery . addMelting ( alBrass , 350 , new LiquidStack ( alBrassStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > alumiteblocks = OreDictionary . getOres ( " blockAlumite " ) ;
for ( ItemStack alumite : alumiteblocks )
{
Smeltery . addMelting ( alumite , 500 , new LiquidStack ( alumiteStill . blockID , 2250 , 0 ) ) ;
}
ArrayList < ItemStack > steelblocks = OreDictionary . getOres ( " blockSteel " ) ;
for ( ItemStack steel : steelblocks )
{
Smeltery . addMelting ( steel , 500 , new LiquidStack ( steelStill . blockID , 2250 , 0 ) ) ;
2013-02-27 14:13:27 -08:00
}
2013-01-31 02:55:09 -08:00
/* IC2 */
ItemStack reBattery = ic2 . api . Items . getItem ( " reBattery " ) ;
if ( reBattery ! = null )
modE . batteries . add ( reBattery ) ;
ItemStack chargedReBattery = ic2 . api . Items . getItem ( " chargedReBattery " ) ;
if ( chargedReBattery ! = null )
modE . batteries . add ( new ItemStack ( chargedReBattery . getItem ( ) , 1 , - 1 ) ) ;
ItemStack electronicCircuit = ic2 . api . Items . getItem ( " electronicCircuit " ) ;
if ( electronicCircuit ! = null )
modE . circuits . add ( electronicCircuit ) ;
/* Thaumcraft */
2013-02-02 01:48:55 -08:00
//Object obj = getItem("itemResource", "thaumcraft.common.Config");
2013-01-31 02:55:09 -08:00
}
public static Object getItem ( String name , String classPackage )
{
try
{
Class c = Class . forName ( classPackage ) ;
Object ret = c . getField ( name ) ;
if ( ret ! = null & & ( ret instanceof ItemStack | | ret instanceof Item ) )
return ret ;
return null ;
}
catch ( Exception e )
{
System . out . println ( " [TConstruct] Could not find item for " + name ) ;
return null ;
}
}
2013-01-18 23:43:53 -08:00
public static String blockTexture = " /tinkertextures/ConstructBlocks.png " ;
2013-01-31 02:55:09 -08:00
public static String blankSprite = " /tinkertextures/blanksprite.png " ;
2013-02-06 18:19:14 -08:00
public static String liquidTexture = " /tinkertextures/LiquidWhite.png " ;
2013-01-31 02:55:09 -08:00
2013-01-18 23:43:53 -08:00
public static String craftingTexture = " /tinkertextures/materials.png " ;
2013-02-28 18:24:12 -08:00
public static String patternTexture = " /tinkertextures/patterns.png " ;
2013-01-18 23:43:53 -08:00
public static String baseHeads = " /tinkertextures/tools/baseheads.png " ;
public static String baseAccessories = " /tinkertextures/tools/baseaccessories.png " ;
public static String swordparts = " /tinkertextures/tools/swordparts.png " ;
public static String jokeparts = " /tinkertextures/tools/jokeparts.png " ;
public static String broadheads = " /tinkertextures/tools/broadheads.png " ;
2013-01-31 02:55:09 -08:00
public static String pickaxeTexture = " /tinkertextures/tools/pickaxe/ " ;
public static String broadswordTexture = " /tinkertextures/tools/broadsword/ " ;
public static String shovelTexture = " /tinkertextures/tools/shovel/ " ;
public static String axeTexture = " /tinkertextures/tools/axe/ " ;
public static String longswordTexture = " /tinkertextures/tools/longsword/ " ;
public static String rapierTexture = " /tinkertextures/tools/rapier/ " ;
public static String frypanTexture = " /tinkertextures/tools/frypan/ " ;
public static String signTexture = " /tinkertextures/tools/battlesign/ " ;
public static String bowTexture = " /tinkertextures/tools/bow/ " ;
public static String mattockTexture = " /tinkertextures/tools/mattock/ " ;
public static String lumberaxeTexture = " /tinkertextures/tools/lumberaxe/ " ;
2013-01-23 17:53:32 -08:00
@Override
public int getBurnTime ( ItemStack fuel )
{
if ( fuel . itemID = = materials . itemID & & fuel . getItemDamage ( ) = = 7 )
return 26400 ;
return 0 ;
}
2013-01-18 23:43:53 -08:00
}