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) • 520 B
JavaScript
import { Item } from '../Item';
const bonesData = {
id: 20,
name: 'Bones',
iconUrl: '/assets/items/bones.png',
examine: 'Just some regular bones.',
members: false,
stackable: false,
value: 4,
lowAlch: 3,
highAlch: 4,
weight: 0.1,
tradeable: true,
equipable: false,
destroy: 'Drop',
questItem: false,
releaseDate: '2001-01-04',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Bones',
};
export const Bones = Item.fromJson(bonesData);