formulas for ascension

This commit is contained in:
Olivier Gagnon
2021-12-09 12:52:51 -05:00
parent 5e916ee3bd
commit 394a286646
7 changed files with 59 additions and 23 deletions

View File

@@ -3544,6 +3544,20 @@ interface GangFormulas {
* @returns The calculated money gain.
*/
moneyGain(gang: GangGenInfo, member: GangMemberInfo, task: GangTaskStats): number;
/**
* Calculate ascension point gain.
* @param exp - Experience point before ascension.
* @returns The calculated ascension point gain.
*/
ascensionPointsGain(exp: number): number;
/**
* Calculate ascension mult.
* @param points - Amount of ascension points.
* @returns The calculated ascension mult.
*/
ascensionMultiplier(points: number): number;
}
/**