albion
Version:
NodeJS module to interact with the Albion Online API
13 lines (10 loc) • 354 B
JavaScript
const FameType = require('./FameType');
class FameTypeExtended extends FameType {
constructor(total, royal, outlands, avalon, hellgate, corrupted, mists = 0) {
super(total, royal, outlands, avalon);
this.hellgate = hellgate;
this.corrupted = corrupted;
this.mists = mists;
}
}
module.exports = FameTypeExtended;