mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 12:37:59 +01:00
Merge branch 'master' of https://github.com/MineLittlePony/MineLittlePony
This commit is contained in:
commit
ca9743e377
2 changed files with 8 additions and 1 deletions
|
@ -17,6 +17,9 @@ public class PonyData implements IPonyData {
|
|||
.put(0xfef9fc, PonyRace.ALICORN)
|
||||
.put(0xd0cccf, PonyRace.ZEBRA)
|
||||
.put(0x282b29, PonyRace.CHANGELING)
|
||||
.put(0xcaed5a, PonyRace.REFORMED_CHANGELING)
|
||||
.put(0xae9145, PonyRace.GRIFFIN)
|
||||
.put(0xd6ddac, PonyRace.HIPPOGRIFF)
|
||||
.build();
|
||||
private static final Map<Integer, TailLengths> TAIL_COLORS = ImmutableBiMap.<Integer, TailLengths>builder()
|
||||
.put(0x425844, TailLengths.STUB)
|
||||
|
|
|
@ -8,7 +8,11 @@ public enum PonyRace {
|
|||
UNICORN(false, true),
|
||||
ALICORN(true, true),
|
||||
CHANGELING(true, true),
|
||||
ZEBRA(false, false);
|
||||
ZEBRA(false, false),
|
||||
REFORMED_CHANGELING(true, true),
|
||||
GRIFFIN(true, false),
|
||||
HIPPOGRIFF(true, false),
|
||||
;
|
||||
|
||||
private boolean wings;
|
||||
private boolean horn;
|
||||
|
|
Loading…
Reference in a new issue