Add all AvatarExpedition protos

Expedition system has almost done but still has some bug so it will be uploaded later
This commit is contained in:
ShiroSaki
2022-05-06 07:43:45 +08:00
committed by Melledy
parent 18b1c50d0a
commit eaf0dd0b3b
9 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "AvatarExpeditionInfo.proto";
message AvatarExpeditionAllDataRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 1783;
}
int32 retcode = 1;
map<uint64, AvatarExpeditionInfo> expedition_info_map = 2;
repeated uint32 open_expedition_list = 3;
uint32 expedition_count_limit = 4;
}