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) • 562 B
JavaScript
import { Item } from '../Item';
const zamorakRobeTopData = {
id: 10460,
name: "Zamorak robe top",
iconUrl: '/assets/items/10460.png',
examine: "Zamorak Vestments.",
value: 7000,
highAlch: 4200,
lowAlch: 2800,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Zamorak_robe_top',
};
export const ZamorakRobeTop = Item.fromJson(zamorakRobeTopData);