diff options
Diffstat (limited to 'shuffle/card.go')
| -rw-r--r-- | shuffle/card.go | 32 |
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 +} |
