[ECL] Implement Grub, Storied Matriarch / Grub, Notorious Auntie

This commit is contained in:
theelk801 2026-01-08 09:12:35 -05:00
parent c710d80ac5
commit 03c74b616e
3 changed files with 118 additions and 0 deletions

View file

@ -39,6 +39,10 @@ public class BlightCost extends CostImpl {
@Override
public boolean canPay(Ability ability, Ability source, UUID controllerId, Game game) {
return canBlight(controllerId, game, source);
}
public static boolean canBlight(UUID controllerId, Game game, Ability source) {
return game
.getBattlefield()
.contains(StaticFilters.FILTER_CONTROLLED_CREATURE, controllerId, source, game, 1);