Support for "NoColoredMana"

This commit is contained in:
Northmoc
2021-05-25 06:49:30 -04:00
parent cb25353e60
commit beb37bad9a

View File

@@ -254,6 +254,14 @@ public class TriggerSpellAbilityCastOrCopy extends Trigger {
}
}
if (hasParam("NoColoredMana")) {
for (Mana m : spellAbility.getPayingMana()) {
if (!m.isColorless()) {
return false;
}
}
}
if (hasParam("SnowSpentForCardsColor")) {
boolean found = false;
for (Mana m : spellAbility.getPayingMana()) {