// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.0 // protoc v3.20.0 // source: island/island_msg.proto package pb import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) //海岛探险 type IsLandInfoReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *IsLandInfoReq) Reset() { *x = IsLandInfoReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandInfoReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandInfoReq) ProtoMessage() {} func (x *IsLandInfoReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandInfoReq.ProtoReflect.Descriptor instead. func (*IsLandInfoReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{0} } type IsLandInfoResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Info *DBIsland `protobuf:"bytes,1,opt,name=info,proto3" json:"info"` Heros []*DBHero `protobuf:"bytes,2,rep,name=heros,proto3" json:"heros"` } func (x *IsLandInfoResp) Reset() { *x = IsLandInfoResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandInfoResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandInfoResp) ProtoMessage() {} func (x *IsLandInfoResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandInfoResp.ProtoReflect.Descriptor instead. func (*IsLandInfoResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{1} } func (x *IsLandInfoResp) GetInfo() *DBIsland { if x != nil { return x.Info } return nil } func (x *IsLandInfoResp) GetHeros() []*DBHero { if x != nil { return x.Heros } return nil } //海岛探险 战斗 请求 type IsLandBattleReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` Battle *BattleFormation `protobuf:"bytes,2,opt,name=battle,proto3" json:"battle"` //战斗类型 } func (x *IsLandBattleReq) Reset() { *x = IsLandBattleReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandBattleReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandBattleReq) ProtoMessage() {} func (x *IsLandBattleReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandBattleReq.ProtoReflect.Descriptor instead. func (*IsLandBattleReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{2} } func (x *IsLandBattleReq) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *IsLandBattleReq) GetBattle() *BattleFormation { if x != nil { return x.Battle } return nil } //海岛探险 战斗 回应 type IsLandBattleResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` Info *BattleInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info"` //战斗信息 } func (x *IsLandBattleResp) Reset() { *x = IsLandBattleResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandBattleResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandBattleResp) ProtoMessage() {} func (x *IsLandBattleResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandBattleResp.ProtoReflect.Descriptor instead. func (*IsLandBattleResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{3} } func (x *IsLandBattleResp) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *IsLandBattleResp) GetInfo() *BattleInfo { if x != nil { return x.Info } return nil } //海岛探险 关卡完成 请求 type IsLandCompleteReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` AwardId int32 `protobuf:"varint,2,opt,name=awardId,proto3" json:"awardId"` Report *BattleReport `protobuf:"bytes,3,opt,name=report,proto3" json:"report"` //战报 打怪事件完成需要提交战报 Pos string `protobuf:"bytes,4,opt,name=pos,proto3" json:"pos"` } func (x *IsLandCompleteReq) Reset() { *x = IsLandCompleteReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandCompleteReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandCompleteReq) ProtoMessage() {} func (x *IsLandCompleteReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandCompleteReq.ProtoReflect.Descriptor instead. func (*IsLandCompleteReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{4} } func (x *IsLandCompleteReq) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *IsLandCompleteReq) GetAwardId() int32 { if x != nil { return x.AwardId } return 0 } func (x *IsLandCompleteReq) GetReport() *BattleReport { if x != nil { return x.Report } return nil } func (x *IsLandCompleteReq) GetPos() string { if x != nil { return x.Pos } return "" } //海岛探险 关卡完成 回应 type IsLandCompleteResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` AwardId int32 `protobuf:"varint,2,opt,name=awardId,proto3" json:"awardId"` Award []*UserAtno `protobuf:"bytes,3,rep,name=award,proto3" json:"award"` //奖励 } func (x *IsLandCompleteResp) Reset() { *x = IsLandCompleteResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandCompleteResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandCompleteResp) ProtoMessage() {} func (x *IsLandCompleteResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandCompleteResp.ProtoReflect.Descriptor instead. func (*IsLandCompleteResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{5} } func (x *IsLandCompleteResp) GetLevel() int32 { if x != nil { return x.Level } return 0 } func (x *IsLandCompleteResp) GetAwardId() int32 { if x != nil { return x.AwardId } return 0 } func (x *IsLandCompleteResp) GetAward() []*UserAtno { if x != nil { return x.Award } return nil } //刷新英雄商店 type IsLandRefresHeroShopReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *IsLandRefresHeroShopReq) Reset() { *x = IsLandRefresHeroShopReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandRefresHeroShopReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandRefresHeroShopReq) ProtoMessage() {} func (x *IsLandRefresHeroShopReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandRefresHeroShopReq.ProtoReflect.Descriptor instead. func (*IsLandRefresHeroShopReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{6} } type IsLandRefresHeroShopResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Refreshed int32 `protobuf:"varint,1,opt,name=refreshed,proto3" json:"refreshed"` //已刷新 Heroshop map[string]int32 `protobuf:"bytes,2,rep,name=heroshop,proto3" json:"heroshop" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` //英雄商店 } func (x *IsLandRefresHeroShopResp) Reset() { *x = IsLandRefresHeroShopResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandRefresHeroShopResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandRefresHeroShopResp) ProtoMessage() {} func (x *IsLandRefresHeroShopResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandRefresHeroShopResp.ProtoReflect.Descriptor instead. func (*IsLandRefresHeroShopResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{7} } func (x *IsLandRefresHeroShopResp) GetRefreshed() int32 { if x != nil { return x.Refreshed } return 0 } func (x *IsLandRefresHeroShopResp) GetHeroshop() map[string]int32 { if x != nil { return x.Heroshop } return nil } //购买英雄卡 type IsLandBuyReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Cids string `protobuf:"bytes,1,opt,name=cids,proto3" json:"cids"` } func (x *IsLandBuyReq) Reset() { *x = IsLandBuyReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandBuyReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandBuyReq) ProtoMessage() {} func (x *IsLandBuyReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandBuyReq.ProtoReflect.Descriptor instead. func (*IsLandBuyReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{8} } func (x *IsLandBuyReq) GetCids() string { if x != nil { return x.Cids } return "" } //购买英雄卡回应 type IsLandBuyResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` //奖励 } func (x *IsLandBuyResp) Reset() { *x = IsLandBuyResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandBuyResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandBuyResp) ProtoMessage() {} func (x *IsLandBuyResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandBuyResp.ProtoReflect.Descriptor instead. func (*IsLandBuyResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{9} } func (x *IsLandBuyResp) GetHero() *DBHero { if x != nil { return x.Hero } return nil } //升级节点 type IsLandUpgradeReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Nid int32 `protobuf:"varint,1,opt,name=nid,proto3" json:"nid"` //配置文件里的Id 升级的目标数据 } func (x *IsLandUpgradeReq) Reset() { *x = IsLandUpgradeReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandUpgradeReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandUpgradeReq) ProtoMessage() {} func (x *IsLandUpgradeReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandUpgradeReq.ProtoReflect.Descriptor instead. func (*IsLandUpgradeReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{10} } func (x *IsLandUpgradeReq) GetNid() int32 { if x != nil { return x.Nid } return 0 } //升级节点 type IsLandUpgradeResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Nid int32 `protobuf:"varint,1,opt,name=nid,proto3" json:"nid"` //成长线id 配置文件里面的 节点 字段 Lv int32 `protobuf:"varint,2,opt,name=lv,proto3" json:"lv"` } func (x *IsLandUpgradeResp) Reset() { *x = IsLandUpgradeResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandUpgradeResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandUpgradeResp) ProtoMessage() {} func (x *IsLandUpgradeResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandUpgradeResp.ProtoReflect.Descriptor instead. func (*IsLandUpgradeResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{11} } func (x *IsLandUpgradeResp) GetNid() int32 { if x != nil { return x.Nid } return 0 } func (x *IsLandUpgradeResp) GetLv() int32 { if x != nil { return x.Lv } return 0 } // 战令奖励领取 type IsLandReceiveReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *IsLandReceiveReq) Reset() { *x = IsLandReceiveReq{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandReceiveReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandReceiveReq) ProtoMessage() {} func (x *IsLandReceiveReq) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandReceiveReq.ProtoReflect.Descriptor instead. func (*IsLandReceiveReq) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{12} } type IsLandReceiveResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Info *DBIsland `protobuf:"bytes,1,opt,name=info,proto3" json:"info"` Award []*UserAtno `protobuf:"bytes,4,rep,name=award,proto3" json:"award"` //奖励 } func (x *IsLandReceiveResp) Reset() { *x = IsLandReceiveResp{} if protoimpl.UnsafeEnabled { mi := &file_island_island_msg_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *IsLandReceiveResp) String() string { return protoimpl.X.MessageStringOf(x) } func (*IsLandReceiveResp) ProtoMessage() {} func (x *IsLandReceiveResp) ProtoReflect() protoreflect.Message { mi := &file_island_island_msg_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use IsLandReceiveResp.ProtoReflect.Descriptor instead. func (*IsLandReceiveResp) Descriptor() ([]byte, []int) { return file_island_island_msg_proto_rawDescGZIP(), []int{13} } func (x *IsLandReceiveResp) GetInfo() *DBIsland { if x != nil { return x.Info } return nil } func (x *IsLandReceiveResp) GetAward() []*UserAtno { if x != nil { return x.Award } return nil } var File_island_island_msg_proto protoreflect.FileDescriptor var file_island_island_msg_proto_rawDesc = []byte{ 0x0a, 0x17, 0x69, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x2f, 0x69, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x69, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x2f, 0x69, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x2f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x12, 0x68, 0x65, 0x72, 0x6f, 0x2f, 0x68, 0x65, 0x72, 0x6f, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x0f, 0x0a, 0x0d, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x22, 0x4e, 0x0a, 0x0e, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x44, 0x42, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x0a, 0x05, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x05, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x22, 0x51, 0x0a, 0x0f, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x28, 0x0a, 0x06, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x22, 0x49, 0x0a, 0x10, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x7c, 0x0a, 0x11, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x77, 0x61, 0x72, 0x64, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x61, 0x77, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x06, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x06, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x22, 0x65, 0x0a, 0x12, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x77, 0x61, 0x72, 0x64, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x61, 0x77, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x05, 0x61, 0x77, 0x61, 0x72, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x05, 0x61, 0x77, 0x61, 0x72, 0x64, 0x22, 0x19, 0x0a, 0x17, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x68, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x22, 0xba, 0x01, 0x0a, 0x18, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x68, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x65, 0x64, 0x12, 0x43, 0x0a, 0x08, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x68, 0x6f, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x68, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x48, 0x65, 0x72, 0x6f, 0x73, 0x68, 0x6f, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x68, 0x6f, 0x70, 0x1a, 0x3b, 0x0a, 0x0d, 0x48, 0x65, 0x72, 0x6f, 0x73, 0x68, 0x6f, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x22, 0x0a, 0x0c, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x42, 0x75, 0x79, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x64, 0x73, 0x22, 0x2c, 0x0a, 0x0d, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x42, 0x75, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04, 0x68, 0x65, 0x72, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x04, 0x68, 0x65, 0x72, 0x6f, 0x22, 0x24, 0x0a, 0x10, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6e, 0x69, 0x64, 0x22, 0x35, 0x0a, 0x11, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6e, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x6c, 0x76, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x6c, 0x76, 0x22, 0x12, 0x0a, 0x10, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x22, 0x53, 0x0a, 0x11, 0x49, 0x73, 0x4c, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x44, 0x42, 0x49, 0x73, 0x6c, 0x61, 0x6e, 0x64, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x1f, 0x0a, 0x05, 0x61, 0x77, 0x61, 0x72, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x05, 0x61, 0x77, 0x61, 0x72, 0x64, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_island_island_msg_proto_rawDescOnce sync.Once file_island_island_msg_proto_rawDescData = file_island_island_msg_proto_rawDesc ) func file_island_island_msg_proto_rawDescGZIP() []byte { file_island_island_msg_proto_rawDescOnce.Do(func() { file_island_island_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_island_island_msg_proto_rawDescData) }) return file_island_island_msg_proto_rawDescData } var file_island_island_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 15) var file_island_island_msg_proto_goTypes = []interface{}{ (*IsLandInfoReq)(nil), // 0: IsLandInfoReq (*IsLandInfoResp)(nil), // 1: IsLandInfoResp (*IsLandBattleReq)(nil), // 2: IsLandBattleReq (*IsLandBattleResp)(nil), // 3: IsLandBattleResp (*IsLandCompleteReq)(nil), // 4: IsLandCompleteReq (*IsLandCompleteResp)(nil), // 5: IsLandCompleteResp (*IsLandRefresHeroShopReq)(nil), // 6: IsLandRefresHeroShopReq (*IsLandRefresHeroShopResp)(nil), // 7: IsLandRefresHeroShopResp (*IsLandBuyReq)(nil), // 8: IsLandBuyReq (*IsLandBuyResp)(nil), // 9: IsLandBuyResp (*IsLandUpgradeReq)(nil), // 10: IsLandUpgradeReq (*IsLandUpgradeResp)(nil), // 11: IsLandUpgradeResp (*IsLandReceiveReq)(nil), // 12: IsLandReceiveReq (*IsLandReceiveResp)(nil), // 13: IsLandReceiveResp nil, // 14: IsLandRefresHeroShopResp.HeroshopEntry (*DBIsland)(nil), // 15: DBIsland (*DBHero)(nil), // 16: DBHero (*BattleFormation)(nil), // 17: BattleFormation (*BattleInfo)(nil), // 18: BattleInfo (*BattleReport)(nil), // 19: BattleReport (*UserAtno)(nil), // 20: UserAtno } var file_island_island_msg_proto_depIdxs = []int32{ 15, // 0: IsLandInfoResp.info:type_name -> DBIsland 16, // 1: IsLandInfoResp.heros:type_name -> DBHero 17, // 2: IsLandBattleReq.battle:type_name -> BattleFormation 18, // 3: IsLandBattleResp.info:type_name -> BattleInfo 19, // 4: IsLandCompleteReq.report:type_name -> BattleReport 20, // 5: IsLandCompleteResp.award:type_name -> UserAtno 14, // 6: IsLandRefresHeroShopResp.heroshop:type_name -> IsLandRefresHeroShopResp.HeroshopEntry 16, // 7: IsLandBuyResp.hero:type_name -> DBHero 15, // 8: IsLandReceiveResp.info:type_name -> DBIsland 20, // 9: IsLandReceiveResp.award:type_name -> UserAtno 10, // [10:10] is the sub-list for method output_type 10, // [10:10] is the sub-list for method input_type 10, // [10:10] is the sub-list for extension type_name 10, // [10:10] is the sub-list for extension extendee 0, // [0:10] is the sub-list for field type_name } func init() { file_island_island_msg_proto_init() } func file_island_island_msg_proto_init() { if File_island_island_msg_proto != nil { return } file_island_island_db_proto_init() file_battle_battle_msg_proto_init() file_hero_hero_db_proto_init() file_comm_proto_init() if !protoimpl.UnsafeEnabled { file_island_island_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandInfoReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandInfoResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandBattleReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandBattleResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandCompleteReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandCompleteResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandRefresHeroShopReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandRefresHeroShopResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandBuyReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandBuyResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandUpgradeReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandUpgradeResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandReceiveReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_island_island_msg_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*IsLandReceiveResp); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_island_island_msg_proto_rawDesc, NumEnums: 0, NumMessages: 15, NumExtensions: 0, NumServices: 0, }, GoTypes: file_island_island_msg_proto_goTypes, DependencyIndexes: file_island_island_msg_proto_depIdxs, MessageInfos: file_island_island_msg_proto_msgTypes, }.Build() File_island_island_msg_proto = out.File file_island_island_msg_proto_rawDesc = nil file_island_island_msg_proto_goTypes = nil file_island_island_msg_proto_depIdxs = nil }