GC-Proto/proto/ServerBuffChangeNotify.proto

20 lines
511 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2024-08-28 12:09:22 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-08-28 12:09:22 +03:00
// Version: 5.0
// CmdId: 21009
2024-05-22 14:51:09 +03:00
import "ServerBuff.proto";
2024-05-22 14:51:09 +03:00
2022-11-06 15:30:21 +03:00
message ServerBuffChangeNotify {
2024-08-28 12:09:22 +03:00
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-08-28 12:09:22 +03:00
repeated uint32 entity_id_list = 1;
repeated ServerBuff server_buff_list = 2;
bool is_creature_buff = 3;
repeated uint64 avatar_guid_list = 11;
ServerBuffChangeType server_buff_change_type = 14;
}