GC-Proto/proto/InBattleChessInfo.proto

22 lines
556 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-02-28 04:12:44 +03:00
// Name: PGAFCGFEDED
2023-02-18 04:48:44 +03:00
message InBattleChessInfo {
2023-02-28 04:12:44 +03:00
uint32 MHNBCGLCKFG = 8;
uint32 round = 14;
uint32 excaped_monsters = 11;
repeated uint32 ban_card_tag_list = 1;
repeated ChessCardInfo selected_card_info_list = 15;
uint32 left_monsters = 4;
ChessMysteryInfo mystery_info = 7;
map<uint32, ChessPlayerInfo> player_info_map = 2;
uint32 PCJFLHLDDOF = 9;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00