game: fixed that Premodern format wrongly ban some old cards like Crusade

This commit is contained in:
Oleg Agafonov 2024-03-07 14:55:04 +04:00
parent 6f3c58586e
commit c4a3489107

View file

@ -42,8 +42,14 @@ public class Premodern extends Constructed {
setCodes.add(mage.sets.Legions.getInstance().getCode()); setCodes.add(mage.sets.Legions.getInstance().getCode());
setCodes.add(mage.sets.Scourge.getInstance().getCode()); setCodes.add(mage.sets.Scourge.getInstance().getCode());
// Ban List see: https://scryfall.com/search?q=banned%3Apremodern&as=checklist
// Updated last time 02-08-2023 (https://premodernmagic.com/blog/ban-list-update-2023/) banned.clear(); // must be independent of actual constructed formats
// official premodern list: https://premodernmagic.com/banned-watched#ban-list
// official api list: https://premodernmagic.com/_serverside/get-banned-cards.php
// scryfall search: https://scryfall.com/search?q=banned%3Apremodern&as=checklist
// last updated: 2024-03-07
banned.add("Amulet of Quoz"); banned.add("Amulet of Quoz");
banned.add("Balance"); banned.add("Balance");
banned.add("Brainstorm"); banned.add("Brainstorm");
@ -60,8 +66,8 @@ public class Premodern extends Constructed {
banned.add("Land Tax"); banned.add("Land Tax");
banned.add("Mana Vault"); banned.add("Mana Vault");
banned.add("Memory Jar"); banned.add("Memory Jar");
banned.add("Mind's Desire");
banned.add("Mind Twist"); banned.add("Mind Twist");
banned.add("Mind's Desire");
banned.add("Mystical Tutor"); banned.add("Mystical Tutor");
banned.add("Necropotence"); banned.add("Necropotence");
banned.add("Rebirth"); banned.add("Rebirth");