From 06e22a211d03614ca51c66c7374d101a0e8adae9 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 25 Jul 2020 13:48:31 +0400 Subject: [PATCH] * Alpine Houndmaster - fixed that it boost until attack ends instead until end turn, fixed text (#6643); --- Mage.Sets/src/mage/cards/a/AlpineHoundmaster.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AlpineHoundmaster.java b/Mage.Sets/src/mage/cards/a/AlpineHoundmaster.java index adbd5c2f3a5..5bf4ad432d2 100644 --- a/Mage.Sets/src/mage/cards/a/AlpineHoundmaster.java +++ b/Mage.Sets/src/mage/cards/a/AlpineHoundmaster.java @@ -29,13 +29,13 @@ import java.util.UUID; */ public final class AlpineHoundmaster extends CardImpl { - private static final FilterPermanent filter = new FilterAttackingCreature(); + private static final FilterPermanent filter = new FilterAttackingCreature("the number of other attacking creatures"); static { filter.add(AnotherPredicate.instance); } - private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter); + private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(filter, null); public AlpineHoundmaster(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{R}{W}"); @@ -50,8 +50,8 @@ public final class AlpineHoundmaster extends CardImpl { // Whenever Alpine Houndmaster attacks, it gets +X/+0 until end of turn, where X is the number of other attacking creatures. this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect( - xValue, StaticValue.get(0), Duration.EndOfTurn - ), false, "it gets +X/+0 until end of turn, where X is the number of other attacking creatures")); + xValue, StaticValue.get(0), Duration.EndOfTurn, true + ), false)); } private AlpineHoundmaster(final AlpineHoundmaster card) {