ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/lens/ItemLens.java

57 lines
1.6 KiB
Java
Raw Normal View History

2015-11-22 18:52:11 +01:00
/*
* This file ("ItemLens.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
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-11-22 18:52:11 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-11-22 18:52:11 +01:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items.lens;
2015-11-22 18:52:11 +01:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.lens.ILensItem;
import de.ellpeck.actuallyadditions.api.lens.Lens;
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
2015-11-22 18:52:11 +01:00
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-11-22 18:52:11 +01:00
2016-01-05 04:47:35 +01:00
public class ItemLens extends ItemBase implements ILensItem{
2015-11-22 18:52:11 +01:00
private Lens type;
2015-11-22 18:52:11 +01:00
public ItemLens(String name, Lens type){
super(name);
2015-11-22 18:52:11 +01:00
this.type = type;
this.type.setLensItem(this);
2015-11-22 18:52:11 +01:00
this.setMaxStackSize(1);
}
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.uncommon;
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconReg){
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName());
2015-11-22 18:52:11 +01:00
}
@Override
@SideOnly(Side.CLIENT)
public IIcon getIcon(ItemStack stack, int pass){
return this.itemIcon;
}
2016-01-05 04:47:35 +01:00
@Override
public Lens getLens(){
2015-11-22 18:52:11 +01:00
return this.type;
}
}