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) • 521 B
JavaScript
import { Item } from '../Item';
const sharkData = {
id: 385,
name: "Shark",
iconUrl: '/assets/items/385.png',
examine: "I'd better be careful eating this.",
value: 170,
highAlch: 102,
lowAlch: 68,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Shark',
};
export const Shark = Item.fromJson(sharkData);