forked from External/mage
Text fixes (fixes #8399)
This commit is contained in:
parent
ed4bc46164
commit
bcacb870af
2 changed files with 6 additions and 4 deletions
|
|
@ -2,19 +2,21 @@ package mage.target.common;
|
|||
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
|
||||
/**
|
||||
* @author North
|
||||
*/
|
||||
public class TargetCreaturePermanentAmount extends TargetPermanentAmount {
|
||||
|
||||
private static final FilterCreaturePermanent defaultFilter = new FilterCreaturePermanent("target creatures");
|
||||
|
||||
public TargetCreaturePermanentAmount(int amount) {
|
||||
super(amount, StaticFilters.FILTER_PERMANENT_CREATURE);
|
||||
super(amount, defaultFilter);
|
||||
}
|
||||
|
||||
public TargetCreaturePermanentAmount(DynamicValue amount) {
|
||||
this(amount, StaticFilters.FILTER_PERMANENT_CREATURE);
|
||||
this(amount, defaultFilter);
|
||||
}
|
||||
|
||||
public TargetCreaturePermanentAmount(int amount, FilterPermanent filter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue