GC-Proto/proto/InBattleChessInfo.proto

22 lines
557 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "ChessCardInfo.proto";
2023-02-18 04:48:44 +03:00
import "ChessMysteryInfo.proto";
import "ChessPlayerInfo.proto";
2023-04-11 06:14:48 +03:00
// Name: HLHMEIOKCEA
2023-02-18 04:48:44 +03:00
message InBattleChessInfo {
2023-04-11 06:14:48 +03:00
ChessMysteryInfo mystery_info = 3;
uint32 round = 10;
repeated uint32 ban_card_tag_list = 12;
uint32 left_monsters = 7;
map<uint32, ChessPlayerInfo> player_info_map = 13;
uint32 excaped_monsters = 9;
repeated ChessCardInfo selected_card_info_list = 2;
uint32 MMLJDCLICFL = 15;
uint32 NFNKKDHGPAN = 5;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00