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) • 590 B
JavaScript
import { Item } from '../Item';
const steelPickaxeData = {
id: 1539,
name: 'Steel pickaxe',
iconUrl: '/assets/items/steel-pickaxe.png',
examine: 'A steel pickaxe is a basic tool for mining.',
value: 325,
highAlch: 195,
lowAlch: 130,
weight: 13,
members: false,
tradeable: true,
equipable: true,
releaseDate: '2001-12-10',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Steel_pickaxe',
};
export const SteelPickaxe = Item.fromJson(steelPickaxeData);