mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[ORI] Volcanic Rambler - Fixed wrong tap activation cost.
This commit is contained in:
parent
53e36c728c
commit
930f155d10
1 changed files with 1 additions and 3 deletions
|
@ -31,7 +31,6 @@ import java.util.UUID;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -55,9 +54,8 @@ public class VolcanicRambler extends CardImpl {
|
|||
|
||||
// {2}{R}: Volcanic Rambler deals 1 damage to target player.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new ManaCostsImpl("{2}{R}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addTarget(new TargetPlayer());
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public VolcanicRambler(final VolcanicRambler card) {
|
||||
|
|
Loading…
Reference in a new issue