fix(balance): 초반 생존율 개선

- 몬스터 ATK 공식 약화: 5+level*3 → 3+level*2
- 플레이어 초기 HP 증가: 50 → 65 (사망률 ~10% 목표)
This commit is contained in:
JiWoong Sul
2025-12-28 01:04:42 +09:00
parent bfeb58ff29
commit 162a09c54a
2 changed files with 4 additions and 4 deletions

View File

@@ -222,9 +222,9 @@ class _NewCharacterScreenState extends State<NewCharacterScreen> {
// HP/MP 초기값 계산
// 원본 공식: Random(8) + CON/6 → 약 1~10 HP (너무 낮음)
// 수정 공식: 50 + Random(8) + CON → 약 60~76 HP (전투 생존 가능)
// 수정 공식: 65 + Random(8) + CON → 약 68~91 HP (사망률 ~10% 목표)
// 이유: 원본 PQ는 "항상 승리"하지만 이 게임은 실제 전투로 사망 가능
final hpMax = 50 + math.Random().nextInt(8) + _con;
final hpMax = 65 + math.Random().nextInt(8) + _con;
final mpMax = 30 + math.Random().nextInt(8) + _int;
// 원본 Main.pas:1375-1379 - 기본 롤 값 그대로 저장 (보너스 없음)