mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Implemented Barrier Breach
This commit is contained in:
parent
a16be04809
commit
0ab6951b9e
3 changed files with 46 additions and 6 deletions
|
|
@ -1,18 +1,16 @@
|
|||
|
||||
|
||||
package mage.target.common;
|
||||
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterEnchantmentPermanent;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class TargetEnchantmentPermanent extends TargetPermanent {
|
||||
|
||||
|
||||
public TargetEnchantmentPermanent() {
|
||||
this(1, 1, new FilterEnchantmentPermanent(), false);
|
||||
this(1);
|
||||
}
|
||||
|
||||
public TargetEnchantmentPermanent(FilterEnchantmentPermanent filter) {
|
||||
|
|
@ -20,7 +18,11 @@ public class TargetEnchantmentPermanent extends TargetPermanent {
|
|||
}
|
||||
|
||||
public TargetEnchantmentPermanent(int numTargets) {
|
||||
this(numTargets, numTargets, new FilterEnchantmentPermanent(), false);
|
||||
this(numTargets, numTargets);
|
||||
}
|
||||
|
||||
public TargetEnchantmentPermanent(int minNumTargets, int maxNumTargets) {
|
||||
this(minNumTargets, maxNumTargets, StaticFilters.FILTER_ENCHANTMENT_PERMANENT, false);
|
||||
}
|
||||
|
||||
public TargetEnchantmentPermanent(int minNumTargets, int maxNumTargets, FilterEnchantmentPermanent filter, boolean notTarget) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue