GC-Proto/proto/ParentQuest.proto

24 lines
642 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-07 05:02:26 +03:00
repeated ChildQuest childQuestList = 13;
2023-02-28 06:08:38 +03:00
repeated int32 quest_var = 2;
repeated InferencePageInfo inference_page_list = 4;
2023-03-07 05:02:26 +03:00
uint32 parent_quest_state = 5; // DOCNJADOIPJ
uint32 quest_var_seq = 9; // FLPFBJMELEB
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-07 05:02:26 +03:00
ParentQuestRandomInfo randomInfo = 3;
2022-11-06 15:30:21 +03:00
}
2023-03-07 05:02:26 +03:00