balance: 전사 카드를 전직 계열별로 재배치

This commit is contained in:
2026-07-05 03:47:28 +09:00
parent f89cd1ad63
commit fe92b8bbb8
4 changed files with 48 additions and 47 deletions

View File

@@ -210,7 +210,8 @@ function fight(state, branch, kind, section, rng, options) {
state.turns += result.turns;
if (!result.win) return false;
healFromRelics(state, 'combatEnd');
if (kind !== 'boss') offerReward(state.job, branch, state.deck, rng, options.minimumRewardValue);
const rewardStrategy = state.job === 'warrior' || state.job === 'rogue' ? state.job : branch;
if (kind !== 'boss') offerReward(state.job, rewardStrategy, state.deck, rng, options.minimumRewardValue);
return true;
}