syntax = "proto3"; option java_package = "emu.grasscutter.net.proto"; // Version: 4.7.0 // Obfs: ? message InvestigationTarget { enum State { INVALID = 0; IN_PROGRESS = 1; COMPLETE = 2; REWARD_TAKEN = 3; } uint32 quest_id = 12; uint32 progress = 7; uint32 investigation_id = 4; State state = 9; uint32 total_progress = 13; }