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) • 586 B
JavaScript
import { Item } from '../Item';
const royalGownBottomData = {
id: 12395,
name: "Royal gown bottom",
iconUrl: "/assets/items/12395.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_bottom",
};
export const RoyalGownBottom = Item.fromJson(royalGownBottomData);