diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 8ae6ab7..0021d92 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -769,4 +769,9 @@ option optimize_for = SPEED; optional string id = 1; optional int32 equiptId = 2; } + + message MonthCardInfo{ + optional int32 id = 1; + optional int32 endingTime = 2; + } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index a7dcfbb..d6e8bcf 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -843,4 +843,9 @@ enum MessageType{ EXPEDITION_HOLY_BAG_INDICATION = 20016; //臨時背包推送 EXPEDITION_NOINFO_INDICATION = 20017; //节点状态推送 +// 20101 - 20110 月卡 + MONTHCARD_TAKE_DAILY_REQUEST =20101; + MONTHCARD_TAKE_DAILY_RESPONSE =20102; + MONTHCARD_INDICATION =20103; + } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 5dbf777..27f5c65 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -65,7 +65,7 @@ import "CommonProto.proto"; optional int32 amount = 26;//总储值 optional int32 vipDaily = 27;//特权每日礼包是否领取 0 未领 >0vip 等级 optional int32 missingRefreshCount = 28;//迷宫寻宝妖精刷新次数 - + repeated MonthCardInfo monthinfos = 29;//月卡 } @@ -688,5 +688,13 @@ import "CommonProto.proto"; optional int32 dayTime = 1; optional int32 weekTime = 2; } - - \ No newline at end of file + message MonthCardIndication{ + repeated MonthCardInfo monthinfos = 1; + } + + message TakeMothDilyRequest{ + optional int32 type=1; + } + message TakeMothDilyResponse{ + optional Drop drop =1; + }