2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
2023-03-01 00:44:50 +03:00
|
|
|
import "ParentQuestRandomInfo.proto";
|
2022-11-06 15:51:40 +03:00
|
|
|
import "InferencePageInfo.proto";
|
2023-03-01 00:44:50 +03:00
|
|
|
import "ChildQuest.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: NMIGKDMCKHK
|
2022-11-06 15:30:21 +03:00
|
|
|
message ParentQuest {
|
2023-02-28 06:08:38 +03:00
|
|
|
bool is_random = 1;
|
2023-03-01 00:44:50 +03:00
|
|
|
repeated ParentQuestRandomInfo randomInfo = 13;
|
2023-02-28 06:08:38 +03:00
|
|
|
repeated int32 quest_var = 2;
|
|
|
|
repeated InferencePageInfo inference_page_list = 4;
|
2023-03-01 00:44:50 +03:00
|
|
|
uint32 parentQuestState = 5;
|
|
|
|
uint32 questVarSeq = 9;
|
2023-02-28 06:08:38 +03:00
|
|
|
uint64 video_key = 6;
|
|
|
|
map<uint32, uint32> time_var_map = 14;
|
|
|
|
bool is_finished = 8;
|
|
|
|
uint32 parent_quest_id = 11;
|
2023-03-01 00:44:50 +03:00
|
|
|
ChildQuest childQuestList = 3;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|