mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
add miss proto
This commit is contained in:
parent
8fe2336c0a
commit
d47c40b1f9
10
proto/BuyResinReq.proto
Normal file
10
proto/BuyResinReq.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: NIBFJEFHMIM
|
||||
// CmdId: 630
|
||||
message BuyResinReq {
|
||||
}
|
||||
|
12
proto/BuyResinRsp.proto
Normal file
12
proto/BuyResinRsp.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: PFLBPGOHFKJ
|
||||
// CmdId: 687
|
||||
message BuyResinRsp {
|
||||
int32 retcode = 9;
|
||||
uint32 cur_value = 3;
|
||||
}
|
||||
|
21
proto/Investigation.proto
Normal file
21
proto/Investigation.proto
Normal file
@ -0,0 +1,21 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: NFAGLBHALKL
|
||||
message Investigation {
|
||||
// Name: DMECJPCEPNH
|
||||
enum State {
|
||||
INVALID = 0;
|
||||
IN_PROGRESS = 1;
|
||||
COMPLETE = 2;
|
||||
REWARD_TAKEN = 3;
|
||||
}
|
||||
|
||||
uint32 id = 2;
|
||||
State state = 4;
|
||||
uint32 total_progress = 5;
|
||||
uint32 progress = 11;
|
||||
}
|
||||
|
22
proto/InvestigationTarget.proto
Normal file
22
proto/InvestigationTarget.proto
Normal file
@ -0,0 +1,22 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: EJKIKKJCFKL
|
||||
message InvestigationTarget {
|
||||
// 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;
|
||||
}
|
||||
|
14
proto/PlayerInvestigationAllInfoNotify.proto
Normal file
14
proto/PlayerInvestigationAllInfoNotify.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "Investigation.proto";
|
||||
import "InvestigationTarget.proto";
|
||||
|
||||
// Name: HCPEEIEKMCL
|
||||
// CmdId: 1911
|
||||
message PlayerInvestigationAllInfoNotify {
|
||||
repeated Investigation investigation_list = 10;
|
||||
repeated InvestigationTarget investigation_target_list = 12;
|
||||
}
|
||||
|
12
proto/PlayerInvestigationNotify.proto
Normal file
12
proto/PlayerInvestigationNotify.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "Investigation.proto";
|
||||
|
||||
// Name: KFLGDLECPAK
|
||||
// CmdId: 1901
|
||||
message PlayerInvestigationNotify {
|
||||
repeated Investigation investigation_list = 6;
|
||||
}
|
||||
|
12
proto/PlayerInvestigationTargetNotify.proto
Normal file
12
proto/PlayerInvestigationTargetNotify.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "InvestigationTarget.proto";
|
||||
|
||||
// Name: MOGCBFKFHDN
|
||||
// CmdId: 1930
|
||||
message PlayerInvestigationTargetNotify {
|
||||
repeated InvestigationTarget investigation_target_list = 1;
|
||||
}
|
||||
|
11
proto/TakeInvestigationRewardReq.proto
Normal file
11
proto/TakeInvestigationRewardReq.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: ECINNKNDEAB
|
||||
// CmdId: 1928
|
||||
message TakeInvestigationRewardReq {
|
||||
uint32 id = 14;
|
||||
}
|
||||
|
12
proto/TakeInvestigationRewardRsp.proto
Normal file
12
proto/TakeInvestigationRewardRsp.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: MADHMGMOJPM
|
||||
// CmdId: 1910
|
||||
message TakeInvestigationRewardRsp {
|
||||
uint32 id = 10;
|
||||
int32 retcode = 6;
|
||||
}
|
||||
|
11
proto/TakeInvestigationTargetRewardReq.proto
Normal file
11
proto/TakeInvestigationTargetRewardReq.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: HEBFDFDMOFH
|
||||
// CmdId: 1926
|
||||
message TakeInvestigationTargetRewardReq {
|
||||
uint32 quest_id = 15;
|
||||
}
|
||||
|
12
proto/TakeInvestigationTargetRewardRsp.proto
Normal file
12
proto/TakeInvestigationTargetRewardRsp.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
// Name: LHAPHELPIHC
|
||||
// CmdId: 1927
|
||||
message TakeInvestigationTargetRewardRsp {
|
||||
int32 retcode = 6;
|
||||
uint32 quest_id = 14;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user