- Added three bid life cards

This commit is contained in:
swordshine
2014-05-03 12:54:33 +00:00
parent d4783e1b89
commit e933ecc70c
14 changed files with 209 additions and 3 deletions

View File

@@ -317,6 +317,12 @@ public class PlayerControllerHuman extends PlayerController {
return SGuiDialog.confirm(sa.getHostCard(), message);
}
@Override
public boolean confirmBidAction(SpellAbility sa, PlayerActionConfirmMode bidlife,
String string, int bid, Player winner) {
return SGuiDialog.confirm(sa.getHostCard(), string + " Highest Bidder " + winner);
}
@Override
public boolean confirmStaticApplication(Card hostCard, GameEntity affected, String logic, String message) {
return SGuiDialog.confirm(hostCard, message);
@@ -1032,4 +1038,5 @@ public class PlayerControllerHuman extends PlayerController {
public Card chooseSingleCardForZoneChange(ZoneType destination, List<ZoneType> origin, SpellAbility sa, List<Card> fetchList, String selectPrompt, boolean b, Player decider) {
return chooseSingleEntityForEffect(fetchList, sa, selectPrompt, b, decider);
}
}