refactor(core): 진행 서비스 및 모델 개선

- ProgressService 로직 개선
- GameState 상태 관리 확장
- MonsterCombatStats 속성 추가
- game_text_l10n 번역 추가
This commit is contained in:
JiWoong Sul
2026-01-02 15:30:09 +09:00
parent c9f0e35914
commit 2ef9807cbe
4 changed files with 165 additions and 18 deletions

View File

@@ -103,6 +103,12 @@ String taskDebugging(String monsterName) {
return 'Debugging $monsterName';
}
String taskFinalBoss(String bossName) {
if (isKoreanLocale) return '최종 보스와 대결: $bossName';
if (isJapaneseLocale) return '最終ボスと対決: $bossName';
return 'Final Battle: $bossName';
}
String taskSelling(String itemDescription) {
if (isKoreanLocale) return '$itemDescription 판매 중';
if (isJapaneseLocale) return '$itemDescription を販売中';