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

29 lines (28 loc) 753 B
import { Item } from '../Item'; const gildedFullHelmData = { id: 3827, name: 'Gilded full helm', iconUrl: '/assets/items/gilded-full-helm.png', examine: 'Rune full helm with gold plate.', value: 21000, highAlch: 21000, lowAlch: 14000, weight: 2.268, members: true, tradeable: true, equipable: true, releaseDate: '2004-10-26', destroy: 'Drop', questItem: false, stackable: false, noted: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Gilded_full_helm', attackMagic: -8, attackRanged: -4, defenceStab: 20, defenceSlash: 20, defenceCrush: 18, defenceMagic: -1, defenceRanged: 20, }; export const GildedFullHelm = Item.fromJson(gildedFullHelmData);