Update odd apostrophes (could have multiple Lion's Eye Diamonds in a vintage deck). Also aus highlander has the vintage banned list.

This commit is contained in:
spjspj 2017-05-25 11:23:35 +10:00
parent 5bba4dc7fb
commit 71d06dd894
3 changed files with 31 additions and 5 deletions

View file

@ -71,6 +71,32 @@ public class AusHighlander extends Constructed {
valid = false;
}
banned.add("Advantageous Proclamation");
banned.add("Amulet of Quoz");
banned.add("Backup Plan");
banned.add("Brago's Favor");
banned.add("Bronze Tablet");
banned.add("Chaos Orb");
banned.add("Contract from Below");
banned.add("Darkpact");
banned.add("Demonic Attorney");
banned.add("Double Stroke");
banned.add("Falling Star");
banned.add("Immediate Action");
banned.add("Iterative Analysis");
banned.add("Jeweled Bird");
banned.add("Muzzio's Preparations");
banned.add("Power Play");
banned.add("Rebirth");
banned.add("Secret Summoning");
banned.add("Secrets of Paradise");
banned.add("Sentinel Dispatch");
banned.add("Shahrazad");
banned.add("Tempest Efreet");
banned.add("Timmerian Fiends");
banned.add("Unexpected Potential");
banned.add("Worldknit");
List<String> basicLandNames = new ArrayList<>(Arrays.asList("Forest", "Island", "Mountain", "Swamp", "Plains", "Wastes",
"Snow-Covered Forest", "Snow-Covered Island", "Snow-Covered Mountain", "Snow-Covered Swamp", "Snow-Covered Plains"));
Map<String, Integer> counts = new HashMap<>();

View file

@ -58,7 +58,7 @@ public class DuelCommander extends Commander {
banned.add("Mana Drain");
banned.add("Mana Vault");
banned.add("Mind Twist");
banned.add("Mishras Workshop");
banned.add("Mishra's Workshop");
banned.add("Mox Diamond");
banned.add("Mox Emerald");
banned.add("Mox Jet");

View file

@ -86,14 +86,14 @@ public class Vintage extends Constructed {
restricted.add("Gush");
restricted.add("Imperial Seal");
restricted.add("Library of Alexandria");
restricted.add("Lions Eye Diamond");
restricted.add("Lion's Eye Diamond");
restricted.add("Lodestone Golem");
restricted.add("Lotus Petal");
restricted.add("Mana Crypt");
restricted.add("Mana Vault");
restricted.add("Memory Jar");
restricted.add("Merchant Scroll");
restricted.add("Minds Desire");
restricted.add("Mind's Desire");
restricted.add("Mox Emerald");
restricted.add("Mox Jet");
restricted.add("Mox Pearl");
@ -114,8 +114,8 @@ public class Vintage extends Constructed {
restricted.add("Vampiric Tutor");
restricted.add("Wheel of Fortune");
restricted.add("Windfall");
restricted.add("Yawgmoths Bargain");
restricted.add("Yawgmoths Will");
restricted.add("Yawgmoth's Bargain");
restricted.add("Yawgmoth's Will");
}
}