Extended singularita cube.
parent
4e587a47c7
commit
415f6ab1c6
|
@ -1,4 +1,5 @@
|
||||||
Absorb
|
Absorb
|
||||||
|
Accorder Paladin
|
||||||
Accorder's Shield
|
Accorder's Shield
|
||||||
Acidic Slime
|
Acidic Slime
|
||||||
Affa Guard Hound
|
Affa Guard Hound
|
||||||
|
@ -229,6 +230,7 @@ Flame-Kin Zealot
|
||||||
Flameblast Dragon
|
Flameblast Dragon
|
||||||
Flameborn Hellion
|
Flameborn Hellion
|
||||||
Flametongue Kavu
|
Flametongue Kavu
|
||||||
|
Flayer Husk
|
||||||
Flight of Fancy
|
Flight of Fancy
|
||||||
Followed Footsteps
|
Followed Footsteps
|
||||||
Fomori Nomad
|
Fomori Nomad
|
||||||
|
@ -323,6 +325,7 @@ Hateflayer
|
||||||
Havenwood Wurm
|
Havenwood Wurm
|
||||||
Hearthfire Hobgoblin
|
Hearthfire Hobgoblin
|
||||||
Hellkite Overlord
|
Hellkite Overlord
|
||||||
|
Hero of Bladehold
|
||||||
Heroes' Reunion
|
Heroes' Reunion
|
||||||
Hideous End
|
Hideous End
|
||||||
Hill Giant
|
Hill Giant
|
||||||
|
@ -439,6 +442,7 @@ Mighty Leap
|
||||||
Mind Spring
|
Mind Spring
|
||||||
Mind Stone
|
Mind Stone
|
||||||
Mire Boa
|
Mire Boa
|
||||||
|
Mirran Crusader
|
||||||
Mirri the Cursed
|
Mirri the Cursed
|
||||||
Mirri, Cat Warrior
|
Mirri, Cat Warrior
|
||||||
Mirror Entity
|
Mirror Entity
|
||||||
|
@ -503,6 +507,7 @@ Perimeter Captain
|
||||||
Phantom Warrior
|
Phantom Warrior
|
||||||
Phyrexian Arena
|
Phyrexian Arena
|
||||||
Phyrexian Hulk
|
Phyrexian Hulk
|
||||||
|
Pierce Strider
|
||||||
Pillarfield Ox
|
Pillarfield Ox
|
||||||
Pillory of the Sleepless
|
Pillory of the Sleepless
|
||||||
Pincher Beetles
|
Pincher Beetles
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
package magic;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.SortedSet;
|
||||||
|
import java.util.TreeSet;
|
||||||
|
|
||||||
|
import magic.data.CardDefinitions;
|
||||||
|
import magic.model.MagicCardDefinition;
|
||||||
|
|
||||||
|
public class MagicTools {
|
||||||
|
|
||||||
|
private static void listAllCards() throws IOException {
|
||||||
|
|
||||||
|
CardDefinitions.getInstance().loadCardDefinitions();
|
||||||
|
|
||||||
|
final SortedSet<String> names = new TreeSet<String>();
|
||||||
|
for (final MagicCardDefinition cardDefinition : CardDefinitions.getInstance().getCards()) {
|
||||||
|
|
||||||
|
if (!cardDefinition.isToken()) {
|
||||||
|
names.add(cardDefinition.getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (final String name : names) {
|
||||||
|
|
||||||
|
System.out.println(name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(final String args[]) throws Exception {
|
||||||
|
|
||||||
|
listAllCards();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue