|
|
@ -5,6 +5,7 @@ type SystemSaveData struct {
|
|
|
|
SecretId int `json:"secretId"`
|
|
|
|
SecretId int `json:"secretId"`
|
|
|
|
Gender int `json:"gender"`
|
|
|
|
Gender int `json:"gender"`
|
|
|
|
DexData DexData `json:"dexData"`
|
|
|
|
DexData DexData `json:"dexData"`
|
|
|
|
|
|
|
|
StarterMoveData StarterMoveData `json:"starterMoveData"`
|
|
|
|
GameStats GameStats `json:"gameStats"`
|
|
|
|
GameStats GameStats `json:"gameStats"`
|
|
|
|
Unlocks Unlocks `json:"unlocks"`
|
|
|
|
Unlocks Unlocks `json:"unlocks"`
|
|
|
|
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
|
|
|
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
|
|
@ -27,6 +28,8 @@ type DexEntry struct {
|
|
|
|
Ivs []int `json:"ivs"`
|
|
|
|
Ivs []int `json:"ivs"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type StarterMoveData map[int]interface{}
|
|
|
|
|
|
|
|
|
|
|
|
type GameStats interface{}
|
|
|
|
type GameStats interface{}
|
|
|
|
|
|
|
|
|
|
|
|
type Unlocks map[int]bool
|
|
|
|
type Unlocks map[int]bool
|
|
|
|