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) • 613 B
JavaScript
import { Item } from '../Item';
const bootsOfDarknessData = {
id: 20140,
name: "Boots of darkness",
iconUrl: "/assets/items/boots-of-darkness.png",
examine: "A dark power is woven into these boots.",
value: 10000,
highAlch: 6000,
lowAlch: 4000,
weight: 0.453,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2016-07-06",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Boots_of_darkness",
};
export const BootsOfDarkness = Item.fromJson(bootsOfDarknessData);