mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
added M20
This commit is contained in:
parent
620be8fd33
commit
9d824960cf
4 changed files with 41 additions and 0 deletions
36
Mage.Sets/src/mage/sets/CoreSet2020.java
Normal file
36
Mage.Sets/src/mage/sets/CoreSet2020.java
Normal file
|
@ -0,0 +1,36 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.cards.repository.CardInfo;
|
||||
import mage.constants.SetType;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CoreSet2020 extends ExpansionSet {
|
||||
|
||||
private static final CoreSet2020 instance = new CoreSet2020();
|
||||
|
||||
public static CoreSet2020 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
List<CardInfo> savedSpecialCommon = new ArrayList<>();
|
||||
protected final List<CardInfo> savedSpecialLand = new ArrayList<>();
|
||||
|
||||
private CoreSet2020() {
|
||||
super("Core Set 2020", "M20", ExpansionSet.buildDate(2019, 7, 12), SetType.CORE);
|
||||
this.hasBoosters = true;
|
||||
this.hasBasicLands = true;
|
||||
this.numBoosterSpecial = 0;
|
||||
this.numBoosterLands = 1;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 8;
|
||||
this.maxCardNumberInBooster = 280;
|
||||
}
|
||||
}
|
|
@ -32,6 +32,7 @@ Commander's Arsenal|CommandersArsenal|
|
|||
Conflux|Conflux|
|
||||
Conspiracy: Take the Crown|ConspiracyTakeTheCrown|
|
||||
Core Set 2019|CoreSet2019|
|
||||
Core Set 2020|CoreSet2020|
|
||||
Dark Ascension|DarkAscension|
|
||||
Darksteel|Darksteel|
|
||||
Dissension|Dissension|
|
||||
|
|
|
@ -35369,3 +35369,6 @@ Snow-Covered Swamp|Modern Horizons|252|C||Basic Snow Land - Swamp|||({T}: Add {B
|
|||
Snow-Covered Mountain|Modern Horizons|253|C||Basic Snow Land - Mountain|||({T}: Add {R}.)|
|
||||
Snow-Covered Forest|Modern Horizons|254|C||Basic Snow Land - Forest|||({T}: Add {G}.)|
|
||||
Flusterstorm|Modern Horizons|255|R|{U}|Instant|||Counter target instant or sorcery spell unless its controller pays {1}.$Storm|
|
||||
Chandra, Acolyte of Flame|Core Set 2020|126|R|{1}{R}{R}|Legendary Planeswalker - Chandra|4|0: Put a loyalty counter on each red planeswalker you control.$0: Create two 1/1 red Elemental creature tokens. They gain haste. Sacrifice them at the beginning of the next end step.$-2: You may cast target instant or sorcery card with converted mana cost 3 or less from your graveyard. If that card would be put into your graveyard this turn, exile it instead.|
|
||||
Chandra, Awakened Inferno|Core Set 2020|127|M|{4}{R}{R}|Legendary Planeswalker - Chandra|6|This spell can't be countered.$+2: Each opponent gets an emblem with "At the beginning of your upkeep, this emblem deals 1 damage to you."$-3: Chandra, Awakened Inferno deals 3 damage to each non-Elemental creature.$-X: Chandra, Awakened Inferno deals X damage to target creature or planeswalker. If a permanent dealt damage this way would die this turn, exile it instead.|
|
||||
Chandra, Novice Pyromancer|Core Set 2020|128|U|{3}{R}|Legendary Planeswalker - Chandra|5|+1: Elementals you control get +2/+0 until end of turn.$-1: Add {R}{R}.$-2: Chandra, Novice Pyromancer deals 2 damage to any target.|
|
||||
|
|
|
@ -127,6 +127,7 @@ Magic 2013|M13|
|
|||
Magic 2014|M14|
|
||||
Magic 2015|M15|
|
||||
Core Set 2019|M19|
|
||||
Core Set 2020|M20|
|
||||
Masters 25|A25|
|
||||
Magic: The Gathering-Commander|CMD|
|
||||
Magic: The Gathering-Conspiracy|CNS|
|
||||
|
|
Loading…
Reference in a new issue