2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("ItemMisc.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
|
package ellpeck.actuallyadditions.items;
|
2014-11-10 16:47:04 +01:00
|
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-03-07 12:51:28 +01:00
|
|
|
|
import ellpeck.actuallyadditions.items.metalists.TheMiscItems;
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-04-06 15:51:59 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2014-11-10 16:47:04 +01:00
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
import net.minecraft.item.EnumRarity;
|
2014-11-10 16:47:04 +01:00
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
import net.minecraft.util.IIcon;
|
2014-11-10 16:47:04 +01:00
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class ItemMisc extends Item implements IActAddItemOrBlock{
|
2014-11-10 16:47:04 +01:00
|
|
|
|
|
2015-02-09 17:25:05 +01:00
|
|
|
|
public static final TheMiscItems[] allMiscItems = TheMiscItems.values();
|
2015-02-17 16:15:16 +01:00
|
|
|
|
public IIcon[] textures = new IIcon[allMiscItems.length];
|
2015-01-29 20:23:19 +01:00
|
|
|
|
|
|
|
|
|
public ItemMisc(){
|
2015-01-30 20:16:32 +01:00
|
|
|
|
this.setHasSubtypes(true);
|
2014-11-10 16:47:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public IIcon getIconFromDamage(int par1){
|
|
|
|
|
return par1 >= textures.length ? null : textures[par1];
|
2015-02-20 22:45:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
|
return damage;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-10-23 16:48:56 +02:00
|
|
|
|
return this.getUnlocalizedName()+(stack.getItemDamage() >= allMiscItems.length ? " ERROR!" : allMiscItems[stack.getItemDamage()].name);
|
2015-10-03 10:19:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
|
return stack.getItemDamage() >= allMiscItems.length ? EnumRarity.common : allMiscItems[stack.getItemDamage()].rarity;
|
2014-11-10 16:47:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-30 20:16:32 +01:00
|
|
|
|
@SuppressWarnings("all")
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
2015-02-09 17:25:05 +01:00
|
|
|
|
for(int j = 0; j < allMiscItems.length; j++){
|
2015-01-30 20:16:32 +01:00
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
2014-11-10 16:47:04 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
|
|
|
|
for(int i = 0; i < textures.length; i++){
|
2015-10-23 16:48:56 +02:00
|
|
|
|
textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+allMiscItems[i].name);
|
2015-02-17 16:15:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-03 10:19:40 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getName(){
|
|
|
|
|
return "itemMisc";
|
|
|
|
|
}
|
2015-01-29 20:23:19 +01:00
|
|
|
|
}
|