19 lines
470 B
Protocol Buffer
19 lines
470 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 29321
|
|
|
|
import "PlayerDieType.proto";
|
|
import "ServerBuff.proto";
|
|
|
|
message LifeStateChangeNotify {
|
|
string attack_tag = 2;
|
|
uint32 move_reliable_seq = 3;
|
|
repeated string EPGOBHIEDOI = 5;
|
|
uint32 entity_id = 6;
|
|
uint32 life_state = 8;
|
|
PlayerDieType die_type = 10;
|
|
repeated ServerBuff server_buff_list = 13;
|
|
uint32 source_entity_id = 14;
|
|
}
|