mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Skyshrout War Beast - Fixed wrong P/T calculation because of wrong land filter.
This commit is contained in:
parent
5925bdf259
commit
62db7ae72f
2 changed files with 9 additions and 8 deletions
|
@ -36,7 +36,6 @@ import mage.abilities.common.SimpleStaticAbility;
|
|||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||
import mage.abilities.effects.ContinuousEffectImpl;
|
||||
import mage.abilities.effects.common.ChooseOpponentEffect;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -45,9 +44,9 @@ import mage.constants.Duration;
|
|||
import mage.constants.Layer;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubLayer;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
import mage.filter.predicate.permanent.ControllerIdPredicate;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
|
@ -107,9 +106,7 @@ class SkyshroudWarBeastEffect extends ContinuousEffectImpl {
|
|||
MageObject target = game.getObject(source.getSourceId());
|
||||
if (target != null) {
|
||||
UUID playerId = (UUID) game.getState().getValue(source.getSourceId().toString() + ChooseOpponentEffect.VALUE_KEY);
|
||||
FilterLandPermanent filter = new FilterLandPermanent();
|
||||
filter.add(new ControllerIdPredicate(playerId));
|
||||
int number = new PermanentsOnBattlefieldCount(filter).calculate(game, source, this);
|
||||
int number = new PermanentsOnBattlefieldCount(StaticFilters.FILTER_LANDS_NONBASIC).calculate(game, source, this);
|
||||
target.getPower().setValue(number);
|
||||
target.getToughness().setValue(number);
|
||||
return true;
|
||||
|
|
|
@ -179,13 +179,13 @@ public final class StaticFilters {
|
|||
|
||||
static {
|
||||
FILTER_CONTROLLED_CREATURE.setLockedFilter(true);
|
||||
}
|
||||
}
|
||||
public static final FilterControlledCreaturePermanent FILTER_CONTROLLED_CREATURES = new FilterControlledCreaturePermanent("creatures you control");
|
||||
|
||||
static {
|
||||
FILTER_CONTROLLED_CREATURES.setLockedFilter(true);
|
||||
}
|
||||
|
||||
|
||||
public static final FilterControlledCreaturePermanent FILTER_CONTROLLED_A_CREATURE = new FilterControlledCreaturePermanent("a creature you control");
|
||||
|
||||
static {
|
||||
|
@ -210,11 +210,15 @@ public final class StaticFilters {
|
|||
static {
|
||||
FILTER_LAND.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterLandPermanent FILTER_LANDS = new FilterLandPermanent("lands");
|
||||
|
||||
static {
|
||||
FILTER_LANDS.setLockedFilter(true);
|
||||
}
|
||||
|
||||
public static final FilterLandPermanent FILTER_LANDS_NONBASIC = FilterLandPermanent.nonbasicLands();
|
||||
|
||||
public static final FilterBasicLandCard FILTER_BASIC_LAND_CARD = new FilterBasicLandCard();
|
||||
|
||||
static {
|
||||
|
|
Loading…
Reference in a new issue