1.3.5, Final update for 1.5.X

master
mDiyo 2013-06-21 19:32:43 -07:00
parent deced73074
commit 960dfedb94
5 changed files with 21 additions and 7 deletions

View File

@ -90,6 +90,14 @@ The berries can be melted down into nuggets and ingots, making them an invaluabl
</recipe>
</page>
<page type="crafting">
<text>Tool Forge</text>
<recipe>
<name>toolforge</name>
<size>three</size>
</recipe>
</page>
<page type="text">
<text>Once you're well established, you can begin to process metals in a more efficient manner. The scope of the smeltery is beyond this volume, but a few recipes will help you get started.</text>
</page>

View File

@ -246,9 +246,11 @@ Class: Lethal Joke Weapon</text>
<page type="toolpage">
<title>Chisel</title>
<text>The Battlesign is an advance in weapon technology worthy of Zombie Pigmen everywhere.</text>
<text>Right-click: Block
- Blocking cuts a wide variety of damage types in half.
<text>The Chisel is an advanced detailing tool for carving shapes into blocks.</text>
<text>Right-click: Chisel
- Transforms various blocks into bricks.
Crafting grid: Chisel
- Some items can only be chiseled in the crafting grid.
Class: Utility Tool</text>
<icon>chiselicon</icon>
@ -669,7 +671,7 @@ Stackable: No</text>
Effects:
- Each redstone dust increases mining speed by 0.08.
- At 25/25 the boost is 2.0, equivalent to a higher level tool.
- At 50/50 the boost is 4.0, making a wood pickaxe equivalent in speed to iron.
- Not useful on weapons
Type: Multi-use

View File

@ -38,7 +38,7 @@ import cpw.mods.fml.common.registry.VillagerRegistry;
* @dependencies: IC2 API, MFR API
*/
@Mod(modid = "TConstruct", name = "TConstruct", version = "1.5.1_1.3.5.RC4", dependencies = "required-after:Forge@[7.7.1.675,)")
@Mod(modid = "TConstruct", name = "TConstruct", version = "1.5.1_1.3.5", dependencies = "required-after:Forge@[7.7.1.675,)")
@NetworkMod(serverSideRequired = false, clientSideRequired = true, channels = { "TConstruct" }, packetHandler = mods.tinker.tconstruct.util.network.TPacketHandler.class)
public class TConstruct
{

View File

@ -23,8 +23,8 @@ public class LightCrystalBase extends Block
public Icon getIcon (int side, int meta)
{
if (meta < 5)
return Block.glowStone.getIcon(side, meta);
return Block.blockNetherQuartz.getIcon(side, 1);
return Block.cake.getIcon(side, meta);
return Block.sponge.getIcon(side, 1);
}
@Override

View File

@ -414,9 +414,11 @@ public class TProxyClient extends TProxyCommon
ItemStack gravel = new ItemStack(Block.gravel, 1, 0);
ItemStack clay = new ItemStack(Item.clay, 1, 0);
ItemStack glass = new ItemStack(Block.glass, 1, 0);
ItemStack ironblock = new ItemStack(Block.blockIron, 1, 0);
ItemStack grout = new ItemStack(TContent.craftedSoil, 2, 1);
ItemStack searedbrick = new ItemStack(TContent.materials, 1, 2);
ItemStack searedbrickBlock = new ItemStack(TContent.smeltery, 1, 2);
ItemStack coal = new ItemStack(Item.coal);
ItemStack paper = new ItemStack(Item.paper);
@ -437,6 +439,8 @@ public class TProxyClient extends TProxyCommon
TConstructClientRegistry.registerManualSmallRecipe("partcrafter", new ItemStack(TContent.toolStationWood, 1, 1), null, pattern, null, log);
TConstructClientRegistry.registerManualSmallRecipe("patternchest", new ItemStack(TContent.toolStationWood, 1, 5), null, pattern, null, chest);
TConstructClientRegistry.registerManualSmallRecipe("stenciltable", new ItemStack(TContent.toolStationWood, 1, 10), null, pattern, null, plank);
TConstructClientRegistry.registerManualLargeRecipe("toolforge", new ItemStack(TContent.toolForge, 1, 0), searedbrickBlock, searedbrickBlock, searedbrickBlock, ironblock,
new ItemStack(TContent.toolStationWood, 1, 0), ironblock, ironblock, null, ironblock);
TConstructClientRegistry.registerManualLargeRecipe("slimymud", slimyMud, null, slimeball, slimeball, null, slimeball, slimeball, null, dirt, sand);
TConstructClientRegistry.registerManualFurnaceRecipe("slimecrystal", new ItemStack(TContent.materials, 1, 1), slimyMud);