mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
21 lines
462 B
Protocol Buffer
21 lines
462 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GCGSkillLimitsInfo.proto";
|
|
import "GCGToken.proto";
|
|
|
|
// Name: FEFAEBDNOFD
|
|
message GCGCard {
|
|
uint32 guid = 10;
|
|
repeated uint32 tag_list = 2;
|
|
bool is_show = 7;
|
|
uint32 id = 1;
|
|
repeated GCGSkillLimitsInfo skill_limits_list = 14;
|
|
repeated GCGToken token_list = 8;
|
|
uint32 controller_id = 9;
|
|
uint32 face_type = 3;
|
|
repeated uint32 skill_id_list = 11;
|
|
}
|
|
|