mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-01 15:54:44 +03:00
19 lines
392 B
Protocol Buffer
19 lines
392 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CookRecipeData.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 148
|
|
// Name: GJBLIANJAOC
|
|
message PlayerCookRsp {
|
|
uint32 cook_count = 2;
|
|
int32 retcode = 12;
|
|
uint32 qte_quality = 14;
|
|
repeated ItemParam item_list = 8;
|
|
repeated ItemParam extral_item_list = 15;
|
|
CookRecipeData recipe_data = 9;
|
|
}
|
|
|