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) • 544 B
JavaScript
import { Item } from '../Item';
const wizardBootsData = {
id: 2579,
name: "Wizard boots",
iconUrl: '/assets/items/2579.png',
examine: "Slightly magical boots.",
value: 200,
highAlch: 120,
lowAlch: 80,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Wizard_boots',
};
export const WizardBoots = Item.fromJson(wizardBootsData);