mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[CHK] 8 cards.
This commit is contained in:
parent
3a68cf99a4
commit
bff02c4f9f
9 changed files with 727 additions and 3 deletions
|
|
@ -53,15 +53,15 @@ public class BoostAllEffect extends ContinuousEffectImpl<BoostAllEffect> {
|
|||
protected boolean lockedInPT;
|
||||
|
||||
public BoostAllEffect(int power, int toughness, Duration duration) {
|
||||
this(power, toughness, duration, new FilterCreaturePermanent(), false);
|
||||
this(power, toughness, duration, false);
|
||||
}
|
||||
|
||||
public BoostAllEffect(DynamicValue power, DynamicValue toughness, Duration duration) {
|
||||
this(power, toughness, duration, new FilterCreaturePermanent(), false);
|
||||
this(power, toughness, duration, new FilterCreaturePermanent("All creatures"), false);
|
||||
}
|
||||
|
||||
public BoostAllEffect(int power, int toughness, Duration duration, boolean excludeSource) {
|
||||
this(power, toughness, duration, new FilterCreaturePermanent(), excludeSource);
|
||||
this(power, toughness, duration, new FilterCreaturePermanent("All creatures"), excludeSource);
|
||||
}
|
||||
|
||||
public BoostAllEffect(int power, int toughness, Duration duration, FilterCreaturePermanent filter, boolean excludeSource) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue