Files
warframe-center/items/index.js
Anatoly 1c7d4cc74e
Some checks failed
continuous-integration/drone/push Build is failing
Базовый handlebars
2022-02-18 02:47:00 +03:00

30 lines
719 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