2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2024-06-08 09:18:08 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
|
2023-05-23 09:48:59 +03:00
|
|
|
import "ChildQuest.proto";
|
2023-03-01 03:26:37 +03:00
|
|
|
import "ParentQuestRandomInfo.proto";
|
2024-06-23 18:33:14 +03:00
|
|
|
import "InferencePageInfo.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
|
2024-06-23 18:33:14 +03:00
|
|
|
// 4.7.0
|
2022-11-06 15:30:21 +03:00
|
|
|
message ParentQuest {
|
2024-06-23 18:33:14 +03:00
|
|
|
bool is_random = 1;
|
|
|
|
repeated ChildQuest child_quest_list = 2;
|
|
|
|
uint32 quest_var_seq = 3;
|
|
|
|
repeated int32 quest_var = 4;
|
|
|
|
uint64 video_key = 7;
|
|
|
|
bool is_finished = 8;
|
|
|
|
ParentQuestRandomInfo random_info = 9;
|
|
|
|
uint32 parent_quest_state = 10;
|
|
|
|
uint32 parent_quest_id = 11;
|
|
|
|
map <uint32, uint32> time_var_map = 12;
|
|
|
|
uint32 accept_time = 13;
|
|
|
|
bool JHIHBMEAJPO = 14;
|
|
|
|
repeated InferencePageInfo inference_page_list = 15;
|
2024-06-08 09:18:08 +03:00
|
|
|
}
|