mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
23 lines
398 B
Protocol Buffer
23 lines
398 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: PBPLDMMEGBO
|
|
message Achievement {
|
|
// Name: OPFLKOJMOIG
|
|
enum Status {
|
|
INVALID = 0;
|
|
UNFINISHED = 1;
|
|
FINISHED = 2;
|
|
REWARD_TAKEN = 3;
|
|
}
|
|
|
|
uint32 total_progress = 4;
|
|
uint32 finish_timestamp = 9;
|
|
Status status = 2;
|
|
uint32 id = 10;
|
|
uint32 cur_progress = 3;
|
|
}
|
|
|