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

22 lines (21 loc) 554 B
import { Item } from '../Item'; const magicLongbowData = { id: 859, name: "Magic longbow", iconUrl: '/assets/items/859.png', examine: "A nice sturdy magical bow.", value: 2560, highAlch: 1536, lowAlch: 1024, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Magic_longbow', }; export const MagicLongbow = Item.fromJson(magicLongbowData);