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) 659 B
import { Item } from '../Item'; const holyBlessingData = { id: 20220, name: "Holy blessing", iconUrl: "/assets/items/holy-blessing.png", examine: "The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men.", value: 80, highAlch: 48, lowAlch: 32, weight: 0.51, members: true, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Equip", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Holy_blessing", }; export const HolyBlessing = Item.fromJson(holyBlessingData);