summaryrefslogtreecommitdiff
path: root/shuffle/card.go
diff options
context:
space:
mode:
authorMax2018-03-07 23:35:48 +0100
committerMax2018-03-07 23:35:48 +0100
commit543f556fc2ae52f4f47f6241fa4fab33bec8d9fc (patch)
tree380a0ff8e6006ff2d28a77796cdc071d21a940e9 /shuffle/card.go
downloaddominion_cards-543f556fc2ae52f4f47f6241fa4fab33bec8d9fc.tar.gz
Initial commit.
Diffstat (limited to 'shuffle/card.go')
-rw-r--r--shuffle/card.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/shuffle/card.go b/shuffle/card.go
new file mode 100644
index 0000000..f7e8979
--- /dev/null
+++ b/shuffle/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
+}