21 lines
491 B
Protocol Buffer
21 lines
491 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ChangeEnergyReason.proto";
|
|
import "ChangeHpReason.proto";
|
|
import "PropChangeReason.proto";
|
|
|
|
// CmdId: 1241
|
|
// Name: CFFMDGNCJDD
|
|
message EntityFightPropChangeReasonNotify {
|
|
ChangeEnergyReason changeEnergyReason = 10;
|
|
repeated uint32 param_list = 5;
|
|
float prop_delta = 4;
|
|
ChangeHpReason changeHpReason = 7;
|
|
PropChangeReason reason = 11;
|
|
uint32 entity_id = 12;
|
|
uint32 prop_type = 1;
|
|
}
|
|
|