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) 597 B
import { Item } from '../Item'; const smokeBarrageData = { destroy: 'Drop', equipable: false, examine: 'An Ancient Magicks spell.', highAlch: 0, id: 4000, lowAlch: 0, members: true, meleeStrength: 0, name: 'Smoke barrage', iconUrl: '/assets/items/4000.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Smoke_Barrage', prayer: 0, questItem: false, releaseDate: '24 March 2003', stackable: false, tradeable: false, value: 0, weight: 0, }; export const SmokeBarrage = Item.fromJson(smokeBarrageData);