GC-Proto/proto/GCGDuel.proto

54 lines
1.9 KiB
Protocol Buffer
Raw Normal View History

2023-08-22 19:58:47 +03:00
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
// Copyright (C) 2023 Sorapointa Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2023-02-18 04:48:44 +03:00
2023-08-22 19:58:47 +03:00
syntax = "proto3";
2023-02-18 04:48:44 +03:00
2023-08-22 19:58:47 +03:00
import "GCGCard.proto";
import "GCGControllerShowInfo.proto";
2023-02-18 04:48:44 +03:00
import "GCGCostReviseInfo.proto";
2023-08-22 19:58:47 +03:00
import "GCGDuelChallenge.proto";
2023-02-18 04:48:44 +03:00
import "GCGGameBusinessType.proto";
import "GCGMessagePack.proto";
2023-08-22 19:58:47 +03:00
import "GCGOpTimer.proto";
import "GCGPhase.proto";
2023-02-18 04:48:44 +03:00
import "GCGPlayerField.proto";
2023-08-22 19:58:47 +03:00
import "GCGPVEIntention.proto";
option java_package = "org.sorapointa.proto";
2023-02-18 04:48:44 +03:00
message GCGDuel {
2023-08-22 19:58:47 +03:00
repeated GCGCard card_list = 1;
uint32 operation_seq = 5;
repeated uint32 forbid_finish_challenge_list = 1985;
repeated GCGCard history_card_list = 1326;
repeated GCGMessagePack history_msg_pack_list = 1636;
uint32 cur_controller_id = 14;
repeated GCGControllerShowInfo show_info_list = 10;
repeated GCGOpTimer op_timer_list = 1950;
repeated GCGPVEIntention intetion_list = 15;
GCGCostReviseInfo cost_revise = 6;
uint32 controller_id = 2;
repeated GCGPlayerField field_list = 3;
GCGGameBusinessType business_type = 7;
GCGPhase phase = 8;
repeated GCGDuelChallenge challenge_list = 37;
repeated uint32 card_id_list = 12;
uint32 server_seq = 11;
uint32 round = 4;
uint32 game_id = 9;
uint32 game_type = 13;
2023-02-18 04:48:44 +03:00
}