feat: correctly scale standing and focus limits by mastery rank #711

Merged
Sainan merged 2 commits from daily into main 2025-01-04 20:17:56 -08:00
Showing only changes of commit 3568ba0150 - Show all commits

View File

@ -46,6 +46,7 @@ export const inventoryController: RequestHandler = async (request, response) =>
inventory.DailyAffiliationKahl = 16000 + inventory.PlayerLevel * 500;
inventory.DailyAffiliationCavia = 16000 + inventory.PlayerLevel * 500;
inventory.DailyAffiliationHex = 16000 + inventory.PlayerLevel * 500;
inventory.DailyFocus = 250000 + inventory.PlayerLevel * 5000;
await inventory.save();
}