GC-Proto/proto/PlayerCookRsp.proto
2023-08-23 01:34:44 +08:00

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;
}