mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
26 lines
486 B
Protocol Buffer
26 lines
486 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "PlayerDieType.proto";
|
|
import "ServerBuff.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message LifeStateChangeNotify {
|
|
enum BCELIHKIKCD {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
PEPPOHPHJOJ = 1255;
|
|
DCDNILFDFLB = 0;
|
|
NNBKOLMPOEA = 1;
|
|
}
|
|
|
|
uint32 entityId = 7;
|
|
repeated ServerBuff serverBuffList = 2;
|
|
uint32 moveReliableSeq = 5;
|
|
string attackTag = 13;
|
|
uint32 sourceEntityId = 15;
|
|
uint32 lifeState = 9;
|
|
PlayerDieType dieType = 6;
|
|
}
|