mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
fix Baseball Bat
This commit is contained in:
parent
0a9544807c
commit
1237e01f8d
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.common.AttacksAttachedTriggeredAbility;
|
||||
import mage.abilities.common.EntersBattlefieldAttachToTarget;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.TapTargetEffect;
|
||||
|
|
@ -32,7 +32,7 @@ public final class BaseballBat extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(1, 1)));
|
||||
|
||||
// Whenever equipped creature attacks, tap up to one target creature.
|
||||
Ability ability = new AttacksTriggeredAbility(new TapTargetEffect());
|
||||
Ability ability = new AttacksAttachedTriggeredAbility(new TapTargetEffect());
|
||||
ability.addTarget(new TargetCreaturePermanent(0, 1));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue