mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Implemented Nexus of Fate
This commit is contained in:
parent
1f1b65aecd
commit
57296c8279
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/n/NexusOfFate.java
Normal file
35
Mage.Sets/src/mage/cards/n/NexusOfFate.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.common.PutIntoGraveFromAnywhereSourceAbility;
|
||||
import mage.abilities.effects.common.RevealAndShuffleIntoLibrarySourceEffect;
|
||||
import mage.abilities.effects.common.turn.AddExtraTurnControllerEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class NexusOfFate extends CardImpl {
|
||||
|
||||
public NexusOfFate(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{5}{U}{U}");
|
||||
|
||||
// Take an extra turn after this one.
|
||||
this.getSpellAbility().addEffect(new AddExtraTurnControllerEffect());
|
||||
|
||||
// If Nexus of Fate would be put into a graveyard from anywhere, reveal Nexus of Fate and shuffle it into its owner's library instead.
|
||||
this.addAbility(new PutIntoGraveFromAnywhereSourceAbility(new RevealAndShuffleIntoLibrarySourceEffect()));
|
||||
}
|
||||
|
||||
public NexusOfFate(final NexusOfFate card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NexusOfFate copy() {
|
||||
return new NexusOfFate(this);
|
||||
}
|
||||
}
|
|
@ -75,6 +75,7 @@ public final class CoreSet2019 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Mighty Leap", 28, Rarity.COMMON, mage.cards.m.MightyLeap.class));
|
||||
cards.add(new SetCardInfo("Mist-Cloaked Herald", 310, Rarity.COMMON, mage.cards.m.MistCloakedHerald.class));
|
||||
cards.add(new SetCardInfo("Murder", 110, Rarity.UNCOMMON, mage.cards.m.Murder.class));
|
||||
cards.add(new SetCardInfo("Nexus of Fate", 306, Rarity.MYTHIC, mage.cards.n.NexusOfFate.class));
|
||||
cards.add(new SetCardInfo("Oakenform", 191, Rarity.COMMON, mage.cards.o.Oakenform.class));
|
||||
cards.add(new SetCardInfo("Omenspeaker", 64, Rarity.COMMON, mage.cards.o.Omenspeaker.class));
|
||||
cards.add(new SetCardInfo("Onakke Ogre", 153, Rarity.COMMON, mage.cards.o.OnakkeOgre.class));
|
||||
|
|
Loading…
Reference in a new issue