- Added Azor's Gateway

This commit is contained in:
swordshine
2018-01-09 12:14:19 +08:00
parent 92545309e1
commit 7bc14a526d
2 changed files with 35 additions and 0 deletions

View File

@@ -1662,6 +1662,14 @@ public class CardFactoryUtil {
}
if (string.startsWith("DifferentCMC")) {
final Set<Integer> diffCMC = new HashSet<>();
for (final Card card : paidList) {
diffCMC.add(card.getCMC());
}System.out.println(diffCMC);
return diffCMC.size();
}
if (string.startsWith("SumCMC")) {
int sumCMC = 0;
for(Card c : paidList) {