|
|
|
@ -6,6 +6,7 @@ type SystemSaveData struct {
|
|
|
|
|
Gender int `json:"gender"`
|
|
|
|
|
DexData DexData `json:"dexData"`
|
|
|
|
|
StarterMoveData StarterMoveData `json:"starterMoveData"`
|
|
|
|
|
StarterEggMoveData StarterEggMoveData `json:"starterEggMoveData"`
|
|
|
|
|
GameStats GameStats `json:"gameStats"`
|
|
|
|
|
Unlocks Unlocks `json:"unlocks"`
|
|
|
|
|
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
|
|
|
@ -30,6 +31,8 @@ type DexEntry struct {
|
|
|
|
|
|
|
|
|
|
type StarterMoveData map[int]interface{}
|
|
|
|
|
|
|
|
|
|
type StarterEggMoveData map[int]int
|
|
|
|
|
|
|
|
|
|
type GameStats interface{}
|
|
|
|
|
|
|
|
|
|
type Unlocks map[int]bool
|
|
|
|
|