|
|
@ -4,6 +4,7 @@ type SystemSaveData struct {
|
|
|
|
TrainerId int `json:"trainerId"`
|
|
|
|
TrainerId int `json:"trainerId"`
|
|
|
|
SecretId int `json:"secretId"`
|
|
|
|
SecretId int `json:"secretId"`
|
|
|
|
DexData DexData `json:"dexData"`
|
|
|
|
DexData DexData `json:"dexData"`
|
|
|
|
|
|
|
|
GameStats GameStats `json:"gameStats"`
|
|
|
|
Unlocks Unlocks `json:"unlocks"`
|
|
|
|
Unlocks Unlocks `json:"unlocks"`
|
|
|
|
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
|
|
|
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
|
|
|
VoucherUnlocks VoucherUnlocks `json:"voucherUnlocks"`
|
|
|
|
VoucherUnlocks VoucherUnlocks `json:"voucherUnlocks"`
|
|
|
@ -25,6 +26,8 @@ type DexEntry struct {
|
|
|
|
Ivs []int `json:"ivs"`
|
|
|
|
Ivs []int `json:"ivs"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type GameStats interface{}
|
|
|
|
|
|
|
|
|
|
|
|
type Unlocks map[int]bool
|
|
|
|
type Unlocks map[int]bool
|
|
|
|
|
|
|
|
|
|
|
|
type AchvUnlocks map[string]int
|
|
|
|
type AchvUnlocks map[string]int
|
|
|
|