Put the tools back in the creative tab where they belong.

dev
Arona Jones 2015-08-13 21:56:02 +01:00
parent e972295fe3
commit b0b5d838b1
4 changed files with 24 additions and 12 deletions

View File

@ -620,20 +620,30 @@ public class InitItems
RegistryHelper.registerToolSet(swordSteam, shovelSteam, pickaxeSteam, axeSteam, hoeSteam, "Steam", ModInfo.ID);
// Etherium
pickaxeEtherium = new BasePickaxe(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemPickaxeEtherium");
swordEtherium = new BaseSword(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemSwordEtherium");
shovelEtherium = new BaseShovel(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemShovelEtherium");
axeEtherium = new BaseAxe(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemAxeEtherium");
hoeEtherium = new BaseHoe(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemHoeEtherium");
pickaxeEtherium = new BasePickaxe(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemPickaxeEtherium")
.setCreativeTab(Steamcraft.tabSC2);
swordEtherium = new BaseSword(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemSwordEtherium")
.setCreativeTab(Steamcraft.tabSC2);
shovelEtherium = new BaseShovel(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemShovelEtherium")
.setCreativeTab(Steamcraft.tabSC2);
axeEtherium = new BaseAxe(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemAxeEtherium")
.setCreativeTab(Steamcraft.tabSC2);
hoeEtherium = new BaseHoe(InitMaterials.TOOL_ETHERIUM, ModInfo.PREFIX).setUnlocalizedName("itemHoeEtherium")
.setCreativeTab(Steamcraft.tabSC2);
RegistryHelper.registerToolSet(swordEtherium, shovelEtherium, pickaxeEtherium, axeEtherium, hoeEtherium, "Etherium", ModInfo.ID);
// Obsidian
pickaxeObsidian = new BasePickaxe(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemPickaxeObsidian");
swordObsidian = new BaseSword(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemSwordObsidian");
shovelObsidian = new BaseShovel(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemShovelObsidian");
axeObsidian = new BaseAxe(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemAxeObsidian");
hoeObsidian = new BaseHoe(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemHoeObsidian");
pickaxeObsidian = new BasePickaxe(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemPickaxeObsidian")
.setCreativeTab(Steamcraft.tabSC2);
swordObsidian = new BaseSword(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemSwordObsidian")
.setCreativeTab(Steamcraft.tabSC2);
shovelObsidian = new BaseShovel(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemShovelObsidian")
.setCreativeTab(Steamcraft.tabSC2);
axeObsidian = new BaseAxe(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemAxeObsidian")
.setCreativeTab(Steamcraft.tabSC2);
hoeObsidian = new BaseHoe(InitMaterials.TOOL_OBSIDIAN, ModInfo.PREFIX).setUnlocalizedName("itemHoeObsidian")
.setCreativeTab(Steamcraft.tabSC2);
RegistryHelper.registerToolSet(swordObsidian, shovelObsidian, pickaxeObsidian, axeObsidian, hoeObsidian, "Obsidian", ModInfo.ID);

View File

@ -23,6 +23,7 @@ import net.minecraft.world.World;
import boilerplate.api.IEnergyItem;
import boilerplate.common.baseclasses.tools.BaseTool;
import steamcraft.common.Steamcraft;
import steamcraft.common.lib.ModInfo;
public class ItemElectricTool extends BaseTool implements IEnergyItem
@ -34,6 +35,7 @@ public class ItemElectricTool extends BaseTool implements IEnergyItem
protected ItemElectricTool(float damage, ToolMaterial toolMat, int maxEnergy, int maxReceive)
{
super(damage, toolMat, ModInfo.PREFIX);
this.setCreativeTab(Steamcraft.tabSC2);
this.maxEnergy = maxEnergy * 1000;
this.maxReceive = (short) maxReceive;
this.setMaxStackSize(1);

View File

@ -27,7 +27,6 @@ import net.minecraft.world.World;
import boilerplate.client.ClientHelper;
import boilerplate.common.utils.PlayerUtils;
import steamcraft.common.Steamcraft;
import steamcraft.common.lib.ModInfo;
/**
@ -39,7 +38,6 @@ public class ItemSteamDrill extends ItemSteamTool
public ItemSteamDrill(ToolMaterial mat)
{
super(1);
this.setCreativeTab(Steamcraft.tabSC2);
this.setHarvestLevel("pickaxe", mat.getHarvestLevel());
this.setHarvestLevel("shovel", mat.getHarvestLevel());
}

View File

@ -16,6 +16,7 @@ import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import boilerplate.common.baseclasses.tools.BaseTool;
import steamcraft.common.Steamcraft;
import steamcraft.common.init.InitItems;
import steamcraft.common.init.InitMaterials;
import steamcraft.common.items.ItemCanister;
@ -26,6 +27,7 @@ public class ItemSteamTool extends BaseTool
public ItemSteamTool(float damage)
{
super(damage, InitMaterials.TOOL_STEAM, ModInfo.PREFIX);
this.setCreativeTab(Steamcraft.tabSC2);
}
@SuppressWarnings("all")