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) 618 B
import { Item } from '../Item'; const robeTopOfDarknessData = { id: 20131, name: "Robe top of darkness", iconUrl: "/assets/items/20131.png", examine: "A dark power is woven into this robe top.", value: 120000, highAlch: 72000, lowAlch: 48000, weight: 2.721, 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_top_of_darkness", }; export const RobeTopOfDarkness = Item.fromJson(robeTopOfDarknessData);