mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
format BoostEnchanted and BoostAll like BoostSource
improves Aspect of Wolf, corrects Death's Approach
This commit is contained in:
parent
95f14536eb
commit
ec971140ec
5 changed files with 43 additions and 11 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue