mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[STX] Implemented Introduction to Prophecy
This commit is contained in:
parent
7dc8133eec
commit
c774d29be8
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/i/IntroductionToProphecy.java
Normal file
35
Mage.Sets/src/mage/cards/i/IntroductionToProphecy.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.i;
|
||||
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.keyword.ScryEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class IntroductionToProphecy extends CardImpl {
|
||||
|
||||
public IntroductionToProphecy(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}");
|
||||
|
||||
this.subtype.add(SubType.LESSON);
|
||||
|
||||
// Scry 2, then draw a card.
|
||||
this.getSpellAbility().addEffect(new ScryEffect(2, false));
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy(", then"));
|
||||
}
|
||||
|
||||
private IntroductionToProphecy(final IntroductionToProphecy card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IntroductionToProphecy copy() {
|
||||
return new IntroductionToProphecy(this);
|
||||
}
|
||||
}
|
|
@ -32,6 +32,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Eager First-Year", 16, Rarity.COMMON, mage.cards.e.EagerFirstYear.class));
|
||||
cards.add(new SetCardInfo("Frostboil Snarl", 265, Rarity.RARE, mage.cards.f.FrostboilSnarl.class));
|
||||
cards.add(new SetCardInfo("Furycalm Snarl", 266, Rarity.RARE, mage.cards.f.FurycalmSnarl.class));
|
||||
cards.add(new SetCardInfo("Introduction to Prophecy", 4, Rarity.COMMON, mage.cards.i.IntroductionToProphecy.class));
|
||||
cards.add(new SetCardInfo("Kasmina, Enigma Sage", 196, Rarity.MYTHIC, mage.cards.k.KasminaEnigmaSage.class));
|
||||
cards.add(new SetCardInfo("Lorehold Command", 199, Rarity.RARE, mage.cards.l.LoreholdCommand.class));
|
||||
cards.add(new SetCardInfo("Necroblossom Snarl", 269, Rarity.RARE, mage.cards.n.NecroblossomSnarl.class));
|
||||
|
|
Loading…
Reference in a new issue