format BoostEnchanted and BoostAll like BoostSource

improves Aspect of Wolf, corrects Death's Approach
This commit is contained in:
Neil Gentleman 2015-11-24 23:14:38 -08:00
parent 95f14536eb
commit ec971140ec
5 changed files with 43 additions and 11 deletions

View file

@ -66,9 +66,9 @@ public class DeathsApproach extends CardImpl {
Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability);
// Enchanted Creature gets -X/-X, where X is the number of creature cards in it's controller's graveyard.
// Enchanted Creature gets -X/-X, where X is the number of creature cards in its controller's graveyard.
DynamicValue unboost = new SignInversionDynamicValue(
new CardsInEnchantedCreaturesControllerGraveyardCount(new FilterCreatureCard("creature cards in it's controller's graveyard")));
new CardsInEnchantedCreaturesControllerGraveyardCount(new FilterCreatureCard("the number of creature cards in its controller's graveyard")));
ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(unboost,unboost, Duration.WhileOnBattlefield));
this.addAbility(ability);
}

View file

@ -47,8 +47,8 @@ import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
*/
public class MartonStromgald extends CardImpl {
private static final FilterAttackingCreature attackingFilter = new FilterAttackingCreature(" for each attacking creature other than {this}");
private static final FilterBlockingCreature blockingFilter = new FilterBlockingCreature(" for each blocking creature other than {this}");
private static final FilterAttackingCreature attackingFilter = new FilterAttackingCreature("attacking creature other than {this}");
private static final FilterBlockingCreature blockingFilter = new FilterBlockingCreature("blocking creature other than {this}");
static {
attackingFilter.add(new AnotherPredicate());

View file

@ -49,7 +49,7 @@ import mage.filter.predicate.permanent.AnotherPredicate;
public class SliverLegion extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Sliver", "All Sliver creatures");
private static final FilterPermanent countfilter = new FilterPermanent("Sliver", " for each other Sliver on the battlefield");
private static final FilterPermanent countfilter = new FilterPermanent("Sliver", "other Sliver on the battlefield");
static {
countfilter.add(new AnotherPredicate());