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) • 564 B
JavaScript
import { Item } from '../Item';
const dragonCaneData = {
id: 12373,
name: "Dragon cane",
iconUrl: "/assets/items/dragon-cane.png",
examine: "An onyx topped cane.",
value: 30000,
highAlch: 18000,
lowAlch: 12000,
weight: 1.814,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wield",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Dragon_cane",
};
export const DragonCane = Item.fromJson(dragonCaneData);