GC-Proto/proto/InvestigationTarget.proto

23 lines
406 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-02-28 04:12:44 +03:00
// Name: EJKIKKJCFKL
2023-02-18 04:48:44 +03:00
message InvestigationTarget {
2023-02-28 04:12:44 +03:00
// Name: PMPLOIOCICM
enum State {
INVALID = 0;
IN_PROGRESS = 1;
COMPLETE = 2;
REWARD_TAKEN = 3;
}
State state = 6;
uint32 total_progress = 5;
uint32 investigation_id = 7;
uint32 quest_id = 14;
uint32 progress = 1;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00