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) 580 B
import { Item } from '../Item'; const saradominMitreData = { id: 10452, name: "Saradomin mitre", iconUrl: "/assets/items/saradomin-mitre.png", examine: "A Saradomin mitre.", value: 5000, highAlch: 3000, lowAlch: 2000, weight: 0.3, members: true, tradeable: true, equipable: true, releaseDate: "2006-12-05", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Saradomin_mitre", }; export const SaradominMitre = Item.fromJson(saradominMitreData);