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) 566 B
import { Item } from '../Item'; const oldDemonMaskData = { id: 20029, name: "Old demon mask", iconUrl: "/assets/items/old-demon-mask.png", examine: "Lost in time.", value: 4000, highAlch: 2400, lowAlch: 1600, weight: 0.8, members: true, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Old_demon_mask", }; export const OldDemonMask = Item.fromJson(oldDemonMaskData);