1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-08 01:01:04 -09:00

Merge origin/master

This commit is contained in:
LevelX2 2020-07-13 17:14:02 +02:00
commit 0f82277eed
4 changed files with 4 additions and 2 deletions
Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck

View file

@ -10,7 +10,6 @@ import java.util.GregorianCalendar;
/** /**
* @author mikalinn777 * @author mikalinn777
*
* Historic is a nonrotating format in MTGA. https://mtg.gamepedia.com/Historic_(format) * Historic is a nonrotating format in MTGA. https://mtg.gamepedia.com/Historic_(format)
*/ */
public class Historic extends Constructed { public class Historic extends Constructed {
@ -55,5 +54,6 @@ public class Historic extends Constructed {
banned.add("Oko, Thief of Crowns"); banned.add("Oko, Thief of Crowns");
banned.add("Once Upon a Time"); banned.add("Once Upon a Time");
banned.add("Veil of Summer"); banned.add("Veil of Summer");
banned.add("Burning-Tree Emissary");
} }
} }

View file

@ -24,6 +24,7 @@ public class Modern extends Constructed {
} }
banned.add("Ancient Den"); banned.add("Ancient Den");
banned.add("Arcum's Astrolabe");
banned.add("Birthing Pod"); banned.add("Birthing Pod");
banned.add("Blazing Shoal"); banned.add("Blazing Shoal");
banned.add("Bridge from Below"); banned.add("Bridge from Below");

View file

@ -27,6 +27,7 @@ public class Pauper extends Constructed {
banned.add("Cranial Plating"); banned.add("Cranial Plating");
banned.add("Daze"); banned.add("Daze");
banned.add("Empty the Warrens"); banned.add("Empty the Warrens");
banned.add("Expedition Map");
banned.add("Frantic Search"); banned.add("Frantic Search");
banned.add("Gitaxian Probe"); banned.add("Gitaxian Probe");
banned.add("Grapeshot"); banned.add("Grapeshot");
@ -34,6 +35,7 @@ public class Pauper extends Constructed {
banned.add("Hight Tide"); banned.add("Hight Tide");
banned.add("Hymn to Tourach"); banned.add("Hymn to Tourach");
banned.add("Invigorate"); banned.add("Invigorate");
banned.add("Mystic Sanctuary");
banned.add("Peregrine Drake"); banned.add("Peregrine Drake");
banned.add("Sinkhole"); banned.add("Sinkhole");
banned.add("Temporal Fissure"); banned.add("Temporal Fissure");

View file

@ -32,7 +32,6 @@ public class Pioneer extends Constructed {
banned.add("Field of the Dead"); banned.add("Field of the Dead");
banned.add("Leyline of Abundance"); banned.add("Leyline of Abundance");
banned.add("Nexus of Fate"); banned.add("Nexus of Fate");
banned.add("Oath of Nissa");
banned.add("Oko, Thief of Crowns"); banned.add("Oko, Thief of Crowns");
banned.add("Once Upon a Time"); banned.add("Once Upon a Time");
banned.add("Smuggler's Copter"); banned.add("Smuggler's Copter");