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

40 lines
1 KiB
Java
Raw Normal View History

2015-11-22 18:52:11 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemLens.java") is part of the Actually Additions mod for Minecraft.
2015-11-22 18:52:11 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-11-22 18:52:11 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-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;
2015-11-22 18:52:11 +01:00
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
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;
2015-11-22 18:52:11 +01:00
}
2016-01-05 04:47:35 +01:00
@Override
public Lens getLens(){
2015-11-22 18:52:11 +01:00
return this.type;
}
}