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) 597 B
import { Item } from '../Item'; const dragonBattleaxeData = { id: 1377, name: "Dragon battleaxe", iconUrl: "/assets/items/dragon-battleaxe.png", examine: "A vicious looking axe.", value: 200000, highAlch: 120000, lowAlch: 80000, weight: 2.721, members: true, tradeable: true, equipable: true, releaseDate: "2002-02-27", destroy: "Wield", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Dragon_battleaxe", }; export const DragonBattleaxe = Item.fromJson(dragonBattleaxeData);