mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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> {
|
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) {
|
||||||
|
|
Loading…
Reference in a new issue