Files
splinter/client/src/store/TierThreeDeck.js
2022-04-16 12:35:08 -05:00

115 lines
2.0 KiB
JavaScript

export const TierThreeDeck = [
// TIER THREE CARDS
// total: 20
// cat 1: 7 of a kind
{
tier: 3,
points: 5,
isWorth: 'cedar',
cost: {
cedar: 7,
birch: 0,
walnut: 0,
mahogany: 0,
cherry: 0
}
},
{
tier: 3,
points: 5,
isWorth: 'birch',
cost: {
cedar: 0,
birch: 7,
walnut: 0,
mahogany: 0,
cherry: 0
}
},
{
tier: 3,
points: 5,
isWorth: 'walnut',
cost: {
cedar: 0,
birch: 0,
walnut: 7,
mahogany: 0,
cherry: 0
}
},
{
tier: 3,
points: 5,
isWorth: 'mahogany',
cost: {
cedar: 0,
birch: 0,
walnut: 0,
mahogany: 7,
cherry: 0
}
},
{
tier: 3,
points: 5,
isWorth: 'cherry',
cost: {
cedar: 0,
birch: 0,
walnut: 0,
mahogany: 0,
cherry: 7
}
},
// cat 2: [7,3] cost cards
{
tier: 2,
points: 5,
isWorth: 'cedar',
cost: {
cedar: 7,
birch: 3,
walnut: 0,
mahogany: 0,
cherry: 0
}
},
{
tier: 2,
points: 5,
isWorth: 'birch',
cost: {
cedar: 0,
birch: 7,
walnut: 3,
mahogany: 0,
cherry: 0
}
},
{
tier: 2,
points: 5,
isWorth: 'walnut',
cost: {
cedar: 0,
birch: 0,
walnut: 7,
mahogany: 3,
cherry: 0
}
},
{
tier: 2,
points: 5,
isWorth: 'mahogany',
cost: {
cedar: 0,
birch: 0,
walnut: 0,
mahogany: 7,
cherry: 3
}
},
]