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) 558 B
import { Item } from '../Item'; const highwaymanMaskData = { id: 2631, name: "Highwayman mask", iconUrl: '/assets/items/2631.png', examine: "Your money or your life!", value: 40, highAlch: 24, lowAlch: 16, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Highwayman_mask', }; export const HighwaymanMask = Item.fromJson(highwaymanMaskData);