fix: 将怪物经验奖励提升为5倍

修复了击杀怪物时获得的经验值过低的问题,将经验奖励从原本的1倍提升至5倍,以改善玩家升级体验。
This commit is contained in:
panw
2026-02-04 16:46:20 +08:00
parent b42cc2e662
commit 82f7c3085b

View File

@@ -156,7 +156,7 @@ export class MissionComp extends CCComp {
// 计算经验 // 计算经验
let exp = calculateMonsterExp(data.uuid, level); let exp = calculateMonsterExp(data.uuid, level);
smc.addExp(exp); smc.addExp(exp*5);
this.cal_gold_reward(data, type); this.cal_gold_reward(data, type);
} }