This commit is contained in:
Jeff Wadsworth 2021-11-17 10:38:58 -06:00
parent 524f46e7e5
commit b83bbc000f

View file

@ -26,7 +26,7 @@ public final class OliviasWrath extends CardImpl {
private static final FilterPermanent filter2 = new FilterControlledPermanent(SubType.VAMPIRE); private static final FilterPermanent filter2 = new FilterControlledPermanent(SubType.VAMPIRE);
static { static {
filter.add(Predicates.or(SubType.VAMPIRE.getPredicate())); filter.add(Predicates.not(SubType.VAMPIRE.getPredicate()));
} }
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter2, -1); 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. // 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( this.getSpellAbility().addEffect(new BoostAllEffect(
xValue, xValue, Duration.EndOfTurn, filter, false, xValue, xValue, Duration.EndOfTurn, filter, false,
"each non-Vampire creature gets -X/-X until end of turn, " + "each non-Vampire creature gets -X/-X until end of turn, "
"where X is the number of Vampires you control", true + "where X is the number of Vampires you control", true
)); ));
} }