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) 575 B
import { Item } from '../Item'; const navyCavalierData = { id: 12325, name: "Navy cavalier", iconUrl: "/assets/items/navy-cavalier.png", examine: "All for one and one for all!", value: 200, highAlch: 120, lowAlch: 80, weight: 0.08, members: true, tradeable: true, equipable: true, releaseDate: "2014-06-12", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Navy_cavalier", }; export const NavyCavalier = Item.fromJson(navyCavalierData);