mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-02 11:07:15 +08:00
Add starter move data to system save data spec
This commit is contained in:
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…
x
Reference in New Issue
Block a user