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) 728 B
import { Item } from '../Item'; const gildedLegsData = { id: 3831, name: 'Gilded legs', iconUrl: '/assets/items/gilded-legs.png', examine: 'Rune platelegs with gold plate.', value: 18000, highAlch: 18000, lowAlch: 12000, weight: 6.804, 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_legs', attackMagic: -20, attackRanged: -10, defenceStab: 50, defenceSlash: 48, defenceCrush: 43, defenceMagic: -4, defenceRanged: 50, }; export const GildedLegs = Item.fromJson(gildedLegsData);