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
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
import "ParentQuestRandomInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "ChildQuest.proto";
|
2022-11-06 15:51:40 +03:00
|
|
|
import "InferencePageInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
message ParentQuest {
|
2023-01-28 17:00:48 +03:00
|
|
|
ParentQuestRandomInfo randomInfo = 7;
|
|
|
|
repeated int32 questVar = 8;
|
|
|
|
repeated ChildQuest childQuestList = 10;
|
|
|
|
bool isFinished = 9;
|
|
|
|
bool isRandom = 11;
|
|
|
|
uint32 parentQuestId = 1;
|
|
|
|
map<uint32, uint32> timeVarMap = 12;
|
|
|
|
uint32 parentQuestState = 15;
|
|
|
|
uint64 videoKey = 2;
|
|
|
|
repeated InferencePageInfo inferencePageList = 5;
|
|
|
|
uint32 questVarSeq = 4;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|