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) • 628 B
JavaScript
import { Item } from '../Item';
const ancientKiteshieldData = {
id: 12468,
name: "Ancient kiteshield",
iconUrl: "/assets/items/12468.png",
examine: "Rune kiteshield in the colours of a long-forgotten god.",
value: 54400,
highAlch: 32640,
lowAlch: 21760,
weight: 5.443,
members: false,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Ancient_kiteshield",
};
export const AncientKiteshield = Item.fromJson(ancientKiteshieldData);