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) • 592 B
JavaScript
import { Item } from '../Item';
const mithrilFullHelmGData = {
id: 12283,
name: "Mithril full helm (g)",
iconUrl: '/assets/items/12283.png',
examine: "Mithril full helm with gold trim.",
value: 1430,
highAlch: 858,
lowAlch: 572,
weight: 0,
members: false,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Mithril_full_helm_(g)',
};
export const MithrilFullHelmG = Item.fromJson(mithrilFullHelmGData);