osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
20 lines • 587 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CrystalKey = void 0;
const Item_1 = require("../Item");
const crystalKeyData = {
id: 989,
name: 'Crystal key',
members: true,
tradeable: true,
stackable: false,
noted: false,
value: 19000,
examine: 'A glittering key made from crystal.',
equipable: false,
weight: 0.01,
questItem: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Crystal_key',
};
exports.CrystalKey = Item_1.Item.fromJson(crystalKeyData);
//# sourceMappingURL=CrystalKey.js.map