warscript
Version:
A typescript library for Warcraft III using Warpack.
11 lines (10 loc) • 581 B
TypeScript
/** @noSelfInFile */
import { AbilityType, AbilityTypeId } from "../ability-type";
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
export declare class BerserkAbilityType extends AbilityType {
static readonly BASE_ID: AbilityTypeId;
get movementSpeedIncreaseFactor(): number[];
set movementSpeedIncreaseFactor(movementSpeedIncreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
get attackSpeedIncreaseFactor(): number[];
set attackSpeedIncreaseFactor(attackSpeedIncreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
}