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) • 739 B
JavaScript
import { Item } from '../Item';
const blackPlatesLegsTData = {
id: 3475,
name: 'Black platelegs (t)',
iconUrl: '/assets/items/black-platelegs-t.png',
examine: 'A suit of black leg armour, decorated with gold trim.',
value: 7200,
highAlch: 4320,
lowAlch: 2880,
weight: 9.75,
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_platelegs_(t)',
defenceStab: 22,
defenceSlash: 22,
defenceCrush: 18,
defenceRanged: 3,
defenceMagic: 3,
};
export const BlackPlatelegsT = Item.fromJson(blackPlatesLegsTData);