forked from External/mage
[WOE] Implement Beseech the Mirror (#10842)
Co-authored-by: Evan Kranzler <theelk801@gmail.com>
This commit is contained in:
parent
b892562b95
commit
4cfc6ebc37
3 changed files with 117 additions and 1 deletions
|
|
@ -1255,7 +1255,11 @@ public final class CardUtil {
|
|||
private static final FilterCard defaultFilter = new FilterCard("card to cast");
|
||||
|
||||
public static boolean castSpellWithAttributesForFree(Player player, Ability source, Game game, Card card) {
|
||||
return castSpellWithAttributesForFree(player, source, game, new CardsImpl(card), StaticFilters.FILTER_CARD);
|
||||
return castSpellWithAttributesForFree(player, source, game, card, StaticFilters.FILTER_CARD);
|
||||
}
|
||||
|
||||
public static boolean castSpellWithAttributesForFree(Player player, Ability source, Game game, Card card, FilterCard filter) {
|
||||
return castSpellWithAttributesForFree(player, source, game, new CardsImpl(card), filter);
|
||||
}
|
||||
|
||||
public static boolean castSpellWithAttributesForFree(Player player, Ability source, Game game, Cards cards, FilterCard filter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue