2016-11-17 05:45:04 +01:00
|
|
|
package com.minelittlepony;
|
2015-12-09 04:14:42 +01:00
|
|
|
|
|
|
|
public enum PonyRace {
|
2017-06-13 05:55:50 +02:00
|
|
|
|
|
|
|
HUMAN(false, false),
|
2015-12-09 04:14:42 +01:00
|
|
|
EARTH(false, false),
|
|
|
|
PEGASUS(true, false),
|
|
|
|
UNICORN(false, true),
|
|
|
|
ALICORN(true, true),
|
|
|
|
CHANGELING(true, true),
|
2017-11-28 05:28:48 +01:00
|
|
|
ZEBRA(false, false),
|
|
|
|
REFORMED_CHANGELING(true, true),
|
|
|
|
GRIFFIN(true, false),
|
2018-04-12 16:21:19 +02:00
|
|
|
HIPPOGRIFF(true, false);
|
2015-12-09 04:14:42 +01:00
|
|
|
|
|
|
|
private boolean wings;
|
|
|
|
private boolean horn;
|
|
|
|
|
2016-11-25 05:40:19 +01:00
|
|
|
PonyRace(boolean wings, boolean horn) {
|
2015-12-09 04:14:42 +01:00
|
|
|
this.wings = wings;
|
|
|
|
this.horn = horn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasHorn() {
|
|
|
|
return horn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasWings() {
|
|
|
|
return wings;
|
|
|
|
}
|
|
|
|
}
|