Added IE metal molds
Added 6 IE metal molds
@ -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
|
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.05.jar
Normal file
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.06.jar
Normal file
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.07.jar
Normal file
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.08.jar
Normal file
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.09.jar
Normal file
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.10.jar
Normal file
BIN
builds/TerraFirmaPunkTweaks-1.7.10-1.12.jar
Normal file
BIN
builds/[1.7.10]TerraFirmaPunkTweaks-1.00.jar
Normal file
BIN
builds/[1.7.10]TerraFirmaPunkTweaks-1.01.jar
Normal file
BIN
builds/[1.7.10]TerraFirmaPunkTweaks-1.02.jar
Normal file
BIN
builds/[1.7.10]TerraFirmaPunkTweaks-1.03.jar
Normal 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
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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 =
|
||||
|
After Width: | Height: | Size: 328 B |
After Width: | Height: | Size: 257 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 294 B |
After Width: | Height: | Size: 277 B |
After Width: | Height: | Size: 336 B |
After Width: | Height: | Size: 282 B |