Grasscutter/proto/AvatarExpeditionGetRewardRsp.proto
ShiroSaki eaf0dd0b3b Add all AvatarExpedition protos
Expedition system has almost done but still has some bug so it will be uploaded later
2022-05-05 16:52:48 -07:00

20 lines
414 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "AvatarExpeditionInfo.proto";
import "ItemParam.proto";
message AvatarExpeditionGetRewardRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 1670;
}
int32 retcode = 1;
map<uint64, AvatarExpeditionInfo> expedition_info_map = 2;
repeated ItemParam item_list = 3;
}