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