mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-16 21:51:29 +08:00
Add support for egg moves data
This commit is contained in:
parent
7d962ae838
commit
2938dbc19d
@ -6,6 +6,7 @@ type SystemSaveData struct {
|
|||||||
Gender int `json:"gender"`
|
Gender int `json:"gender"`
|
||||||
DexData DexData `json:"dexData"`
|
DexData DexData `json:"dexData"`
|
||||||
StarterMoveData StarterMoveData `json:"starterMoveData"`
|
StarterMoveData StarterMoveData `json:"starterMoveData"`
|
||||||
|
StarterEggMoveData StarterEggMoveData `json:"starterEggMoveData"`
|
||||||
GameStats GameStats `json:"gameStats"`
|
GameStats GameStats `json:"gameStats"`
|
||||||
Unlocks Unlocks `json:"unlocks"`
|
Unlocks Unlocks `json:"unlocks"`
|
||||||
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
||||||
@ -30,6 +31,8 @@ type DexEntry struct {
|
|||||||
|
|
||||||
type StarterMoveData map[int]interface{}
|
type StarterMoveData map[int]interface{}
|
||||||
|
|
||||||
|
type StarterEggMoveData map[int]int
|
||||||
|
|
||||||
type GameStats interface{}
|
type GameStats interface{}
|
||||||
|
|
||||||
type Unlocks map[int]bool
|
type Unlocks map[int]bool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user