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) • 630 B
JavaScript
import { Item } from '../Item';
const loopHalfOfKeyData = {
id: 987,
name: "Loop half of key",
iconUrl: "/assets/items/loop-half-of-key.png",
examine: "The loop end of the mysterious Crystal Key. Can you find the other half?",
value: 100,
highAlch: 60,
lowAlch: 40,
weight: 0.005,
members: true,
tradeable: true,
equipable: false,
releaseDate: "2002-02-27",
destroy: "Drop",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Loop_half_of_key",
};
export const LoopHalfOfKey = Item.fromJson(loopHalfOfKeyData);