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

68 lines
2.6 KiB
Java
Raw Normal View History

2015-04-17 00:27:25 +02:00
package techreborn.items;
import com.google.common.base.CaseFormat;
2015-04-17 00:27:25 +02:00
import net.minecraft.creativetab.CreativeTabs;
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-04-17 00:27:25 +02:00
import java.security.InvalidParameterException;
2016-12-11 20:34:56 +01:00
public class ItemDustsSmall extends ItemTRNoDestroy {
2016-03-25 10:47:34 +01:00
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", "redstone", "glowstone", "andesite", "diorite", "granite" };
2016-03-25 10:47:34 +01:00
2016-10-08 21:46:16 +02:00
public ItemDustsSmall() {
2016-03-25 10:47:34 +01:00
setUnlocalizedName("techreborn.dustsmall");
setHasSubtypes(true);
setCreativeTab(TechRebornCreativeTabMisc.instance);
}
2016-10-08 21:46:16 +02:00
public static ItemStack getSmallDustByName(String name, int count) {
name = CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, name);
2016-10-08 21:46:16 +02:00
for (int i = 0; i < types.length; i++) {
if (types[i].equalsIgnoreCase(name)) {
if (types[i].equals(ModItems.META_PLACEHOLDER)) {
throw new InvalidParameterException("The small dust " + name + " could not be found.");
}
2016-03-25 10:47:34 +01:00
return new ItemStack(ModItems.smallDusts, count, i);
}
}
throw new InvalidParameterException("The small dust " + name + " could not be found.");
}
2016-10-08 21:46:16 +02:00
public static ItemStack getSmallDustByName(String name) {
2016-03-25 10:47:34 +01:00
return getSmallDustByName(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
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-17 00:27:25 +02:00
}