30 lines
710 B
JavaScript
30 lines
710 B
JavaScript
const Warframe = require('./Warframe')
|
|
const Primary = require('./Primary')
|
|
// const Secondary = require('./Secondary')
|
|
|
|
const warframes = [
|
|
'ash', 'atlas', 'banshee', 'chroma', 'ember',
|
|
'equinox', 'frost', 'gara', 'harrow', 'hydroid',
|
|
'inaros', 'ivara', 'limbo', 'loki', 'mag',
|
|
'mesa', 'mirage', 'nekros', 'nezha', 'nidus',
|
|
'nova', 'nyx', 'oberon', 'octavia', 'rhino',
|
|
'saryn', 'titania', 'trinity', 'valkyr', 'vauban',
|
|
'volt', 'wukong', 'zephyr'
|
|
]
|
|
|
|
const primaries = [
|
|
'astilla', 'baza', 'boar', 'boltor', 'braton'
|
|
]
|
|
|
|
const items = []
|
|
|
|
warframes.forEach((name) => {
|
|
items.push(new Warframe(name))
|
|
})
|
|
|
|
primaries.forEach((name) => {
|
|
items.push(new Primary(name))
|
|
})
|
|
|
|
module.exports = items
|