forked from External/mage
[NCC] Implement several cards (#9328)
Many associated refactors too. See full PR for detail.
This commit is contained in:
parent
b7151cfa58
commit
fd16f2a16b
104 changed files with 6091 additions and 1069 deletions
|
|
@ -1,6 +1,7 @@
|
|||
package mage.target.common;
|
||||
|
||||
import mage.filter.FilterOpponent;
|
||||
import mage.filter.FilterPlayer;
|
||||
import mage.target.TargetPlayer;
|
||||
|
||||
/**
|
||||
|
|
@ -16,7 +17,11 @@ public class TargetOpponent extends TargetPlayer {
|
|||
}
|
||||
|
||||
public TargetOpponent(boolean notTarget) {
|
||||
super(1, 1, notTarget, filter);
|
||||
this(1, 1, notTarget);
|
||||
}
|
||||
|
||||
public TargetOpponent(int minNumTargets, int maxNumTargets, boolean notTarget) {
|
||||
super(minNumTargets, maxNumTargets, notTarget, filter);
|
||||
}
|
||||
|
||||
private TargetOpponent(final TargetOpponent target) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue