mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
19 lines
396 B
Protocol Buffer
19 lines
396 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CookRecipeData.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 188
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message PlayerCookRsp {
|
|
int32 retcode = 3;
|
|
CookRecipeData recipe_data = 7;
|
|
repeated ItemParam item_list = 11;
|
|
uint32 qte_quality = 5;
|
|
uint32 cook_count = 12;
|
|
repeated ItemParam extral_item_list = 15;
|
|
}
|