2023-08-30 14:32:11 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-05-22 14:51:09 +03:00
|
|
|
|
2023-08-30 14:32:11 +03:00
|
|
|
import "ShapeSphere.proto";
|
|
|
|
import "ShapeBox.proto";
|
2024-07-08 14:40:31 +03:00
|
|
|
// 4.7.0
|
|
|
|
//obf: IHJGCPGECHK
|
|
|
|
// CmdId: 25032
|
2023-08-30 14:32:11 +03:00
|
|
|
message MassiveEntityElementOpBatchNotify {
|
2024-07-08 14:40:31 +03:00
|
|
|
//int32 NOMMJMBBCGJ = 3;
|
|
|
|
uint32 op_idx = 12;
|
|
|
|
uint32 user_id = 7;
|
|
|
|
uint32 attacker_id = 2; // TODO: or defense_id?
|
|
|
|
int32 entity_type = 3;
|
|
|
|
float attack_element_durability = 6;
|
|
|
|
//int32 DDPJBEMDEEM = 14;
|
2024-06-02 06:52:03 +03:00
|
|
|
oneof shape {
|
2024-07-08 14:40:31 +03:00
|
|
|
ShapeSphere shape_sphere = 4;
|
|
|
|
ShapeBox shape_box = 8;
|
2024-06-02 06:52:03 +03:00
|
|
|
}
|
2023-08-30 14:32:11 +03:00
|
|
|
}
|