Add combat cut-in damage presentation

This commit is contained in:
2026-06-22 12:08:57 +09:00
parent 2aefcd6f23
commit 381b2cf14c
2 changed files with 487 additions and 46 deletions

View File

@@ -19,6 +19,8 @@ export type UnitData = {
faction: 'ally' | 'enemy';
className: string;
classKey: UnitClassKey;
level: number;
exp: number;
hp: number;
maxHp: number;
attack: number;
@@ -165,6 +167,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'ally',
className: '군웅',
classKey: 'lord',
level: 3,
exp: 18,
hp: 32,
maxHp: 32,
attack: 9,
@@ -184,6 +188,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'ally',
className: '의용 보병',
classKey: 'infantry',
level: 3,
exp: 26,
hp: 30,
maxHp: 30,
attack: 10,
@@ -203,6 +209,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'ally',
className: '창병',
classKey: 'spearman',
level: 3,
exp: 20,
hp: 30,
maxHp: 30,
attack: 10,
@@ -222,6 +230,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'enemy',
className: '황건병',
classKey: 'yellowTurban',
level: 1,
exp: 6,
hp: 20,
maxHp: 20,
attack: 6,
@@ -241,6 +251,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'enemy',
className: '황건병',
classKey: 'yellowTurban',
level: 1,
exp: 4,
hp: 20,
maxHp: 20,
attack: 6,
@@ -260,6 +272,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'enemy',
className: '궁병',
classKey: 'archer',
level: 1,
exp: 10,
hp: 18,
maxHp: 18,
attack: 7,
@@ -279,6 +293,8 @@ export const firstBattleUnits: UnitData[] = [
faction: 'enemy',
className: '두령',
classKey: 'rebelLeader',
level: 2,
exp: 18,
hp: 30,
maxHp: 30,
attack: 9,