mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fixed Feeding Frenzy tooltip, and simplified sign inversion.
This commit is contained in:
parent
f5794291bc
commit
2765f0be31
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class FeedingFrenzy extends CardImpl {
|
||||||
this.expansionSetCode = "ONS";
|
this.expansionSetCode = "ONS";
|
||||||
|
|
||||||
// Target creature gets -X/-X until end of turn, where X is the number of Zombies on the battlefield.
|
// Target creature gets -X/-X until end of turn, where X is the number of Zombies on the battlefield.
|
||||||
DynamicValue x = new SignInversionDynamicValue(new PermanentsOnBattlefieldCount(new FilterCreaturePermanent("Zombie", "Zombie creatures")));
|
DynamicValue x = new PermanentsOnBattlefieldCount(new FilterCreaturePermanent("Zombie", "Zombie on the battlefield"), -1);
|
||||||
this.getSpellAbility().addEffect(new BoostTargetEffect(x, x, Duration.EndOfTurn));
|
this.getSpellAbility().addEffect(new BoostTargetEffect(x, x, Duration.EndOfTurn));
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue