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) • 540 B
JavaScript
import { Item } from '../Item';
const holySandalsData = {
id: 12598,
name: "Holy sandals",
iconUrl: '/assets/items/12598.png',
examine: "Holy footwear!",
value: 2000,
highAlch: 1200,
lowAlch: 800,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Holy_sandals',
};
export const HolySandals = Item.fromJson(holySandalsData);