32 lines
635 B
Go
32 lines
635 B
Go
package effect
|
|
|
|
import (
|
|
"blazing/logic/service/fight/input"
|
|
)
|
|
|
|
// 283. 受到超过n 全属性-1
|
|
type NewSel283 struct {
|
|
NewSel0
|
|
}
|
|
|
|
func (e *NewSel283) Skill_Use() bool {
|
|
//魂印特性有不在场的情况,绑定时候将精灵和特性绑定
|
|
if e.ID().GetCatchTime() != e.Ctx().Our.CurrentPet[0].Info.CatchTime {
|
|
return true
|
|
}
|
|
|
|
// 检查受到的伤害是否超过阈值
|
|
if e.Ctx().Our.SumDamage.Cmp(e.Args()[0]) > 0 {
|
|
|
|
for i := 0; i < 6; i++ {
|
|
e.Ctx().Opp.SetProp(e.Ctx().Our, int8(i), int8(e.Args()[1].IntPart()))
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
func init() {
|
|
input.InitEffect(input.EffectType.NewSel, 283, &NewSel283{})
|
|
}
|