16 lines
387 B
Protocol Buffer
16 lines
387 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ChannellerSlabLoopDungeonInfo.proto";
|
||
|
|
||
|
// Name: HLLPCLCADDC
|
||
|
message ChannellerSlabLoopDungeonStageInfo {
|
||
|
uint32 open_time = 4;
|
||
|
uint32 last_difficulty_id = 14;
|
||
|
bool is_open = 1;
|
||
|
repeated ChannellerSlabLoopDungeonInfo dungeon_info_list = 3;
|
||
|
repeated uint32 taken_reward_index_list = 7;
|
||
|
}
|
||
|
|