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) 576 B
import { Item } from '../Item'; const flaredTrousersData = { id: 7934, name: 'Flared trousers', iconUrl: '/assets/items/7934.png', examine: 'These\'ll help me stay alive.', value: 2000, highAlch: 1200, lowAlch: 800, weight: 1, members: true, tradeable: true, equipable: true, releaseDate: '2006-12-05', destroy: 'Drop', questItem: false, stackable: false, noted: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Flared_trousers', }; export const FlaredTrousers = Item.fromJson(flaredTrousersData);