mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
21 lines
406 B
Protocol Buffer
21 lines
406 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "GCGToken.proto";
|
|
import "GCGSkillLimitsInfo.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;
|
|
}
|