mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Merge pull request #3426 from spjspj/master
Update odd apostrophes (could have multiple Lion's Eye Diamonds in a …
This commit is contained in:
commit
1643471693
3 changed files with 31 additions and 5 deletions
|
@ -71,6 +71,32 @@ public class AusHighlander extends Constructed {
|
||||||
valid = false;
|
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",
|
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"));
|
"Snow-Covered Forest", "Snow-Covered Island", "Snow-Covered Mountain", "Snow-Covered Swamp", "Snow-Covered Plains"));
|
||||||
Map<String, Integer> counts = new HashMap<>();
|
Map<String, Integer> counts = new HashMap<>();
|
||||||
|
|
|
@ -58,7 +58,7 @@ public class DuelCommander extends Commander {
|
||||||
banned.add("Mana Drain");
|
banned.add("Mana Drain");
|
||||||
banned.add("Mana Vault");
|
banned.add("Mana Vault");
|
||||||
banned.add("Mind Twist");
|
banned.add("Mind Twist");
|
||||||
banned.add("Mishra’s Workshop");
|
banned.add("Mishra's Workshop");
|
||||||
banned.add("Mox Diamond");
|
banned.add("Mox Diamond");
|
||||||
banned.add("Mox Emerald");
|
banned.add("Mox Emerald");
|
||||||
banned.add("Mox Jet");
|
banned.add("Mox Jet");
|
||||||
|
|
|
@ -86,14 +86,14 @@ public class Vintage extends Constructed {
|
||||||
restricted.add("Gush");
|
restricted.add("Gush");
|
||||||
restricted.add("Imperial Seal");
|
restricted.add("Imperial Seal");
|
||||||
restricted.add("Library of Alexandria");
|
restricted.add("Library of Alexandria");
|
||||||
restricted.add("Lion’s Eye Diamond");
|
restricted.add("Lion's Eye Diamond");
|
||||||
restricted.add("Lodestone Golem");
|
restricted.add("Lodestone Golem");
|
||||||
restricted.add("Lotus Petal");
|
restricted.add("Lotus Petal");
|
||||||
restricted.add("Mana Crypt");
|
restricted.add("Mana Crypt");
|
||||||
restricted.add("Mana Vault");
|
restricted.add("Mana Vault");
|
||||||
restricted.add("Memory Jar");
|
restricted.add("Memory Jar");
|
||||||
restricted.add("Merchant Scroll");
|
restricted.add("Merchant Scroll");
|
||||||
restricted.add("Mind’s Desire");
|
restricted.add("Mind's Desire");
|
||||||
restricted.add("Mox Emerald");
|
restricted.add("Mox Emerald");
|
||||||
restricted.add("Mox Jet");
|
restricted.add("Mox Jet");
|
||||||
restricted.add("Mox Pearl");
|
restricted.add("Mox Pearl");
|
||||||
|
@ -114,8 +114,8 @@ public class Vintage extends Constructed {
|
||||||
restricted.add("Vampiric Tutor");
|
restricted.add("Vampiric Tutor");
|
||||||
restricted.add("Wheel of Fortune");
|
restricted.add("Wheel of Fortune");
|
||||||
restricted.add("Windfall");
|
restricted.add("Windfall");
|
||||||
restricted.add("Yawgmoth’s Bargain");
|
restricted.add("Yawgmoth's Bargain");
|
||||||
restricted.add("Yawgmoth’s Will");
|
restricted.add("Yawgmoth's Will");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue