20 lines
437 B
Protocol Buffer
20 lines
437 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerDieType.proto";
|
|
import "ServerBuff.proto";
|
|
|
|
// Name: EJKMHOEPDIB
|
|
// CmdId: 1282
|
|
message AvatarLifeStateChangeNotify {
|
|
PlayerDieType die_type = 10;
|
|
uint32 source_entity_id = 4;
|
|
uint32 move_reliable_seq = 2;
|
|
uint32 life_state = 7;
|
|
uint64 avatar_guid = 14;
|
|
string attack_tag = 13;
|
|
repeated ServerBuff server_buff_list = 3;
|
|
}
|
|
|