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) • 530 B
JavaScript
import { Item } from '../Item';
const blueBeretData = {
id: 2633,
name: "Blue beret",
iconUrl: '/assets/items/2633.png',
examine: "Parlez-vous francais?",
value: 80,
highAlch: 48,
lowAlch: 32,
weight: 0,
members: true,
tradeable: true,
equipable: false,
releaseDate: '',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Blue_beret',
};
export const BlueBeret = Item.fromJson(blueBeretData);