osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
42 lines (41 loc) • 910 B
JavaScript
class SlayerUnlock {
name;
cost;
description;
constructor({ cost, description, name }) {
this.name = name;
this.cost = cost;
this.description = description;
}
}
class SlayerExtend {
name;
cost;
notes;
constructor({ cost, name, notes }) {
this.name = name;
this.cost = cost;
this.notes = notes;
}
}
// Represents a slayer buy, an item purchase.
class SlayerBuy {
item;
priceSoldAt;
notes;
constructor({ item, notes, priceSoldAt }) {
this.item = item;
this.priceSoldAt = priceSoldAt;
this.notes = notes;
}
}
class SlayerReward {
}
export const SlayerRewards = [
new SlayerUnlock({
cost: 3000000,
description: 'Unlocks the Abyssal Sire as a slayer task.',
name: 'Abyssal Sire',
}),
];
export { SlayerBuy, SlayerExtend, SlayerReward, SlayerUnlock };