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) • 539 B
JavaScript
import { Item } from '../Item';
const topHatData = {
id: 12432,
name: "Top hat",
iconUrl: "/assets/items/top-hat.png",
examine: "Aint no rabbits in this hat.",
value: 1800,
highAlch: 1080,
lowAlch: 720,
weight: 0,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Top_hat",
};
export const TopHat = Item.fromJson(topHatData);