18 lines
475 B
Protocol Buffer
18 lines
475 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "LockedPersonallineData.proto";
|
|
|
|
// CmdId: 476
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message PersonalLineAllDataRsp {
|
|
int32 retcode = 15;
|
|
uint32 cur_finished_daily_task_count = 5;
|
|
uint32 legendary_key_count = 11;
|
|
repeated uint32 ongoing_personal_line_list = 8;
|
|
repeated uint32 can_be_unlocked_personal_line_list = 13;
|
|
repeated LockedPersonallineData locked_personal_line_list = 10;
|
|
}
|