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) 617 B
import { Item } from '../Item'; const ancientDHideBodyData = { id: 12492, name: "Ancient d'hide body", iconUrl: "/assets/items/ancient-dhide-body.png", examine: "Ancient blessed dragonhide body armour.", value: 13000, highAlch: 7800, lowAlch: 5200, weight: 6, 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_d'hide_body", }; export const AncientDHideBody = Item.fromJson(ancientDHideBodyData);