All supported color values for dyes and cloth
| 7 | * All supported color values for dyes and cloth |
| 8 | */ |
| 9 | public enum DyeColor { |
| 10 | |
| 11 | /** |
| 12 | * Represents white dye |
| 13 | */ |
| 14 | WHITE((byte) 0x0), |
| 15 | /** |
| 16 | * Represents orange dye |
| 17 | */ |
| 18 | ORANGE((byte) 0x1), |
| 19 | /** |
| 20 | * Represents magenta dye |
| 21 | */ |
| 22 | MAGENTA((byte) 0x2), |
| 23 | /** |
| 24 | * Represents light blue dye |
| 25 | */ |
| 26 | LIGHT_BLUE((byte) 0x3), |
| 27 | /** |
| 28 | * Represents yellow dye |
| 29 | */ |
| 30 | YELLOW((byte) 0x4), |
| 31 | /** |
| 32 | * Represents lime dye |
| 33 | */ |
| 34 | LIME((byte) 0x5), |
| 35 | /** |
| 36 | * Represents pink dye |
| 37 | */ |
| 38 | PINK((byte) 0x6), |
| 39 | /** |
| 40 | * Represents gray dye |
| 41 | */ |
| 42 | GRAY((byte) 0x7), |
| 43 | /** |
| 44 | * Represents silver dye |
| 45 | */ |
| 46 | SILVER((byte) 0x8), |
| 47 | /** |
| 48 | * Represents cyan dye |
| 49 | */ |
| 50 | CYAN((byte) 0x9), |
| 51 | /** |
| 52 | * Represents purple dye |
| 53 | */ |
| 54 | PURPLE((byte) 0xA), |
| 55 | /** |
| 56 | * Represents blue dye |
| 57 | */ |
| 58 | BLUE((byte) 0xB), |
| 59 | /** |
| 60 | * Represents brown dye |
| 61 | */ |
| 62 | BROWN((byte) 0xC), |
| 63 | /** |
| 64 | * Represents green dye |
| 65 | */ |
| 66 | GREEN((byte) 0xD), |