mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-15 20:49:09 +01:00
85 lines
2.6 KiB
Java
85 lines
2.6 KiB
Java
/*
|
|
* This file ("ItemDust.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.items.base.ItemBase;
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheDusts;
|
|
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;
|
|
|
|
|
|
public class ItemDust extends ItemBase implements IColorProvidingItem {
|
|
|
|
public static final TheDusts[] ALL_DUSTS = TheDusts.values();
|
|
|
|
public ItemDust(String name) {
|
|
super(name);
|
|
this.setHasSubtypes(true);
|
|
}
|
|
|
|
@Override
|
|
public int getMetadata(int damage) {
|
|
return damage;
|
|
}
|
|
|
|
@Override
|
|
public String getTranslationKey(ItemStack stack) {
|
|
return stack.getItemDamage() >= ALL_DUSTS.length
|
|
? StringUtil.BUGGED_ITEM_NAME
|
|
: this.getTranslationKey() + "_" + ALL_DUSTS[stack.getItemDamage()].name;
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack) {
|
|
return stack.getItemDamage() >= ALL_DUSTS.length
|
|
? EnumRarity.COMMON
|
|
: ALL_DUSTS[stack.getItemDamage()].rarity;
|
|
}
|
|
|
|
@Override
|
|
@OnlyIn(Dist.CLIENT)
|
|
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list) {
|
|
if (this.isInCreativeTab(tab)) {
|
|
for (int j = 0; j < ALL_DUSTS.length; j++) {
|
|
list.add(new ItemStack(this, 1, j));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void registerRendering() {
|
|
for (int i = 0; i < ALL_DUSTS.length; i++) {
|
|
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), "inventory");
|
|
}
|
|
}
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
@Override
|
|
public IItemColor getItemColor() {
|
|
return (stack, pass) -> stack.getItemDamage() >= ALL_DUSTS.length
|
|
? 0xFFFFFF
|
|
: ALL_DUSTS[stack.getItemDamage()].color;
|
|
}
|
|
|
|
@Override
|
|
public int getItemBurnTime(ItemStack stack) {
|
|
if (stack.getMetadata() == 6) {
|
|
return 1200;
|
|
}
|
|
return super.getItemBurnTime(stack);
|
|
}
|
|
}
|