GC-Proto/proto/PlayerCookRsp.proto

19 lines
391 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
import "CookRecipeData.proto";
import "ItemParam.proto";
2023-02-28 06:08:38 +03:00
// Name: DGJDIFLCDOI
// CmdId: 141
2022-11-06 15:30:21 +03:00
message PlayerCookRsp {
2023-02-28 06:08:38 +03:00
repeated ItemParam extral_item_list = 12;
repeated ItemParam item_list = 9;
2023-02-28 23:24:57 +03:00
uint32 cookCount = 10;
2023-02-28 06:08:38 +03:00
CookRecipeData recipe_data = 11;
int32 retcode = 15;
2023-02-28 23:24:57 +03:00
uint32 qteQuality = 6;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00