UNPKG

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) 567 B
import { Item } from '../Item'; const adamantFullHelmData = { id: 1161, name: "Adamant full helm", iconUrl: '/assets/items/1161.png', examine: "A full face helmet.", value: 3520, highAlch: 2112, lowAlch: 1408, weight: 0, members: false, tradeable: true, equipable: false, releaseDate: '', destroy: 'Drop', questItem: false, stackable: false, noted: false, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Adamant_full_helm', }; export const AdamantFullHelm = Item.fromJson(adamantFullHelmData);