mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 13:53:41 +03:00
14 lines
255 B
Go
14 lines
255 B
Go
package model
|
|
|
|
const (
|
|
EffectTargetUnknown int32 = 0
|
|
EffectTargetStaminaRecovery int32 = 1
|
|
EffectTargetBattlePointRecovery int32 = 2
|
|
)
|
|
|
|
const (
|
|
EffectValueUnknown int32 = 0
|
|
EffectValueFixed int32 = 1
|
|
EffectValuePermil int32 = 2
|
|
)
|