bang/frontend/src/utils/expansions-map.js
2024-06-08 17:34:49 +01:00

47 lines
864 B
JavaScript

export const expansionsMap = {
'dodge_city': {
name: 'Dodge City',
icon: '🐄',
back: true,
expansion: 'dodge-city',
},
'fistful_of_cards': {
name: 'Fistful of Cards',
icon: '🎴',
back: true,
expansion: 'fistful-of-cards',
},
'high_noon': {
name: 'High Noon',
icon: '🔥',
back: true,
expansion: 'high-noon',
},
'gold_rush': {
name: 'Gold Rush',
icon: '🤑',
back: true,
expansion: 'gold-rush',
},
'the_valley_of_shadows': {
name: 'The Valley of Shadows',
icon: '👻',
back: true,
expansion: 'the-valley-of-shadows',
status: 'beta',
},
'wild_west_show': {
name: 'Wild West Show',
icon: '🎪',
back: true,
expansion: 'wild-west-show',
status: 'alpha',
},
'train_robbery': {
name: 'The Great Train Robbery',
icon: '🚂',
back: true,
expansion: 'train-roobbery',
status: 'alpha',
}
}