Grasscutter/proto/PlayerCookRsp.proto

19 lines
397 B
Protocol Buffer
Raw Normal View History

2022-06-30 17:13:27 +08:00
syntax = "proto3";
2022-06-30 17:22:23 +08:00
option java_package = "emu.grasscutter.net.proto";
2022-06-30 17:13:27 +08:00
import "CookRecipeData.proto";
import "ItemParam.proto";
2022-06-30 17:22:23 +08:00
// CmdId: 150
// EnetChannelId: 0
// EnetIsReliable: true
2022-06-30 17:13:27 +08:00
message PlayerCookRsp {
2022-06-30 17:22:23 +08:00
int32 retcode = 9;
CookRecipeData recipe_data = 14;
repeated ItemParam item_list = 13;
uint32 qte_quality = 11;
uint32 cook_count = 15;
repeated ItemParam extral_item_list = 3;
2022-06-30 17:13:27 +08:00
}