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";
|
2024-05-22 14:51:09 +03:00
|
|
|
|
2023-05-23 09:48:59 +03:00
|
|
|
import "ItemParam.proto";
|
2024-04-22 15:15:37 +03:00
|
|
|
|
2024-05-22 14:51:09 +03:00
|
|
|
// 4.6.0
|
|
|
|
// CmdId: 204
|
2022-11-06 15:30:21 +03:00
|
|
|
message ItemGivingReq {
|
2024-06-02 06:52:03 +03:00
|
|
|
enum ItemGivingType {
|
|
|
|
QUEST = 0;
|
|
|
|
GADGET = 1;
|
|
|
|
}
|
2024-05-29 15:56:24 +03:00
|
|
|
map<uint64, uint32> item_guid_count_map = 2;
|
2024-05-22 14:51:09 +03:00
|
|
|
uint32 giving_id = 6;
|
|
|
|
repeated ItemParam item_param_list = 14;
|
2024-06-02 06:52:03 +03:00
|
|
|
ItemGivingType item_giving_type = 1; // TODO 4.6.0
|
2024-05-22 14:51:09 +03:00
|
|
|
}
|