mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
19 lines
391 B
Protocol Buffer
19 lines
391 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CookRecipeData.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// Name: DGJDIFLCDOI
|
|
// CmdId: 141
|
|
message PlayerCookRsp {
|
|
repeated ItemParam extral_item_list = 12;
|
|
repeated ItemParam item_list = 9;
|
|
uint32 cookCount = 10;
|
|
CookRecipeData recipe_data = 11;
|
|
int32 retcode = 15;
|
|
uint32 qteQuality = 6;
|
|
}
|
|
|