GC-Proto/proto/Achievement.proto

23 lines
398 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
// Name: PBPLDMMEGBO
2023-02-18 04:48:44 +03:00
message Achievement {
2023-04-11 06:14:48 +03:00
// Name: OPFLKOJMOIG
2023-02-28 04:12:44 +03:00
enum Status {
INVALID = 0;
UNFINISHED = 1;
FINISHED = 2;
REWARD_TAKEN = 3;
}
2023-04-11 06:14:48 +03:00
uint32 total_progress = 4;
uint32 finish_timestamp = 9;
Status status = 2;
uint32 id = 10;
uint32 cur_progress = 3;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00