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) • 550 B
JavaScript
import { Item } from '../Item';
const yewLongbowData = {
id: 855,
name: "Yew longbow",
iconUrl: '/assets/items/855.png',
examine: "A nice sturdy bow made out of yew.",
value: 1280,
highAlch: 768,
lowAlch: 512,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Yew_longbow',
};
export const YewLongbow = Item.fromJson(yewLongbowData);