UNPKG

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) 635 B
import { Item } from '../Item'; const robeBottomOfDarknessData = { id: 20137, name: "Robe bottom of darkness", iconUrl: "/assets/items/20137.png", examine: "A dark power is woven into this robe bottom.", value: 80000, highAlch: 48000, lowAlch: 32000, weight: 1.814, members: true, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Robe_bottom_of_darkness", }; export const RobeBottomOfDarkness = Item.fromJson(robeBottomOfDarknessData);