TechReborn/src/main/java/techreborn/items/ItemDusts.java

85 lines
3 KiB
Java
Raw Normal View History

2015-04-11 01:12:59 +02:00
package techreborn.items;
2016-03-25 10:47:34 +01:00
import java.security.InvalidParameterException;
import java.util.List;
2015-04-11 01:12:59 +02:00
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Items;
2015-04-11 01:12:59 +02:00
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import techreborn.client.TechRebornCreativeTabMisc;
import techreborn.init.ModItems;
2015-11-24 23:58:18 +01:00
import techreborn.lib.ModInfo;
2015-04-15 17:23:12 +02:00
2016-03-29 04:47:00 +02:00
public class ItemDusts extends ItemTextureBase {
2016-03-25 10:47:34 +01:00
public static final String[] types = new String[] { "almandine", "aluminumBrass", "aluminum", "alumite",
"andradite", "antimony", "ardite", "ashes", "basalt", "bauxite", "biotite", "brass", "bronze", "cadmium",
"calcite", "charcoal", "chrome", "cinnabar", "clay", "coal", "cobalt", "copper", "cupronickel", "darkAshes",
"darkIron", "diamond", "electrum", "emerald", "enderEye", "enderPearl", "endstone", "flint", "galena",
"gold", "graphite", "grossular", "indium", "invar", "iridium", "iron", "kanthal", "lapis", "lazurite",
"lead", "limestone", "lodestone", "magnesium", "magnetite", "manganese", "manyullyn", "marble", "mithril",
"netherrack", "nichrome", "nickel", "obsidian", "osmium", "peridot", "phosphorous", "platinum",
"potassiumFeldspar", "pyrite", "pyrope", "redGarnet", "redrock", "ruby", "saltpeter", "sapphire", "sawDust",
"silicon", "silver", "sodalite", "spessartine", "sphalerite", "steel", "sulfur", "tellurium", "teslatite",
"tetrahedrite", "tin", "titanium", "tungsten", "uvarovite", "vinteum", "voidstone", "yellowGarnet", "zinc",
2016-03-29 04:47:00 +02:00
"olivine" };
2016-03-25 10:47:34 +01:00
2016-03-29 04:47:00 +02:00
public ItemDusts() {
2016-03-25 10:47:34 +01:00
setUnlocalizedName("techreborn.dust");
setHasSubtypes(true);
setCreativeTab(TechRebornCreativeTabMisc.instance);
}
2016-03-29 04:47:00 +02:00
public static ItemStack getDustByName(String name, int count) {
for (int i = 0; i < types.length; i++) {
if (types[i].equalsIgnoreCase(name)) {
2016-03-25 10:47:34 +01:00
return new ItemStack(ModItems.dusts, count, i);
}
}
2016-03-29 04:47:00 +02:00
if (name.equalsIgnoreCase("glowstone")) {
2016-03-25 10:47:34 +01:00
return new ItemStack(Items.glowstone_dust, count);
}
2016-03-29 04:47:00 +02:00
if (name.equalsIgnoreCase("redstone")) {
2016-03-25 10:47:34 +01:00
return new ItemStack(Items.redstone, count);
}
2016-03-29 04:47:00 +02:00
if (name.equalsIgnoreCase("gunpowder")) {
2016-03-25 10:47:34 +01:00
return new ItemStack(Items.gunpowder, count);
}
throw new InvalidParameterException("The dust " + name + " could not be found.");
}
2016-03-29 04:47:00 +02:00
public static ItemStack getDustByName(String name) {
2016-03-25 10:47:34 +01:00
return getDustByName(name, 1);
}
@Override
// gets Unlocalized Name depending on meta data
2016-03-29 04:47:00 +02:00
public String getUnlocalizedName(ItemStack itemStack) {
2016-03-25 10:47:34 +01:00
int meta = itemStack.getItemDamage();
2016-03-29 04:47:00 +02:00
if (meta < 0 || meta >= types.length) {
2016-03-25 10:47:34 +01:00
meta = 0;
}
return super.getUnlocalizedName() + "." + types[meta];
}
// Adds Dusts SubItems To Creative Tab
2016-03-29 04:47:00 +02:00
public void getSubItems(Item item, CreativeTabs creativeTabs, List list) {
for (int meta = 0; meta < types.length; ++meta) {
2016-03-25 10:47:34 +01:00
list.add(new ItemStack(item, 1, meta));
}
}
@Override
2016-03-29 04:47:00 +02:00
public String getTextureName(int damage) {
2016-03-25 10:47:34 +01:00
return ModInfo.MOD_ID + ":items/dust/" + types[damage] + "Dust";
}
@Override
2016-03-29 04:47:00 +02:00
public int getMaxMeta() {
2016-03-25 10:47:34 +01:00
return types.length;
}
2015-11-24 23:58:18 +01:00
2015-04-11 01:12:59 +02:00
}