mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
387 B
Protocol Buffer
17 lines
387 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "InBattleMechanicusCardChallengeState.proto";
|
|
|
|
// Name: NNEEBMPDMML
|
|
message InBattleMechanicusCardInfo {
|
|
uint32 AMLCAOLJCHK = 8;
|
|
uint32 card_id = 1;
|
|
uint32 PIIOIDEHFDD = 3;
|
|
uint32 DEGFCIHNLEG = 6;
|
|
InBattleMechanicusCardChallengeState challenge_state = 14;
|
|
uint32 cost_points = 10;
|
|
}
|
|
|