[AFR] Implemented Minion of the Mighty

This commit is contained in:
Evan Kranzler 2021-06-29 20:16:50 -04:00
parent a1a46a088a
commit 01a30ca8b5
4 changed files with 194 additions and 0 deletions

View file

@ -34,6 +34,7 @@ public enum AbilityWord {
METALCRAFT("Metalcraft"),
MAGECRAFT("Magecraft"),
MORBID("Morbid"),
PACK_TACTICS("Pack tactics"),
PARLEY("Parley"),
RADIANCE("Radiance"),
RAID("Raid"),
@ -53,6 +54,10 @@ public enum AbilityWord {
this.text = text;
}
public String formatWord() {
return "<i>" + this + "</i> &mdash; ";
}
@Override
public String toString() {
return text;