fix Ashmouth Hound

This commit is contained in:
Loki 2011-10-02 23:04:10 +03:00
parent 84dd1ead86
commit ed7afd30c6

View file

@ -37,7 +37,7 @@ import mage.cards.CardImpl;
/** /**
* *
* @author North * @author North, Loki
*/ */
public class AshmouthHound extends CardImpl<AshmouthHound> { public class AshmouthHound extends CardImpl<AshmouthHound> {
@ -52,7 +52,7 @@ public class AshmouthHound extends CardImpl<AshmouthHound> {
this.toughness = new MageInt(1); this.toughness = new MageInt(1);
// Whenever Ashmouth Hound blocks or becomes blocked by a creature, Ashmouth Hound deals 1 damage to that creature. // Whenever Ashmouth Hound blocks or becomes blocked by a creature, Ashmouth Hound deals 1 damage to that creature.
this.addAbility(new BlocksOrBecomesBlockedTriggeredAbility(new DamageTargetEffect(1), false)); this.addAbility(new BlocksOrBecomesBlockedTriggeredAbility(new DamageTargetEffect(1, true, "that creature"), false));
} }
public AshmouthHound(final AshmouthHound card) { public AshmouthHound(final AshmouthHound card) {