20 lines
429 B
Protocol Buffer
20 lines
429 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerDieType.proto";
|
|
import "ServerBuff.proto";
|
|
|
|
// CmdId: 1296
|
|
// Name: JAIDICBLKEP
|
|
message LifeStateChangeNotify {
|
|
repeated ServerBuff server_buff_list = 13;
|
|
uint32 life_state = 3;
|
|
string attack_tag = 10;
|
|
PlayerDieType die_type = 15;
|
|
uint32 entity_id = 5;
|
|
uint32 source_entity_id = 8;
|
|
uint32 move_reliable_seq = 2;
|
|
}
|
|
|