osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
23 lines (22 loc) • 615 B
JavaScript
import { Item } from '../Item';
const willowCompBowData = {
id: 4675,
name: 'Willow comp bow',
iconUrl: '/assets/items/willow-comp-bow.png',
examine: 'A powerful bow made from willow wood.',
value: 300,
highAlch: 180,
lowAlch: 120,
weight: 1.8,
members: false,
tradeable: true,
equipable: true,
releaseDate: '2006-12-05',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Willow_comp_bow',
attackRanged: 22,
};
export const WillowCompBow = Item.fromJson(willowCompBowData);