Files
warframe-center/output/OutputItem.js
Anatoly 146fba6bba
All checks were successful
continuous-integration/drone/push Build is passing
Таблица вместо списка
2022-02-18 15:18:15 +03:00

11 lines
252 B
JavaScript

module.exports = class OutputItem {
constructor (name, parts, set) {
this.name = name + ' prime'
this.parts = parts
this.set = set
this.link = `https://warframe.market/items/${name}_prime_set`
this.difference = set - parts
}
}