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) • 556 B
JavaScript
import { Item } from '../Item';
const blueHeadbandData = {
id: 12301,
name: "Blue headband",
iconUrl: "/assets/items/12301.png",
examine: "A minimalist's hat.",
value: 40,
highAlch: 24,
lowAlch: 16,
weight: 0.04,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Blue_headband",
};
export const BlueHeadband = Item.fromJson(blueHeadbandData);