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