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) 549 B
import { Item } from '../Item'; const waterRuneData = { equipable: false, examine: 'One of the four basic elemental runes.', id: 555, members: false, name: 'Water rune', iconUrl: '/assets/items/water-rune.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Water_rune', questItem: false, stackable: true, tradeable: true, value: 17, weight: 0.002, highAlch: 0, lowAlch: 0, releaseDate: '', destroy: '' }; export const WaterRune = Item.fromJson(waterRuneData);