adjust scaling of instant adventurer recruitment cost

This commit is contained in:
2025-06-02 23:00:57 +02:00
parent c0b51e8362
commit 2ce333fd63
+1 -1
View File
@@ -60,7 +60,7 @@ export default defineComponent({
},
newRecruitCost(): number {
const guildLevel = this.guild.level;
return Math.max(500, 500 * Math.pow(2, guildLevel - 1));
return Math.max(500, 500 * Math.pow(2.2, guildLevel - 1));
},
recruitSlotsFilled(): boolean {
return Object.keys(this.adventurersForHire).length >= this.guild.recruitmentCapacity.getRecruitmentCapacity();