Implemented Legion Warboss

This commit is contained in:
Evan Kranzler 2018-09-03 23:18:13 -04:00
parent 6cfa5b6c45
commit 9ba023ce66
3 changed files with 123 additions and 1 deletions

View file

@ -25,7 +25,7 @@ public class AttacksIfAbleSourceEffect extends RequirementEffect {
super(duration);
this.eachCombat = eachCombat;
if (this.duration == Duration.EndOfTurn) {
staticText = "{this} attacks " + (eachCombat ? "each combat" : "this turn") + " if able";
staticText = "{this} attacks " + (eachCombat ? "each combat" : "this combat") + " if able";
} else {
staticText = "{this} attacks each " + (eachCombat ? "combat" : "turn") + " if able";
}