mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +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());
|
||||
|
||||
// {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}"));
|
||||
createAbility.addCost(new TapSourceCost());
|
||||
this.addAbility(createAbility);
|
||||
Ability tokenAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new KnightToken()), new ManaCostsImpl("{2}{W}"));
|
||||
tokenAbility.addCost(new TapSourceCost());
|
||||
this.addAbility(tokenAbility);
|
||||
|
||||
// {B}, {T}, Tap X untapped Knights you control: Destroy target creature with power X or less.
|
||||
|
||||
|
|
Loading…
Reference in a new issue