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) 580 B
import { Item } from '../Item'; const royalGownTopData = { id: 12393, name: "Royal gown top", iconUrl: "/assets/items/royal-gown-top.png", examine: "Feeling distinctly ornate.", value: 5000, highAlch: 3000, lowAlch: 2000, weight: 1.36, members: true, tradeable: true, equipable: true, releaseDate: "2014-06-12", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Royal_gown_top", }; export const RoyalGownTop = Item.fromJson(royalGownTopData);