diff --git a/build.gradle b/build.gradle index 3360aa0..187515a 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ buildscript { apply plugin: 'forge' -version = "1.0.7" +version = "1.0.8" group= "org.rbh.tfcadditions" archivesBaseName = "[1.7.10]TFC-Additions" diff --git a/src/main/java/org/rbh/tfcadditions/Api/Blocks.java b/src/main/java/org/rbh/tfcadditions/Api/Blocks.java index 0e4b8dd..6553168 100644 --- a/src/main/java/org/rbh/tfcadditions/Api/Blocks.java +++ b/src/main/java/org/rbh/tfcadditions/Api/Blocks.java @@ -20,16 +20,20 @@ public class Blocks { public static Block PlanksOutline; public static Block PlanksOutline2; + public static Block PlanksOutline3; public static Block PlanksLarge; public static Block PlanksLarge2; + public static Block PlanksLarge3; public static Block PlanksParquet; public static Block PlanksParquet2; + public static Block PlanksParquet3; public static Block PlanksNorm; public static Block PlanksNorm2; public static Block PlanksVert; public static Block PlanksVert2; + public static Block PlanksVert3; } diff --git a/src/main/java/org/rbh/tfcadditions/Api/SubmapManCTM.java b/src/main/java/org/rbh/tfcadditions/Api/SubmapManCTM.java index ba1fcbe..97eb751 100644 --- a/src/main/java/org/rbh/tfcadditions/Api/SubmapManCTM.java +++ b/src/main/java/org/rbh/tfcadditions/Api/SubmapManCTM.java @@ -21,9 +21,9 @@ public class SubmapManCTM extends SubmapManagerCTM { private static RenderBlocksCTM rb; private TextureSubmap submap, submapSmall; - private String blockNames; - private String blockType; - private String chiselType; + private final String blockNames; + private final String blockType; + private final String chiselType; public SubmapManCTM(String names, String block, String chisel) { super("dummy"); diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/BlockChisel.java b/src/main/java/org/rbh/tfcadditions/Blocks/BlockChisel.java index 6cca59f..af67965 100644 --- a/src/main/java/org/rbh/tfcadditions/Blocks/BlockChisel.java +++ b/src/main/java/org/rbh/tfcadditions/Blocks/BlockChisel.java @@ -30,11 +30,12 @@ public class BlockChisel extends BlockTerra implements ICTMBlock { //@SideOnly(Side.CLIENT) - private List manager = new ArrayList(); + private final List manager = new ArrayList(); protected String[] names; protected IIcon[] icons; - private String blockType, chiselType; + private final String blockType; + private final String chiselType; public BlockChisel(Material material, String blockType, String chiselType) { diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/BlockPlanks.java b/src/main/java/org/rbh/tfcadditions/Blocks/BlockPlanks.java index 653e646..e0a3f96 100644 --- a/src/main/java/org/rbh/tfcadditions/Blocks/BlockPlanks.java +++ b/src/main/java/org/rbh/tfcadditions/Blocks/BlockPlanks.java @@ -27,7 +27,8 @@ public class BlockPlanks extends BlockTerra { public enum NameType { FIRST_BRACKET, - SECOND_BRACKET + SECOND_BRACKET, + THIRD_BRACKET } protected String[] names; @@ -105,7 +106,11 @@ protected String[] getMetaNames(NameType bracket){ return MetaNames; } else if(bracket == NameType.SECOND_BRACKET){ MetaNames = new String[Global.WOOD_ALL.length - 16]; - System.arraycopy(Global.WOOD_ALL, 16, MetaNames, 0, Global.WOOD_ALL.length - 16); + System.arraycopy(Global.WOOD_ALL, 16, MetaNames, 0, 16); + return MetaNames; + } else if(bracket == NameType.THIRD_BRACKET){ + MetaNames = new String[Global.WOOD_ALL.length - 32]; + System.arraycopy(Global.WOOD_ALL, 32, MetaNames, 0, Global.WOOD_ALL.length - 32); return MetaNames; } return null; diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/BlockSetup.java b/src/main/java/org/rbh/tfcadditions/Blocks/BlockSetup.java index 195b9cf..555bad9 100644 --- a/src/main/java/org/rbh/tfcadditions/Blocks/BlockSetup.java +++ b/src/main/java/org/rbh/tfcadditions/Blocks/BlockSetup.java @@ -6,14 +6,23 @@ import org.rbh.tfcadditions.Blocks.Dent.BlockIGEXDent; import org.rbh.tfcadditions.Blocks.Dent.BlockIGINDent; import org.rbh.tfcadditions.Blocks.Dent.BlockMMDent; +import org.rbh.tfcadditions.Blocks.Dent.BlockPlank2Dent; +import org.rbh.tfcadditions.Blocks.Dent.BlockPlank3Dent; +import org.rbh.tfcadditions.Blocks.Dent.BlockPlankDent; import org.rbh.tfcadditions.Blocks.Dent.BlockSEDDent; import org.rbh.tfcadditions.Blocks.DentSmall.BlockIGEXDentSmall; import org.rbh.tfcadditions.Blocks.DentSmall.BlockIGINDentSmall; import org.rbh.tfcadditions.Blocks.DentSmall.BlockMMDentSmall; import org.rbh.tfcadditions.Blocks.DentSmall.BlockSEDDentSmall; -import org.rbh.tfcadditions.Blocks.Dent.BlockPlank2Dent; -import org.rbh.tfcadditions.Blocks.Dent.BlockPlankDent; -import org.rbh.tfcadditions.Blocks.Planks.*; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksLarge; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksLarge2; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksLarge3; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksParquet; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksParquet2; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksParquet3; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksVert; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksVert2; +import org.rbh.tfcadditions.Blocks.Planks.BlockPlanksVert3; import org.rbh.tfcadditions.Core.CreativeTabs; import org.rbh.tfcadditions.Items.ItemBlocks.ItemBlock; import org.rbh.tfcadditions.Items.ItemBlocks.ItemBlockPlanks; @@ -26,7 +35,7 @@ public class BlockSetup extends Blocks { public static void LoadBlocks(){ - TFCAdditions.LOG.info(new StringBuilder().append("Loading Blocks").toString()); + TFCAdditions.LOG.info("Loading Blocks"); StoneMMDent = new BlockMMDent().setHardness(15F).setStepSound(Block.soundTypeStone).setBlockName("MMRockDent").setCreativeTab(CreativeTabs.TFCAdditions_Tab); StoneMMDentSmall = new BlockMMDentSmall().setHardness(15F).setStepSound(Block.soundTypeStone).setBlockName("MMRockDentSmall").setCreativeTab(CreativeTabs.TFCAdditions_Tab); @@ -42,18 +51,22 @@ public static void LoadBlocks(){ PlanksOutline = new BlockPlankDent().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksOutline").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksOutline2 = new BlockPlank2Dent().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksOutline2").setCreativeTab(CreativeTabs.TFCAdditions_Tab); + PlanksOutline3 = new BlockPlank3Dent().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksOutline3").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksLarge = new BlockPlanksLarge().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksLarge").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksLarge2 = new BlockPlanksLarge2().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksLarge2").setCreativeTab(CreativeTabs.TFCAdditions_Tab); + PlanksLarge3 = new BlockPlanksLarge3().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksLarge3").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksParquet = new BlockPlanksParquet().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksParquet").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksParquet2 = new BlockPlanksParquet2().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksParquet2").setCreativeTab(CreativeTabs.TFCAdditions_Tab); + PlanksParquet3 = new BlockPlanksParquet3().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksParquet3").setCreativeTab(CreativeTabs.TFCAdditions_Tab); //PlanksNorm = new BlockPlanksNorm().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksNorm").setCreativeTab(CreativeTabs.TFCAdditions_Tab); //PlanksNorm2 = new BlockPlanksNorm2().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksNorm2").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksVert = new BlockPlanksVert().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksVert").setCreativeTab(CreativeTabs.TFCAdditions_Tab); PlanksVert2 = new BlockPlanksVert2().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksVert2").setCreativeTab(CreativeTabs.TFCAdditions_Tab); + PlanksVert3 = new BlockPlanksVert3().setHardness(4.0F).setResistance(5.0F).setStepSound(Block.soundTypeWood).setBlockName("PlanksVert3").setCreativeTab(CreativeTabs.TFCAdditions_Tab); StoneMMDent.setHarvestLevel("pickaxe", 0); StoneMMDentSmall.setHarvestLevel("pickaxe", 0); @@ -69,22 +82,26 @@ public static void LoadBlocks(){ PlanksOutline.setHarvestLevel("axe", 0); PlanksOutline2.setHarvestLevel("axe", 0); + PlanksOutline3.setHarvestLevel("axe", 0); PlanksLarge.setHarvestLevel("axe", 0); PlanksLarge2.setHarvestLevel("axe", 0); + PlanksLarge3.setHarvestLevel("axe", 0); PlanksParquet.setHarvestLevel("axe", 0); PlanksParquet2.setHarvestLevel("axe", 0); + PlanksParquet3.setHarvestLevel("axe", 0); //PlanksNorm.setHarvestLevel("axe", 0); //PlanksNorm2.setHarvestLevel("axe", 0); PlanksVert.setHarvestLevel("axe", 0); PlanksVert2.setHarvestLevel("axe", 0); + PlanksVert3.setHarvestLevel("axe", 0); } public static void RegisterBlocks(){ - TFCAdditions.LOG.info(new StringBuilder().append("Register Blocks").toString()); + TFCAdditions.LOG.info("Register Blocks"); GameRegistry.registerBlock(StoneMMDent, ItemBlock.class, "StoneMMDent"); GameRegistry.registerBlock(StoneMMDentSmall, ItemBlock.class, "StoneMMDentSmall"); @@ -100,17 +117,21 @@ public static void RegisterBlocks(){ GameRegistry.registerBlock(PlanksOutline, ItemBlockPlanks.class, "OutlinedPlanks"); GameRegistry.registerBlock(PlanksOutline2, ItemBlockPlanks.class, "OutlinedPlanks2"); + GameRegistry.registerBlock(PlanksOutline3, ItemBlockPlanks.class, "OutlinedPlanks3"); GameRegistry.registerBlock(PlanksLarge, ItemBlockPlanks.class, "LargePlanks"); GameRegistry.registerBlock(PlanksLarge2, ItemBlockPlanks.class, "LargePlanks2"); + GameRegistry.registerBlock(PlanksLarge3, ItemBlockPlanks.class, "LargePlanks3"); GameRegistry.registerBlock(PlanksParquet, ItemBlockPlanks.class, "ParquetPlanks"); GameRegistry.registerBlock(PlanksParquet2, ItemBlockPlanks.class, "ParquetPlanks2"); + GameRegistry.registerBlock(PlanksParquet3, ItemBlockPlanks.class, "ParquetPlanks3"); //GameRegistry.registerBlock(PlanksNorm, ItemBlockPlanks.class, "NormalPlanks"); //GameRegistry.registerBlock(PlanksNorm2, ItemBlockPlanks.class, "NormalPlanks2"); GameRegistry.registerBlock(PlanksVert, ItemBlockPlanks.class, "VerticalPlanks"); GameRegistry.registerBlock(PlanksVert2, ItemBlockPlanks.class, "VerticalPlanks2"); + GameRegistry.registerBlock(PlanksVert3, ItemBlockPlanks.class, "VerticalPlanks3"); } } diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/Dent/BlockPlank3Dent.java b/src/main/java/org/rbh/tfcadditions/Blocks/Dent/BlockPlank3Dent.java new file mode 100644 index 0000000..6bb7113 --- /dev/null +++ b/src/main/java/org/rbh/tfcadditions/Blocks/Dent/BlockPlank3Dent.java @@ -0,0 +1,19 @@ +package org.rbh.tfcadditions.Blocks.Dent; + +import com.dunk.tfc.api.Constant.Global; +import net.minecraft.block.material.Material; +import net.minecraft.util.IIcon; +import org.rbh.tfcadditions.Blocks.BlockChisel; + +/** + * Created by raymondbh on 19.08.2015. + */ +public class BlockPlank3Dent extends BlockChisel { + public BlockPlank3Dent() + { + super(Material.wood, "wood", "Plank Outline"); + names = new String[Global.WOOD_ALL.length - 32]; + System.arraycopy(Global.WOOD_ALL, 32, names, 0, Global.WOOD_ALL.length - 32); + icons = new IIcon[names.length]; + } +} diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksLarge3.java b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksLarge3.java new file mode 100644 index 0000000..bf1f21a --- /dev/null +++ b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksLarge3.java @@ -0,0 +1,16 @@ +package org.rbh.tfcadditions.Blocks.Planks; + +import net.minecraft.block.material.Material; +import net.minecraft.util.IIcon; +import org.rbh.tfcadditions.Blocks.BlockPlanks; + +/** + * Created by raymondbh on 20.08.2015. + */ +public class BlockPlanksLarge3 extends BlockPlanks { + public BlockPlanksLarge3() { + super(Material.wood, " Plank Large"); + names = getMetaNames(NameType.THIRD_BRACKET); + icons = new IIcon[names.length]; + } +} diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksNorm3.java b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksNorm3.java new file mode 100644 index 0000000..601ec34 --- /dev/null +++ b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksNorm3.java @@ -0,0 +1,17 @@ +package org.rbh.tfcadditions.Blocks.Planks; + +import net.minecraft.block.material.Material; +import net.minecraft.util.IIcon; +import org.rbh.tfcadditions.Blocks.BlockPlanks; + +/** + * Created by rbh on 20.08.2015. + */ +public class BlockPlanksNorm3 extends BlockPlanks{ + public BlockPlanksNorm3() + { + super(Material.wood, " Plank"); + names = getMetaNames(NameType.THIRD_BRACKET); + icons = new IIcon[names.length]; + } +} diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksParquet3.java b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksParquet3.java new file mode 100644 index 0000000..d5bb997 --- /dev/null +++ b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksParquet3.java @@ -0,0 +1,17 @@ +package org.rbh.tfcadditions.Blocks.Planks; + +import net.minecraft.block.material.Material; +import net.minecraft.util.IIcon; +import org.rbh.tfcadditions.Blocks.BlockPlanks; + +/** + * Created by raymondbh on 20.08.2015. + */ +public class BlockPlanksParquet3 extends BlockPlanks { + public BlockPlanksParquet3() + { + super(Material.wood, " Plank Parquet"); + names = getMetaNames(NameType.THIRD_BRACKET); + icons = new IIcon[names.length]; + } +} diff --git a/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksVert3.java b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksVert3.java new file mode 100644 index 0000000..d331418 --- /dev/null +++ b/src/main/java/org/rbh/tfcadditions/Blocks/Planks/BlockPlanksVert3.java @@ -0,0 +1,16 @@ +package org.rbh.tfcadditions.Blocks.Planks; + +import net.minecraft.block.material.Material; +import net.minecraft.util.IIcon; +import org.rbh.tfcadditions.Blocks.BlockPlanks; + +/** + * Created by rbh on 20.08.2015. + */ +public class BlockPlanksVert3 extends BlockPlanks { + public BlockPlanksVert3() { + super(Material.wood, " Plank Vertical"); + names = getMetaNames(NameType.THIRD_BRACKET); + icons = new IIcon[names.length]; + } +} diff --git a/src/main/java/org/rbh/tfcadditions/Core/Recipes.java b/src/main/java/org/rbh/tfcadditions/Core/Recipes.java index 6b34a4a..cfb2be3 100644 --- a/src/main/java/org/rbh/tfcadditions/Core/Recipes.java +++ b/src/main/java/org/rbh/tfcadditions/Core/Recipes.java @@ -44,6 +44,10 @@ public static void registerRecipes(){ GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.PlanksVert2, 1, l), " 1 ","11 ","1 ", '1', new ItemStack(TFCItems.singlePlank, 1, i))); GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.PlanksParquet2, 2, l), "11","11", '1', new ItemStack(Items.PlankPlaned, 1, i))); GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.PlanksLarge2, 2, l), "111","111","111", '1', new ItemStack(Items.PlankPlaned, 1, i))); + } else if(i/32 == 1){ + GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.PlanksVert3, 1, l), " 1 ","11 ","1 ", '1', new ItemStack(TFCItems.singlePlank, 1, i))); + GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.PlanksParquet3, 2, l), "11","11", '1', new ItemStack(Items.PlankPlaned, 1, i))); + GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.PlanksLarge3, 2, l), "111","111","111", '1', new ItemStack(Items.PlankPlaned, 1, i))); } } } diff --git a/src/main/java/org/rbh/tfcadditions/Items/ItemBlocks/ItemBlockPlanks.java b/src/main/java/org/rbh/tfcadditions/Items/ItemBlocks/ItemBlockPlanks.java index 4250bb2..d8adeea 100644 --- a/src/main/java/org/rbh/tfcadditions/Items/ItemBlocks/ItemBlockPlanks.java +++ b/src/main/java/org/rbh/tfcadditions/Items/ItemBlocks/ItemBlockPlanks.java @@ -5,6 +5,7 @@ import net.minecraft.block.Block; import org.rbh.tfcadditions.Blocks.BlockPlanks; import org.rbh.tfcadditions.Blocks.Dent.BlockPlank2Dent; +import org.rbh.tfcadditions.Blocks.Dent.BlockPlank3Dent; import org.rbh.tfcadditions.Blocks.Dent.BlockPlankDent; import org.rbh.tfcadditions.Reference.Names; @@ -22,11 +23,14 @@ public ItemBlockPlanks(Block block) } else if(block instanceof BlockPlank2Dent) { metaNames = new String[Global.WOOD_ALL.length - 16]; - System.arraycopy(Global.WOOD_ALL, 16, metaNames, 0, Global.WOOD_ALL.length - 16); + System.arraycopy(Global.WOOD_ALL, 16, metaNames, 0, 16); + } + else if(block instanceof BlockPlank3Dent) { + metaNames = new String[Global.WOOD_ALL.length - 32]; + System.arraycopy(Global.WOOD_ALL, 32, metaNames, 0, Global.WOOD_ALL.length - 32); } else if(block instanceof BlockPlanks){ metaNames = ((BlockPlanks) block).getNames(); } } } - diff --git a/src/main/java/org/rbh/tfcadditions/Items/ItemPlankPlaned.java b/src/main/java/org/rbh/tfcadditions/Items/ItemPlankPlaned.java index 5b899df..18d056e 100644 --- a/src/main/java/org/rbh/tfcadditions/Items/ItemPlankPlaned.java +++ b/src/main/java/org/rbh/tfcadditions/Items/ItemPlankPlaned.java @@ -19,7 +19,7 @@ */ public class ItemPlankPlaned extends ItemTerra { - private IIcon[] icons = new IIcon[Global.WOOD_ALL.length]; + private final IIcon[] icons = new IIcon[Global.WOOD_ALL.length]; ItemPlankPlaned(){ super(); diff --git a/src/main/java/org/rbh/tfcadditions/Items/ItemSetup.java b/src/main/java/org/rbh/tfcadditions/Items/ItemSetup.java index 59dba8b..09da881 100644 --- a/src/main/java/org/rbh/tfcadditions/Items/ItemSetup.java +++ b/src/main/java/org/rbh/tfcadditions/Items/ItemSetup.java @@ -15,7 +15,7 @@ public class ItemSetup extends Items { public static void LoadItems(){ - TFCAdditions.LOG.info(new StringBuilder().append("Loading Items").toString()); + TFCAdditions.LOG.info("Loading Items"); BismuthBronzePlaner = new ItemPlaner(TFCItems.bismuthBronzeToolMaterial).setUnlocalizedName("Bismuth Bronze Planer").setMaxDamage(TFCItems.bismuthBronzeUses); BlackBronzePlaner = new ItemPlaner(TFCItems.blackBronzeToolMaterial).setUnlocalizedName("Black Bronze Planer").setMaxDamage(TFCItems.blackBronzeUses); @@ -31,7 +31,7 @@ public static void LoadItems(){ } public static void RegisterItems(){ - TFCAdditions.LOG.info(new StringBuilder().append("Register Items").toString()); + TFCAdditions.LOG.info("Register Items"); GameRegistry.registerItem(BismuthBronzePlaner, BismuthBronzePlaner.getUnlocalizedName()); GameRegistry.registerItem(BlackBronzePlaner, BlackBronzePlaner.getUnlocalizedName()); diff --git a/src/main/java/org/rbh/tfcadditions/Reference/Reference.java b/src/main/java/org/rbh/tfcadditions/Reference/Reference.java index 12c2b88..47515d1 100644 --- a/src/main/java/org/rbh/tfcadditions/Reference/Reference.java +++ b/src/main/java/org/rbh/tfcadditions/Reference/Reference.java @@ -9,7 +9,7 @@ public class Reference { public static final int VersionMajor = 1; public static final int VersionMinor = 0; - public static final int VersionRevision = 7; + public static final int VersionRevision = 8; public static final String ModVersion = VersionMajor + "." + VersionMinor + "." + VersionRevision; //public static final String TFCVersion = "@TFCVERSION@"; diff --git a/src/main/java/org/rbh/tfcadditions/Tools/ChiselMode_Dent.java b/src/main/java/org/rbh/tfcadditions/Tools/ChiselMode_Dent.java index c9161b7..7a95542 100644 --- a/src/main/java/org/rbh/tfcadditions/Tools/ChiselMode_Dent.java +++ b/src/main/java/org/rbh/tfcadditions/Tools/ChiselMode_Dent.java @@ -93,6 +93,8 @@ public boolean onUsedHandler(World world, EntityPlayer player, int x, int y, int world.setBlock(x, y, z, Blocks.PlanksOutline, meta, 0x2); } else if(id == TFCBlocks.planks2 ||id == Blocks.PlanksVert2) { world.setBlock(x, y, z, Blocks.PlanksOutline2, meta, 0x2); + } else if(id == TFCBlocks.planks3 ||id == Blocks.PlanksVert3) { + world.setBlock(x, y, z, Blocks.PlanksOutline3, meta, 0x2); } player.inventory.mainInventory[hasChisel].damageItem(1, player); diff --git a/src/main/resources/assets/tfcadditions/lang/en_US.lang b/src/main/resources/assets/tfcadditions/lang/en_US.lang index 5dbcadd..7953718 100644 --- a/src/main/resources/assets/tfcadditions/lang/en_US.lang +++ b/src/main/resources/assets/tfcadditions/lang/en_US.lang @@ -87,6 +87,11 @@ tile.PlanksOutline2.Mahogany.name=Mahogany with Outline tile.PlanksOutline2.Mangrove.name=Mangrove with Outline tile.PlanksOutline2.Teak.name=Teak with Outline tile.PlanksOutline2.Palm.name=Palm with Outline +tile.PlanksOutline2.Ghaf.name=Ghaf with Outline +tile.PlanksOutline2.Joshua.name=Joshua with Outline +tile.PlanksOutline2.Laurel.name=Laurel with Outline +tile.PlanksOutline2.Mahoe.name=Mahoe with Outline +tile.PlanksOutline3.Yew.name=Yew with Outline tile.PlanksParquet.Oak.name=Oak Parquet tile.PlanksParquet.Aspen.name=Aspen Parquet @@ -116,6 +121,11 @@ tile.PlanksParquet2.Mahogany.name=Mahogany Parquet tile.PlanksParquet2.Mangrove.name=Mangrove Parquet tile.PlanksParquet2.Teak.name=Teak Parquet tile.PlanksParquet2.Palm.name=Palm Parquet +tile.PlanksParquet2.Ghaf.name=Ghaf Parquet +tile.PlanksParquet2.Joshua.name=Joshua Parquet +tile.PlanksParquet2.Laurel.name=Laurel Parquet +tile.PlanksParquet2.Mahoe.name=Mahoe Parquet +tile.PlanksParquet3.Yew.name=Yew Parquet tile.PlanksNorm.Oak.name=Oak Planks tile.PlanksNorm.Aspen.name=Aspen Planks @@ -145,6 +155,11 @@ tile.PlanksNorm2.Mahogany.name=Mahogany Planks tile.PlanksNorm2.Mangrove.name=Mangrove Planks tile.PlanksNorm2.Teak.name=Teak Planks tile.PlanksNorm2.Palm.name=Palm Planks +tile.PlanksNorm2.Ghaf.name=Ghaf Planks +tile.PlanksNorm2.Joshua.name=Joshua Planks +tile.PlanksNorm2.Laurel.name=Laurel Planks +tile.PlanksNorm2.Mahoe.name=Mahoe Planks +tile.PlanksNorm3.Yew.name=Yew Planks tile.PlanksVert.Oak.name=Oak Vertical Planks tile.PlanksVert.Aspen.name=Aspen Vertical Planks @@ -174,6 +189,11 @@ tile.PlanksVert2.Mahogany.name=Mahogany Vertical Planks tile.PlanksVert2.Mangrove.name=Mangrove Vertical Planks tile.PlanksVert2.Teak.name=Teak Vertical Planks tile.PlanksVert2.Palm.name=Palm Vertical Planks +tile.PlanksVert2.Ghaf.name=Ghaf Vertical Planks +tile.PlanksVert2.Joshua.name=Joshua Vertical Planks +tile.PlanksVert2.Laurel.name=Laurel Vertical Planks +tile.PlanksVert2.Mahoe.name=Mahoe Vertical Planks +tile.PlanksVert3.Yew.name=Yew Vertical Planks tile.PlanksLarge.Oak.name=Oak Large Planks tile.PlanksLarge.Aspen.name=Aspen Large Planks @@ -203,6 +223,11 @@ tile.PlanksLarge2.Mahogany.name=Mahogany Large Planks tile.PlanksLarge2.Mangrove.name=Mangrove Large Planks tile.PlanksLarge2.Teak.name=Teak Large Planks tile.PlanksLarge2.Palm.name=Palm Large Planks +tile.PlanksLarge2.Ghaf.name=Ghaf Large Planks +tile.PlanksLarge2.Joshua.name=Joshua Large Planks +tile.PlanksLarge2.Laurel.name=Laurel Large Planks +tile.PlanksLarge2.Mahoe.name=Mahoe Large Planks +tile.PlanksLarge3.Yew.name=Yew Large Planks item.Plank Planed.Oak.name=Planed Oak Plank item.Plank Planed.Aspen.name=Planed Aspen Plank @@ -232,6 +257,11 @@ item.Plank Planed.Mahogany.name=Planed Mahogany Plank item.Plank Planed.Mangrove.name=Planed Mangrove Plank item.Plank Planed.Teak.name=Planed Teak Plank item.Plank Planed.Palm.name=Planed Palm Plank +item.Plank Planed.Ghaf.name=Planed Ghaf Plank +item.Plank Planed.Joshua.name=Planed Joshua Plank +item.Plank Planed.Laurel.name=Planed Laurel Plank +item.Plank Planed.Mahoe.name=Planed Mahoe Plank +item.Plank Planed.Yew.name=Planed Yew Plank item.Bismuth Bronze Planer.name=Bismuth Bronze Planer item.Black Bronze Planer.name=Black Bronze Planer diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Large.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Large.png new file mode 100644 index 0000000..25d2f23 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Large.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Outline-ctm.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Outline-ctm.png new file mode 100644 index 0000000..a000a52 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Outline-ctm.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Outline.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Outline.png new file mode 100644 index 0000000..ad71276 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Outline.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Parquet.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Parquet.png new file mode 100644 index 0000000..849b7be Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Parquet.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Vertical.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Vertical.png new file mode 100644 index 0000000..dfd4337 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank Vertical.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank.png new file mode 100644 index 0000000..19b7dd0 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf Plank.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf.png new file mode 100644 index 0000000..724df6a Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Ghaf/Ghaf.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Large.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Large.png new file mode 100644 index 0000000..eb30163 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Large.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Outline-ctm.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Outline-ctm.png new file mode 100644 index 0000000..5832265 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Outline-ctm.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Outline.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Outline.png new file mode 100644 index 0000000..f8e5ab2 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Outline.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Parquet.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Parquet.png new file mode 100644 index 0000000..b169dbb Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Parquet.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Vertical.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Vertical.png new file mode 100644 index 0000000..485dc39 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank Vertical.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank.png new file mode 100644 index 0000000..0de7a7a Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua Plank.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua.png new file mode 100644 index 0000000..a608228 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Joshua/Joshua.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Large.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Large.png new file mode 100644 index 0000000..c15f4cf Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Large.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Outline-ctm.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Outline-ctm.png new file mode 100644 index 0000000..e461adc Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Outline-ctm.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Outline.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Outline.png new file mode 100644 index 0000000..7584743 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Outline.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Parquet.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Parquet.png new file mode 100644 index 0000000..6f008eb Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Parquet.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Vertical.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Vertical.png new file mode 100644 index 0000000..bfe254b Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank Vertical.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank.png new file mode 100644 index 0000000..eb79416 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel Plank.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel.png new file mode 100644 index 0000000..1c98dc0 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Laurel/Laurel.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Large.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Large.png new file mode 100644 index 0000000..e2f7ffa Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Large.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Outline-ctm.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Outline-ctm.png new file mode 100644 index 0000000..2acfeec Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Outline-ctm.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Outline.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Outline.png new file mode 100644 index 0000000..2efeb38 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Outline.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Parquet.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Parquet.png new file mode 100644 index 0000000..8a267b7 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Parquet.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Vertical.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Vertical.png new file mode 100644 index 0000000..0ae6335 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank Vertical.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank.png new file mode 100644 index 0000000..fcdb6ba Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe Plank.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe.png new file mode 100644 index 0000000..5724e35 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Mahoe/Mahoe.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Large.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Large.png new file mode 100644 index 0000000..cab69e3 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Large.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Outline-ctm.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Outline-ctm.png new file mode 100644 index 0000000..726250f Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Outline-ctm.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Outline.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Outline.png new file mode 100644 index 0000000..cf2dcfd Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Outline.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Parquet.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Parquet.png new file mode 100644 index 0000000..3aa3372 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Parquet.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Vertical.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Vertical.png new file mode 100644 index 0000000..31d6ec4 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank Vertical.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank.png new file mode 100644 index 0000000..265d9d3 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew Plank.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew.png b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew.png new file mode 100644 index 0000000..c03e1dd Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/blocks/wood/Yew/Yew.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Bamboo Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Bamboo Plank Planed.png new file mode 100644 index 0000000..485442d Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Bamboo Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Baobab Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Baobab Plank Planed.png new file mode 100644 index 0000000..5250778 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Baobab Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Ebony Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Ebony Plank Planed.png new file mode 100644 index 0000000..0401392 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Ebony Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Fever Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Fever Plank Planed.png new file mode 100644 index 0000000..32e04f8 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Fever Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Fruitwood Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Fruitwood Plank Planed.png new file mode 100644 index 0000000..27eaa9a Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Fruitwood Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Ghaf Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Ghaf Plank Planed.png new file mode 100644 index 0000000..5bd53e4 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Ghaf Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Gingko Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Gingko Plank Planed.png new file mode 100644 index 0000000..ccb2394 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Gingko Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Joshua Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Joshua Plank Planed.png new file mode 100644 index 0000000..3f31119 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Joshua Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Laurel Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Laurel Plank Planed.png new file mode 100644 index 0000000..347f610 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Laurel Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Limba Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Limba Plank Planed.png new file mode 100644 index 0000000..f81cdfc Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Limba Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Mahoe Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Mahoe Plank Planed.png new file mode 100644 index 0000000..e3257f6 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Mahoe Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Mahogany Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Mahogany Plank Planed.png new file mode 100644 index 0000000..f37e5c7 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Mahogany Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Mangrove Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Mangrove Plank Planed.png new file mode 100644 index 0000000..d990dde Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Mangrove Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Teak Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Teak Plank Planed.png new file mode 100644 index 0000000..ecb34b4 Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Teak Plank Planed.png differ diff --git a/src/main/resources/assets/tfcadditions/textures/items/wood/Yew Plank Planed.png b/src/main/resources/assets/tfcadditions/textures/items/wood/Yew Plank Planed.png new file mode 100644 index 0000000..0f7c7ea Binary files /dev/null and b/src/main/resources/assets/tfcadditions/textures/items/wood/Yew Plank Planed.png differ