2018-10-14 17:46:00 +02:00
|
|
|
package de.ellpeck.naturesaura.items;
|
|
|
|
|
|
|
|
import net.minecraft.item.Item;
|
2018-10-19 18:32:20 +02:00
|
|
|
|
2020-01-21 17:46:32 +01:00
|
|
|
@SuppressWarnings("FieldNamingConvention")
|
|
|
|
public final class ModItems {
|
2020-01-23 19:20:47 +01:00
|
|
|
public static Item INFUSED_IRON_PICKAXE;
|
|
|
|
public static Item INFUSED_IRON_AXE;
|
|
|
|
public static Item INFUSED_IRON_SHOVEL;
|
|
|
|
public static Item INFUSED_IRON_HOE;
|
|
|
|
public static Item INFUSED_IRON_SWORD;
|
|
|
|
public static Item INFUSED_IRON_HELMET;
|
|
|
|
public static Item INFUSED_IRON_CHEST;
|
|
|
|
public static Item INFUSED_IRON_PANTS;
|
|
|
|
public static Item INFUSED_IRON_SHOES;
|
2019-11-04 19:08:49 +01:00
|
|
|
public static Item EYE;
|
|
|
|
public static Item EYE_IMPROVED;
|
|
|
|
public static Item GOLD_FIBER;
|
|
|
|
public static Item GOLD_LEAF;
|
|
|
|
public static Item INFUSED_IRON;
|
|
|
|
public static Item ANCIENT_STICK;
|
|
|
|
public static Item COLOR_CHANGER;
|
|
|
|
public static Item AURA_CACHE;
|
|
|
|
public static Item AURA_TROVE;
|
|
|
|
public static Item SHOCKWAVE_CREATOR;
|
|
|
|
public static Item MULTIBLOCK_MAKER;
|
2020-01-23 19:20:47 +01:00
|
|
|
public static Item BOTTLE_TWO_THE_REBOTTLING;
|
2019-11-04 19:08:49 +01:00
|
|
|
public static Item AURA_BOTTLE;
|
|
|
|
public static Item FARMING_STENCIL;
|
|
|
|
public static Item SKY_INGOT;
|
|
|
|
public static Item CALLING_SPIRIT;
|
|
|
|
public static Item EFFECT_POWDER;
|
|
|
|
public static Item BIRTH_SPIRIT;
|
2020-01-23 19:20:47 +01:00
|
|
|
public static Item MOVER_CART;
|
2019-11-04 19:08:49 +01:00
|
|
|
public static Item RANGE_VISUALIZER;
|
|
|
|
public static Item CLOCK_HAND;
|
|
|
|
public static Item TOKEN_JOY;
|
|
|
|
public static Item TOKEN_FEAR;
|
|
|
|
public static Item TOKEN_ANGER;
|
|
|
|
public static Item TOKEN_SORROW;
|
|
|
|
public static Item TOKEN_EUPHORIA;
|
|
|
|
public static Item TOKEN_TERROR;
|
|
|
|
public static Item TOKEN_RAGE;
|
|
|
|
public static Item TOKEN_GRIEF;
|
|
|
|
public static Item ENDER_ACCESS;
|
|
|
|
public static Item CAVE_FINDER;
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|