Files
bl/logic/service/fight/effect/424.go
xinian 78a68148ce
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed
chore: update fight logic and effect implementations
2026-04-05 02:25:44 +08:00

21 lines
379 B
Go

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