mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Avalanche Riders - Fixed missing haste ability.
This commit is contained in:
parent
2e58ed9002
commit
fddf04c258
1 changed files with 4 additions and 0 deletions
|
@ -35,6 +35,7 @@ import mage.abilities.Ability;
|
||||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||||
import mage.abilities.keyword.EchoAbility;
|
import mage.abilities.keyword.EchoAbility;
|
||||||
|
import mage.abilities.keyword.HasteAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.target.common.TargetLandPermanent;
|
import mage.target.common.TargetLandPermanent;
|
||||||
|
|
||||||
|
@ -53,6 +54,9 @@ public class AvalancheRiders extends CardImpl<AvalancheRiders> {
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
// Haste
|
||||||
|
this.addAbility(HasteAbility.getInstance());
|
||||||
|
// Echo {3}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)
|
||||||
this.addAbility(new EchoAbility("{3}{R}"));
|
this.addAbility(new EchoAbility("{3}{R}"));
|
||||||
//When Avalanche Riders enters the battlefield, destroy target land.
|
//When Avalanche Riders enters the battlefield, destroy target land.
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());
|
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());
|
||||||
|
|
Loading…
Reference in a new issue