Files
splinter/client/src/store/TierTwoDeck.js

54 lines
969 B
JavaScript

export const TierTwoDeck = [
// TIER TWO CARDS
// total: 30
// cat 1: [5,3] cost cards
{
tier: 2,
points: 3,
isWorth: 'cedar',
cost: {
cedar: 5,
aspen: 3,
walnut: 0,
mahogany: 0,
cherry: 0
}
},
{
tier: 2,
points: 3,
isWorth: 'aspen',
cost: {
cedar: 0,
aspen: 5,
walnut: 3,
mahogany: 0,
cherry: 0
}
},
{
tier: 2,
points: 3,
isWorth: 'walnut',
cost: {
cedar: 0,
aspen: 0,
walnut: 5,
mahogany: 3,
cherry: 0
}
},
{
tier: 2,
points: 3,
isWorth: 'mahogany',
cost: {
cedar: 0,
aspen: 0,
walnut: 0,
mahogany: 5,
cherry: 3
}
},
]