GC-Proto/proto/DungeonEntryInfo.proto

20 lines
505 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
2023-01-28 17:00:48 +03:00
import "WeeklyBossResinDiscountInfo.proto";
2023-02-28 06:08:38 +03:00
// Name: CKFOCGGAGBL
2022-11-06 15:30:21 +03:00
message DungeonEntryInfo {
2023-02-28 06:08:38 +03:00
uint32 start_time = 4;
uint32 next_refresh_time = 2;
2023-03-11 18:42:44 +03:00
uint32 max_boss_chest_num = 12; //HFEFHDCOMLB
uint32 EIMBMLKPONH = 7; //not used
2023-02-28 06:08:38 +03:00
bool is_passed = 15;
2023-03-11 18:42:44 +03:00
uint32 JPBJFFCFINC = 6; //not used
2023-02-28 06:08:38 +03:00
WeeklyBossResinDiscountInfo weekly_boss_resin_discount_info = 10;
uint32 dungeon_id = 11;
uint32 end_time = 9;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00