UNPKG

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) 595 B
import { Item } from '../Item'; const rewardCasketHardData = { id: 13264, name: 'Reward casket (hard)', iconUrl: '/assets/items/13264.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_(hard)', }; export const RewardCasketHard = Item.fromJson(rewardCasketHardData);