Page 1 of 1

Current usable HOU card images for Forge.

PostPosted: 25 Jun 2017, 15:19
by Shadowzeny
LQ's of what Hour of Devistation cards that are useable in Forge currently, will update as more become useable.
https://www.dropbox.com/sh/4or0gwp1zffestn/AAAnyF8Bv0G8xmEjinRNgdhfa?dl=0

Re: Current usable HOU card images for Forge.

PostPosted: 26 Jun 2017, 10:09
by Shadowzeny
Updated for the most current build and snapshot.

Re: Current usable HOU card images for Forge.

PostPosted: 26 Jun 2017, 21:00
by austinio7116
I created a quick and dirty shell script to get the cards as they are spoiled from scryfall - attached if anyone wants to use it. Depends on jq for json parsing.

Just run getCards.sh hou - where hou is a set name.

I can't attach a .sh so here is the script in full:

url=https://api.scryfall.com/cards/search?q=%2B%2Be%3A$1

mkdir $1

wget $url -O cards.json

cat cards.json | jq '.data[] | .image_uri' | sed "s/\"//g"> images.list
cat cards.json | jq '.data[] | .name' | sed "s/\"//g" > names.list

cardCount=`cat names.list | wc -l`

readarray names < names.list
readarray images < images.list

count=${#names[@]}

for i in `seq 0 $count`;
do
sleep 0.1
name=`echo "${names[$i]}" | sed "s% // %%g" | tr -d '\n'`
wget ${images[$i]} -O "./$1/${name}.full.jpg"

done

Re: Current usable HOU card images for Forge.

PostPosted: 27 Jun 2017, 10:22
by austinio7116
Or if you want high res cards from older sets:

url=https://api.scryfall.com/cards/search?q=%2B%2Be%3A$1

mkdir $1

wget $url -O cards.json

cat cards.json | jq '.data[].image_uris | .large' | sed "s/\"//g"> images.list
cat cards.json | jq '.data[] | .name' | sed "s/\"//g" > names.list

cardCount=`cat names.list | wc -l`

readarray names < names.list
readarray images < images.list

count=${#names[@]}

for i in `seq 0 $count`;
do
sleep 0.1
name=`echo "${names[$i]}" | sed "s% // %%g" | tr -d '\n'`
wget ${images[$i]} -O "./$1/${name}.full.jpg"

done

Re: Current usable HOU card images for Forge.

PostPosted: 29 Jun 2017, 22:07
by austinio7116
First attempt at token images for HOU. I've tested at lest the first eternalize one so hopefully they are all correctly named.

Re: Current usable HOU card images for Forge.

PostPosted: 30 Jun 2017, 04:00
by Shadowzeny
Have updated with current images with a slightly higher res than the parser script.

Re: Current usable HOU card images for Forge.

PostPosted: 30 Jun 2017, 23:17
by austinio7116
Where did you get the slightly better images from?

Re: Current usable HOU card images for Forge.

PostPosted: 01 Jul 2017, 12:34
by Shadowzeny
Updated again. Includes lands and what is currently usable in forge which at the time is 188 out of 199

Re: Current usable HOU card images for Forge.

PostPosted: 02 Jul 2017, 06:20
by Shadowzeny
Upadated again most current snapshot. Almost done.

Re: Current usable HOU card images for Forge.

PostPosted: 03 Jul 2017, 09:15
by austinio7116
Invocation images from scryfall

Re: Current usable HOU card images for Forge.

PostPosted: 04 Jul 2017, 15:32
by Hanmac
Token images are broken.
they are named jpg but they are png files

Re: Current usable HOU card images for Forge.

PostPosted: 09 Jul 2017, 20:30
by austinio7116
True - but Forge will load them fine.

Re: Current usable HOU card images for Forge.

PostPosted: 12 Jul 2017, 21:05
by vedder223
Where to copy set cards with special illustrations like invocations etc. without replacing and losing original art cards?

If do I have to create a folder, what's have to be the name for it?

Thanks in advance

Re: Current usable HOU card images for Forge.

PostPosted: 19 Jul 2017, 13:00
by austinio7116
For invocations it is MPS_AKH, for masterpieces it is MPS_KLD

Re: Current usable HOU card images for Forge.

PostPosted: 18 Aug 2017, 04:50
by kevlahnota
Try XLHQ images HOU only including tokens...