UNPKG

osrs-tools

Version:

A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information

15 lines 568 B
import { Skill } from '../Skill'; /** * Attack skill in OSRS * The Attack skill determines a player's accuracy and ability to wield certain weapons. * As players level up their Attack skill, they unlock the ability to use more powerful weapons with higher attack bonuses. * This class implements the Skill interface and includes specific unlocks related to the Attack skill. */ export declare class Attack implements Skill { level: number; experience: number; name: string; unlocks: any[]; constructor(); } //# sourceMappingURL=Attack.d.ts.map