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) • 632 B
JavaScript
import { Item } from '../Item';
const ThirdAgeVambracesData = {
id: 10336,
name: "3rd age vambraces",
iconUrl: "/assets/items/10336.png",
examine: "Fabulously ancient range protection crafted from white dragonhide.",
value: 50500,
highAlch: 30300,
lowAlch: 20200,
weight: 1,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2006-12-05",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/3rd_age_vambraces",
};
export const ThirdAgeVambraces = Item.fromJson(ThirdAgeVambracesData);