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 lobsterData = {
id: 379,
name: "Lobster",
iconUrl: '/assets/items/379.png',
examine: "This looks tricky to eat.",
value: 70,
highAlch: 42,
lowAlch: 28,
weight: 0,
members: false,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Lobster',
};
export const Lobster = Item.fromJson(lobsterData);