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 darkCavalierData = { id: 2641, name: "Dark cavalier", iconUrl: "/assets/items/2641.png", examine: "All for one and one for all!", value: 200, highAlch: 120, lowAlch: 80, weight: 0.001, members: true, tradeable: true, equipable: true, releaseDate: "2004-05-05", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Dark_cavalier", }; export const DarkCavalier = Item.fromJson(darkCavalierData);