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
JavaScript
import { Item } from '../Item';
const magicShortbowData = {
id: 861,
name: "Magic shortbow",
iconUrl: '/assets/items/861.png',
examine: "Short and magical, but still effective.",
value: 1600,
highAlch: 960,
lowAlch: 640,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Magic_shortbow',
};
export const MagicShortbow = Item.fromJson(magicShortbowData);