Files
bl/logic/service/fight/effect/effect_8.go
xinian 9c6f3988de
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful
refactor: 重构 CurrentPet 为 CurPet
2026-04-04 04:34:43 +08:00

55 lines
1.0 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package effect
import (
"blazing/logic/service/fight/info"
"blazing/logic/service/fight/input"
"blazing/logic/service/fight/node"
"github.com/alpacahq/alpacadecimal"
)
/**
* 伤害大于对方体力时会余下1体力
*/
func init() {
input.InitEffect(input.EffectType.Skill, 8, &Effect8{})
}
// Effect 8: 伤害大于对方体力时对方会余下1体力
type Effect8 struct {
node.EffectNode
max alpacadecimal.Decimal
}
// DamageFloor 伤害落实前触发,限制最大伤害
func (e *Effect8) DamageFloor(t *info.DamageZone) bool {
if e.Ctx().Opp.CurPet[0].GetHP().IntPart() <= 1 {
return true
}
if t.Type == info.DamageType.Red {
t.Damage = alpacadecimal.Min(t.Damage, e.Ctx().Opp.CurPet[0].GetHP().Sub(alpacadecimal.NewFromInt(1)))
e.max = t.Damage
}
return true
}
func (e *Effect8) DamageLock(t *info.DamageZone) bool {
//fmt.Println("Effect7_old", t.Damage.IntPart())
if t.Type == info.DamageType.Red {
if t.Damage.Cmp(e.max) == 1 {
t.Damage = e.max
}
}
// fmt.Println("Effect7_new", t.Damage.IntPart())
return true
}