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) 581 B
import { Item } from '../Item'; const adamantPickaxeData = { id: 1271, name: "Adamant pickaxe", iconUrl: "/assets/items/adamant-pickaxe.png", examine: "Used for mining.", value: 3200, highAlch: 1920, lowAlch: 1280, weight: 2.721, members: false, tradeable: true, equipable: true, releaseDate: "2003-05-27", destroy: "Wield", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Adamant_pickaxe", }; export const AdamantPickaxe = Item.fromJson(adamantPickaxeData);