16 lines
311 B
Go
16 lines
311 B
Go
|
|
package effect
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"blazing/logic/service/fight/input"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// 401. n%几率攻击技能的伤害翻倍(a1: n)
|
|||
|
|
// TODO: 实现n%几率攻击技能的伤害翻倍(a1: n)的核心逻辑
|
|||
|
|
type NewSel401 struct {
|
|||
|
|
NewSel0
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func init() {
|
|||
|
|
input.InitEffect(input.EffectType.NewSel, 401, &NewSel401{})
|
|||
|
|
}
|