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) • 558 B
JavaScript
import { Item } from '../Item';
const giantBootData = {
id: 23252,
name: "Giant boot",
iconUrl: "/assets/items/23252.png",
examine: "Worn on head. Warning: Smelly.",
value: 14000,
highAlch: 8400,
lowAlch: 5600,
weight: 0.5,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2019-04-11",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Giant_boot",
};
export const GiantBoot = Item.fromJson(giantBootData);