It is currently 16 Apr 2024, 14:55
   
Text Size

Current usable HOU card images for Forge.

Moderators: timmermac, Blacksmith, KrazyTheFox, Agetian, friarsol, CCGHQ Admins

Current usable HOU card images for Forge.

Postby Shadowzeny » 25 Jun 2017, 15:19

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
Last edited by Shadowzeny on 30 Jun 2017, 04:00, edited 1 time in total.
Shadowzeny
 
Posts: 52
Joined: 04 Aug 2014, 06:36
Has thanked: 9 times
Been thanked: 7 times

Re: Current usable HOU card images for Forge.

Postby Shadowzeny » 26 Jun 2017, 10:09

Updated for the most current build and snapshot.
Shadowzeny
 
Posts: 52
Joined: 04 Aug 2014, 06:36
Has thanked: 9 times
Been thanked: 7 times

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 26 Jun 2017, 21:00

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
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 27 Jun 2017, 10:22

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
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 29 Jun 2017, 22:07

First attempt at token images for HOU. I've tested at lest the first eternalize one so hopefully they are all correctly named.
Attachments
latest.zip
(2.03 MiB) Downloaded 304 times
Last edited by austinio7116 on 03 Jul 2017, 07:52, edited 1 time in total.
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby Shadowzeny » 30 Jun 2017, 04:00

Have updated with current images with a slightly higher res than the parser script.
Shadowzeny
 
Posts: 52
Joined: 04 Aug 2014, 06:36
Has thanked: 9 times
Been thanked: 7 times

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 30 Jun 2017, 23:17

Where did you get the slightly better images from?
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby Shadowzeny » 01 Jul 2017, 12:34

Updated again. Includes lands and what is currently usable in forge which at the time is 188 out of 199
Shadowzeny
 
Posts: 52
Joined: 04 Aug 2014, 06:36
Has thanked: 9 times
Been thanked: 7 times

Re: Current usable HOU card images for Forge.

Postby Shadowzeny » 02 Jul 2017, 06:20

Upadated again most current snapshot. Almost done.
Shadowzeny
 
Posts: 52
Joined: 04 Aug 2014, 06:36
Has thanked: 9 times
Been thanked: 7 times

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 03 Jul 2017, 09:15

Invocation images from scryfall
Attachments
HOU_Invocations.zip
(2.03 MiB) Downloaded 270 times
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby Hanmac » 04 Jul 2017, 15:32

Token images are broken.
they are named jpg but they are png files
Hanmac
 
Posts: 954
Joined: 06 May 2013, 18:44
Has thanked: 229 times
Been thanked: 158 times

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 09 Jul 2017, 20:30

True - but Forge will load them fine.
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby vedder223 » 12 Jul 2017, 21:05

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
vedder223
 
Posts: 7
Joined: 02 Feb 2016, 18:50
Has thanked: 3 times
Been thanked: 0 time

Re: Current usable HOU card images for Forge.

Postby austinio7116 » 19 Jul 2017, 13:00

For invocations it is MPS_AKH, for masterpieces it is MPS_KLD
User avatar
austinio7116
 
Posts: 451
Joined: 10 Mar 2017, 11:59
Has thanked: 47 times
Been thanked: 169 times

Re: Current usable HOU card images for Forge.

Postby kevlahnota » 18 Aug 2017, 04:50

Try XLHQ images HOU only including tokens...
User avatar
kevlahnota
Programmer
 
Posts: 825
Joined: 19 Jul 2010, 17:45
Location: Philippines
Has thanked: 14 times
Been thanked: 264 times


Return to Forge

Who is online

Users browsing this forum: Baidu [Spider] and 76 guests


Who is online

In total there are 77 users online :: 1 registered, 0 hidden and 76 guests (based on users active over the past 10 minutes)
Most users ever online was 4143 on 23 Jan 2024, 08:21

Users browsing this forum: Baidu [Spider] and 76 guests

Login Form