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) 532 B
import { Item } from '../Item'; const tinderboxData = { equipable: false, examine: 'Useful for lighting fires.', id: 590, members: false, name: 'Tinderbox', iconUrl: '/assets/items/tinderbox.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Tinderbox', questItem: false, stackable: false, tradeable: true, value: 1, weight: 0.1, highAlch: 0, lowAlch: 0, releaseDate: '', destroy: '' }; export const Tinderbox = Item.fromJson(tinderboxData);