add comment on why "Name Sticker" Goblin is banned, as it's a mtgo replacement for a banned card

This commit is contained in:
Susucre 2024-06-07 17:39:53 +02:00
parent 9eeae92cea
commit 0cd2fda764
3 changed files with 11 additions and 2 deletions

View file

@ -16,6 +16,8 @@ public class Legacy extends Constructed {
setCodes.add(set.getCode()); setCodes.add(set.getCode());
} }
} }
// All attractions & sticker cards are banned. (to add if/when implemented)
// this also includes the mtgo replacement "Name Sticker" Goblin.
banned.add("\"Name Sticker\" Goblin"); banned.add("\"Name Sticker\" Goblin");
banned.add("Ancestral Recall"); banned.add("Ancestral Recall");

View file

@ -21,6 +21,10 @@ public class Pauper extends Constructed {
rarities.add(Rarity.COMMON); rarities.add(Rarity.COMMON);
rarities.add(Rarity.LAND); rarities.add(Rarity.LAND);
// All attractions & sticker cards are banned. (to add if/when implemented)
// this also includes the mtgo replacement "Name Sticker" Goblin.
banned.add("\"Name Sticker\" Goblin");
banned.add("Aarakocra Sneak"); banned.add("Aarakocra Sneak");
banned.add("All That Glitters"); banned.add("All That Glitters");
banned.add("Arcum's Astrolabe"); banned.add("Arcum's Astrolabe");

View file

@ -16,6 +16,9 @@ public class Vintage extends Constructed {
setCodes.add(set.getCode()); setCodes.add(set.getCode());
} }
} }
// All attractions & sticker cards are banned. (to add if/when implemented)
// this also includes the mtgo replacement "Name Sticker" Goblin.
banned.add("\"Name Sticker\" Goblin"); banned.add("\"Name Sticker\" Goblin");
restricted.add("Ancestral Recall"); restricted.add("Ancestral Recall");