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) 587 B
import { Item } from '../Item'; const ancientBracersData = { id: 12490, name: "Ancient bracers", iconUrl: "/assets/items/12490.png", examine: "Ancient blessed dragonhide vambraces.", value: 4000, highAlch: 2400, lowAlch: 1600, weight: 1, members: true, tradeable: true, equipable: true, releaseDate: "2014-06-12", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Ancient_bracers", }; export const AncientBracers = Item.fromJson(ancientBracersData);