mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Implemented Aryel, Knight of Windgrace
This commit is contained in:
parent
d59cddd609
commit
c5e9c9236f
1 changed files with 3 additions and 3 deletions
|
@ -72,9 +72,9 @@ public class AryelKnightOfWindgrace extends CardImpl {
|
||||||
this.addAbility(VigilanceAbility.getInstance());
|
this.addAbility(VigilanceAbility.getInstance());
|
||||||
|
|
||||||
// {2}{W}, {T}: Create a 2/2 white Knight creature token with vigilance.
|
// {2}{W}, {T}: Create a 2/2 white Knight creature token with vigilance.
|
||||||
Ability createAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new KnightToken()), new ManaCostsImpl("{2}{W}"));
|
Ability tokenAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new KnightToken()), new ManaCostsImpl("{2}{W}"));
|
||||||
createAbility.addCost(new TapSourceCost());
|
tokenAbility.addCost(new TapSourceCost());
|
||||||
this.addAbility(createAbility);
|
this.addAbility(tokenAbility);
|
||||||
|
|
||||||
// {B}, {T}, Tap X untapped Knights you control: Destroy target creature with power X or less.
|
// {B}, {T}, Tap X untapped Knights you control: Destroy target creature with power X or less.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue