41 lines
722 B
Go
41 lines
722 B
Go
package effect
|
|
|
|
import (
|
|
"blazing/logic/service/fight/action"
|
|
"blazing/logic/service/fight/input"
|
|
)
|
|
|
|
// Effect 171: {0}回合内自身使用属性技能时能较快出手
|
|
type Effect171 struct {
|
|
RoundEffectArg0Base
|
|
}
|
|
|
|
func (e *Effect171) ComparePre(fattack *action.SelectSkillAction, sattack *action.SelectSkillAction) bool {
|
|
|
|
if !e.IsOwner() {
|
|
return true
|
|
}
|
|
|
|
if fattack == nil {
|
|
return true
|
|
}
|
|
//先手是自己
|
|
if fattack.PlayerID == e.CarrierInput().UserID {
|
|
return true
|
|
}
|
|
if sattack == nil {
|
|
return true
|
|
}
|
|
|
|
if sattack.SkillEntity == nil {
|
|
return true
|
|
}
|
|
//对调
|
|
sattack.SkillEntity.XML.Priority += 1
|
|
return true
|
|
}
|
|
func init() {
|
|
input.InitEffect(input.EffectType.Skill, 171, &Effect171{})
|
|
|
|
}
|