Merge pull request #100 from TBMCPlugins/alisolarflare-color-refactor
Put each color on their own line
This commit is contained in:
commit
7120e3c40e
1 changed files with 17 additions and 7 deletions
|
@ -6,15 +6,25 @@ import lombok.RequiredArgsConstructor;
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
@Getter
|
@Getter
|
||||||
public enum Color implements TellrawSerializableEnum {
|
public enum Color implements TellrawSerializableEnum {
|
||||||
Black("black", 0, 0, 0), DarkBlue("dark_blue", 0, 0, 170), DarkGreen("dark_green", 0, 170, 0), DarkAqua("dark_aqua",
|
Black("black", 0, 0, 0),
|
||||||
0, 170, 170), DarkRed("dark_red", 170, 0, 0), DarkPurple("dark_purple", 0, 170, 0), Gold("gold", 255, 170,
|
DarkBlue("dark_blue", 0, 0, 170),
|
||||||
0), Gray("gray", 170, 170, 170), DarkGray("dark_gray", 85, 85, 85), Blue("blue", 85, 85,
|
DarkGreen("dark_green", 0, 170, 0),
|
||||||
255), Green("green", 85, 255, 85), Aqua("aqua", 85, 255, 255), Red("red", 255, 85,
|
DarkAqua("dark_aqua", 0, 170, 170),
|
||||||
85), LightPurple("light_purple", 255, 85,
|
DarkRed("dark_red", 170, 0, 0),
|
||||||
255), Yellow("yellow", 255, 255, 85), White("white", 255, 255, 255);
|
DarkPurple("dark_purple", 0, 170, 0),
|
||||||
|
Gold("gold", 255, 170,0),
|
||||||
|
Gray("gray", 170, 170, 170),
|
||||||
|
DarkGray("dark_gray", 85, 85, 85),
|
||||||
|
Blue("blue", 85, 85, 255),
|
||||||
|
Green("green", 85, 255, 85),
|
||||||
|
Aqua("aqua", 85, 255, 255),
|
||||||
|
Red("red", 255, 85,85),
|
||||||
|
LightPurple("light_purple", 255, 85, 255),
|
||||||
|
Yellow("yellow", 255, 255, 85),
|
||||||
|
White("white", 255, 255, 255);
|
||||||
|
|
||||||
private final String name;
|
private final String name;
|
||||||
private final int red;
|
private final int red;
|
||||||
private final int green;
|
private final int green;
|
||||||
private final int blue;
|
private final int blue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue