summaryrefslogtreecommitdiff
path: root/crawler/card.go
diff options
context:
space:
mode:
Diffstat (limited to 'crawler/card.go')
-rw-r--r--crawler/card.go32
1 files changed, 32 insertions, 0 deletions
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
+}