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) 569 B
import { Item } from '../Item'; const redCavalierData = { id: 12323, name: "Red cavalier", iconUrl: "/assets/items/red-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/Red_cavalier", }; export const RedCavalier = Item.fromJson(redCavalierData);