2025-11-25 18:25:52 +08:00
|
|
|
|
package effect
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2026-03-28 21:57:22 +08:00
|
|
|
|
"blazing/logic/service/fight/info"
|
2025-11-25 18:25:52 +08:00
|
|
|
|
"blazing/logic/service/fight/input"
|
2026-03-28 21:57:22 +08:00
|
|
|
|
|
|
|
|
|
|
"github.com/alpacahq/alpacadecimal"
|
2025-11-25 18:25:52 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// 47. 敌我双方伤害降低n%(a1: n)
|
|
|
|
|
|
type NewSel47 struct {
|
|
|
|
|
|
NewSel0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-28 21:57:22 +08:00
|
|
|
|
func (e *NewSel47) DamageAdd(t *info.DamageZone) bool {
|
|
|
|
|
|
if t.Type != info.DamageType.Red {
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ratio := alpacadecimal.NewFromInt(100).Sub(e.Args()[0]).Div(alpacadecimal.NewFromInt(100))
|
|
|
|
|
|
t.Damage = t.Damage.Mul(ratio)
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (e *NewSel47) DamageDivEx(t *info.DamageZone) bool {
|
|
|
|
|
|
if !e.IsOwner() {
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
if t.Type != info.DamageType.Red {
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ratio := alpacadecimal.NewFromInt(100).Sub(e.Args()[0]).Div(alpacadecimal.NewFromInt(100))
|
|
|
|
|
|
t.Damage = t.Damage.Mul(ratio)
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 18:25:52 +08:00
|
|
|
|
func init() {
|
|
|
|
|
|
input.InitEffect(input.EffectType.NewSel, 47, &NewSel47{})
|
|
|
|
|
|
}
|