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) • 557 B
JavaScript
import { Item } from '../Item';
const piratesHatData = {
id: 2651,
name: "Pirate's hat",
iconUrl: '/assets/items/pirates-hat.png',
examine: 'Shiver me timbers!',
value: 180,
highAlch: 108,
lowAlch: 72,
weight: 0.001,
members: true,
tradeable: true,
equipable: true,
releaseDate: '2004-05-05',
destroy: 'Wear',
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Pirate%27s_hat',
};
export const PiratesHat = Item.fromJson(piratesHatData);