GC-Proto/proto/ParentQuest.proto

25 lines
646 B
Protocol Buffer
Raw Normal View History

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";
2022-11-06 15:30:21 +03:00
import "ChildQuest.proto";
2023-03-01 03:26:37 +03:00
import "InferencePageInfo.proto";
import "ParentQuestRandomInfo.proto";
2023-04-11 11:18:47 +03:00
// Name: DDOKGPGCJNK
2022-11-06 15:30:21 +03:00
message ParentQuest {
2023-04-11 11:18:47 +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;
uint32 quest_var_seq = 9;
uint32 parent_quest_state = 12;
2023-04-11 11:18:47 +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-03-07 05:02:26 +03:00