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

78 lines
2.7 KiB
Java
Raw Normal View History

2015-04-11 01:12:59 +02:00
package techreborn.items;
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;
2016-11-25 14:23:42 +01:00
import net.minecraft.util.NonNullList;
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
import java.security.InvalidParameterException;
2016-12-11 20:34:56 +01:00
public class ItemDusts extends ItemTRNoDestroy {
public static final String[] types = new String[] { "almandine", "aluminum", "andradite", "ashes", "basalt",
2016-10-08 21:46:16 +02:00
"bauxite", "brass", "bronze", "calcite", "charcoal", "chrome", "cinnabar", "clay", "coal", "copper",
2016-12-11 20:34:56 +01:00
"dark_ashes", "diamond", "electrum", "emerald", "ender_eye", "ender_pearl", "endstone", "flint", "galena",
2016-10-08 21:46:16 +02:00
"gold", "grossular", "invar", "iron", "lazurite", "lead", "magnesium", "manganese", "marble", "netherrack",
2016-12-11 20:34:56 +01:00
"nickel", "obsidian", "peridot", "phosphorous", "platinum", "pyrite", "pyrope", "red_garnet", ModItems.META_PLACEHOLDER,
"ruby", "saltpeter", "sapphire", "saw_dust", "silver", "sodalite", "spessartine", "sphalerite", "steel",
"sulfur", "tin", "titanium", "tungsten", "uvarovite", ModItems.META_PLACEHOLDER, "yellow_garnet", "zinc",
2016-10-08 21:46:16 +02:00
"olivine", "andesite", "diorite", "granite" };
2016-03-25 10:47:34 +01:00
2016-10-08 21:46:16 +02:00
public ItemDusts() {
2016-03-25 10:47:34 +01:00
setUnlocalizedName("techreborn.dust");
setHasSubtypes(true);
setCreativeTab(TechRebornCreativeTabMisc.instance);
}
2016-10-08 21:46:16 +02:00
public static ItemStack getDustByName(String name, int count) {
for (int i = 0; i < types.length; i++) {
if (types[i].equalsIgnoreCase(name)) {
if (types[i].equals(ModItems.META_PLACEHOLDER)) {
throw new InvalidParameterException("The dust " + name + " could not be found.");
}
2016-03-25 10:47:34 +01:00
return new ItemStack(ModItems.dusts, count, i);
}
}
2016-10-08 21:46:16 +02:00
if (name.equalsIgnoreCase("glowstone")) {
2016-05-06 23:13:24 +02:00
return new ItemStack(Items.GLOWSTONE_DUST, count);
2016-03-25 10:47:34 +01:00
}
2016-10-08 21:46:16 +02:00
if (name.equalsIgnoreCase("redstone")) {
2016-05-06 23:13:24 +02:00
return new ItemStack(Items.REDSTONE, count);
2016-03-25 10:47:34 +01:00
}
2016-10-08 21:46:16 +02:00
if (name.equalsIgnoreCase("gunpowder")) {
2016-05-06 23:13:24 +02:00
return new ItemStack(Items.GUNPOWDER, count);
2016-03-25 10:47:34 +01:00
}
throw new InvalidParameterException("The dust " + name + " could not be found.");
}
2016-10-08 21:46:16 +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-10-08 21:46:16 +02:00
public String getUnlocalizedName(ItemStack itemStack) {
2016-03-25 10:47:34 +01:00
int meta = itemStack.getItemDamage();
2016-10-08 21:46:16 +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-11-25 14:23:42 +01:00
@Override
public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) {
2016-10-08 21:46:16 +02:00
for (int meta = 0; meta < types.length; ++meta) {
if (!types[meta].equals(ModItems.META_PLACEHOLDER)) {
list.add(new ItemStack(item, 1, meta));
}
2016-03-25 10:47:34 +01:00
}
}
2015-04-11 01:12:59 +02:00
}