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

47 lines
1.5 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
*
* <EFBFBD> 2015 Ellpeck
*/
2015-03-07 12:51:28 +01:00
package ellpeck.actuallyadditions.items.metalists;
2015-01-30 20:16:32 +01:00
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
import net.minecraft.item.EnumRarity;
2015-01-30 20:16:32 +01:00
public enum TheMiscItems implements IActAddItemOrBlock{
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),
BAT_WING("BatWing", EnumRarity.rare);
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
}
@Override
public String getName(){
return this.name;
}
2015-01-30 20:16:32 +01:00
}