Initial commit

This commit is contained in:
2022-02-15 22:07:56 +03:00
commit 58530bf433
8 changed files with 1114 additions and 0 deletions

12
items/Item.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = class Item {
constructor(name) {
this.name = name
this.url = `${this.name}_prime_set`
this.parts = []
this.addPart('blueprint')
}
addPart(part) {
this.parts.push({ part, url: `${this.name}_prime_${part}` })
}
}