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) 603 B
import { Item } from '../Item'; const lightTuxedoShoesData = { id: 19982, name: "Light tuxedo shoes", iconUrl: "/assets/items/19982.png", examine: "Light shoes to match your light tuxedo.", value: 3000, highAlch: 1800, lowAlch: 1200, weight: 0.5, members: true, tradeable: true, equipable: true, releaseDate: "2016-07-06", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Light_tuxedo_shoes", }; export const LightTuxedoShoes = Item.fromJson(lightTuxedoShoesData);