16 lines
291 B
Go
16 lines
291 B
Go
|
|
package effect
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"blazing/logic/service/fight/input"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// 410. 伤害提升n%(PVP无效)(a1: n)
|
|||
|
|
// TODO: 实现伤害提升n%(PVP无效)(a1: n)的核心逻辑
|
|||
|
|
type NewSel410 struct {
|
|||
|
|
NewSel0
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func init() {
|
|||
|
|
input.InitEffect(input.EffectType.NewSel, 410, &NewSel410{})
|
|||
|
|
}
|