2025-08-26 20:01:20 +00:00
|
|
|
package node
|
|
|
|
|
|
2025-11-08 16:38:41 +08:00
|
|
|
import (
|
|
|
|
|
"blazing/logic/service/fight/action"
|
|
|
|
|
)
|
2025-09-29 02:40:35 +08:00
|
|
|
|
2025-08-26 20:01:20 +00:00
|
|
|
// 治疗相关触发
|
2025-09-29 02:40:35 +08:00
|
|
|
// 治疗前触发 回复翻倍效果
|
2025-11-08 16:38:41 +08:00
|
|
|
func (e *EffectNode) Heal_Pre(action.BattleActionI, *int) bool {
|
|
|
|
|
//panic("not implemented") // TODO: Implement
|
|
|
|
|
return true
|
2025-08-26 20:01:20 +00:00
|
|
|
}
|