2023-02-28 02:33:54 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
import "Status.proto";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
|
2023-04-11 11:18:47 +03:00
|
|
|
// Name: PBPLDMMEGBO
|
2023-02-28 02:33:54 +03:00
|
|
|
message Achievement {
|
2023-04-11 11:18:47 +03:00
|
|
|
// Name: OPFLKOJMOIG > Status
|
|
|
|
|
|
|
|
uint32 total_progress = 4;
|
|
|
|
uint32 finish_timestamp = 9;
|
|
|
|
Status status = 2;
|
|
|
|
uint32 id = 10;
|
|
|
|
uint32 cur_progress = 3;
|
2023-02-28 06:08:38 +03:00
|
|
|
}
|
2023-03-07 05:02:26 +03:00
|
|
|
|