21 lines
464 B
Protocol Buffer
21 lines
464 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GCGSkillLimitsInfo.proto";
|
|
import "GCGToken.proto";
|
|
|
|
// Name: PDOEIHIJNGB
|
|
message GCGCard {
|
|
uint32 guid = 15;
|
|
uint32 id = 13;
|
|
bool is_show = 14;
|
|
repeated GCGToken token_list = 9;
|
|
repeated uint32 tag_list = 8;
|
|
repeated uint32 skill_id_list = 7;
|
|
repeated GCGSkillLimitsInfo skill_limits_list = 2;
|
|
uint32 face_type = 11;
|
|
uint32 controller_id = 10;
|
|
}
|
|
|