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

24 lines (23 loc) 612 B
import { Item } from '../Item'; const bloodRuneData = { destroy: 'Drop', equipable: false, examine: 'Used for high level necromancy spells.', highAlch: 240, id: 565, lowAlch: 160, members: true, meleeStrength: 0, name: 'Blood rune', iconUrl: '/assets/items/blood-rune.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Blood_rune', prayer: 0, questItem: false, releaseDate: '24 September 2001', stackable: true, tradeable: true, value: 400, weight: 0.002, }; export const BloodRune = Item.fromJson(bloodRuneData);