ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/items/ItemCrystal.java

80 lines
2.6 KiB
Java
Raw Normal View History

2015-11-09 18:05:52 +01:00
/*
* This file ("ItemCrystal.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
*
* © 2015 Ellpeck
*/
package ellpeck.actuallyadditions.items;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import ellpeck.actuallyadditions.blocks.BlockCrystal;
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
import ellpeck.actuallyadditions.util.ModUtil;
2015-11-23 19:06:07 +01:00
import ellpeck.actuallyadditions.util.StringUtil;
2015-11-09 18:05:52 +01:00
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import java.util.List;
public class ItemCrystal extends Item implements IActAddItemOrBlock{
@SideOnly(Side.CLIENT)
public IIcon[] textures;
2015-11-09 18:05:52 +01:00
public ItemCrystal(){
this.setHasSubtypes(true);
this.setMaxDamage(0);
}
2015-12-01 19:48:09 +01:00
@Override
@SideOnly(Side.CLIENT)
public IIcon getIconFromDamage(int par1){
return par1 >= this.textures.length ? null : this.textures[par1];
}
2015-11-09 18:05:52 +01:00
@Override
public int getMetadata(int damage){
return damage;
}
@Override
public String getUnlocalizedName(ItemStack stack){
2015-11-23 19:06:07 +01:00
return stack.getItemDamage() >= BlockCrystal.allCrystals.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+BlockCrystal.allCrystals[stack.getItemDamage()].name;
2015-11-09 18:05:52 +01:00
}
@Override
public EnumRarity getRarity(ItemStack stack){
return stack.getItemDamage() >= BlockCrystal.allCrystals.length ? EnumRarity.common : BlockCrystal.allCrystals[stack.getItemDamage()].rarity;
}
@SuppressWarnings("all")
@SideOnly(Side.CLIENT)
public void getSubItems(Item item, CreativeTabs tab, List list){
for(int j = 0; j < BlockCrystal.allCrystals.length; j++){
list.add(new ItemStack(this, 1, j));
}
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconReg){
this.textures = new IIcon[BlockCrystal.allCrystals.length];
for(int i = 0; i < this.textures.length; i++){
this.textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+BlockCrystal.allCrystals[i].name);
}
2015-11-09 18:05:52 +01:00
}
@Override
public String getName(){
return "itemCrystal";
}
}