Files
bl/logic/service/fight/node/Heal.go
昔念 c916440033 ```
feat(fight): 完善战斗系统中道具使用逻辑与血量恢复机制

- 修改 item.go 中 Item 结构体,将 Bonus 字段类型由 string
2025-11-08 16:38:41 +08:00

13 lines
251 B
Go

package node
import (
"blazing/logic/service/fight/action"
)
// 治疗相关触发
// 治疗前触发 回复翻倍效果
func (e *EffectNode) Heal_Pre(action.BattleActionI, *int) bool {
//panic("not implemented") // TODO: Implement
return true
}