From 72d9e593b9cd81bfe67da2c1401523355a4f511f Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Thu, 20 Jun 2024 18:45:09 +0100 Subject: [PATCH] chore: Add additional fields to EggData struct --- defs/savedata.go | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/defs/savedata.go b/defs/savedata.go index 094ffc5..1ef6b80 100644 --- a/defs/savedata.go +++ b/defs/savedata.go @@ -79,10 +79,17 @@ type VoucherUnlocks map[string]int type VoucherCounts map[string]int type EggData struct { - Id int `json:"id"` - GachaType GachaType `json:"gachaType"` - HatchWaves int `json:"hatchWaves"` - Timestamp int `json:"timestamp"` + Id int `json:"id"` + GachaType GachaType `json:"gachaType"` + HatchWaves int `json:"hatchWaves"` + Timestamp int `json:"timestamp"` + Tier int `json:"tier"` + SourceType int `json:"sourceType"` + VariantTier int `json:"variantTier"` + IsShiny bool `json:"isShiny"` + Species int `json:"species"` + EggMoveIndex int `json:"eggMoveIndex"` + OverrideHiddenAbility bool `json:"overrideHiddenAbility"` } type GachaType int