warscript
Version:
A typescript library for Warcraft III using Warpack.
13 lines (12 loc) • 694 B
TypeScript
/** @noSelfInFile */
import { AbilityType, AbilityTypeId } from "../ability-type";
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
export declare class AutoAttackHealReductionEffectAbilityType extends AbilityType {
static readonly BASE_ID: AbilityTypeId;
get healingFactor(): number[];
set healingFactor(healingFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
get autoAttackDamageIncrease(): number[];
set autoAttackDamageIncrease(autoAttackDamageIncrease: ObjectDataEntryLevelFieldValueSupplier<number>);
get enabledWeaponIndex(): number[];
set enabledWeaponIndex(enabledWeaponIndex: ObjectDataEntryLevelFieldValueSupplier<number>);
}