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) 671 B
import { Item } from '../Item'; const chargeDragonstoneJewelleryScrollData = { id: 20238, name: "Charge dragonstone jewellery scroll", iconUrl: '/assets/items/20238.png', examine: "A scroll for charging dragonstone jewellery.", value: 1, highAlch: 1, lowAlch: 1, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Charge_dragonstone_jewellery_scroll', }; export const ChargeDragonstoneJewelleryScroll = Item.fromJson(chargeDragonstoneJewelleryScrollData);