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) 547 B
import { Item } from '../Item'; const purpleBoaterData = { id: 12311, name: "Purple boater", iconUrl: "/assets/items/12311.png", examine: "Stylish!", value: 225, highAlch: 135, lowAlch: 90, weight: 0.01, members: true, tradeable: true, equipable: true, releaseDate: "2014-06-12", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Purple_boater", }; export const PurpleBoater = Item.fromJson(purpleBoaterData);