osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
22 lines (21 loc) • 620 B
JavaScript
import { Item } from '../Item';
const rewardCasketMasterData = {
id: 13266,
name: 'Reward casket (master)',
iconUrl: '/assets/items/reward-casket-master.png',
examine: 'Cross your fingers and your toes.',
value: 50,
highAlch: 30,
lowAlch: 20,
weight: 0,
members: true,
tradeable: false,
equipable: false,
releaseDate: '2019-08-01',
destroy: 'Drop',
questItem: false,
stackable: true,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Reward_casket_(master)',
};
export const RewardCasketMaster = Item.fromJson(rewardCasketMasterData);