16 lines
442 B
Protocol Buffer
16 lines
442 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "ChangeHpReason.proto";
|
|
import "ChangeEnergyReason.proto";
|
|
import "PropChangeReason.proto";
|
|
|
|
message EntityFightPropChangeReasonNotify {
|
|
repeated uint32 param_list = 9;
|
|
PropChangeReason reason = 11;
|
|
ChangeHpReason change_hp_reason = 2;
|
|
float prop_delta = 5;
|
|
ChangeEnergyReason change_energy_reason = 8;
|
|
uint32 entity_id = 10;
|
|
uint32 prop_type = 13;
|
|
}
|