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) • 570 B
JavaScript
import { Item } from '../Item';
const blackHelmH1Data = {
id: 10306,
name: "Black helm (h1)",
iconUrl: '/assets/items/10306.png',
examine: "A black helmet with a heraldic design.",
value: 1056,
highAlch: 633,
lowAlch: 422,
weight: 0,
members: false,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Black_helm_(h1)',
};
export const BlackHelmH1 = Item.fromJson(blackHelmH1Data);