All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful
refactor(fight): 统一技能使用方法命名规范 将多个战斗相关的结构体中的技能使用方法名从不一致的命名 (SkillUseed, OnSkill)统一改为Skill_Use,提高代码一致性。 同时优化了Effect3效果处理逻辑,简化了属性遍历方式, 并修复了先手控制逻辑中的EffectCache处理方式。 BREAKING CHANGE: 技能使用
31 lines
727 B
Go
31 lines
727 B
Go
package effect
|
||
|
||
import (
|
||
"blazing/logic/service/fight/action"
|
||
"blazing/logic/service/fight/input"
|
||
|
||
"github.com/alpacahq/alpacadecimal"
|
||
)
|
||
|
||
// 73. 给对方造成的伤害会恢复自身n%体力;(a1: n)
|
||
type NewSel73 struct {
|
||
NewSel0
|
||
}
|
||
|
||
func (e *NewSel73) Skill_Use() bool {
|
||
//魂印特性有不在场的情况,绑定时候将精灵和特性绑定
|
||
if e.ID().GetCatchTime() != e.Ctx().Our.CurrentPet.Info.CatchTime {
|
||
return true
|
||
}
|
||
|
||
// 恢复造成伤害的百分比
|
||
healAmount := e.Ctx().Opp.SumDamage.Mul(e.Args()[0]).Div(alpacadecimal.NewFromInt(100))
|
||
e.Input.Heal(e.Ctx().Our, &action.SelectSkillAction{}, healAmount)
|
||
|
||
return true
|
||
}
|
||
|
||
func init() {
|
||
input.InitEffect(input.EffectType.NewSel, 73, &NewSel73{})
|
||
}
|