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

34 lines (33 loc) 823 B
import { Item } from '../Item'; const moonclanHelmetData = { attackCrush: 0, attackMagic: 2, attackRanged: -3, attackSlash: 0, attackStab: 0, defenceCrush: 19, defenceMagic: 2, defenceRanged: 0, defenceSlash: 20, defenceStab: 21, destroy: 'Drop', equipable: true, examine: 'A helmet of the Moon Clan.', highAlch: 5400, id: 9097, lowAlch: 3600, members: true, meleeStrength: 0, name: 'Moonclan helm', iconUrl: '/assets/items/9097.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Moonclan_helm', prayer: 0, questItem: false, releaseDate: '24 July 2006', stackable: false, tradeable: true, value: 9000, weight: 2.267, }; export const MoonclanHelmet = Item.fromJson(moonclanHelmetData);