2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2023-05-23 09:48:59 +03:00
|
|
|
import "ChangeHpReason.proto";
|
2023-05-23 13:12:42 +03:00
|
|
|
import "ChangeEnergyReason.proto";
|
2023-08-17 14:18:58 +03:00
|
|
|
import "PropChangeReason.proto";
|
2024-04-22 15:15:37 +03:00
|
|
|
|
2022-11-06 15:30:21 +03:00
|
|
|
message EntityFightPropChangeReasonNotify {
|
2024-04-22 15:15:37 +03:00
|
|
|
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;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|