GC-Proto/proto/InvestigationTarget.proto

20 lines
351 B
Protocol Buffer
Raw Normal View History

2023-04-16 19:40:21 +03:00
syntax = "proto3";
2024-06-08 09:18:08 +03:00
2023-04-16 19:40:21 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-06-08 09:18:08 +03:00
// Version: 4.6.0
// Obfs: KMNKJKIEPCB
2023-04-16 19:40:21 +03:00
message InvestigationTarget {
enum State {
2023-05-23 13:12:42 +03:00
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
2024-06-08 09:18:08 +03:00
uint32 quest_id = 3;
uint32 progress = 4;
uint32 investigation_id = 6;
State state = 9;
2023-08-17 14:18:58 +03:00
uint32 total_progress = 12;
2024-06-08 09:18:08 +03:00
}