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) 546 B
import { Item } from '../Item'; const coinsData = { destroy: 'Drop', equipable: false, examine: 'Lovely money!', highAlch: 0, id: 995, lowAlch: 0, members: false, meleeStrength: 0, name: 'Coins', iconUrl: '/assets/items/995.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Coins', prayer: 0, questItem: false, releaseDate: '4 January 2001', stackable: true, tradeable: true, value: 1, weight: 0, }; export const Coins = Item.fromJson(coinsData);