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) 576 B
import { Item } from '../Item'; const capeOfSkullsData = { id: 10398, name: 'Cape of skulls', iconUrl: '/assets/items/10398.png', examine: 'A black cape with a skull design.', value: 936, highAlch: 561, lowAlch: 374, weight: 0.0, members: true, tradeable: false, equipable: true, releaseDate: '2003-11-05', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Cape_of_skulls', }; export const CapeOfSkulls = Item.fromJson(capeOfSkullsData);