GC-Proto/proto/InvestigationTarget.proto

20 lines
342 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
2024-07-05 00:44:58 +03:00
// Version: 4.7.0
// Obfs: ?
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
2024-07-05 00:44:58 +03:00
uint32 quest_id = 12;
uint32 progress = 7;
uint32 investigation_id = 4;
2024-06-08 09:18:08 +03:00
State state = 9;
2024-07-05 00:44:58 +03:00
uint32 total_progress = 13;
2024-06-08 09:18:08 +03:00
}