osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
23 lines (22 loc) • 648 B
JavaScript
import { Item } from '../Item';
const royalSeedPodData = {
destroy: 'King Narnode will give you another one.',
equipable: false,
examine: 'Can be used to teleport to the Grand Tree.',
highAlch: 0,
id: 19564,
lowAlch: 0,
members: true,
meleeStrength: 0,
name: 'Royal seed pod',
iconUrl: '/assets/items/royal-seed-pod.png',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Royal_seed_pod',
questItem: false,
releaseDate: '7 January 2016',
stackable: false,
tradeable: false,
value: 0,
weight: 0,
};
export const RoyalSeedPod = Item.fromJson(royalSeedPodData);