fix missing abilities for Sarkhan Dragonsoul

This commit is contained in:
igoudt 2018-07-15 17:00:49 +02:00
parent 8d1b4ed92f
commit cf845a4485

View file

@ -45,9 +45,14 @@ public final class SarkhanDragonsoul extends CardImpl {
.setText("and each creature your opponents control")
);
this.addAbility(ability);
// 3: Sarkhan, Dragonsoul deals 4 damage to target player or planeswalker.
ability = new LoyaltyAbility(new DamageTargetEffect(4), -3);
ability.addTarget(new TargetPlayerOrPlaneswalker());
Ability ability2 = new LoyaltyAbility(new DamageTargetEffect(4), -3);
ability2.addTarget(new TargetPlayerOrPlaneswalker());
this.addAbility(ability2);
// 9: Search your library for any number of Dragon creature cards, put them onto the battlefield, then shuffle your library.
this.addAbility(new LoyaltyAbility(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(0, Integer.MAX_VALUE, filter)), -9));