18 lines
431 B
Protocol Buffer
18 lines
431 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CompoundBoostTakeStatusType.proto";
|
|
import "CompoundQueueData.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 113
|
|
// Name: DNCELLIFEHB
|
|
message PlayerCompoundMaterialBoostRsp {
|
|
int32 retcode = 8;
|
|
CompoundBoostTakeStatusType take_status = 9;
|
|
repeated CompoundQueueData compoundQueueDataList = 15;
|
|
repeated ItemParam take_item_list = 14;
|
|
}
|
|
|