File structure

This commit is contained in:
2022-03-12 03:35:35 +03:00
parent dcb3c2102e
commit 1e397af280
41 changed files with 1314 additions and 223 deletions

View File

@@ -0,0 +1,10 @@
module.exports = class ListingSet {
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
}
}