mirror of
https://github.com/correl/mage.git
synced 2025-03-13 01:09:53 -09:00
another error fix
This commit is contained in:
parent
1926299be6
commit
c212233206
2 changed files with 58 additions and 58 deletions
Mage.Sets/src/mage/sets
|
@ -12,6 +12,35 @@ import java.util.List;
|
|||
*/
|
||||
public final class Commander2020Edition extends ExpansionSet {
|
||||
|
||||
private static final List<String> mutateNames = Arrays.asList(
|
||||
"Archipelagore",
|
||||
"Auspicious Starrix",
|
||||
"Brokkos, Apex of Forever",
|
||||
"Cavern Whisperer",
|
||||
"Chittering Harvester",
|
||||
"Cloudpiercer",
|
||||
"Cubwarden",
|
||||
"Dirge Bat",
|
||||
"Dreamtail Heron",
|
||||
"Everquill Phoenix",
|
||||
"Gemrazer",
|
||||
"Glowstone Recluse",
|
||||
"Huntmaster Liger",
|
||||
"Illuna, Apex of Wishes",
|
||||
"Insatiable Hemophage",
|
||||
"Lore Drakkis",
|
||||
"Migratory Greathorn",
|
||||
"Mindleecher",
|
||||
"Nethroi, Apex of Death",
|
||||
"Otrimi, the Ever-Playful",
|
||||
"Pouncing Shoreshark",
|
||||
"Sea-Dasher Octopus",
|
||||
"Snapdax, Apex of the Hunt",
|
||||
"Souvenir Snatcher",
|
||||
"Trumpeting Gnarr",
|
||||
"Vadrok, Apex of Thunder"
|
||||
);
|
||||
|
||||
private static final Commander2020Edition instance = new Commander2020Edition();
|
||||
|
||||
public static Commander2020Edition getInstance() {
|
||||
|
@ -70,33 +99,4 @@ public final class Commander2020Edition extends ExpansionSet {
|
|||
|
||||
cards.removeIf(setCardInfo -> mutateNames.contains(setCardInfo.getName())); // remove when mutate is implemented
|
||||
}
|
||||
|
||||
private static final List<String> mutateNames = Arrays.asList(
|
||||
"Archipelagore",
|
||||
"Auspicious Starrix",
|
||||
"Brokkos, Apex of Forever",
|
||||
"Cavern Whisperer",
|
||||
"Chittering Harvester",
|
||||
"Cloudpiercer",
|
||||
"Cubwarden",
|
||||
"Dirge Bat",
|
||||
"Dreamtail Heron",
|
||||
"Everquill Phoenix",
|
||||
"Gemrazer",
|
||||
"Glowstone Recluse",
|
||||
"Huntmaster Liger",
|
||||
"Illuna, Apex of Wishes",
|
||||
"Insatiable Hemophage",
|
||||
"Lore Drakkis",
|
||||
"Migratory Greathorn",
|
||||
"Mindleecher",
|
||||
"Nethroi, Apex of Death",
|
||||
"Otrimi, the Ever-Playful",
|
||||
"Pouncing Shoreshark",
|
||||
"Sea-Dasher Octopus",
|
||||
"Snapdax, Apex of the Hunt",
|
||||
"Souvenir Snatcher",
|
||||
"Trumpeting Gnarr",
|
||||
"Vadrok, Apex of Thunder"
|
||||
);
|
||||
}
|
||||
|
|
|
@ -12,6 +12,35 @@ import java.util.List;
|
|||
*/
|
||||
public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
||||
|
||||
private static final List<String> mutateNames = Arrays.asList(
|
||||
"Archipelagore",
|
||||
"Auspicious Starrix",
|
||||
"Brokkos, Apex of Forever",
|
||||
"Cavern Whisperer",
|
||||
"Chittering Harvester",
|
||||
"Cloudpiercer",
|
||||
"Cubwarden",
|
||||
"Dirge Bat",
|
||||
"Dreamtail Heron",
|
||||
"Everquill Phoenix",
|
||||
"Gemrazer",
|
||||
"Glowstone Recluse",
|
||||
"Huntmaster Liger",
|
||||
"Illuna, Apex of Wishes",
|
||||
"Insatiable Hemophage",
|
||||
"Lore Drakkis",
|
||||
"Migratory Greathorn",
|
||||
"Mindleecher",
|
||||
"Nethroi, Apex of Death",
|
||||
"Otrimi, the Ever-Playful",
|
||||
"Pouncing Shoreshark",
|
||||
"Sea-Dasher Octopus",
|
||||
"Snapdax, Apex of the Hunt",
|
||||
"Souvenir Snatcher",
|
||||
"Trumpeting Gnarr",
|
||||
"Vadrok, Apex of Thunder"
|
||||
);
|
||||
|
||||
private static final IkoriaLairOfBehemoths instance = new IkoriaLairOfBehemoths();
|
||||
|
||||
public static IkoriaLairOfBehemoths getInstance() {
|
||||
|
@ -102,33 +131,4 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
|
||||
cards.removeIf(setCardInfo -> mutateNames.contains(setCardInfo.getName())); // remove when mutate is implemented
|
||||
}
|
||||
|
||||
private static final List<String> mutateNames = Arrays.asList(
|
||||
"Archipelagore",
|
||||
"Auspicious Starrix",
|
||||
"Brokkos, Apex of Forever",
|
||||
"Cavern Whisperer",
|
||||
"Chittering Harvester",
|
||||
"Cloudpiercer",
|
||||
"Cubwarden",
|
||||
"Dirge Bat",
|
||||
"Dreamtail Heron",
|
||||
"Everquill Phoenix",
|
||||
"Gemrazer",
|
||||
"Glowstone Recluse",
|
||||
"Huntmaster Liger",
|
||||
"Illuna, Apex of Wishes",
|
||||
"Insatiable Hemophage",
|
||||
"Lore Drakkis",
|
||||
"Migratory Greathorn",
|
||||
"Mindleecher",
|
||||
"Nethroi, Apex of Death",
|
||||
"Otrimi, the Ever-Playful",
|
||||
"Pouncing Shoreshark",
|
||||
"Sea-Dasher Octopus",
|
||||
"Snapdax, Apex of the Hunt",
|
||||
"Souvenir Snatcher",
|
||||
"Trumpeting Gnarr",
|
||||
"Vadrok, Apex of Thunder"
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue