mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- Added Azor's Gateway
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user