osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
36 lines (35 loc) • 811 B
JavaScript
import { Item } from '../Item';
const mindRuneData = {
id: 558,
name: 'Mind rune',
iconUrl: '/assets/items/mind-rune.png',
examine: 'A mind rune.',
value: 5,
highAlch: 3,
lowAlch: 1,
weight: 0.001,
members: false,
tradeable: true,
equipable: false,
releaseDate: '2001-12-10',
destroy: 'Drop',
questItem: false,
stackable: true,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Mind_rune',
attackStab: 0,
attackSlash: 0,
attackCrush: 0,
attackRanged: 0,
attackMagic: 0,
defenceStab: 0,
defenceSlash: 0,
defenceCrush: 0,
defenceRanged: 0,
defenceMagic: 0,
strength: 0,
rangedStrength: 0,
magicDamage: 0,
prayer: 0,
};
export const MindRune = Item.fromJson(mindRuneData);