80 lines
2.3 KiB
Java
80 lines
2.3 KiB
Java
package techreborn.items;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.IIcon;
|
|
import techreborn.client.TechRebornCreativeTabMisc;
|
|
import techreborn.init.ModItems;
|
|
|
|
import java.security.InvalidParameterException;
|
|
import java.util.List;
|
|
|
|
public class ItemGems extends Item {
|
|
|
|
public static ItemStack getGemByName(String name, int count) {
|
|
for (int i = 0; i < types.length; i++) {
|
|
if (types[i].equalsIgnoreCase(name)) {
|
|
return new ItemStack(ModItems.gems, count, i);
|
|
}
|
|
}
|
|
throw new InvalidParameterException("The gem " + name + " could not be found.");
|
|
}
|
|
|
|
public static ItemStack getGemByName(String name) {
|
|
return getGemByName(name, 1);
|
|
}
|
|
|
|
public static final String[] types = new String[]
|
|
{"ruby", "sapphire", "peridot", "redGarnet",
|
|
"yellowGarnet"};
|
|
|
|
private IIcon[] textures;
|
|
|
|
public ItemGems() {
|
|
setCreativeTab(TechRebornCreativeTabMisc.instance);
|
|
setUnlocalizedName("techreborn.gem");
|
|
setHasSubtypes(true);
|
|
}
|
|
|
|
@Override
|
|
// Registers Textures For All Dusts
|
|
public void registerIcons(IIconRegister iconRegister) {
|
|
textures = new IIcon[types.length];
|
|
|
|
for (int i = 0; i < types.length; ++i) {
|
|
textures[i] = iconRegister.registerIcon("techreborn:" + "gem/"
|
|
+ types[i]);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
// Adds Texture what match's meta data
|
|
public IIcon getIconFromDamage(int meta) {
|
|
if (meta < 0 || meta >= textures.length) {
|
|
meta = 0;
|
|
}
|
|
|
|
return textures[meta];
|
|
}
|
|
|
|
@Override
|
|
// gets Unlocalized Name depending on meta data
|
|
public String getUnlocalizedName(ItemStack itemStack) {
|
|
int meta = itemStack.getItemDamage();
|
|
if (meta < 0 || meta >= types.length) {
|
|
meta = 0;
|
|
}
|
|
|
|
return super.getUnlocalizedName() + "." + types[meta];
|
|
}
|
|
|
|
// Adds Dusts SubItems To Creative Tab
|
|
public void getSubItems(Item item, CreativeTabs creativeTabs, List list) {
|
|
for (int meta = 0; meta < types.length; ++meta) {
|
|
list.add(new ItemStack(item, 1, meta));
|
|
}
|
|
}
|
|
|
|
}
|