From 543f556fc2ae52f4f47f6241fa4fab33bec8d9fc Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 7 Mar 2018 23:35:48 +0100 Subject: Initial commit. --- crawler/card.go | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 crawler/card.go (limited to 'crawler/card.go') diff --git a/crawler/card.go b/crawler/card.go new file mode 100644 index 0000000..f7e8979 --- /dev/null +++ b/crawler/card.go @@ -0,0 +1,32 @@ +package main + +type Card struct { + Name string + Name_de string + URL string + Set string + Set_de string + Set_Image string + Type string + text string + //Text_de string + Actions string + Cards string + Buy string + Coin string + Trash string + Junk string + Gain string + Image string + IsEdition1 bool + IsEdition2 bool + IsKingdom bool + Cost Cost + //Cost string +} + +type Cost struct { + Coin int + Potion int + Debt int +} -- cgit v1.2.3