Output to file

This commit is contained in:
2022-02-16 00:17:19 +03:00
parent d47a4c634e
commit d5d5e5d59c
9 changed files with 82 additions and 15 deletions

11
items/Secondary.js Normal file
View File

@@ -0,0 +1,11 @@
const Item = require('./Item')
module.exports = class Secondary extends Item {
constructor (name) {
super(name)
this.addPart('barrel', 2)
this.addPart('receiver', 2)
this.addPart('link')
}
}