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) • 597 B
JavaScript
import { Item } from '../Item';
const mithrilPlatelegsGData = {
id: 12279,
name: "Mithril platelegs (g)",
iconUrl: '/assets/items/12279.png',
examine: "Mithril platelegs with gold trim.",
value: 2600,
highAlch: 1560,
lowAlch: 1040,
weight: 0,
members: false,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Mithril_platelegs_(g)',
};
export const MithrilPlatelegsG = Item.fromJson(mithrilPlatelegsGData);