| 112 | RoleData []ro `json:"data"` |
| 113 | } |
| 114 | type ro struct { |
| 115 | ID int `json:"id"` |
| 116 | Name string `json:"name"` |
| 117 | Star int `json:"star"` |
| 118 | Rank int `json:"rank"` |
| 119 | Path string `json:"path"` // 命途 |
| 120 | Element string `json:"element"` // 元素属性 |
| 121 | List combat `json:"combat"` // 属性列表 |
| 122 | Light light `json:"light"` |
| 123 | Skill skill `json:"skill"` // 技能 |
| 124 | Relics relics `json:"rolics"` // 遗物 |
| 125 | } |
| 126 | type combat struct { |
| 127 | AvatarID int `json:"avatarId"` // 角色序号 |
| 128 | Level int `json:"level"` |
nothing calls this directly
no outgoing calls
no test coverage detected