mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
- Fixed #8464
This commit is contained in:
parent
524f46e7e5
commit
b83bbc000f
1 changed files with 3 additions and 3 deletions
|
|
@ -26,7 +26,7 @@ public final class OliviasWrath extends CardImpl {
|
|||
private static final FilterPermanent filter2 = new FilterControlledPermanent(SubType.VAMPIRE);
|
||||
|
||||
static {
|
||||
filter.add(Predicates.or(SubType.VAMPIRE.getPredicate()));
|
||||
filter.add(Predicates.not(SubType.VAMPIRE.getPredicate()));
|
||||
}
|
||||
|
||||
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter2, -1);
|
||||
|
|
@ -40,8 +40,8 @@ public final class OliviasWrath extends CardImpl {
|
|||
// Each non-Vampire creature gets -X/-X until end of turn, where X is the number of Vampires you control.
|
||||
this.getSpellAbility().addEffect(new BoostAllEffect(
|
||||
xValue, xValue, Duration.EndOfTurn, filter, false,
|
||||
"each non-Vampire creature gets -X/-X until end of turn, " +
|
||||
"where X is the number of Vampires you control", true
|
||||
"each non-Vampire creature gets -X/-X until end of turn, "
|
||||
+ "where X is the number of Vampires you control", true
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue