2025-09-01 01:03:46 +08:00
|
|
|
|
package pet
|
|
|
|
|
|
|
2025-09-14 01:35:16 +08:00
|
|
|
|
import "blazing/logic/service/player"
|
2025-09-01 01:03:46 +08:00
|
|
|
|
|
|
|
|
|
|
type GetPetListInboundEmpty struct {
|
2025-09-14 01:35:16 +08:00
|
|
|
|
Head player.TomeeHeader `cmd:"2303" struc:"[0]pad"`
|
2025-09-01 01:03:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
type GetPetListOutboundInfo struct {
|
|
|
|
|
|
ShortInfoListLen uint32 `struc:"int32,sizeof=ShortInfoList"`
|
|
|
|
|
|
ShortInfoList []PetShortInfo
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// PetShortInfo 精灵简要信息结构体
|
|
|
|
|
|
type PetShortInfo struct {
|
2025-09-21 08:07:17 +00:00
|
|
|
|
ID uint32 // 精灵类型ID(
|
2025-09-01 01:03:46 +08:00
|
|
|
|
CatchTime uint32 // 精灵生成时间
|
2025-09-01 01:31:42 +08:00
|
|
|
|
Level uint32 // 精灵等级
|
|
|
|
|
|
SkinID uint32 // 精灵皮肤ID
|
|
|
|
|
|
Shiny uint32 // 精灵是否闪光(0=否,1=是)
|
2025-09-01 01:03:46 +08:00
|
|
|
|
}
|