Files
bl/logic/service/fight/effect/432.go
xinian 875ad668aa
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed
feat: 实现战斗效果逻辑和接口重构
2026-03-28 21:57:22 +08:00

30 lines
454 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package effect
import (
"blazing/logic/service/fight/input"
)
func init() {
t := &Effect432{}
input.InitEffect(input.EffectType.Skill, 432, t)
}
// Effect 432: {0}回合内对手所有攻击必定MISS必中技能有效
type Effect432 struct {
RoundEffectArg0Base
}
func (e *Effect432) SkillHit_ex() bool {
//fmt.Println(e.Ctx().SkillEntity)
if e.Ctx().SkillEntity == nil {
return true
}
e.Ctx().SkillEntity.SetMiss()
return true
}