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

38 lines
1.1 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
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 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-11-21 16:23:48 +01:00
import net.minecraft.util.IStringSerializable;
2015-11-09 18:05:52 +01:00
public enum Crystals implements IStringSerializable {
REDSTONE("red", 0xFF2F21, 0x9e2b27),
LAPIS("blue", 0x5171FF, 0x253293),
DIAMOND("light_blue", 0x35F1FF, 0x6387d2),
COAL("black", 0x434442, 0x333333),
EMERALD("green", 0x44E033, 0x354a18),
IRON("white", 0xCEDDD4, 0xcccccc);
2015-11-09 18:05:52 +01:00
public final String name;
public final int conversionColorParticles;
2017-02-13 23:17:08 +01:00
public final int clusterColor;
2015-11-09 18:05:52 +01:00
Crystals(String name, int clusterColor, int conversionColorParticles) {
2015-11-09 18:05:52 +01:00
this.name = name;
this.conversionColorParticles = conversionColorParticles;
2017-02-13 23:17:08 +01:00
this.clusterColor = clusterColor;
2015-11-09 18:05:52 +01:00
}
2016-11-21 16:23:48 +01:00
@Override
public String getSerializedName() {
2016-11-21 16:23:48 +01:00
return this.name;
}
2021-02-27 21:24:26 +01:00
}