Initial pass of Exert (lots of things to be improved, but should be good enough to start scripting)

This commit is contained in:
Sol
2017-04-16 20:00:42 +00:00
parent ea91d23bc2
commit 2f9319c420
12 changed files with 114 additions and 31 deletions

View File

@@ -576,6 +576,11 @@ public class PlayerControllerHuman
return game.getCardList(getGui().order("Choose Damage Order for " + vAttacker, "Damaged First", CardView.getCollection(blockers), vAttacker));
}
@Override
public List<Card> exertAttackers(List<Card> attackers) {
return getGui().getChoices("Exert Attackers?", 0, attackers.size(), attackers);
}
@Override
public CardCollection orderBlocker(final Card attacker, final Card blocker, final CardCollection oldBlockers) {
final CardView vAttacker = CardView.get(attacker);