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) • 568 B
JavaScript
import { Item } from '../Item';
const royalCrownData = {
id: 12397,
name: "Royal crown",
iconUrl: "/assets/items/royal-crown.png",
examine: "Who said I'd never be royal?",
value: 6000,
highAlch: 3600,
lowAlch: 2400,
weight: 0.453,
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_crown",
};
export const RoyalCrown = Item.fromJson(royalCrownData);