Implemented Aryel, Knight of Windgrace

This commit is contained in:
jack-the-BOSS 2018-04-17 09:57:30 -05:00 committed by GitHub
parent d59cddd609
commit c5e9c9236f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.