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) • 692 B
JavaScript
import { Item } from '../Item';
const rangerBootsData = {
id: 7656,
name: 'Ranger boots',
iconUrl: '/assets/items/7656.png',
examine: 'Boots popular with archers.',
value: 40000,
highAlch: 8000,
lowAlch: 5333,
weight: 0.454,
members: true,
tradeable: true,
equipable: true,
releaseDate: '2006-12-05',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Ranger_boots',
attackRanged: 8,
attackMagic: -5,
defenceRanged: 10,
defenceStab: 2,
defenceSlash: 3,
defenceMagic: 5,
};
export const RangerBoots = Item.fromJson(rangerBootsData);