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) • 546 B
JavaScript
import { Item } from '../Item';
const holyWrapsData = {
id: 19997,
name: "Holy wraps",
iconUrl: "/assets/items/holy-wraps.png",
examine: "Holy handwear!",
value: 9600,
highAlch: 5760,
lowAlch: 3840,
weight: 0.5,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2016-07-06",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Holy_wraps",
};
export const HolyWraps = Item.fromJson(holyWrapsData);