ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/items/metalists/TheMiscItems.java

42 lines
1.4 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TheMiscItems.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-03-07 12:51:28 +01:00
package ellpeck.actuallyadditions.items.metalists;
2015-01-30 20:16:32 +01:00
import net.minecraft.item.EnumRarity;
2015-01-30 20:16:32 +01:00
public enum TheMiscItems{
2015-01-30 20:16:32 +01:00
PAPER_CONE("PaperCone", EnumRarity.common),
MASHED_FOOD("MashedFood", EnumRarity.uncommon),
KNIFE_BLADE("KnifeBlade", EnumRarity.common),
KNIFE_HANDLE("KnifeHandle", EnumRarity.common),
DOUGH("Dough", EnumRarity.common),
QUARTZ("BlackQuartz", EnumRarity.epic),
RING("Ring", EnumRarity.uncommon),
COIL("Coil", EnumRarity.common),
COIL_ADVANCED("CoilAdvanced", EnumRarity.uncommon),
RICE_DOUGH("RiceDough", EnumRarity.uncommon),
TINY_COAL("TinyCoal", EnumRarity.common),
TINY_CHAR("TinyCharcoal", EnumRarity.common),
RICE_SLIME("RiceSlime", EnumRarity.uncommon),
CANOLA("Canola", EnumRarity.uncommon),
2015-07-17 11:17:55 +02:00
CUP("Cup", EnumRarity.uncommon),
2015-10-29 20:54:10 +01:00
BAT_WING("BatWing", EnumRarity.rare),
DRILL_CORE("DrillCore", EnumRarity.uncommon);
2015-01-30 20:16:32 +01:00
public final String name;
public final EnumRarity rarity;
2015-01-30 20:16:32 +01:00
TheMiscItems(String name, EnumRarity rarity){
2015-01-30 20:16:32 +01:00
this.name = name;
this.rarity = rarity;
2015-01-30 20:16:32 +01:00
}
}