Files
bl/logic/service/fight/battle/node/Active.go
2025-08-27 15:29:34 +00:00

14 lines
194 B
Go

package node
// 技能效果前
func (this *EffectNode) PreActive() bool {
return true
}
// 激活回合,比如说镇魂歌秒杀
func (this *EffectNode) OnActive() bool {
return true
}