mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
[CLB] added set
This commit is contained in:
parent
80e11b2052
commit
9d46caee9c
4 changed files with 26 additions and 0 deletions
|
@ -509,6 +509,7 @@ public class ScryfallImageSupportCards {
|
|||
add("NEC"); // Neon Dynasty Commander
|
||||
add("SNC"); // Streets of New Capenna
|
||||
add("SLX"); // Universes Within
|
||||
add("CLB"); // Commander Legends: Battle for Baldur's Gate
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
||||
|
||||
private static final CommanderLegendsBattleForBaldursGate instance = new CommanderLegendsBattleForBaldursGate();
|
||||
|
||||
public static CommanderLegendsBattleForBaldursGate getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private CommanderLegendsBattleForBaldursGate() {
|
||||
super("Commander Legends: Battle for Baldur's Gate", "CLB", ExpansionSet.buildDate(2022, 6, 10), SetType.SUPPLEMENTAL);
|
||||
this.blockName = "Commander Legends";
|
||||
this.hasBasicLands = false;
|
||||
this.hasBoosters = true;
|
||||
}
|
||||
}
|
|
@ -33,6 +33,7 @@ Commander 2019|Commander2019Edition|
|
|||
Commander 2020|Commander2020Edition|
|
||||
Commander 2021|Commander2021Edition|
|
||||
Commander Legends|CommanderLegends|
|
||||
Commander Legends: Battle for Baldur's Gate|CommanderLegendsBattleForBaldursGate|
|
||||
Commander Anthology|CommanderAnthology|
|
||||
Commander Anthology 2018|CommanderAnthology2018|
|
||||
Commander's Arsenal|CommandersArsenal|
|
||||
|
|
|
@ -40,6 +40,7 @@ Commander 2019 Edition|C19|
|
|||
Commander 2020 Edition|C20|
|
||||
Commander 2021 Edition|C21|
|
||||
Commander Legends|CMR|
|
||||
Commander Legends: Battle for Baldur's Gate|CLB|
|
||||
Champions of Kamigawa|CHK|
|
||||
Chronicles|CHR|
|
||||
Clash Pack|CLASH|
|
||||
|
|
Loading…
Reference in a new issue