- Converted Affinity cards to StAb ReduceCost.

This commit is contained in:
Sloth
2012-07-15 12:57:22 +00:00
parent f232785219
commit a88edded34
22 changed files with 51 additions and 41 deletions

View File

@@ -2017,7 +2017,6 @@ public class GameAction {
return false;
}
});
final CardList playerPlay = controller.getCardsIn(ZoneType.Battlefield);
final CardList playerHand = controller.getCardsIn(ZoneType.Hand);
int xBonus = 0;
final int max = 25;
@@ -2298,14 +2297,6 @@ public class GameAction {
k[3] = "0";
}
}
if (k[7].contains("Affinity")) {
final String spilt = k[7];
final String[] colorSpilt = spilt.split("/");
k[7] = colorSpilt[1];
CardList playerList = controller.getCardsIn(ZoneType.Battlefield);
playerList = playerList.getType(k[7]);
k[3] = String.valueOf(playerList.size());
}
final String[] numbers = new String[max];
if (!"WUGRB".contains(k[3])) {