ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/items/metalists/TheCrystals.java

34 lines
1.1 KiB
Java
Raw Normal View History

2015-11-09 18:05:52 +01:00
/*
* This file ("TheCrystals.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
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-11-09 18:05:52 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-11-09 18:05:52 +01:00
*/
2015-12-30 22:02:15 +01:00
package de.ellpeck.actuallyadditions.items.metalists;
2015-11-09 18:05:52 +01:00
import de.ellpeck.actuallyadditions.util.Util;
2015-11-09 18:05:52 +01:00
import net.minecraft.item.EnumRarity;
public enum TheCrystals{
REDSTONE("Red", Util.CRYSTAL_RED_RARITY, 16318464),
LAPIS("Blue", Util.CRYSTAL_BLUE_RARITY, 131437),
DIAMOND("LightBlue", Util.CRYSTAL_LIGHT_BLUE_RARITY, 9211636),
COAL("Black", Util.CRYSTAL_BLACK_RARITY, 986895),
EMERALD("Green", Util.CRYSTAL_GREEN_RARITY, 382466),
IRON("White", Util.CRYSTAL_WHITE_RARITY, 11053224);
2015-11-09 18:05:52 +01:00
public final String name;
public final EnumRarity rarity;
public final int color;
TheCrystals(String name, EnumRarity rarity, int color){
this.name = name;
this.rarity = rarity;
this.color = color;
}
}