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) 553 B
import { Item } from '../Item'; const battlestaffData = { id: 1391, name: "Battlestaff", iconUrl: '/assets/items/1391.png', examine: "It's a slightly magical stick.", value: 7000, highAlch: 4200, lowAlch: 2800, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Battlestaff', }; export const Battlestaff = Item.fromJson(battlestaffData);