Added Additional Races (#39)

Added Reformed Changeling, Griffin, and Hippogriff pony races for addon mods.
This commit is contained in:
The_WeatherPony 2017-11-27 20:28:48 -08:00 committed by Matthew Messinger
parent 056c0d8baa
commit fa7e4e6b60
2 changed files with 8 additions and 1 deletions

View file

@ -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)

View file

@ -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;