mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Wand of Vertebrae
This commit is contained in:
parent
ca64b42e51
commit
214a527ae0
3 changed files with 97 additions and 1 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.target.common;
|
||||
|
||||
import java.util.HashSet;
|
||||
|
|
@ -33,6 +32,10 @@ public class TargetCardInYourGraveyard extends TargetCard {
|
|||
this(numTargets, numTargets, filter);
|
||||
}
|
||||
|
||||
public TargetCardInYourGraveyard(int minNumTargets, int maxNumTargets) {
|
||||
this(minNumTargets, maxNumTargets, StaticFilters.FILTER_CARD_FROM_YOUR_GRAVEYARD);
|
||||
}
|
||||
|
||||
public TargetCardInYourGraveyard(int minNumTargets, int maxNumTargets, FilterCard filter) {
|
||||
this(minNumTargets, maxNumTargets, filter, false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue