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) 590 B
import { Item } from '../Item'; const blueFirelighterData = { id: 7331, name: "Blue firelighter", iconUrl: "/assets/items/blue-firelighter.png", examine: "Makes firelighting a lot easier.", value: 15, highAlch: 9, lowAlch: 6, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: "2006-02-20", destroy: "Drop", questItem: false, stackable: true, noted: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Blue_firelighter", }; export const BlueFirelighter = Item.fromJson(blueFirelighterData);