osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
34 lines (33 loc) • 815 B
JavaScript
import { Item } from '../Item';
const lunarStaffData = {
attackCrush: 5,
attackMagic: 8,
attackRanged: 0,
attackSlash: -1,
attackStab: 2,
defenceCrush: 2,
defenceMagic: 8,
defenceRanged: 0,
defenceSlash: 3,
defenceStab: 2,
destroy: 'Drop',
equipable: true,
examine: 'A staff made on the Lunar Isle.',
highAlch: 18000,
id: 13431,
lowAlch: 12000,
members: true,
meleeStrength: 5,
name: 'Lunar staff',
iconUrl: '/assets/items/13431.png',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Lunar_staff',
prayer: 1,
questItem: false,
releaseDate: '24 July 2007',
stackable: false,
tradeable: false,
value: 30000,
weight: 2.267,
};
export const LunarStaff = Item.fromJson(lunarStaffData);