GC-Proto/proto/CustomDungeonRecoverNotify.proto

18 lines
427 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "CustomDungeon.proto";
2023-02-28 04:12:44 +03:00
import "EnterCustomDungeonType.proto";
import "TryCustomDungeonType.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// CmdId: 6207
// Name: DAHJKHDDMBP
2023-02-18 04:48:44 +03:00
message CustomDungeonRecoverNotify {
2023-04-11 06:14:48 +03:00
repeated uint32 official_black_coin_list = 11;
CustomDungeon custom_dungeon = 14;
EnterCustomDungeonType enter_type = 2;
TryCustomDungeonType try_type = 5;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00