| 76 | } |
| 77 | |
| 78 | type role struct { |
| 79 | BehaviorList []struct { |
| 80 | BehaviorID int `json:"BehaviorID"` |
| 81 | Level int `json:"Level"` |
| 82 | } `json:"BehaviorList"` |
| 83 | AvatarID int `json:"AvatarID"` |
| 84 | Level int `json:"Level"` |
| 85 | EquipmentID struct { |
| 86 | Level int `json:"Level"` |
| 87 | ID int `json:"ID"` |
| 88 | Promotion int `json:"Promotion"` |
| 89 | Rank int `json:"Rank"` |
| 90 | } `json:"EquipmentID"` |
| 91 | RelicList []struct { |
| 92 | RelicSubAffix []struct { |
| 93 | SubAffixID int `json:"SubAffixID"` |
| 94 | Cnt int `json:"Cnt"` |
| 95 | Step int `json:"Step"` |
| 96 | } `json:"RelicSubAffix"` |
| 97 | ID int `json:"ID"` |
| 98 | MainAffixID int `json:"MainAffixID"` |
| 99 | Level float64 `json:"Level,omitempty"` |
| 100 | Type int `json:"Type"` |
| 101 | EXP int `json:"EXP,omitempty"` |
| 102 | } `json:"RelicList"` |
| 103 | Promotion int `json:"Promotion"` // 角色晋阶 |
| 104 | Rank int `json:"Rank"` // 星魂 |
| 105 | } |
| 106 | |
| 107 | // 本地数据 |
| 108 | type thisdata struct { |
nothing calls this directly
no outgoing calls
no test coverage detected