17 lines
362 B
Protocol Buffer
17 lines
362 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// 4.6.0
|
|
// CmdId: 204
|
|
message ItemGivingReq {
|
|
enum ItemGivingType {
|
|
QUEST = 0;
|
|
GADGET = 1;
|
|
}
|
|
map<uint64, uint32> item_guid_count_map = 2;
|
|
uint32 giving_id = 6;
|
|
repeated ItemParam item_param_list = 14;
|
|
ItemGivingType item_giving_type = 1; // TODO 4.6.0
|
|
} |