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

24 lines (23 loc) 620 B
import { Item } from '../Item'; const crystalKeyData = { destroy: 'Drop', equipable: false, examine: 'A glittering key made from crystal.', highAlch: 11400, id: 989, lowAlch: 7600, members: true, meleeStrength: 0, name: 'Crystal key', iconUrl: '/assets/items/crystal-key.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Crystal_key', prayer: 0, questItem: false, releaseDate: '24 September 2001', stackable: false, tradeable: true, value: 19000, weight: 0.01, }; export const CrystalKey = Item.fromJson(crystalKeyData);