12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
const Item = require('./Item')
|
|
|
|
module.exports = class Archwings extends Item {
|
|
constructor (name) {
|
|
super(name)
|
|
|
|
this.addPart('harness')
|
|
this.addPart('wings')
|
|
this.addPart('systems')
|
|
}
|
|
}
|