quest fix & personal line impl

This commit is contained in:
Akka
2022-07-05 20:41:07 +08:00
committed by Luke H-W
parent 0141dcebea
commit a788828a99
65 changed files with 1136 additions and 200 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message LockedPersonallineData {
uint32 personal_line_id = 1;
LockReason lock_reason = 2;
oneof param {
uint32 chapter_id = 3;
uint32 level = 4;
}
enum LockReason {
LOCK_REASON_LEVEL = 0;
LOCK_REASON_QUEST = 1;
}
}