GC-Proto/proto/EntityFightPropChangeReason...

23 lines
609 B
Protocol Buffer
Raw 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";
2024-05-22 14:51:09 +03:00
2024-07-02 21:31:20 +03:00
import "DetailInfo.proto";
2024-06-23 18:33:14 +03:00
import "ChangeHpDebts.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
2024-06-23 18:33:14 +03:00
// 4.7.0
2024-07-08 14:33:48 +03:00
// CmdId: 26911 ?
2022-11-06 15:30:21 +03:00
message EntityFightPropChangeReasonNotify {
2024-07-02 21:31:20 +03:00
float HFDLKKBJNMI = 1;
uint32 entity_id = 3;
DetailInfo detail_info = 4;
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;
}