osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
27 lines (26 loc) • 713 B
JavaScript
import { Item } from '../Item';
const blackFullHelmTData = {
id: 3471,
name: 'Black full helm (t)',
iconUrl: '/assets/items/3471.png',
examine: 'A full black helmet, decorated with gold trim.',
value: 6200,
highAlch: 3720,
lowAlch: 2480,
weight: 2.3,
members: true,
tradeable: true,
equipable: true,
releaseDate: '2004-01-15',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Black_full_helm_(t)',
defenceStab: 16,
defenceSlash: 18,
defenceCrush: 14,
defenceRanged: 1,
defenceMagic: 4,
};
export const BlackFullHelmT = Item.fromJson(blackFullHelmTData);