osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
39 lines • 1.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SlayerUnlock = exports.SlayerReward = exports.SlayerExtend = exports.SlayerBuy = exports.SlayerRewards = 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;
// Represents a slayer buy, an item purchase.
class SlayerBuy {
constructor({ item, notes, priceSoldAt }) {
this.item = item;
this.priceSoldAt = priceSoldAt;
this.notes = notes;
}
}
exports.SlayerBuy = SlayerBuy;
class SlayerReward {
}
exports.SlayerReward = SlayerReward;
exports.SlayerRewards = [
new SlayerUnlock({
name: 'Abyssal Sire',
cost: 3000000,
description: 'Unlocks the Abyssal Sire as a slayer task.',
}),
];
//# sourceMappingURL=SlayerReward.js.map