Output to file
This commit is contained in:
@@ -1,6 +1,29 @@
|
||||
const Warframe = require('./Warframe')
|
||||
const Primary = require('./Primary')
|
||||
// const Secondary = require('./Secondary')
|
||||
|
||||
module.exports = [
|
||||
new Warframe('ash'),
|
||||
new Warframe('atlas')
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user