[ZNR] Implemented Thundering Sparkmage

This commit is contained in:
Evan Kranzler 2020-09-09 09:45:45 -04:00
parent 725a310fa7
commit 0bf6949328
7 changed files with 62 additions and 10 deletions

View file

@ -124,7 +124,11 @@ public enum PartyCount implements DynamicValue {
@Override
public String getMessage() {
return "creature in your party. <i>(Your party consists of up to one each of Cleric, Rogue, Warrior, and Wizard.)</i>";
return "creature in your party. " + getReminder();
}
public static String getReminder() {
return "<i>(Your party consists of up to one each of Cleric, Rogue, Warrior, and Wizard.)</i>";
}
@Override