2018-10-14 17:46:00 +02:00
|
|
|
package de.ellpeck.naturesaura.items;
|
|
|
|
|
2018-10-19 18:32:20 +02:00
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
|
|
|
import de.ellpeck.naturesaura.items.tools.*;
|
2018-10-14 17:46:00 +02:00
|
|
|
import net.minecraft.item.Item;
|
2018-10-19 18:32:20 +02:00
|
|
|
import net.minecraftforge.common.util.EnumHelper;
|
|
|
|
|
|
|
|
import java.util.Locale;
|
2018-10-14 17:46:00 +02:00
|
|
|
|
|
|
|
public final class ModItems {
|
|
|
|
|
2018-11-08 13:50:45 +01:00
|
|
|
public static final Item.ToolMaterial TOOL_MATERIAL_INFUSED_IRON =
|
|
|
|
EnumHelper.addToolMaterial(NaturesAura.MOD_ID.toUpperCase(Locale.ROOT) + "_INFUSED_IRON", 3, 300, 6.25F, 2.25F, 16);
|
|
|
|
public static final Item INFUSED_PICKAXE = new ItemPickaxeNA("infused_iron_pickaxe", TOOL_MATERIAL_INFUSED_IRON);
|
|
|
|
public static final Item INFUSED_AXE = new ItemAxeNA("infused_iron_axe", TOOL_MATERIAL_INFUSED_IRON, 8.25F, -3.2F);
|
|
|
|
public static final Item INFUSED_SHOVEL = new ItemShovelNA("infused_iron_shovel", TOOL_MATERIAL_INFUSED_IRON);
|
|
|
|
public static final Item INFUSED_HOE = new ItemHoeNA("infused_iron_hoe", TOOL_MATERIAL_INFUSED_IRON);
|
|
|
|
public static final Item INFUSED_SWORD = new ItemSwordNA("infused_iron_sword", TOOL_MATERIAL_INFUSED_IRON);
|
|
|
|
|
2018-10-14 17:46:00 +02:00
|
|
|
public static final Item EYE = new ItemEye();
|
2018-10-15 18:36:46 +02:00
|
|
|
public static final Item GOLD_FIBER = new ItemGoldFiber();
|
|
|
|
public static final Item GOLD_LEAF = new ItemImpl("gold_leaf");
|
2018-10-18 13:34:37 +02:00
|
|
|
public static final Item INFUSED_IRON = new ItemImpl("infused_iron");
|
2018-10-20 11:37:11 +02:00
|
|
|
public static final Item ANCIENT_STICK = new ItemImpl("ancient_stick");
|
2018-10-23 11:49:35 +02:00
|
|
|
public static final Item COLOR_CHANGER = new ItemColorChanger();
|
2018-10-28 17:39:53 +01:00
|
|
|
public static final Item AURA_CACHE = new ItemAuraCache();
|
2018-11-06 19:02:56 +01:00
|
|
|
public static final Item SHOCKWAVE_CREATOR = new ItemShockwaveCreator();
|
2018-11-07 13:33:49 +01:00
|
|
|
public static final Item MULTIBLOCK_MAKER = new ItemMultiblockMaker();
|
2018-11-20 10:54:38 +01:00
|
|
|
public static final Item BOTTLE_TWO = new ItemImpl("bottle_two_the_rebottling");
|
2018-11-08 13:50:45 +01:00
|
|
|
public static final Item AURA_BOTTLE = new ItemAuraBottle();
|
2018-11-09 12:42:08 +01:00
|
|
|
public static final Item FARMING_STENCIL = new ItemImpl("farming_stencil");
|
2018-11-21 01:05:50 +01:00
|
|
|
public static final Item SKY_INGOT = new ItemImpl("sky_ingot");
|
2018-11-21 12:19:43 +01:00
|
|
|
public static final Item CALLING_SPIRIT = new ItemGlowing("calling_spirit");
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|