GC-Proto/proto/EntityFightPropChangeReason...

16 lines
442 B
Protocol Buffer
Raw Permalink Normal View History

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";
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
}