osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
24 lines (23 loc) • 652 B
JavaScript
import { Item } from '../Item';
const dragonKeyData = {
destroy: "You'll need to collect the three key pieces again.",
equipable: false,
examine: 'A key made from three separate pieces.',
highAlch: 0,
id: 21042,
lowAlch: 0,
members: true,
meleeStrength: 0,
name: 'Dragon key',
iconUrl: '/assets/items/dragon-key.png',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Dragon_key',
prayer: 0,
questItem: true,
releaseDate: '5 January 2017',
stackable: false,
tradeable: false,
value: 0,
weight: 0.013,
};
export const DragonKey = Item.fromJson(dragonKeyData);