mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Coveted Peacock - Fixed that the Goad ability did not trigger.
This commit is contained in:
parent
b752eacfaa
commit
9333a54e11
1 changed files with 2 additions and 1 deletions
|
@ -61,9 +61,10 @@ public class CovetedPeacock extends CardImpl {
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
// Whenever Coveted Peacock attacks, you may goad target creature defending player controls.
|
// Whenever Coveted Peacock attacks, you may goad target creature defending player controls.
|
||||||
Ability ability = new AttacksTriggeredAbility(new GoadTargetEffect(), true, "Whenever {this} attacks, you may goad target creature defending player controls");
|
Ability ability = new AttacksTriggeredAbility(new GoadTargetEffect(), true, "Whenever {this} attacks, you may goad target creature defending player controls.");
|
||||||
ability.addTarget(new TargetCreaturePermanent(new FilterCreaturePermanent("creature defending player controls")));
|
ability.addTarget(new TargetCreaturePermanent(new FilterCreaturePermanent("creature defending player controls")));
|
||||||
originalId = ability.getOriginalId();
|
originalId = ability.getOriginalId();
|
||||||
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
public CovetedPeacock(final CovetedPeacock card) {
|
public CovetedPeacock(final CovetedPeacock card) {
|
||||||
|
|
Loading…
Reference in a new issue