1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-04-09 10:36:08 +03:00
GC-Proto/proto/ItemGivingReq.proto
2024-06-02 11:52:03 +08:00

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
}