GC-Proto/proto/TowerAllDataRsp.proto

31 lines
992 B
Protocol Buffer
Raw Normal View History

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
import "TowerCurLevelRecord.proto";
2023-01-28 17:00:48 +03:00
import "TowerFloorRecord.proto";
2023-04-11 11:18:47 +03:00
import "TowerMonthlyBrief.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 2492
// Name: MPFPLNBLIKB
2022-11-06 15:30:21 +03:00
message TowerAllDataRsp {
uint32 tower_schedule_id = 10;
2023-03-07 05:02:26 +03:00
bool is_finished_entrance_floor = 4;
map<uint32, uint32> floor_open_time_map = 1;
uint32 AJKNPOGBLDG = 6; // not used
2023-04-11 11:18:47 +03:00
bool is_first_interact = 11;
uint32 next_schedule_change_time = 5;
int32 retcode = 13;
uint32 PHCNCLHJFBM = 8; // not used
uint32 KPJMJMPPPGK = 12; // not used
uint32 valid_tower_record_num = 15; //NKMMGNAGOOA
2023-04-11 11:18:47 +03:00
TowerMonthlyBrief last_schedule_monthly_brief = 1890;
repeated TowerFloorRecord tower_floor_record_list = 2;
TowerMonthlyBrief monthly_brief = 7;
map<uint32, uint32> skip_floor_granted_reward_item_map = 3;
uint32 GMMJNDFMHAM = 9; // GMMJNDFMHAM
uint32 schedule_start_time = 1783;
2023-04-11 11:18:47 +03:00
TowerCurLevelRecord cur_level_record = 14;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00