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) 673 B
import { Item } from '../Item'; const rockCakeData = { destroy: "You'll have to get another one from the Feast Hall in Keldagrim.", equipable: false, examine: 'A very hard rock cake made by dwarves.', highAlch: 0, id: 7509, lowAlch: 0, members: true, meleeStrength: 0, name: 'Dwarven rock cake', iconUrl: '/assets/items/7509.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Dwarven_rock_cake', prayer: 0, questItem: true, releaseDate: '24 July 2006', stackable: false, tradeable: false, value: 1, weight: 0.1, }; export const DwarvenRockCake = Item.fromJson(rockCakeData);