2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemDust.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02: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-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2016-01-10 01:17:17 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheDusts;
|
2016-03-19 15:10:20 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.IColorProvidingItem;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2016-03-19 15:10:20 +01:00
|
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-11-19 21:11:17 +01:00
|
|
|
import net.minecraft.util.NonNullList;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.OnlyIn;
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemDust extends ItemBase implements IColorProvidingItem {
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public static final TheDusts[] ALL_DUSTS = TheDusts.values();
|
2015-03-07 02:23:31 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemDust(String name) {
|
2015-12-03 20:15:07 +01:00
|
|
|
super(name);
|
2015-03-07 02:23:31 +01:00
|
|
|
this.setHasSubtypes(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getMetadata(int damage) {
|
2015-10-03 10:19:40 +02:00
|
|
|
return damage;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public String getTranslationKey(ItemStack stack) {
|
|
|
|
return stack.getItemDamage() >= ALL_DUSTS.length ? StringUtil.BUGGED_ITEM_NAME : this.getTranslationKey() + "_" + ALL_DUSTS[stack.getItemDamage()].name;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= ALL_DUSTS.length ? EnumRarity.COMMON : ALL_DUSTS[stack.getItemDamage()].rarity;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2016-06-10 21:52:37 +02:00
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-05-02 09:10:29 +02:00
|
|
|
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list) {
|
|
|
|
if (this.isInCreativeTab(tab)) {
|
|
|
|
for (int j = 0; j < ALL_DUSTS.length; j++) {
|
2017-06-17 00:48:49 +02:00
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-10 01:17:17 +01:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
protected void registerRendering() {
|
|
|
|
for (int i = 0; i < ALL_DUSTS.length; i++) {
|
2018-05-10 11:38:58 +02:00
|
|
|
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), "inventory");
|
2016-01-10 01:17:17 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-19 15:10:20 +01:00
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2016-03-19 15:10:20 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public IItemColor getItemColor() {
|
2019-02-27 19:53:05 +01:00
|
|
|
return (stack, pass) -> stack.getItemDamage() >= ALL_DUSTS.length ? 0xFFFFFF : ALL_DUSTS[stack.getItemDamage()].color;
|
2016-03-19 15:10:20 +01:00
|
|
|
}
|
2019-02-27 19:53:05 +01:00
|
|
|
|
2018-01-14 19:25:36 +01:00
|
|
|
@Override
|
|
|
|
public int getItemBurnTime(ItemStack stack) {
|
2019-05-02 09:10:29 +02:00
|
|
|
if (stack.getMetadata() == 6) return 1200;
|
2019-02-27 19:53:05 +01:00
|
|
|
return super.getItemBurnTime(stack);
|
2018-01-14 19:25:36 +01:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|