mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 23:12:10 -08:00
* Fire Whip - fixed wrong tap symbol.
This commit is contained in:
parent
85e90881c1
commit
d16657a937
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ public class FireWhip extends CardImpl<FireWhip> {
|
|||
// Enchanted creature has "{t}: This creature deals 1 damage to target creature or player."
|
||||
Ability ability1 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost());
|
||||
ability1.addTarget(new TargetCreatureOrPlayer());
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ability1, AttachmentType.AURA, Duration.WhileOnBattlefield, "Enchanted creature has \"{tap}: This creature deals 1 damage to target creature or player.\"")));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(ability1, AttachmentType.AURA, Duration.WhileOnBattlefield, "Enchanted creature has \"{t}: This creature deals 1 damage to target creature or player.\"")));
|
||||
// Sacrifice Fire Whip: Fire Whip deals 1 damage to target creature or player.
|
||||
Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new SacrificeSourceCost());
|
||||
ability2.addTarget(new TargetCreatureOrPlayer());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue