GC-Proto/proto/ServerBuffChangeNotify.proto

19 lines
483 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2024-05-22 14:51:09 +03:00
import "ServerBuff.proto";
2024-05-22 14:51:09 +03:00
// 4.6.0
// CmdId: 9934
2022-11-06 15:30:21 +03:00
message ServerBuffChangeNotify {
enum ServerBuffChangeType {
2023-05-23 13:12:42 +03:00
SERVER_BUFF_CHANGE_TYPE_ADD_SERVER_BUFF = 0;
SERVER_BUFF_CHANGE_TYPE_DEL_SERVER_BUFF = 1;
}
2024-05-22 14:51:09 +03:00
bool is_creature_buff = 2;
repeated uint32 entity_id_list = 4;
repeated uint64 avatar_guid_list = 6;
repeated ServerBuff server_buff_list = 7;
ServerBuffChangeType server_buff_change_type = 10;
}