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) 622 B
import { Item } from '../Item'; const catData = { destroy: 'Your cat will run away if released. You can get another kitten from Gertrude.', equipable: false, examine: 'A well loved pet.', highAlch: 60, id: 1561, lowAlch: 40, members: true, meleeStrength: 0, name: 'Cat', iconUrl: '/assets/items/cat.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Cat', prayer: 0, questItem: false, releaseDate: '24 September 2001', stackable: false, tradeable: false, value: 100, weight: 1, }; export const Cat = Item.fromJson(catData);