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) • 586 B
JavaScript
import { Item } from '../Item';
const climbingBootsGData = {
id: 23413,
name: "Climbing boots (g)",
iconUrl: '/assets/items/23413.png',
examine: "Boots made for climbing. Nice trim!",
value: 75000,
highAlch: 45000,
lowAlch: 30000,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Climbing_boots_(g)',
};
export const ClimbingBootsG = Item.fromJson(climbingBootsGData);