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) • 601 B
JavaScript
import { Item } from '../Item';
const lightTuxedoCuffsData = {
id: 19976,
name: "Light tuxedo cuffs",
iconUrl: "/assets/items/19976.png",
examine: "Linked tuxedo cuffs with a gold trim.",
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_cuffs",
};
export const LightTuxedoCuffs = Item.fromJson(lightTuxedoCuffsData);