mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Requested card: Fire Covenant
This commit is contained in:
parent
97ca70318b
commit
e2bc5756e0
1 changed files with 8 additions and 3 deletions
|
@ -27,9 +27,6 @@
|
|||
*/
|
||||
package mage.target.common;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
|
@ -41,6 +38,10 @@ import mage.game.Game;
|
|||
import mage.game.permanent.Permanent;
|
||||
import mage.target.TargetAmount;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -54,6 +55,10 @@ public class TargetCreaturePermanentAmount extends TargetAmount {
|
|||
this(amount, new FilterCreaturePermanent());
|
||||
}
|
||||
|
||||
public TargetCreaturePermanentAmount(DynamicValue amount) {
|
||||
this(amount, new FilterCreaturePermanent());
|
||||
}
|
||||
|
||||
public TargetCreaturePermanentAmount(int amount, FilterCreaturePermanent filter) {
|
||||
this(new StaticValue(amount), filter);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue