20 lines
405 B
Protocol Buffer
20 lines
405 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "GCGToken.proto";
|
|
import "GCGSkillLimitsInfo.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message GCGCard {
|
|
repeated uint32 skillIdList = 11;
|
|
repeated GCGToken tokenList = 3;
|
|
uint32 controllerId = 2;
|
|
repeated uint32 tagList = 9;
|
|
uint32 retcode = 1;
|
|
uint32 guid = 8;
|
|
uint32 id = 14;
|
|
bool isShow = 13;
|
|
repeated GCGSkillLimitsInfo skillLimitsList = 12;
|
|
}
|