GC-Proto/proto/ServerBuffChangeNotify.proto

23 lines
556 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-01-28 17:00:48 +03:00
import "ServerBuff.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 334
// Name: DPDLNPHNOME
2022-11-06 15:30:21 +03:00
message ServerBuffChangeNotify {
2023-04-11 11:18:47 +03:00
// Name: JEMLILGEABH
2023-03-07 05:02:26 +03:00
enum ServerBuffChangeType {
2023-04-11 11:18:47 +03:00
SERVER_BUFF_CHANGE_TYPE_ADD_SERVER_BUFF = 0;
SERVER_BUFF_CHANGE_TYPE_DEL_SERVER_BUFF = 1;
}
2022-12-05 15:02:30 +03:00
2023-04-11 11:18:47 +03:00
repeated uint64 avatar_guid_list = 6;
2023-02-28 06:08:38 +03:00
bool is_creature_buff = 7;
2023-04-11 11:18:47 +03:00
repeated ServerBuff server_buff_list = 9;
ServerBuffChangeType server_buff_change_type = 15;
repeated uint32 entity_id_list = 13;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00