osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
36 lines (35 loc) • 814 B
JavaScript
import { Item } from '../Item';
const coifData = {
id: 1169,
name: 'Coif',
iconUrl: '/assets/items/coif.png',
examine: 'A protective headpiece made of leather.',
value: 25,
highAlch: 15,
lowAlch: 10,
weight: 0.453,
members: true,
tradeable: true,
equipable: true,
releaseDate: '2001-12-10',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Coif',
attackStab: 0,
attackSlash: 0,
attackCrush: 0,
attackRanged: 2,
attackMagic: 0,
defenceStab: 5,
defenceSlash: 5,
defenceCrush: 4,
defenceRanged: 8,
defenceMagic: 0,
strength: 0,
rangedStrength: 0,
magicDamage: 0,
prayer: 0,
};
export const Coif = Item.fromJson(coifData);