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

22 lines (21 loc) 517 B
import { Item } from '../Item'; const mantaRayData = { id: 391, name: "Manta ray", iconUrl: '/assets/items/391.png', examine: "A rare catch.", value: 200, highAlch: 120, lowAlch: 80, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Manta_ray', }; export const MantaRay = Item.fromJson(mantaRayData);