http://wololo.net/files/wagic/cards.txt
Some of these cards are not supported yet in Wagic 0.2.1, but all of them should be supported in next release.
To easily get the list of the cards that you can use in your own version, use the following script in linux or cygwin :
Code: Select all
#!/bin/sh
cd /cygdrive/c/pspsdk/programming/wth/projects/mtg/bin/Res/sets
for folder in `ls`; do
if [ -e $folder/_cards.dat ]
then
echo "============="
count=`cat $folder/_cards.dat | grep name |wc -l`
echo $folder $count
echo "=============="
cat $folder/_cards.dat | grep "name=" | cut -f 2 -d =
fi
done