summaryrefslogtreecommitdiff
path: root/crawler/card.go
blob: ca61b50bd6d6401df639f644857fdd5e1384d695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
	OnlyEdition1 bool
	OnlyEdition2 bool
	IsKingdom    bool
	Cost         Cost
	//Cost string
}

type Cost struct {
	Coin   int
	Potion int
	Debt   int
}