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) • 608 B
JavaScript
import { Item } from '../Item';
const rewardCasketEasyData = {
id: 13262,
name: 'Reward casket (easy)',
iconUrl: '/assets/items/reward-casket-easy.png',
examine: 'Cross your fingers and your toes.',
value: 50,
highAlch: 30,
lowAlch: 20,
weight: 0,
members: true,
tradeable: false,
equipable: false,
releaseDate: '2016-07-28',
destroy: 'Drop',
questItem: false,
stackable: true,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Reward_casket_(easy)',
};
export const RewardCasketEasy = Item.fromJson(rewardCasketEasyData);