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) 588 B
import { Item } from '../Item'; const sandwichLadyHatData = { id: 23312, name: "Sandwich lady hat", iconUrl: "/assets/items/23312.png", examine: "A hat worn by a sandwich lady.", value: 200, highAlch: 120, lowAlch: 80, weight: 0.907, members: false, tradeable: true, equipable: true, releaseDate: "2019-04-11", destroy: "Wear", questItem: false, stackable: false, noted: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Sandwich_lady_hat", }; export const SandwichLadyHat = Item.fromJson(sandwichLadyHatData);