mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fix Ashmouth Hound
This commit is contained in:
parent
84dd1ead86
commit
ed7afd30c6
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ import mage.cards.CardImpl;
|
|||
|
||||
/**
|
||||
*
|
||||
* @author North
|
||||
* @author North, Loki
|
||||
*/
|
||||
public class AshmouthHound extends CardImpl<AshmouthHound> {
|
||||
|
||||
|
@ -52,7 +52,7 @@ public class AshmouthHound extends CardImpl<AshmouthHound> {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// 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) {
|
||||
|
|
Loading…
Reference in a new issue