mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
fixed various Sagas not working
This commit is contained in:
parent
595b438faa
commit
ef3b555467
8 changed files with 9 additions and 0 deletions
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -64,6 +64,7 @@ public final class TheTriumphOfAnax extends CardImpl {
|
|||
new TargetPermanent(0, 1, filter, false)
|
||||
)
|
||||
);
|
||||
this.addAbility(sagaAbility);
|
||||
}
|
||||
|
||||
private TheTriumphOfAnax(final TheTriumphOfAnax card) {
|
||||
|
|
Loading…
Reference in a new issue