This commit is contained in:
1
2025-11-17 19:31:51 +00:00
parent 27de997f92
commit c6d3b4788d
8 changed files with 79 additions and 88 deletions

View File

@@ -105,3 +105,10 @@ func (e *EffectNode) AttackTime(*input.Input, *input.Input) bool {
func (e *EffectNode) Prop_Befer(in *input.Input, prop int8, level int8, ptype info.EnumAbilityOpType) bool {
return true
}
func (e *EffectNode) GetBool(t ...bool) bool {
if len(t) > 0 {
return t[0]
}
return false
}