26 lines
445 B
Go
26 lines
445 B
Go
package effect
|
|
|
|
import (
|
|
"blazing/logic/service/fight/input"
|
|
)
|
|
|
|
// Effect 47: {0}回合内免疫能力下降状态
|
|
type Effect47 struct {
|
|
RoundEffectArg0Base
|
|
//StatusID int
|
|
conut int
|
|
}
|
|
|
|
func (e *Effect47) PropBefer(in *input.Input, prop int8, level int8) bool {
|
|
if in == e.Ctx().Opp && level < 0 {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// ---- 注册所有效果 ----
|
|
func init() {
|
|
input.InitEffect(input.EffectType.Skill, 47, &Effect47{})
|
|
}
|