Files
warframe-center/gather/src/items/Primary.js
2022-03-12 03:35:35 +03:00

12 lines
206 B
JavaScript

const Item = require('./Item')
module.exports = class Primary extends Item {
constructor (name) {
super(name)
this.addPart('barrel')
this.addPart('receiver')
this.addPart('stock')
}
}