mirror of
https://github.com/YouHaveTrouble/GuildMaster.git
synced 2026-05-12 06:26:59 +00:00
drastically reduce price and scaling of exp modifier upgrade
This commit is contained in:
@@ -14,8 +14,8 @@ export default class QuestExpUpgrade extends GuildUpgrade {
|
||||
}
|
||||
|
||||
getCostForLevel(level: number): number {
|
||||
const scalingFactor = Math.pow(1.15, level - 1);
|
||||
return Math.floor(4000000 * scalingFactor * Math.pow(level, 1.1));
|
||||
const scalingFactor = Math.pow(1.05, level - 1);
|
||||
return Math.floor(2500000 * scalingFactor * Math.pow(level, 1.01));
|
||||
}
|
||||
|
||||
getModifier(): number {
|
||||
|
||||
Reference in New Issue
Block a user