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) • 657 B
JavaScript
import { Item } from '../Item';
const iceCoolerData = {
destroy: 'You can get more ice coolers from the Slayer Master in Canifis.',
equipable: false,
examine: 'Used to freeze Desert lizards.',
highAlch: 0,
id: 6696,
lowAlch: 0,
members: true,
meleeStrength: 0,
name: 'Ice cooler',
iconUrl: '/assets/items/ice-cooler.png',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Ice_cooler',
prayer: 0,
questItem: false,
releaseDate: '20 January 2005',
stackable: true,
tradeable: false,
value: 1,
weight: 0.001,
};
export const IceCooler = Item.fromJson(iceCoolerData);