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

36 lines (35 loc) 865 B
import { Item } from '../Item'; const blackLongswordData = { id: 564, name: 'Black longsword', iconUrl: '/assets/items/564.png', examine: 'A longsword made of black metal.', value: 392, highAlch: 235, lowAlch: 156, weight: 1.814, members: true, tradeable: true, equipable: true, releaseDate: '2001-12-10', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Black_longsword', attackStab: 18, attackSlash: 32, attackCrush: -5, attackRanged: 0, attackMagic: -5, defenceStab: 0, defenceSlash: 0, defenceCrush: 0, defenceRanged: 0, defenceMagic: 0, strength: 25, rangedStrength: 0, magicDamage: 0, prayer: 0, }; export const BlackLongsword = Item.fromJson(blackLongswordData);