* Fire Whip - fixed wrong tap symbol.

This commit is contained in:
LevelX2 2014-03-06 21:47:04 +01:00
parent 85e90881c1
commit d16657a937

View file

@ -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());