osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
24 lines (23 loc) • 600 B
JavaScript
import { Item } from '../Item';
const skullPieceData = {
destroy: 'Drop',
equipable: false,
examine: 'A fearsome looking skull.',
highAlch: 36,
id: 6144,
lowAlch: 24,
members: true,
meleeStrength: 0,
name: 'Skull piece',
iconUrl: '/assets/items/skull-piece.png',
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Skull_piece',
prayer: 0,
questItem: false,
releaseDate: '1 August 2005',
stackable: false,
tradeable: true,
value: 60,
weight: 3.175,
};
export const SkullPiece = Item.fromJson(skullPieceData);