17 lines
401 B
Protocol Buffer
17 lines
401 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerDieType.proto";
|
|
import "ServerBuff.proto";
|
|
|
|
// 4.6.0
|
|
// CmdId: 28742
|
|
message AvatarLifeStateChangeNotify {
|
|
uint32 life_state = 1;
|
|
uint64 avatar_guid = 2;
|
|
PlayerDieType die_type = 3;
|
|
string attack_tag = 5;
|
|
uint32 move_reliable_seq = 9;
|
|
uint32 source_entity_id = 11;
|
|
repeated ServerBuff server_buff_list = 13;
|
|
} |