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) 559 B
import { Item } from '../Item'; const bucketData = { destroy: 'Drop', equipable: false, examine: 'A wooden bucket.', highAlch: 1, id: 1925, lowAlch: 0, members: false, meleeStrength: 0, name: 'Bucket', iconUrl: '/assets/items/bucket.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Bucket', prayer: 0, questItem: false, releaseDate: '4 January 2001', stackable: false, tradeable: true, value: 2, weight: 1, }; export const Bucket = Item.fromJson(bucketData);