63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
package effect
|
||
|
||
import (
|
||
"blazing/logic/service/fight/info"
|
||
"blazing/logic/service/fight/input"
|
||
"blazing/logic/service/fight/node"
|
||
)
|
||
|
||
func init() {
|
||
//技能使用成功时,m%自身XX等级+/-n
|
||
input.InitEffect(input.EffectType.Skill, 4, NewEffectStat(false))
|
||
|
||
//技能使用成功时,m%对方XX等级+/-n
|
||
input.InitEffect(input.EffectType.Skill, 5, NewEffectStat(true))
|
||
}
|
||
|
||
func NewEffectStat(b bool) input.Effect {
|
||
|
||
ret := &EffectStat{
|
||
EffectNode: node.EffectNode{},
|
||
Etype: b,
|
||
}
|
||
ret.MaxStack(-1) //无限叠加
|
||
return ret
|
||
}
|
||
|
||
type EffectStat struct {
|
||
node.EffectNode
|
||
Etype bool
|
||
}
|
||
|
||
// func (this *EffectStat) GetPet() {
|
||
// ff := this.EffectNode.GetOwnerPet()
|
||
// offsetC := unsafe.Offsetof(ff.Atk) // c字段的偏移量(通常为4+16=20)
|
||
// // 2. 将结构体指针转换为原始内存地址(uintptr)
|
||
// baseAddr := uintptr(unsafe.Pointer(&offsetC))
|
||
|
||
// // 3. 计算字段地址并赋值
|
||
// // 给a字段赋值(通过偏移量)
|
||
// addrA := unsafe.Pointer(baseAddr + 4) //根据攻击算其他字段
|
||
// *(*uint32)(addrA) = 100
|
||
// }
|
||
func (e *EffectStat) OnSkill(ctx input.Ctx) bool {
|
||
if !e.Hit() {
|
||
return true
|
||
}
|
||
t, _, _ := e.Input.Player.Roll(e.EffectNode.SideEffectArgs[1], 100)
|
||
if !t { //没触发
|
||
return true
|
||
}
|
||
ptype := info.AbilityOpType.ADD
|
||
if e.EffectNode.SideEffectArgs[2] < 0 {
|
||
ptype = info.AbilityOpType.SUB
|
||
}
|
||
if !e.Etype { //自身
|
||
e.Input.SetProp(e.Input, int8(e.EffectNode.SideEffectArgs[0]), int8(e.EffectNode.SideEffectArgs[2]), ptype)
|
||
|
||
} else { //对方
|
||
ctx.SetProp(e.Input, int8(e.EffectNode.SideEffectArgs[0]), int8(e.EffectNode.SideEffectArgs[2]), ptype)
|
||
}
|
||
return true
|
||
}
|