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) 600 B
import { Item } from '../Item'; const goldenChefsHatData = { id: 13213, name: 'Golden chef\'s hat', iconUrl: '/assets/items/golden-chefs-hat.png', examine: 'What a perfectly reasonable hat.', value: 366692, highAlch: 1, lowAlch: 0, weight: 0.907, members: true, tradeable: true, equipable: true, releaseDate: '2016-07-06', destroy: 'Drop', questItem: false, stackable: false, noted: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Golden_chef%27s_hat', }; export const GoldenChefsHat = Item.fromJson(goldenChefsHatData);