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) 870 B
import { Item } from '../Item'; const antidragonShieldData = { attackCrush: 0, attackMagic: -3, attackRanged: -3, attackSlash: 0, attackStab: 0, defenceCrush: 22, defenceMagic: 0, defenceRanged: 22, defenceSlash: 25, defenceStab: 20, destroy: 'Drop', equipable: true, examine: 'A shield that can deflect dragon breath.', highAlch: 60, id: 1540, lowAlch: 40, members: false, meleeStrength: 0, name: 'Anti-dragon shield', iconUrl: '/assets/items/anti-dragon-shield.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Anti-dragon_shield', prayer: 0, questItem: false, releaseDate: '24 September 2001', stackable: false, tradeable: true, value: 100, weight: 2.267, }; export const AntiDragonShield = Item.fromJson(antidragonShieldData);