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) 598 B
import { Item } from "../Item"; const ThirdAgeAxeData = { id: 20011, name: "3rd age axe", iconUrl: "/assets/items/3rd-age-axe.png", examine: "A beautifully crafted axe, shaped by ancient smiths.", value: 55000, highAlch: 33000, lowAlch: 22000, weight: 1.36, members: true, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Wield", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/3rd_age_axe", }; export const ThirdAgeAxe = Item.fromJson(ThirdAgeAxeData);