GC-Proto/proto/PlayerCookRsp.proto

19 lines
423 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
import "CookRecipeData.proto";
import "ItemParam.proto";
2023-02-28 06:08:38 +03:00
// Name: DGJDIFLCDOI
// CmdId: 141
2022-11-06 15:30:21 +03:00
message PlayerCookRsp {
2023-02-28 06:08:38 +03:00
repeated ItemParam extral_item_list = 12;
repeated ItemParam item_list = 9;
2023-03-07 05:02:26 +03:00
uint32 cook_count = 10; // HHKAPMHMHFI
2023-02-28 06:08:38 +03:00
CookRecipeData recipe_data = 11;
int32 retcode = 15;
2023-03-07 05:02:26 +03:00
uint32 qte_quality = 6; // IFLJGHHBGMP
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00