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

34 lines
1.3 KiB
Java
Raw Normal View History

2015-11-09 18:05:52 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TheCrystals.java") is part of the Actually Additions mod for Minecraft.
2015-11-09 18:05:52 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-11-09 18:05:52 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-11-09 18:05:52 +01:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items.metalists;
2015-11-09 18:05:52 +01:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.Util;
2015-11-09 18:05:52 +01:00
import net.minecraft.item.EnumRarity;
public enum TheCrystals{
2016-11-19 23:12:22 +01:00
REDSTONE("red", Util.CRYSTAL_RED_RARITY, 158F/255F, 43F/255F, 39F/255F),
LAPIS("blue", Util.CRYSTAL_BLUE_RARITY, 37F/255F, 49F/255F, 147F/255F),
DIAMOND("light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY, 99F/255F, 135F/255F, 210F/255F),
COAL("black", Util.CRYSTAL_BLACK_RARITY, 0.2F, 0.2F, 0.2F),
EMERALD("green", Util.CRYSTAL_GREEN_RARITY, 54F/255F, 75F/255F, 24F/255F),
IRON("white", Util.CRYSTAL_WHITE_RARITY, 0.8F, 0.8F, 0.8F);
2015-11-09 18:05:52 +01:00
public final String name;
public final EnumRarity rarity;
public final float[] conversionColorParticles;
2015-11-09 18:05:52 +01:00
TheCrystals(String name, EnumRarity rarity, float... conversionColorParticles){
2015-11-09 18:05:52 +01:00
this.name = name;
this.rarity = rarity;
this.conversionColorParticles = conversionColorParticles;
2015-11-09 18:05:52 +01:00
}
}