choose-a-deck
Version:
How to choose a Lord of the Rings TCG deck to play with
141 lines (140 loc) • 2.89 kB
JavaScript
module.exports = {
'Fellowship': {
'weight': 0.9,
'decks': [
{
'fellowship': 'Gandalf',
'shadow': 'Nazgul',
'owner': 'Richard'
},
{
'fellowship': 'Aragorn avoidance',
'shadow': 'Moria swarms and archer',
'owner': 'Richard'
},
{
'fellowship': 'Dwarf',
'shadow': 'Isengard',
'owner': 'Richard',
'notes': "Dad's deck"
},
{
'fellowship': 'Dwarf',
'shadow': 'Isengard and Sauron',
'owner': 'Richard',
'notes': 'Annoyance and mill deck'
},
{
'fellowship': 'Gandalf and non-unique fellowship',
'shadow': 'Isengard weather',
'owner': 'Richard'
},
{
'fellowship': 'Gandalf ally',
'shadow': 'Isengard',
'owner': 'Richard'
},
{
'fellowship': 'Mixed',
'shadow': 'Nazgul',
'owner': 'Heather'
}
// {
// 'fellowship': 'Boromir and hobbit',
// 'shadow': 'Moria swarms',
// 'owner': 'Richard'
// },
]
},
'Towers': {
'weight': 0.025,
'decks': [
{
'fellowship': 'Dwarf/elf',
'shadow': 'Sarumon Warg',
'owner': 'Richard'
},
{
'fellowship': 'Ent',
'shadow': 'Dunland',
'owner': 'Richard'
},
{
'fellowship': 'Gandalf',
'shadow': 'Dunland',
'owner': 'Richard'
},
{
'fellowship': 'Rohan and Gollum',
'shadow': 'Random',
'owner': 'Richard'
},
{
'fellowship': 'Rohan',
'shadow': 'Easterling',
'owner': 'Richard'
},
{
'fellowship': 'Gondor ranger',
'shadow': 'Machine Uruk',
'owner': 'Richard'
},
{
'fellowship': 'Rohan',
'shadow': 'Isengard',
'owner': 'Heather'
}
]
},
'Return': {
'weight': 0.025,
'decks': [
{
'fellowship': 'Rohan',
'shadow': 'Sauron',
'owner': 'Richard'
},
{
'fellowship': 'Rohan',
'shadow': 'Easterling',
'owner': 'Richard'
}
]
},
'Shadows': {
'weight': 0.025,
'decks': [
{
'fellowship': 'Elf',
'shadow': 'Uruk',
'owner': 'Richard'
},
{
'fellowship': 'Gondor',
'shadow': 'Uruk-hai',
'owner': 'Richard'
}
]
},
'Open': {
'weight': 0.025,
'decks': [
{
'fellowship': 'Aragorn Rohirrim',
'shadow': 'Men',
'owner': 'Richard'
},
{
'fellowship': 'Gondor',
'shadow': 'Nazgul',
'owner': 'Richard'
},
{
'fellowship': 'Gandalf',
'shadow': 'Orc',
'notes': 'Contains RotK and Shadows cards',
'owner': 'Richard'
}
]
}
}