Added IE metal molds

Added 6 IE metal molds
This commit is contained in:
JAWolfe04 2016-04-16 16:37:54 -05:00
parent 8ae6ac99aa
commit 935a74ee7f
25 changed files with 80 additions and 2 deletions

View File

@ -1,6 +1,6 @@
minecraft_version=1.7.10
forge_version=10.13.4.1558-1.7.10
forge_version=10.13.4.1566-1.7.10
tfc_version=0.79.27
mod_version=1.11
mod_version=1.12
mod_id=TerraFirmaPunkTweaks
group_name=com.JAWolfe.TerraFirmaPunkTweaks

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,6 +1,11 @@
Changelog
=================================================
-------------------------------------------------
TFP Tweaks 1.12
-------------------------------------------------
New Features
+Added new metal press molds for immersive engineering
-------------------------------------------------
TFP Tweaks 1.11
-------------------------------------------------
New Features

View File

@ -0,0 +1,44 @@
package com.JAWolfe.terrafirmapunktweaks.items;
import com.JAWolfe.terrafirmapunktweaks.reference.References;
import com.bioxx.tfc.Reference;
import com.bioxx.tfc.Items.ItemTerra;
import com.bioxx.tfc.api.Enums.EnumSize;
import com.bioxx.tfc.api.Enums.EnumWeight;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
public class MetalMold extends ItemTerra
{
public MetalMold()
{
super();
setMaxDamage(0);
setHasSubtypes(true);
}
@Override
public int getMetadata(int i)
{
return i;
}
@Override
public void registerIcons(IIconRegister registerer)
{
this.itemIcon = registerer.registerIcon(References.ModID + ":" + this.getUnlocalizedName().replace("item.", ""));
}
@Override
public EnumSize getSize(ItemStack is)
{
return EnumSize.TINY;
}
@Override
public EnumWeight getWeight(ItemStack is)
{
return EnumWeight.LIGHT;
}
}

View File

@ -12,6 +12,12 @@ public class TFPItems
{
public static Item CustomBucketOil;
public static Item CustomBucketBlood;
public static Item BlockMold;
public static Item FenceMold;
public static Item HalfSlabMold;
public static Item MechCompMold;
public static Item PistonMold;
public static Item WireCoilMold;
public static void initialise()
{
@ -27,5 +33,22 @@ public class TFPItems
CustomBucketBlood = new CustomBucketBlood(TFPBlocks.tfpBlood, TFCItems.woodenBucketEmpty).setUnlocalizedName("Wooden Bucket Blood");
GameRegistry.registerItem(CustomBucketBlood, CustomBucketBlood.getUnlocalizedName());
}
if(Loader.isModLoaded("ImmersiveEngineering"))
{
BlockMold = new MetalMold().setUnlocalizedName("Block Mold");
FenceMold = new MetalMold().setUnlocalizedName("Fence Mold");
HalfSlabMold = new MetalMold().setUnlocalizedName("Half Slab Mold");
MechCompMold = new MetalMold().setUnlocalizedName("Mechanical Component Mold");
PistonMold = new MetalMold().setUnlocalizedName("Piston Mold");
WireCoilMold = new MetalMold().setUnlocalizedName("Wire Coil Mold");
GameRegistry.registerItem(BlockMold, BlockMold.getUnlocalizedName());
GameRegistry.registerItem(FenceMold, FenceMold.getUnlocalizedName());
GameRegistry.registerItem(HalfSlabMold, HalfSlabMold.getUnlocalizedName());
GameRegistry.registerItem(MechCompMold, MechCompMold.getUnlocalizedName());
GameRegistry.registerItem(PistonMold, PistonMold.getUnlocalizedName());
GameRegistry.registerItem(WireCoilMold, WireCoilMold.getUnlocalizedName());
}
}
}

View File

@ -16,6 +16,12 @@ gui.tfptweaks.steamtank=Steam Tank
#=========
item.Wooden Bucket Oil.name=Wooden Bucket (Oil)
item.Wooden Bucket Blood.name=Wooden Bucket (Blood)
item.Block Mold.name=Metal Press Mold: Block
item.Fence Mold.name=Metal Press Mold: Fence
item.Half Slab Mold.name=Metal Press Mold: Half Slab
item.Mechanical Component Mold.name=Metal Press Mold: Mechanical Component
item.Piston Mold.name=Metal Press Mold: Piston
item.Wire Coil Mold.name=Metal Press Mold: Wire Coil
#===========
#= Effects =

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B