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) • 600 B
JavaScript
import { Item } from '../Item';
const ThirdAgeBowData = {
id: 12424,
name: "3rd age bow",
iconUrl: "/assets/items/3rd-age-bow.png",
examine: "A beautifully crafted bow carved by ancient archers.",
value: 150000,
highAlch: 90000,
lowAlch: 60000,
weight: 3.175,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wield",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/3rd_age_bow",
};
export const ThirdAgeBow = Item.fromJson(ThirdAgeBowData);