GC-Proto/proto/MassiveEntityElementOpBatch...

22 lines
496 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ShapeSphere.proto";
import "ShapeBox.proto";
// 4.7.0
//obf: IHJGCPGECHK
// CmdId: 25032
message MassiveEntityElementOpBatchNotify {
//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;
oneof shape {
ShapeSphere shape_sphere = 4;
ShapeBox shape_box = 8;
}
}