mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
[AFR] added set
This commit is contained in:
parent
8f9892622c
commit
91676e8fbe
4 changed files with 47 additions and 0 deletions
35
Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java
Normal file
35
Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AdventuresInTheForgottenRealms extends ExpansionSet {
|
||||
|
||||
private static final AdventuresInTheForgottenRealms instance = new AdventuresInTheForgottenRealms();
|
||||
|
||||
public static AdventuresInTheForgottenRealms getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private AdventuresInTheForgottenRealms() {
|
||||
super("Adventures in the Forgotten Realms", "AFR", ExpansionSet.buildDate(2021, 7, 23), SetType.EXPANSION);
|
||||
this.blockName = "Adventures in the Forgotten Realms";
|
||||
this.hasBoosters = true;
|
||||
this.hasBasicLands = true;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.maxCardNumberInBooster = 275;
|
||||
|
||||
cards.add(new SetCardInfo("Forest", 281, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Island", 269, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mountain", 277, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Plains", 265, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Swamp", 273, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
Adventures in the Forgotten Realms|AdventuresInTheForgottenRealms|
|
||||
Aether Revolt|AetherRevolt|
|
||||
Alara Reborn|AlaraReborn|
|
||||
Alliances|Alliances|
|
||||
|
|
|
@ -41320,6 +41320,16 @@ Temple of the False God|Commander 2021|326|U||Land|||{T}: Add {C}{C}. Activate o
|
|||
Temple of Triumph|Commander 2021|327|R||Land|||Temple of Triumph enters the battlefield tapped.$When Temple of Triumph enters the battlefield, scry 1.${T}: Add {R} or {W}.|
|
||||
Tranquil Thicket|Commander 2021|408|C||Land|||Tranquil Thicket enters the battlefield tapped.${T}: Add {G}.$Cycling {G}|
|
||||
Yavimaya Coast|Commander 2021|409|R||Land|||{T}: Add {C}.${T}: Add {G} or {U}. Yavimaya Coast deals 1 damage to you.|
|
||||
Forest|Adventures in the Forgotten Realms|281|C||Basic Land - Forest|||({T}: Add {G}.)|
|
||||
Island|Adventures in the Forgotten Realms|269|C||Basic Land - Island|||({T}: Add {U}.)|
|
||||
Mountain|Adventures in the Forgotten Realms|277|C||Basic Land - Mountain|||({T}: Add {R}.)|
|
||||
Plains|Adventures in the Forgotten Realms|265|C||Basic Land - Plains|||({T}: Add {W}.)|
|
||||
Portable Hole|Adventures in the Forgotten Realms|33|C|{W}|Artifact|||When Portable Hole enters the battlefield, exile target nonland permanent an opponent controls with mana value 2 or less until Portable Hole leaves the battlefield.|
|
||||
Power Word Kill|Adventures in the Forgotten Realms|114|U|{1}{B}|Instant|||Destroy target non-Angel, non-Demon, non-Devil, non-Dragon creature.|
|
||||
Prosperous Innkeeper|Adventures in the Forgotten Realms|200|U|{1}{G}|Creature - Halfling Citizen|1|1|When Prosperous Innkeeper enters the battlefield, create a Treasure token.$Whenever another creature enters the battlefield under your control, you gain 1 life.|
|
||||
Swamp|Adventures in the Forgotten Realms|273|C||Basic Land - Swamp|||({T}: Add {B}.)|
|
||||
Tiamat|Adventures in the Forgotten Realms|236|M|{2}{W}{U}{B}{R}{G}|Legendary Creature - Dragon God|7|7|Flying$When Tiamat enters the battlefield, if you cast it, search your library for up to five Dragon cards named Tiama that each have different names, reveal them, put them into your hand, then shuffle.|
|
||||
Vorpal Sword|Adventures in the Forgotten Realms|124|R|{B}|Artifact - Equipment|||Equipped creature gets +2/+0 and has deathtouch.${5}{B}{B}{B}: Until end of turn, Vorpal Sword gains "Whenever equipped creature deals combat damage to a player, that player loses the game."$Equip {B}{B}|
|
||||
Arid Mesa|Modern Horizons 2|244|R||Land|||{T}, Pay 1 life, Sacrifice Arid Mesa: Search your library for a Mountain or Plains card, put it onto the battlefield, then shuffle.|
|
||||
Brainstone|Modern Horizons 2|223|U|{1}|Artifact|||{2},{T}, Sacrifice Brainstone: Draw three cards, then put two cards from your hand on top of your library in any order.|
|
||||
Counterspell|Modern Horizons 2|267|U|{U}{U}|Instant|||Counter target spell.|
|
||||
|
|
|
@ -8,6 +8,7 @@ Classic Sixth Edition|6ED|
|
|||
Seventh Edition|7ED|
|
||||
Eighth Edition|8ED|
|
||||
Ninth Edition|9ED|
|
||||
Adventures in the Forgotten Realms|AFR|
|
||||
Aether Revolt|AER|
|
||||
Amonkhet|AKH|
|
||||
Shards of Alara|ALA|
|
||||
|
|
Loading…
Reference in a new issue