20 lines
520 B
Protocol Buffer
20 lines
520 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ChangeHpDebts.proto";
|
|
import "ChangeHpReason.proto";
|
|
import "ChangeEnergyReason.proto";
|
|
import "PropChangeReason.proto";
|
|
|
|
// 4.7.0
|
|
message EntityFightPropChangeReasonNotify {
|
|
uint32 entity_id = 3;
|
|
ChangeHpDebts change_hp_debts = 6;
|
|
uint32 prop_type = 7;
|
|
ChangeHpReason change_hp_reason = 8;
|
|
ChangeEnergyReason change_energy_reason = 11;
|
|
float prop_delta = 12;
|
|
repeated uint32 param_list = 13;
|
|
PropChangeReason reason = 14;
|
|
}
|