GC-Proto/proto/ParentQuest.proto

23 lines
610 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-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 03:26:37 +03:00
repeated ChildQuest child_quest_list = 13;
2023-02-28 06:08:38 +03:00
repeated int32 quest_var = 2;
repeated InferencePageInfo inference_page_list = 4;
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 03:26:37 +03:00
ParentQuestRandomInfo random_info = 3;
2022-11-06 15:30:21 +03:00
}