2022-04-26 21:44:30 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "ChangeEnergyReason.proto";
|
2022-05-28 06:58:12 +00:00
|
|
|
import "ChangeHpReason.proto";
|
|
|
|
import "PropChangeReason.proto";
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-05-28 06:58:12 +00:00
|
|
|
// CmdId: 1285
|
|
|
|
// EnetChannelId: 0
|
|
|
|
// EnetIsReliable: true
|
2022-04-26 21:44:30 +00:00
|
|
|
message EntityFightPropChangeReasonNotify {
|
2022-05-28 06:58:12 +00:00
|
|
|
uint32 entity_id = 11;
|
|
|
|
uint32 prop_type = 6;
|
|
|
|
float prop_delta = 9;
|
|
|
|
PropChangeReason reason = 5;
|
|
|
|
repeated uint32 param_list = 10;
|
|
|
|
ChangeHpReason change_hp_reason = 12;
|
|
|
|
ChangeEnergyReason change_energy_reson = 4;
|
2022-04-26 21:44:30 +00:00
|
|
|
}
|