mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
495 B
Protocol Buffer
18 lines
495 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GCGAttackCostInfo.proto";
|
|
import "GCGPlayCardCostInfo.proto";
|
|
import "GCGSelectOnStageCostInfo.proto";
|
|
|
|
// Name: JNCLNIFHAEF
|
|
message GCGCostReviseInfo {
|
|
repeated GCGPlayCardCostInfo play_card_cost_list = 3;
|
|
repeated GCGAttackCostInfo attack_cost_list = 9;
|
|
repeated GCGSelectOnStageCostInfo select_on_stage_cost_list = 6;
|
|
bool is_can_attack = 4;
|
|
repeated uint32 can_use_hand_card_id_list = 2;
|
|
}
|
|
|