耐力模块缓慢攀爬完善

This commit is contained in:
UnKownOwO
2022-12-01 23:00:47 +08:00
parent 664a408ac8
commit cb4625a466
2 changed files with 33 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ var StaminaCostConst *StaminaCost
type StaminaCost struct {
// 消耗耐力
CLIMBING int32
CLIMBING_BASE int32
CLIMB_START int32
CLIMB_JUMP int32
DASH int32
@@ -28,7 +28,7 @@ type StaminaCost struct {
func InitStaminaCostConst() {
StaminaCostConst = new(StaminaCost)
StaminaCostConst.CLIMBING = -110
StaminaCostConst.CLIMBING_BASE = -100
StaminaCostConst.CLIMB_START = -500
StaminaCostConst.CLIMB_JUMP = -2500
StaminaCostConst.DASH = -360