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

76 lines
1.3 KiB
JavaScript

const allCards = [
{
tier: 1,
points: 0,
isWorth: 'cedar',
cost: {
cedar: 3,
aspen: 0,
walnut: 0,
mahogany: 0,
cherry: 0
}
},
{
tier: 1,
points: 0,
isWorth: 'aspen',
cost: {
cedar: 0,
aspen: 3,
walnut: 0,
mahogany: 0,
cherry: 0
}
},
{
tier: 1,
points: 0,
isWorth: 'walnut',
cost: {
cedar: 0,
aspen: 0,
walnut: 3,
mahogany: 0,
cherry: 0
}
},
{
tier: 1,
points: 0,
isWorth: 'mahogany',
cost: {
cedar: 0,
aspen: 0,
walnut: 0,
mahogany: 3,
cherry: 0
}
},
{
tier: 1,
points: 0,
isWorth: 'cherry',
cost: {
cedar: 0,
aspen: 0,
walnut: 0,
mahogany: 0,
cherry: 3
}
},
{
tier: 1,
points: 0,
isWorth: 'cedar',
cost: {
cedar: 3,
aspen: 0,
walnut: 0,
mahogany: 0,
cherry: 0
}
}
]
module.exports = allCards;