21 lines
493 B
Protocol Buffer
21 lines
493 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ChangeEnergyReason.proto";
|
|
import "ChangeHpReason.proto";
|
|
import "PropChangeReason.proto";
|
|
|
|
// Name: CGLFHNCCBKJ
|
|
// CmdId: 1272
|
|
message EntityFightPropChangeReasonNotify {
|
|
repeated uint32 param_list = 12;
|
|
uint32 prop_type = 9;
|
|
ChangeEnergyReason changeEnergyReason = 14;
|
|
ChangeHpReason changeHpReason = 10;
|
|
PropChangeReason reason = 11;
|
|
float prop_delta = 15;
|
|
uint32 entity_id = 6;
|
|
}
|
|
|