[CHK] 8 cards.

This commit is contained in:
LevelX2 2013-08-02 15:28:31 +02:00
parent 3a68cf99a4
commit bff02c4f9f
9 changed files with 727 additions and 3 deletions

View file

@ -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) {