mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 20:47:59 +01:00
Added Additional Races (#39)
Added Reformed Changeling, Griffin, and Hippogriff pony races for addon mods.
This commit is contained in:
parent
056c0d8baa
commit
fa7e4e6b60
2 changed files with 8 additions and 1 deletions
|
@ -17,6 +17,9 @@ public class PonyData implements IPonyData {
|
||||||
.put(0xfef9fc, PonyRace.ALICORN)
|
.put(0xfef9fc, PonyRace.ALICORN)
|
||||||
.put(0xd0cccf, PonyRace.ZEBRA)
|
.put(0xd0cccf, PonyRace.ZEBRA)
|
||||||
.put(0x282b29, PonyRace.CHANGELING)
|
.put(0x282b29, PonyRace.CHANGELING)
|
||||||
|
.put(0xcaed5a, PonyRace.REFORMED_CHANGELING)
|
||||||
|
.put(0xae9145, PonyRace.GRIFFIN)
|
||||||
|
.put(0xd6ddac, PonyRace.HIPPOGRIFF)
|
||||||
.build();
|
.build();
|
||||||
private static final Map<Integer, TailLengths> TAIL_COLORS = ImmutableBiMap.<Integer, TailLengths>builder()
|
private static final Map<Integer, TailLengths> TAIL_COLORS = ImmutableBiMap.<Integer, TailLengths>builder()
|
||||||
.put(0x425844, TailLengths.STUB)
|
.put(0x425844, TailLengths.STUB)
|
||||||
|
|
|
@ -8,7 +8,11 @@ public enum PonyRace {
|
||||||
UNICORN(false, true),
|
UNICORN(false, true),
|
||||||
ALICORN(true, true),
|
ALICORN(true, true),
|
||||||
CHANGELING(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 wings;
|
||||||
private boolean horn;
|
private boolean horn;
|
||||||
|
|
Loading…
Reference in a new issue