mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
50 lines
1.7 KiB
Java
50 lines
1.7 KiB
Java
package de.ellpeck.naturesaura.items;
|
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraftforge.registries.ObjectHolder;
|
|
|
|
@SuppressWarnings("FieldNamingConvention")
|
|
@ObjectHolder(NaturesAura.MOD_ID)
|
|
public final class ModItems {
|
|
public static Item INFUSED_PICKAXE;
|
|
public static Item INFUSED_AXE;
|
|
public static Item INFUSED_SHOVEL;
|
|
public static Item INFUSED_HOE;
|
|
public static Item INFUSED_SWORD;
|
|
public static Item INFUSED_HELMET;
|
|
public static Item INFUSED_CHEST;
|
|
public static Item INFUSED_PANTS;
|
|
public static Item INFUSED_SHOES;
|
|
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;
|
|
public static Item BOTTLE_TWO;
|
|
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;
|
|
public static Item MOVER_MINECART;
|
|
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;
|
|
}
|