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) • 553 B
JavaScript
import { Item } from '../Item';
const jesterCapeData = {
id: 23297,
name: "Jester cape",
iconUrl: "/assets/items/jester-cape.png",
examine: "A jester cape.",
value: 1000,
highAlch: 600,
lowAlch: 400,
weight: 0.453,
members: false,
tradeable: true,
equipable: true,
releaseDate: "2019-04-11",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Jester_cape",
};
export const JesterCape = Item.fromJson(jesterCapeData);