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