fix(model): copyWith currentCombat null 초기화 버그 수정 및 테스트 추가

- ProgressState.copyWith에 clearCurrentCombat 파라미터 추가
- death_handler, resurrection_service에서 clearCurrentCombat 사용
- death_handler 테스트 14개 추가
- item_service 테스트 33개 추가
- skill_data 주석 스킬 개수 70→68 수정
This commit is contained in:
JiWoong Sul
2026-03-19 14:53:04 +09:00
parent c4280c929d
commit 2e66562ea2
6 changed files with 979 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ import 'package:asciineverdie/src/core/model/skill.dart';
/// 게임 내 스킬 정의
///
/// PQ 스펠 70개를 전투 스킬로 매핑
/// PQ 스펠을 기반으로 68개 전투 스킬로 재구성
/// 스펠 이름(영문)으로 스킬 조회 가능
class SkillData {
SkillData._();