Files
bl/logic/service/fight/effect/494.go

23 lines
358 B
Go
Raw Normal View History

2026-03-08 15:26:07 +08:00
package effect
import (
"blazing/logic/service/fight/input"
"blazing/logic/service/fight/node"
)
// Effect 494: 无视对手能力提升状态
2026-03-08 15:26:07 +08:00
type Effect494 struct {
node.EffectNode
}
func (e *Effect494) CalculatePre() bool {
e.Ctx().Opp.Prop = [6]int8{}
return true
}
func init() {
input.InitEffect(input.EffectType.Skill, 494, &Effect494{})
}