Ability Haste
Concerning Ability Haste and Cooldown Reduction
Functions
cdx()
function cdx(ah): number;
Defined in: haste/cdx.ts:16
Calculates the Cooldown Multiplier from Ability Haste
Parameters
Parameter | Type | Description |
---|---|---|
ah | number | The amount of Ability Haste |
Returns
number
The Cooldown Multiplier
Example
const ah = 0.1; // 10% Ability Haste
const cd = 10; // 10 seconds cooldown
const newCd = cd * cdx(ah); // ~9.1 seconds cooldown