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 05:23:23 +03:00
|
|
|
import "ChildQuest.proto";
|
2022-11-06 15:51:40 +03:00
|
|
|
import "InferencePageInfo.proto";
|
2023-03-01 05:23:23 +03:00
|
|
|
import "ParentQuestRandomInfo.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-04-11 06:14:48 +03:00
|
|
|
// Name: DDOKGPGCJNK
|
2022-11-06 15:30:21 +03:00
|
|
|
message ParentQuest {
|
2023-04-11 06:14:48 +03:00
|
|
|
uint32 accept_time = 10;
|
|
|
|
bool is_random = 3;
|
|
|
|
repeated ChildQuest child_quest_list = 4;
|
|
|
|
uint64 video_key = 15;
|
|
|
|
ParentQuestRandomInfo random_info = 14;
|
|
|
|
map<uint32, uint32> time_var_map = 5;
|
|
|
|
repeated InferencePageInfo inference_page_list = 13;
|
2023-04-18 01:07:56 +03:00
|
|
|
uint32 quest_var_seq = 9;
|
|
|
|
uint32 parent_quest_state = 12;
|
2023-04-11 06:14:48 +03:00
|
|
|
repeated int32 quest_var = 8;
|
|
|
|
bool is_finished = 11;
|
|
|
|
uint32 parent_quest_id = 7;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 04:12:44 +03:00
|
|
|
|