Merge branch 'master_test_hw' into master_test_hw_special_monster
commit
1ff2f9e6ab
|
@ -0,0 +1,23 @@
|
|||
package com.ljsd.jieling.protocols;
|
||||
|
||||
option optimize_for = SPEED;
|
||||
|
||||
import "CommonProto.proto";
|
||||
|
||||
|
||||
//社稷大典贡献道具
|
||||
message CommitShejiActivityItemRequest{
|
||||
optional int32 itemId = 1; //道具id
|
||||
optional int32 itemNum = 2; //道具数量
|
||||
}
|
||||
|
||||
message CommitShejiActivityItemResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
||||
|
||||
message GetShejiAwardRequest{
|
||||
optional int32 activityId = 1;
|
||||
}
|
||||
message GetShejiAwardResponse{
|
||||
optional Drop drop = 1;
|
||||
}
|
|
@ -830,6 +830,7 @@ option optimize_for = SPEED;
|
|||
message JourneyInfo {
|
||||
optional int32 mapId = 1;
|
||||
optional int32 process =2;
|
||||
optional int32 redPoint = 3;
|
||||
}
|
||||
message JourneyMonsterInfo{
|
||||
optional int32 monsterId = 1;
|
||||
|
|
|
@ -1077,6 +1077,13 @@ enum MessageType{
|
|||
DoHeroChangeRequest = 303605;
|
||||
DoHeroChangeResponse = 303606;
|
||||
|
||||
//303651 - 30370 社稷大典
|
||||
|
||||
CommitShejiActivityItemRequest = 303653;//社稷大典贡献道具
|
||||
CommitShejiActivityItemResponse =303654;
|
||||
|
||||
GetShejiAwardRequest = 303655;//社稷大典抢夺
|
||||
GetShejiAwardResponse = 303656;
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue