背包容量限制

This commit is contained in:
UnKownOwO
2023-02-13 19:01:42 +08:00
parent ddecfdea12
commit c23a75b802
7 changed files with 81 additions and 52 deletions

View File

@@ -0,0 +1,9 @@
package constant
const (
STORE_PACK_LIMIT_WEIGHT = 30000 // 背包重量限制
STORE_PACK_LIMIT_WEAPON = 2000 // 武器容量限制
STORE_PACK_LIMIT_RELIQUARY = 1500 // 圣遗物容量限制
STORE_PACK_LIMIT_MATERIAL = 2000 // 材料容量限制
STORE_PACK_LIMIT_FURNITURE = 2000 // 家具容量限制
)

View File

@@ -0,0 +1,6 @@
package constant
const (
WEAPON_AWAKEN_MAX_REFINEMENT = 5 // 武器最大精炼等级
WEAPON_AWAKEN_MIN_EQUIPLEVEL = 3 // 武器精炼最小星级
)