19 lines
478 B
Protocol Buffer
19 lines
478 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 4653
|
|
|
|
import "PlayerDieType.proto";
|
|
import "ServerBuff.proto";
|
|
|
|
message AvatarLifeStateChangeNotify {
|
|
uint32 source_entity_id = 2;
|
|
repeated string EPGOBHIEDOI = 3;
|
|
PlayerDieType die_type = 5;
|
|
uint64 avatar_guid = 9;
|
|
uint32 move_reliable_seq = 10;
|
|
uint32 life_state = 11;
|
|
repeated ServerBuff server_buff_list = 14;
|
|
string attack_tag = 15;
|
|
}
|