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) 651 B
import { Item } from '../Item'; const ectophialData = { destroy: 'You can get another by talking to Velorina in Port Phasmatys.', equipable: false, examine: 'A glass vial containing ectoplasm.', highAlch: 0, id: 4251, lowAlch: 0, members: true, meleeStrength: 0, name: 'Ectophial', iconUrl: '/assets/items/4251.png', noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Ectophial', prayer: 0, questItem: true, releaseDate: '15 January 2005', stackable: false, tradeable: false, value: 1, weight: 0.001, }; export const Ectophial = Item.fromJson(ectophialData);