```
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed

refactor(fight): 移除能力操作类型枚举并简化属性设置方法

移除了 info.EnumAbilityOpType 枚举类型及其相关常量定义,
重构了 SetProp 方法调用,不再传递操作类型参数,
通过检查等级正负值来判断是增加还是减少属性,
减少了代码复杂度并统一了属性变更的处理逻辑。
```
This commit is contained in:
昔念
2026-03-08 23:24:18 +08:00
parent b9739f7b4e
commit 9315fcfa17
49 changed files with 263 additions and 270 deletions

View File

@@ -2,7 +2,6 @@ package node
import (
element "blazing/common/data/Element"
"blazing/logic/service/fight/info"
"blazing/logic/service/fight/input"
"sync"
@@ -121,7 +120,7 @@ func (e *EffectNode) AttackTime(*input.Input, *input.Input) bool {
return true
}
func (e *EffectNode) PropBefer(in *input.Input, prop int8, level int8, ptype info.EnumAbilityOpType) bool {
func (e *EffectNode) PropBefer(in *input.Input, prop int8, level int8) bool {
return true
}