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) 540 B
import { Item } from '../Item'; const swordfishData = { id: 373, name: "Swordfish", iconUrl: '/assets/items/373.png', examine: "I'd better be careful eating this!", value: 80, highAlch: 48, lowAlch: 32, weight: 0, members: false, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Swordfish', }; export const Swordfish = Item.fromJson(swordfishData);