mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[DMU] fix first chapter of Love Song of Night and Day
This commit is contained in:
parent
2157a84957
commit
54e8477325
1 changed files with 8 additions and 2 deletions
|
@ -1,8 +1,10 @@
|
|||
package mage.cards.l;
|
||||
|
||||
import mage.abilities.common.SagaAbility;
|
||||
import mage.abilities.effects.Effects;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.DrawCardTargetEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -12,6 +14,7 @@ import mage.constants.SubType;
|
|||
import mage.counters.CounterType;
|
||||
import mage.game.permanent.token.BirdToken;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -30,8 +33,11 @@ public final class LoveSongOfNightAndDay extends CardImpl {
|
|||
|
||||
// I -- You and target opponent each draw two cards.
|
||||
sagaAbility.addChapterEffect(
|
||||
this, SagaChapter.CHAPTER_I, new DrawCardSourceControllerEffect(2).setText("you"),
|
||||
new DrawCardSourceControllerEffect(2).setText("and target opponent each draw two cards")
|
||||
this, SagaChapter.CHAPTER_I, SagaChapter.CHAPTER_I,
|
||||
new Effects(
|
||||
new DrawCardSourceControllerEffect(2).setText("you"),
|
||||
new DrawCardTargetEffect(2).setText("and target opponent each draw two cards")
|
||||
), new TargetOpponent()
|
||||
);
|
||||
|
||||
// II -- Create a 1/1 white Bird creature token with flying.
|
||||
|
|
Loading…
Reference in a new issue