2017-02-13 23:17:08 +01:00
|
|
|
/*
|
|
|
|
* This file ("ItemCrystalShard.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://ellpeck.de/actaddlicense
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
|
|
|
* © 2015-2017 Ellpeck
|
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.BlockCrystal;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.IColorProvidingItem;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
|
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.NonNullList;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
public class ItemCrystalShard extends ItemBase implements IColorProvidingItem{
|
|
|
|
|
|
|
|
public ItemCrystalShard(String name){
|
|
|
|
super(name);
|
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-08-04 04:22:20 +02:00
|
|
|
public String getTranslationKey(ItemStack stack){
|
|
|
|
return stack.getItemDamage() >= BlockCrystal.ALL_CRYSTALS.length ? StringUtil.BUGGED_ITEM_NAME : this.getTranslationKey()+"_"+BlockCrystal.ALL_CRYSTALS[stack.getItemDamage()].name;
|
2017-02-13 23:17:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return stack.getItemDamage() >= BlockCrystal.ALL_CRYSTALS.length ? EnumRarity.COMMON : BlockCrystal.ALL_CRYSTALS[stack.getItemDamage()].rarity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
2017-07-28 03:17:50 +02:00
|
|
|
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list){
|
2017-06-29 18:30:02 +02:00
|
|
|
if(this.isInCreativeTab(tab)){
|
2017-06-17 00:48:49 +02:00
|
|
|
for(int j = 0; j < BlockCrystal.ALL_CRYSTALS.length; j++){
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
2017-02-13 23:17:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void registerRendering(){
|
|
|
|
for(int i = 0; i < BlockCrystal.ALL_CRYSTALS.length; i++){
|
2018-05-10 11:38:58 +02:00
|
|
|
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), "inventory");
|
2017-02-13 23:17:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IItemColor getItemColor(){
|
|
|
|
return new IItemColor(){
|
|
|
|
@Override
|
2017-11-16 00:11:17 +01:00
|
|
|
public int colorMultiplier(ItemStack stack, int tintIndex){
|
2017-02-13 23:17:08 +01:00
|
|
|
int damage = stack.getItemDamage();
|
|
|
|
if(damage >= 0 && damage < BlockCrystal.ALL_CRYSTALS.length){
|
|
|
|
return BlockCrystal.ALL_CRYSTALS[damage].clusterColor;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|