mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed the bug that Geistcatchers Rig's triggered ability did not work (issue #145).
This commit is contained in:
parent
7f880aa7aa
commit
b30f1e22ae
1 changed files with 1 additions and 0 deletions
|
@ -62,6 +62,7 @@ public class GeistcatchersRig extends CardImpl<GeistcatchersRig> {
|
||||||
// When Geistcatcher's Rig enters the battlefield, you may have it deal 4 damage to target creature with flying.
|
// When Geistcatcher's Rig enters the battlefield, you may have it deal 4 damage to target creature with flying.
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(4), true);
|
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(4), true);
|
||||||
ability.addTarget(new TargetCreaturePermanent(filter));
|
ability.addTarget(new TargetCreaturePermanent(filter));
|
||||||
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
public GeistcatchersRig(final GeistcatchersRig card) {
|
public GeistcatchersRig(final GeistcatchersRig card) {
|
||||||
|
|
Loading…
Reference in a new issue