feat: 实现乱舞效果并完善战斗输入上下文
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
xinian
2026-04-04 22:39:56 +08:00
committed by cnb
parent 39e1d4c42f
commit 2eba4b7915
6 changed files with 134 additions and 54 deletions

View File

@@ -152,8 +152,7 @@ func (f *FightC) buildNoteUseSkillOutboundInfo() info.NoteUseSkillOutboundInfo {
result := info.NoteUseSkillOutboundInfo{}
result.FirstAttackInfo = append(result.FirstAttackInfo, f.collectAttackValues(f.Our)...)
result.SecondAttackInfo = append(result.SecondAttackInfo, f.collectAttackValues(f.Opp)...)
result.FirstAttackInfoLen = uint32(len(result.FirstAttackInfo))
result.SecondAttackInfoLen = uint32(len(result.SecondAttackInfo))
return result
}