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) • 522 B
JavaScript
import { Item } from '../Item';
const bowlWigData = {
id: 20110,
name: "Bowl wig",
iconUrl: "/assets/items/20110.png",
examine: "The bowl wig.",
value: 1,
highAlch: 0,
lowAlch: 0,
weight: 0.1,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2016-07-06",
destroy: "Wield",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Bowl_wig",
};
export const BowlWig = Item.fromJson(bowlWigData);