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";
|
2023-05-23 13:12:42 +03:00
|
|
|
import "TowerCurLevelRecord.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
import "TowerFloorRecord.proto";
|
2023-08-17 14:18:58 +03:00
|
|
|
import "TowerMonthlyBrief.proto";
|
2024-07-05 00:44:58 +03:00
|
|
|
// 4.7.0
|
|
|
|
// CmdId: 2253
|
2022-11-06 15:30:21 +03:00
|
|
|
message TowerAllDataRsp {
|
2024-07-22 06:47:23 +03:00
|
|
|
uint32 tower_schedule_id = 4;
|
2024-07-05 00:44:58 +03:00
|
|
|
bool is_finished_entrance_floor = 10;
|
2024-07-22 06:47:23 +03:00
|
|
|
uint32 valid_floor_record_list = 6; // 1 SUS
|
2024-07-05 00:44:58 +03:00
|
|
|
TowerCurLevelRecord cur_level_record = 1;
|
|
|
|
int32 retcode = 11;
|
|
|
|
map<uint32, uint32> skip_floor_granted_reward_item_map = 14; // sus
|
2023-08-17 14:18:58 +03:00
|
|
|
bool is_first_interact = 7;
|
2024-07-05 00:44:58 +03:00
|
|
|
map<uint32, uint32> floor_open_time_map = 15; // sus
|
2024-07-22 06:47:23 +03:00
|
|
|
uint32 next_schedule_change_time = 3; // OK
|
2024-07-05 00:44:58 +03:00
|
|
|
TowerMonthlyBrief monthly_brief = 8;
|
|
|
|
repeated TowerFloorRecord tower_floor_record_list = 5;
|
|
|
|
uint32 schedule_start_time = 1082;
|
|
|
|
TowerMonthlyBrief last_schedule_monthly_brief = 1040;
|
2024-06-08 09:18:08 +03:00
|
|
|
}
|