Piercing Arrow-WPS Office
Piercing Arrow-WPS Office
<Damage Formula>
// Default the chain multiplier to 1.
this._chainmultiplier = this._chainmultiplier || 1.0;
// Calculate the damage formula.
value = user.atk + user.agi;
// Apply multiplier to damage formula.
value *= this._chainmultiplier;
// Reduce the multiplier by 0.15 per target.
this._chainmultiplier -= 0.15;
</Damage Formula>