22 lines
420 B
Protocol Buffer
22 lines
420 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 101
|
|
// Name: JEMHLKGAKCJ
|
|
message ItemGivingReq {
|
|
// Name: KIHMMCOKBOG
|
|
enum ItemGivingType {
|
|
QUEST = 0;
|
|
GADGET = 1;
|
|
}
|
|
|
|
uint32 giving_id = 10;
|
|
ItemGivingType item_giving_type = 15;
|
|
repeated ItemParam item_param_list = 2;
|
|
map<uint64, uint32> item_guid_count_map = 3;
|
|
}
|
|
|