角色升级完善

This commit is contained in:
UnKownOwO
2023-02-03 17:05:13 +08:00
parent 734f49821a
commit dc6c0840fc
5 changed files with 101 additions and 19 deletions

View File

@@ -17,7 +17,8 @@ type ItemData struct {
GadgetId int32 `csv:"GadgetId,omitempty"` // 物件ID
Name string `csv:"Name,omitempty"` // 数值用类型
// 材料
MaterialType int32 `csv:"MaterialType,omitempty"` // 材料类型
MaterialType int32 `csv:"MaterialType,omitempty"` // 材料类型
Use1Param1 string `csv:"Use1Param1,omitempty"` // [使用]1参数1
// 武器
EquipType int32 `csv:"EquipType,omitempty"` // 武器种类
EquipLevel int32 `csv:"EquipLevel,omitempty"` // 武器阶数

View File

@@ -456,6 +456,11 @@
"field_name": "MaterialType",
"field_type": "int32",
"origin_name": "材料类型"
},
{
"field_name": "Use1Param1",
"field_type": "string",
"origin_name": "[使用]1参数1"
}
]
},