MonsterInvestigation (boss icon in map)

This commit is contained in:
Akka
2022-06-18 19:07:39 +08:00
committed by Melledy
parent d1606eb7d0
commit fe2799c1fd
10 changed files with 176 additions and 43 deletions

View File

@@ -2,15 +2,11 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 1902
// EnetChannelId: 0
// EnetIsReliable: true
// IsAllowClient: true
message GetInvestigationMonsterReq {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 1916;
}
repeated uint32 city_id_list = 1;
repeated uint32 city_id_list = 13;
bool ABFECCDJENJ = 11;
}

View File

@@ -4,16 +4,12 @@ option java_package = "emu.grasscutter.net.proto";
import "InvestigationMonster.proto";
// CmdId: 1911
// EnetChannelId: 0
// EnetIsReliable: true
// IsAllowClient: true
message GetInvestigationMonsterRsp {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 1928;
}
int32 retcode = 1;
repeated InvestigationMonster monster_list = 2;
int32 retcode = 9;
repeated InvestigationMonster monster_list = 7;
bool ABFECCDJENJ = 10;
}

View File

@@ -2,14 +2,9 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 3476
// EnetChannelId: 0
// EnetIsReliable: true
message GroupSuiteNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 3098;
}
map<uint32, uint32> group_map = 1;
map<uint32, uint32> group_map = 11;
}