fixed various Sagas not working

This commit is contained in:
Evan Kranzler 2020-01-12 13:40:30 -05:00
parent 595b438faa
commit ef3b555467
8 changed files with 9 additions and 0 deletions

View file

@ -66,6 +66,7 @@ public final class ElspethConquersDeath extends CardImpl {
this, SagaChapter.CHAPTER_III, SagaChapter.CHAPTER_III,
new ElspethConquersDeathReturnEffect(), new TargetCardInYourGraveyard(filter2)
);
this.addAbility(sagaAbility);
}
private ElspethConquersDeath(final ElspethConquersDeath card) {

View file

@ -62,6 +62,7 @@ public final class ElspethsNightmare extends CardImpl {
.setText("exile target opponent's graveyard"),
new TargetOpponent()
);
this.addAbility(sagaAbility);
}
private ElspethsNightmare(final ElspethsNightmare card) {

View file

@ -63,6 +63,7 @@ public final class KioraBestsTheSeaGod extends CardImpl {
new UntapTargetEffect().setText("Untap it.")
), new TargetPermanent(filter)
);
this.addAbility(sagaAbility);
}
private KioraBestsTheSeaGod(final KioraBestsTheSeaGod card) {

View file

@ -44,6 +44,7 @@ public final class MedomaisProphecy extends CardImpl {
// IV Look at the top card of each player's library.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_IV, new MedomaisProphecyLookEffect());
this.addAbility(sagaAbility);
}
private MedomaisProphecy(final MedomaisProphecy card) {

View file

@ -58,6 +58,7 @@ public final class TheAkroanWar extends CardImpl {
// III Each tapped creature deals damage to itself equal to its power.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_III, new TheAkroanWarEffect());
this.addAbility(sagaAbility);
}
private TheAkroanWar(final TheAkroanWar card) {

View file

@ -50,6 +50,7 @@ public final class TheBirthOfMeletis extends CardImpl {
// III You gain 2 life.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_III, new GainLifeEffect(2));
this.addAbility(sagaAbility);
}
private TheBirthOfMeletis(final TheBirthOfMeletis card) {

View file

@ -55,6 +55,8 @@ public final class TheFirstIroanGames extends CardImpl {
// IV Create a Gold token.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_IV, new CreateTokenEffect(new GoldToken()));
this.addAbility(sagaAbility);
}
private TheFirstIroanGames(final TheFirstIroanGames card) {

View file

@ -64,6 +64,7 @@ public final class TheTriumphOfAnax extends CardImpl {
new TargetPermanent(0, 1, filter, false)
)
);
this.addAbility(sagaAbility);
}
private TheTriumphOfAnax(final TheTriumphOfAnax card) {