21 lines
498 B
Protocol Buffer
21 lines
498 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// Name: BKPBJLHMEIG
|
|
// CmdId: 637
|
|
message CombineRsp {
|
|
repeated ItemParam totalReturnItemList = 9;
|
|
repeated ItemParam totalExtraItemList = 13;
|
|
uint64 avatar_guid = 10;
|
|
repeated ItemParam totalRandomItemList = 6;
|
|
repeated ItemParam resultItemList = 14;
|
|
repeated ItemParam cost_item_list = 5;
|
|
uint32 combine_count = 1;
|
|
int32 retcode = 7;
|
|
uint32 combine_id = 2;
|
|
}
|
|
|