osrs-tools
Version:
A JavaScript package to provide JSON data for all current Old School RuneScape quests. This package aims to help junior software developers create tools related to Old School RuneScape. It's a work in progress, and issues should be reported to jamescer@ha
31 lines (30 loc) • 828 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SlayerUnlock = exports.SlayerReward = exports.SlayerExtend = exports.SlayerBuy = void 0;
class SlayerUnlock {
constructor({ cost, description, name, }) {
this.name = name;
this.cost = cost;
this.description = description;
}
}
exports.SlayerUnlock = SlayerUnlock;
class SlayerExtend {
constructor({ cost, name, notes, }) {
this.name = name;
this.cost = cost;
this.notes = notes;
}
}
exports.SlayerExtend = SlayerExtend;
class SlayerBuy {
constructor({ item, notes, priceSoldAt, }) {
this.item = item;
this.priceSoldAt = priceSoldAt;
this.notes = notes;
}
}
exports.SlayerBuy = SlayerBuy;
class SlayerReward {
}
exports.SlayerReward = SlayerReward;