[MKM] fix Barbed Servitor and Neighborhood Guardian

This commit is contained in:
theelk801 2024-01-27 17:08:56 -05:00
parent 5d0cf68ad9
commit 322c49e37f
2 changed files with 3 additions and 1 deletions

View file

@ -45,7 +45,7 @@ public final class BarbedServitor extends CardImpl {
this.addAbility(ability);
// Whenever Barbed Servitor is dealt damage, target opponent loses that much life.
ability = new DealtDamageToSourceTriggeredAbility(new LoseLifeTargetEffect(SavedDamageValue.MUCH), true);
ability = new DealtDamageToSourceTriggeredAbility(new LoseLifeTargetEffect(SavedDamageValue.MUCH), false);
ability.addTarget(new TargetOpponent());
this.addAbility(ability);
}

View file

@ -11,6 +11,7 @@ import mage.constants.ComparisonType;
import mage.constants.SubType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.mageobject.AnotherPredicate;
import mage.filter.predicate.mageobject.PowerPredicate;
import mage.target.common.TargetControlledCreaturePermanent;
@ -24,6 +25,7 @@ public final class NeighborhoodGuardian extends CardImpl {
private static final FilterPermanent filter = new FilterCreaturePermanent("another creature with power 2 or less");
static {
filter.add(AnotherPredicate.instance);
filter.add(new PowerPredicate(ComparisonType.FEWER_THAN, 3));
}