mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
351 B
Protocol Buffer
18 lines
351 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: LDPIOEFDNDN
|
|
message GCGDSDeckData {
|
|
fixed32 create_time = 1;
|
|
uint32 id = 10;
|
|
uint32 card_back_id = 3;
|
|
repeated uint32 card_list = 8;
|
|
string name = 13;
|
|
repeated uint32 character_card_list = 14;
|
|
uint32 field_id = 7;
|
|
bool is_valid = 15;
|
|
}
|
|
|