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) • 618 B
JavaScript
import { Item } from '../Item';
const thirdAgePlateskirtData = {
id: 23242,
name: "3rd age plateskirt",
iconUrl: '/assets/items/23242.png',
examine: "Fabulously ancient armour beaten from magical silver.",
value: 200000,
highAlch: 120000,
lowAlch: 80000,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/3rd_age_plateskirt',
};
export const ThirdAgePlateskirt = Item.fromJson(thirdAgePlateskirtData);