cardValues = ({
"copper": {value: 1, cost: 0, victory: 0, kind: "treasure"},
"silver": {value: 2, cost: 3, victory: 0, kind: "treasure"},
"gold": {value: 3, cost: 6, victory: 0, kind: "treasure"},
"estate": {value: 0, cost: 0, victory: 1, kind: "victory"},
"duchy": {value: 0, cost: 5, victory: 3, kind: "victory"},
"province": {value: 0, cost: 8, victory: 6, kind: "victory"},
"curse": {value: 0, cost: 0, victory: -1, kind: "victory"},
"smithy": {value: 0, cost: 4, victory: 0, kind: "action"}
})