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

21 lines
384 B
Go

package effect
import (
"blazing/logic/service/fight/input"
)
// Effect 409: {0}回合内对手每回合速度和命中等级{1}
type Effect409 struct {
RoundEffectArg0Base
}
func (e *Effect409) Skill_Use() bool {
e.Ctx().Opp.SetProp(e.Ctx().Our, 4, int8(int(e.Args()[1].IntPart())))
return true
}
func init() {
input.InitEffect(input.EffectType.Skill, 409, &Effect409{})
}