mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-18 09:54:59 +01:00
Add cooking protos.
This commit is contained in:
@@ -1,21 +1,18 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "CookRecipeData.proto";
|
||||
import "ItemParam.proto";
|
||||
|
||||
// CmdId: 150
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message PlayerCookRsp {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
NONE = 0;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
CMD_ID = 180;
|
||||
}
|
||||
|
||||
int32 retcode = 1;
|
||||
CookRecipeData recipe_data = 2;
|
||||
repeated ItemParam item_list = 3;
|
||||
uint32 qte_quality = 4;
|
||||
uint32 cook_count = 5;
|
||||
repeated ItemParam extral_item_list = 6;
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user