mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
Added Theros: Beyond Death
This commit is contained in:
parent
be7dea2d16
commit
23324f2169
4 changed files with 45 additions and 0 deletions
35
Mage.Sets/src/mage/sets/TherosBeyondDeath.java
Normal file
35
Mage.Sets/src/mage/sets/TherosBeyondDeath.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 TherosBeyondDeath extends ExpansionSet {
|
||||
|
||||
private static final TherosBeyondDeath instance = new TherosBeyondDeath();
|
||||
|
||||
public static TherosBeyondDeath getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private TherosBeyondDeath() {
|
||||
super("Theros: Beyond Death", "THB", ExpansionSet.buildDate(2020, 1, 24), SetType.EXPANSION);
|
||||
this.blockName = "Theros: Beyond Death";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 1;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 8;
|
||||
this.maxCardNumberInBooster = 254;
|
||||
|
||||
cards.add(new SetCardInfo("Forest", 254, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Island", 251, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mountain", 253, Rarity.LAND, mage.cards.basiclands.Mountain.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Plains", 250, Rarity.LAND, mage.cards.basiclands.Plains.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Swamp", 252, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
}
|
||||
}
|
|
@ -188,6 +188,7 @@ Tempest Remastered|TempestRemastered|
|
|||
Tenth Edition|TenthEdition|
|
||||
The Dark|TheDark|
|
||||
Theros|Theros|
|
||||
Theros: Beyond Death|TherosBeyondDeath|
|
||||
Throne of Eldraine|ThroneOfEldraine|
|
||||
Throne of Eldraine Collector's Edition|ThroneOfEldraineCollectorsEdition|
|
||||
Time Spiral|TimeSpiral|
|
||||
|
|
|
@ -36434,3 +36434,11 @@ Sphinx of Enlightenment|Game Night 2019|2|M|{4}{U}{U}|Creature - Sphinx|5|5|Flyi
|
|||
Calculating Lich|Game Night 2019|3|M|{4}{B}{B}|Creature - Zombie Wizard|5|5|Menace$Whenever a creature attacks one of your opponents, that player loses 1 life.|
|
||||
Fiendish Duo|Game Night 2019|4|M|{4}{R}{R}|Creature - Devil|5|5|First strike$If a source would deal damage to an opponent, it deals double that damage that player instead.|
|
||||
Earthshaker Giant|Game Night 2019|5|M|{4}{G}{G}|Creature - Giant Druid|6|6|Trample$When Earthshaker Giant enters the battlefield, other creatures you control get +3/+3 and gain trample until end of turn.|
|
||||
Elspeth, Sun's Nemesis|Theros: Beyond Death|14|M|{2}{W}{W}|Legendary Planeswalker - Elspeth|5|−1: Up to two target creatures you control each get +2/+1 until end of turn.$−2: Create two 1/1 white Human Soldier creature tokens.$−3: You gain 5 life.$Escape—{4}{W}{W}, Exile four other cards from your graveyard.|
|
||||
Ashiok, Nightmare Muse|Theros: Beyond Death|208|M|{3}{U}{B}|Legendary Planeswalker - Ashiok|5|+1: Create a 2/3 blue and black Nightmare creature token with "Whenever this creature attacks or blocks, each opponent exiles the top two cards of their library."$−3: Return target nonland permanent to its owner's hand, then that player exiles a card from their hand.$−7: You may cast up to three face-up cards your opponents own from exile without paying their mana costs.|
|
||||
Plains|Theros: Beyond Death|250|C||Basic Land - Plains|||({T}: Add {W}.)|
|
||||
Island|Theros: Beyond Death|251|C||Basic Land - Island|||({T}: Add {U}.)|
|
||||
Swamp|Theros: Beyond Death|252|C||Basic Land - Swamp|||({T}: Add {B}.)|
|
||||
Mountain|Theros: Beyond Death|253|C||Basic Land - Mountain|||({T}: Add {R}.)|
|
||||
Forest|Theros: Beyond Death|254|C||Basic Land - Forest|||({T}: Add {G}.)|
|
||||
Athreos, Shroud-Veiled|Theros: Beyond Death|269|M|{4}{W}{B}|Legendary Enchantment Creature - God|4|7|Indestructible$As long as your devotion to white and black is less than seven, Athreos isn't a creature.$At the beginning of your end step, put a coin counter on another target creature.$Whenever a creature with a coin counter on it dies or is put into exile, return that card to the battlefield under your control.|
|
||||
|
|
|
@ -185,6 +185,7 @@ Scars of Mirrodin|SOM|
|
|||
Stronghold|STH|
|
||||
Super Series|SUS|
|
||||
Theros|THS|
|
||||
Theros: Beyond Death|THB|
|
||||
Tempest|TMP|
|
||||
Throne of Eldraine|ELD|
|
||||
Throne of Eldraine Collector's Edition|CELD|
|
||||
|
|
Loading…
Reference in a new issue