added colours for ACHILLEAN pigment, waiting on a texture
This commit is contained in:
parent
9c3bccedd3
commit
ab7cc7257b
1 changed files with 2 additions and 1 deletions
|
@ -20,6 +20,7 @@ public class ItemPrideColorizer extends Item implements ColorizerItem {
|
|||
DEMIBOY(new int[]{0x9a9fa1, 0xa9ffff, 0xffffff}),
|
||||
DEMIGIRL(new int[]{0x9a9fa1, 0xfcb1ff, 0xffffff}),
|
||||
GAY(new int[]{0xd82f3a, 0xe0883f, 0xebf367, 0x2db418, 0x2f4dd8}),
|
||||
// ACHILLEAN(new int[]{0x028d6e, 0x22cdad, 0xffffff, 0xe49c7, 0x4f4aca}),
|
||||
GENDERFLUID(new int[]{0xfbacf9, 0xffffff, 0x9c2bd0, 0x333233, 0x2f4dd8}),
|
||||
GENDERQUEER(new int[]{0xca78ef, 0xffffff, 0x2db418}),
|
||||
// how to do an intersex gradient escapes me
|
||||
|
@ -32,7 +33,7 @@ public class ItemPrideColorizer extends Item implements ColorizerItem {
|
|||
|
||||
private final int[] colors;
|
||||
|
||||
private Type(int[] colors) {
|
||||
Type(int[] colors) {
|
||||
this.colors = colors;
|
||||
for (int i = 0; i < this.colors.length; i++) {
|
||||
this.colors[i] |= 0xFF_000000;
|
||||
|
|
Loading…
Reference in a new issue