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) • 567 B
JavaScript
import { Item } from '../Item';
const navyCavalierData = {
id: 12325,
name: "Navy cavalier",
iconUrl: "/assets/items/12325.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);