fix quest proto (part 7)
This commit is contained in:
parent
e56e413570
commit
e7f10409cd
|
@ -2,8 +2,9 @@ syntax = "proto3";
|
|||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
// Name: DDGEINCPPIK
|
||||
message ChildQuest {
|
||||
uint32 state = 1;
|
||||
uint32 questConfigId = 14;
|
||||
uint32 state = 1;
|
||||
uint32 quest_config_id = 14;
|
||||
uint32 quest_id = 8;
|
||||
}
|
||||
}
|
|
@ -9,4 +9,3 @@ message InferencePageInfo {
|
|||
repeated InfernceWordInfo unlock_word_list = 8;
|
||||
uint32 page_id = 5;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ syntax = "proto3";
|
|||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: DPMDACEDALK
|
||||
message InfernceWordInfo {
|
||||
bool DFAGDIBEHOG = 3;
|
||||
|
@ -11,4 +10,3 @@ message InfernceWordInfo {
|
|||
uint32 word_id = 10;
|
||||
bool GEHOIBMCJED = 9;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,14 +2,14 @@ syntax = "proto3";
|
|||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "ParentQuestRandomInfo.proto";
|
||||
import "InferencePageInfo.proto";
|
||||
import "ChildQuest.proto";
|
||||
import "InferencePageInfo.proto";
|
||||
import "ParentQuestRandomInfo.proto";
|
||||
|
||||
// Name: NMIGKDMCKHK
|
||||
message ParentQuest {
|
||||
bool is_random = 1;
|
||||
repeated ParentQuestRandomInfo randomInfo = 13;
|
||||
repeated ChildQuest child_quest_list = 13;
|
||||
repeated int32 quest_var = 2;
|
||||
repeated InferencePageInfo inference_page_list = 4;
|
||||
uint32 parentQuestState = 5;
|
||||
|
@ -18,6 +18,5 @@ message ParentQuest {
|
|||
map<uint32, uint32> time_var_map = 14;
|
||||
bool is_finished = 8;
|
||||
uint32 parent_quest_id = 11;
|
||||
ChildQuest childQuestList = 3;
|
||||
ParentQuestRandomInfo random_info = 3;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,11 +2,9 @@ syntax = "proto3";
|
|||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
|
||||
|
||||
// Name: JLADMBEDMHP
|
||||
message ParentQuestRandomInfo {
|
||||
uint32 entranceId = 1;
|
||||
repeated uint32 factorList = 3;
|
||||
uint32 templateId = 6;
|
||||
repeated uint32 factor_list = 9;
|
||||
uint32 template_id = 4;
|
||||
uint32 entrance_id = 14;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue