Files
warframe-center/items/index.js
Anatoly 7fd5f8dfe6
All checks were successful
continuous-integration/drone/push Build is passing
Ой, забыл раскоментить
2022-02-18 02:51:13 +03:00

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