23 lines
610 B
Protocol Buffer
23 lines
610 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ChildQuest.proto";
|
|
import "InferencePageInfo.proto";
|
|
import "ParentQuestRandomInfo.proto";
|
|
|
|
// Name: NMIGKDMCKHK
|
|
message ParentQuest {
|
|
bool is_random = 1;
|
|
repeated ChildQuest child_quest_list = 13;
|
|
repeated int32 quest_var = 2;
|
|
repeated InferencePageInfo inference_page_list = 4;
|
|
uint32 parentQuestState = 5;
|
|
uint32 questVarSeq = 9;
|
|
uint64 video_key = 6;
|
|
map<uint32, uint32> time_var_map = 14;
|
|
bool is_finished = 8;
|
|
uint32 parent_quest_id = 11;
|
|
ParentQuestRandomInfo random_info = 3;
|
|
}
|