osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
28 lines (27 loc) • 684 B
JavaScript
import { Item } from '../Item';
const dragonBootsData = {
id: 11734,
name: 'Dragon boots',
iconUrl: '/assets/items/11734.png',
examine: 'A pair of dragon boots.',
value: 60000,
highAlch: 36000,
lowAlch: 24000,
weight: 1.2,
members: true,
tradeable: true,
equipable: true,
releaseDate: '2004-11-17',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Dragon_boots',
defenceStab: 5,
defenceSlash: 5,
defenceCrush: 5,
defenceRanged: 3,
defenceMagic: 0,
prayer: 0,
};
export const DragonBoots = Item.fromJson(dragonBootsData);