Compare commits

...

10 Commits

Author SHA1 Message Date
duhui 80ec97fbec 心愿 2023-06-01 16:39:11 +08:00
duhui cb06b7ca65 心愿 2023-06-01 16:30:42 +08:00
duhui dc67bb0326 心愿 2023-06-01 15:54:33 +08:00
duhui 7dc6b632b9 格式调整 2023-05-26 21:03:20 +08:00
duhui 4fa6528edc Merge branch 'dev_dh_bt' into bt/shenbing 2023-03-29 16:09:37 +08:00
duhui 169877cd13 线上修复 2023-03-29 15:18:39 +08:00
duhui d273cfded7 神兵 2023-03-29 15:12:19 +08:00
duhui c967cbc5da 神兵 2023-03-28 16:55:27 +08:00
duhui f259469870 神兵展示信息 2023-03-28 16:39:13 +08:00
duhui de905e7ef9 神兵编队信息 2023-03-28 14:23:03 +08:00
5 changed files with 848 additions and 828 deletions

View File

@ -7,7 +7,7 @@ option optimize_for = SPEED;
message ErrorResponse{ message ErrorResponse{
optional int32 errCode =1 ; // 0-1 errMSg optional int32 errCode =1 ; // 0-1 errMSg
optional string errMsg =2 ; // optional string errMsg =2 ; //
repeated string errParams =3; // repeated string errParams =3; // `
} }
message Player{ message Player{
@ -154,11 +154,11 @@ option optimize_for = SPEED;
message FightTeamInfo { message FightTeamInfo {
repeated FightUnitInfo fightUnitList = 1; repeated FightUnitInfo fightUnitList = 1;
repeated FightUnitInfo pokemonUnitList = 2;// 1#2#3 repeated FightUnitInfo pokemonUnitList = 2;// 1#2#3
optional string teamPassiveList = 3 ; // repeated FightUnitInfo MagicSoldierList = 3;//
optional string specialPassive = 4; // optional string teamPassiveList = 4; //
optional int32 firstCamp = 5;// 0 optional string specialPassive = 5; //
optional int64 forceScore = 6;// optional int32 firstCamp = 6;// 0
optional int64 forceScore = 7;//
} }
@ -758,7 +758,7 @@ option optimize_for = SPEED;
repeated SixiangxinfaInfo sixiangxinfaInfo = 7;// repeated SixiangxinfaInfo sixiangxinfaInfo = 7;//
repeated LifeGridInfo lifeGridInfo = 8;// repeated LifeGridInfo lifeGridInfo = 8;//
repeated UserMountInfo userMountInfo = 9;// repeated UserMountInfo userMountInfo = 9;//
repeated TeamSimpleInfo MagicSoldier = 10;//
} }
// //
message TeamOneInfo{ message TeamOneInfo{

View File

@ -414,23 +414,6 @@ import "CommonProto.proto";
repeated PurpleMansionSeal sealList = 1; repeated PurpleMansionSeal sealList = 1;
} }
//
message wishDrawCardIndication{
repeated wishDrawCardInfo infoList = 1;
}
message choiceWishHeroRequest{
repeated wishDrawCardInfo infoList = 1;//status
}
message choiceWishHeroResponse{
repeated wishDrawCardInfo infoList = 1;
optional int32 serverOpenTime = 2;//
repeated int32 heroList = 3;//
}
// - // -
message beautyBagCardIndication{ message beautyBagCardIndication{
repeated beautyBagCardInfo infoList = 1; repeated beautyBagCardInfo infoList = 1;

View File

@ -1522,7 +1522,7 @@ enum MessageType{
MAGIC_SOLDIER_INFO_REQUEST = 3050211;// MAGIC_SOLDIER_INFO_REQUEST = 3050211;//
MAGIC_SOLDIER_INFO_RESPONSE = 3050212; MAGIC_SOLDIER_INFO_RESPONSE = 3050212;
MAGIC_SOLDIER_LOCATION_REQUEST = 3050213;// MAGIC_SOLDIER_LOCATION_REQUEST = 3050213;//
MAGIC_SOLDIER_LOCATION_RESPONSE = 3050214; MAGIC_SOLDIER_LOCATION_RESPONSE = 3050214;
MAGIC_SOLDIER_RETURN_REQUEST = 3050215;// MAGIC_SOLDIER_RETURN_REQUEST = 3050215;//
@ -1534,6 +1534,11 @@ enum MessageType{
MAGIC_SOLDIER_STRONG_REQUEST = 3050219;// MAGIC_SOLDIER_STRONG_REQUEST = 3050219;//
MAGIC_SOLDIER_STRONG_RESPONSE = 3050220; MAGIC_SOLDIER_STRONG_RESPONSE = 3050220;
MAGIC_SOLDIER_EXCHANGE_REQUEST = 3050221;//
MAGIC_SOLDIER_EXCHANGE_RESPONSE = 3050222;
DESIRE_DRAW_CARD_REQUEST = 3050223;
DESIRE_DRAW_CARD_RESPONSE = 3050224;
//==========================================================800000global ========================================================== //==========================================================800000global ==========================================================

View File

@ -1297,7 +1297,7 @@ message MagicSoldierInfoResponse{
repeated MagicSoldier infos = 1;// repeated MagicSoldier infos = 1;//
repeated int32 book = 2;// repeated int32 book = 2;//
} }
// //
message MagicSoldierLocationRequest{ message MagicSoldierLocationRequest{
optional string id = 1;//id optional string id = 1;//id
optional int32 point = 2;// optional int32 point = 2;//
@ -1327,3 +1327,35 @@ message MagicSoldierStrongRequest{
} }
message MagicSoldierStrongResponse{ message MagicSoldierStrongResponse{
} }
//
message magicSoldierExchangeRequest{
optional string id = 1;//
optional string id2 = 2;//
}
message MagicSoldierExchangeResponse{
}
//
message DesireDrawCardRequest{
optional int32 type = 1;//
optional int32 tempId = 2;//id
}
message DesireDrawCardResponse{
optional int32 type = 1;//
optional int32 tempId = 2;//id
}
message choiceWishHeroRequest{
optional int32 type = 1;//
}
message choiceWishHeroResponse{
optional int32 desireId = 1;//id
repeated int32 newList = 2;//
}
message wishDrawCardIndication{
//
repeated wishDrawCardInfo infoList = 1;
}