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) 570 B
import { Item } from '../Item'; const magicCompBowData = { id: 10284, name: "Magic comp bow", iconUrl: '/assets/items/10284.png', examine: "A powerful bow made from magic wood.", value: 2500, highAlch: 1500, lowAlch: 1000, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Magic_comp_bow', }; export const MagicCompBow = Item.fromJson(magicCompBowData);