Add starter move data to system save data spec
parent
9e38ccccbc
commit
06ade19e2c
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue