3368 lines
103 KiB
Go
3368 lines
103 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
// versions:
|
||
// protoc-gen-go v1.28.0
|
||
// protoc v3.20.0
|
||
// source: hero/hero_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 HeroInfoReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid"` // uid 查自己不传也可以
|
||
HeroId []string `protobuf:"bytes,2,rep,name=heroId,proto3" json:"heroId"` //英雄唯一ID
|
||
}
|
||
|
||
func (x *HeroInfoReq) Reset() {
|
||
*x = HeroInfoReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[0]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroInfoReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroInfoReq) ProtoMessage() {}
|
||
|
||
func (x *HeroInfoReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroInfoReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroInfoReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{0}
|
||
}
|
||
|
||
func (x *HeroInfoReq) GetUid() string {
|
||
if x != nil {
|
||
return x.Uid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroInfoReq) GetHeroId() []string {
|
||
if x != nil {
|
||
return x.HeroId
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type HeroInfoResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid"`
|
||
Base []*DBHero `protobuf:"bytes,2,rep,name=base,proto3" json:"base"`
|
||
}
|
||
|
||
func (x *HeroInfoResp) Reset() {
|
||
*x = HeroInfoResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[1]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroInfoResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroInfoResp) ProtoMessage() {}
|
||
|
||
func (x *HeroInfoResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroInfoResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroInfoResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{1}
|
||
}
|
||
|
||
func (x *HeroInfoResp) GetUid() string {
|
||
if x != nil {
|
||
return x.Uid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroInfoResp) GetBase() []*DBHero {
|
||
if x != nil {
|
||
return x.Base
|
||
}
|
||
return nil
|
||
}
|
||
|
||
//英雄列表
|
||
type HeroListReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
}
|
||
|
||
func (x *HeroListReq) Reset() {
|
||
*x = HeroListReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[2]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroListReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroListReq) ProtoMessage() {}
|
||
|
||
func (x *HeroListReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroListReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroListReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{2}
|
||
}
|
||
|
||
type HeroListResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
List []*DBHero `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
|
||
}
|
||
|
||
func (x *HeroListResp) Reset() {
|
||
*x = HeroListResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[3]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroListResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroListResp) ProtoMessage() {}
|
||
|
||
func (x *HeroListResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroListResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroListResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{3}
|
||
}
|
||
|
||
func (x *HeroListResp) GetList() []*DBHero {
|
||
if x != nil {
|
||
return x.List
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type MapStringInt32 struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Key string `protobuf:"bytes,1,opt,name=Key,proto3" json:"Key"`
|
||
Value int32 `protobuf:"varint,2,opt,name=Value,proto3" json:"Value"`
|
||
}
|
||
|
||
func (x *MapStringInt32) Reset() {
|
||
*x = MapStringInt32{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[4]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *MapStringInt32) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*MapStringInt32) ProtoMessage() {}
|
||
|
||
func (x *MapStringInt32) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 MapStringInt32.ProtoReflect.Descriptor instead.
|
||
func (*MapStringInt32) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{4}
|
||
}
|
||
|
||
func (x *MapStringInt32) GetKey() string {
|
||
if x != nil {
|
||
return x.Key
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *MapStringInt32) GetValue() int32 {
|
||
if x != nil {
|
||
return x.Value
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// 卡牌升级
|
||
type HeroStrengthenUplvReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroObjID string `protobuf:"bytes,1,opt,name=heroObjID,proto3" json:"heroObjID"` // 英雄对象ID
|
||
Item map[string]int32 `protobuf:"bytes,2,rep,name=item,proto3" json:"item" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // key itemid value 数量
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvReq) Reset() {
|
||
*x = HeroStrengthenUplvReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[5]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroStrengthenUplvReq) ProtoMessage() {}
|
||
|
||
func (x *HeroStrengthenUplvReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroStrengthenUplvReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroStrengthenUplvReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{5}
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvReq) GetHeroObjID() string {
|
||
if x != nil {
|
||
return x.HeroObjID
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvReq) GetItem() map[string]int32 {
|
||
if x != nil {
|
||
return x.Item
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 卡牌升级返回
|
||
type HeroStrengthenUplvResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` // 英雄对象
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvResp) Reset() {
|
||
*x = HeroStrengthenUplvResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[6]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroStrengthenUplvResp) ProtoMessage() {}
|
||
|
||
func (x *HeroStrengthenUplvResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroStrengthenUplvResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroStrengthenUplvResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{6}
|
||
}
|
||
|
||
func (x *HeroStrengthenUplvResp) GetHero() *DBHero {
|
||
if x != nil {
|
||
return x.Hero
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 卡牌升星
|
||
type HeroStrengthenUpStarReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroObjID string `protobuf:"bytes,1,opt,name=heroObjID,proto3" json:"heroObjID"` // 英雄对象ID
|
||
}
|
||
|
||
func (x *HeroStrengthenUpStarReq) Reset() {
|
||
*x = HeroStrengthenUpStarReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[7]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpStarReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroStrengthenUpStarReq) ProtoMessage() {}
|
||
|
||
func (x *HeroStrengthenUpStarReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroStrengthenUpStarReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroStrengthenUpStarReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{7}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpStarReq) GetHeroObjID() string {
|
||
if x != nil {
|
||
return x.HeroObjID
|
||
}
|
||
return ""
|
||
}
|
||
|
||
// 卡牌升星返回
|
||
type HeroStrengthenUpStarResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` // 英雄对象
|
||
}
|
||
|
||
func (x *HeroStrengthenUpStarResp) Reset() {
|
||
*x = HeroStrengthenUpStarResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[8]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpStarResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroStrengthenUpStarResp) ProtoMessage() {}
|
||
|
||
func (x *HeroStrengthenUpStarResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroStrengthenUpStarResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroStrengthenUpStarResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{8}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpStarResp) GetHero() *DBHero {
|
||
if x != nil {
|
||
return x.Hero
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 卡牌技能升级
|
||
type HeroStrengthenUpSkillReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroObjID string `protobuf:"bytes,1,opt,name=heroObjID,proto3" json:"heroObjID"` // 英雄对象ID
|
||
Item map[string]int32 `protobuf:"bytes,2,rep,name=item,proto3" json:"item" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // key itemid value 数量
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillReq) Reset() {
|
||
*x = HeroStrengthenUpSkillReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[9]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroStrengthenUpSkillReq) ProtoMessage() {}
|
||
|
||
func (x *HeroStrengthenUpSkillReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroStrengthenUpSkillReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroStrengthenUpSkillReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{9}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillReq) GetHeroObjID() string {
|
||
if x != nil {
|
||
return x.HeroObjID
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillReq) GetItem() map[string]int32 {
|
||
if x != nil {
|
||
return x.Item
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 卡牌技能升级返回
|
||
type HeroStrengthenUpSkillResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` // 英雄对象
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillResp) Reset() {
|
||
*x = HeroStrengthenUpSkillResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[10]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroStrengthenUpSkillResp) ProtoMessage() {}
|
||
|
||
func (x *HeroStrengthenUpSkillResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroStrengthenUpSkillResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroStrengthenUpSkillResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{10}
|
||
}
|
||
|
||
func (x *HeroStrengthenUpSkillResp) GetHero() *DBHero {
|
||
if x != nil {
|
||
return x.Hero
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 觉醒
|
||
type HeroAwakenReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroObjID string `protobuf:"bytes,1,opt,name=heroObjID,proto3" json:"heroObjID"` // 英雄对象ID
|
||
}
|
||
|
||
func (x *HeroAwakenReq) Reset() {
|
||
*x = HeroAwakenReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[11]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroAwakenReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroAwakenReq) ProtoMessage() {}
|
||
|
||
func (x *HeroAwakenReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroAwakenReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroAwakenReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{11}
|
||
}
|
||
|
||
func (x *HeroAwakenReq) GetHeroObjID() string {
|
||
if x != nil {
|
||
return x.HeroObjID
|
||
}
|
||
return ""
|
||
}
|
||
|
||
// 觉醒返回
|
||
type HeroAwakenResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` // 英雄对象
|
||
}
|
||
|
||
func (x *HeroAwakenResp) Reset() {
|
||
*x = HeroAwakenResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[12]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroAwakenResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroAwakenResp) ProtoMessage() {}
|
||
|
||
func (x *HeroAwakenResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroAwakenResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroAwakenResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{12}
|
||
}
|
||
|
||
func (x *HeroAwakenResp) GetHero() *DBHero {
|
||
if x != nil {
|
||
return x.Hero
|
||
}
|
||
return nil
|
||
}
|
||
|
||
//英雄属性推送
|
||
type HeroPropertyPush struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroId string `protobuf:"bytes,1,opt,name=heroId,proto3" json:"heroId"` //英雄唯一ID
|
||
Property map[string]int32 `protobuf:"bytes,2,rep,name=property,proto3" json:"property" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` //基础属性
|
||
AddProperty map[string]int32 `protobuf:"bytes,3,rep,name=addProperty,proto3" json:"addProperty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` //附加属性
|
||
}
|
||
|
||
func (x *HeroPropertyPush) Reset() {
|
||
*x = HeroPropertyPush{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[13]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroPropertyPush) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroPropertyPush) ProtoMessage() {}
|
||
|
||
func (x *HeroPropertyPush) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_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 HeroPropertyPush.ProtoReflect.Descriptor instead.
|
||
func (*HeroPropertyPush) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{13}
|
||
}
|
||
|
||
func (x *HeroPropertyPush) GetHeroId() string {
|
||
if x != nil {
|
||
return x.HeroId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroPropertyPush) GetProperty() map[string]int32 {
|
||
if x != nil {
|
||
return x.Property
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroPropertyPush) GetAddProperty() map[string]int32 {
|
||
if x != nil {
|
||
return x.AddProperty
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 英雄锁定
|
||
type HeroLockReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Heroid string `protobuf:"bytes,1,opt,name=heroid,proto3" json:"heroid"`
|
||
}
|
||
|
||
func (x *HeroLockReq) Reset() {
|
||
*x = HeroLockReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[14]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroLockReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroLockReq) ProtoMessage() {}
|
||
|
||
func (x *HeroLockReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[14]
|
||
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 HeroLockReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroLockReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{14}
|
||
}
|
||
|
||
func (x *HeroLockReq) GetHeroid() string {
|
||
if x != nil {
|
||
return x.Heroid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
// 英雄锁定返回
|
||
type HeroLockResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` // 英雄对象
|
||
}
|
||
|
||
func (x *HeroLockResp) Reset() {
|
||
*x = HeroLockResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[15]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroLockResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroLockResp) ProtoMessage() {}
|
||
|
||
func (x *HeroLockResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[15]
|
||
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 HeroLockResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroLockResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{15}
|
||
}
|
||
|
||
func (x *HeroLockResp) GetHero() *DBHero {
|
||
if x != nil {
|
||
return x.Hero
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 测试用(获取指定星级等级的英雄)
|
||
type HeroGetSpecifiedReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroCoinfigID string `protobuf:"bytes,1,opt,name=heroCoinfigID,proto3" json:"heroCoinfigID"` // 英雄配置ID
|
||
Amount int32 `protobuf:"varint,2,opt,name=Amount,proto3" json:"Amount"` // 数量
|
||
Star int32 `protobuf:"varint,3,opt,name=star,proto3" json:"star"` // 星级
|
||
Lv int32 `protobuf:"varint,4,opt,name=lv,proto3" json:"lv"` // 等级
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedReq) Reset() {
|
||
*x = HeroGetSpecifiedReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[16]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroGetSpecifiedReq) ProtoMessage() {}
|
||
|
||
func (x *HeroGetSpecifiedReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[16]
|
||
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 HeroGetSpecifiedReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroGetSpecifiedReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{16}
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedReq) GetHeroCoinfigID() string {
|
||
if x != nil {
|
||
return x.HeroCoinfigID
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedReq) GetAmount() int32 {
|
||
if x != nil {
|
||
return x.Amount
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedReq) GetStar() int32 {
|
||
if x != nil {
|
||
return x.Star
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedReq) GetLv() int32 {
|
||
if x != nil {
|
||
return x.Lv
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type HeroGetSpecifiedResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Hero *DBHero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero"` // 英雄对象
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedResp) Reset() {
|
||
*x = HeroGetSpecifiedResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[17]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroGetSpecifiedResp) ProtoMessage() {}
|
||
|
||
func (x *HeroGetSpecifiedResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[17]
|
||
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 HeroGetSpecifiedResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroGetSpecifiedResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{17}
|
||
}
|
||
|
||
func (x *HeroGetSpecifiedResp) GetHero() *DBHero {
|
||
if x != nil {
|
||
return x.Hero
|
||
}
|
||
return nil
|
||
}
|
||
|
||
//
|
||
//抽卡
|
||
//drawType: 2.普通招募 3-6:阵营招募,分别对应hero表1/2/3/4阵营 7:限时招募 8 许愿招募
|
||
//drawCount: 1 单抽 10 十连 (只允许传 1 或 10)
|
||
//consume: 0 消耗A 1 消耗B
|
||
type HeroDrawCardReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
DrawType int32 `protobuf:"varint,1,opt,name=drawType,proto3" json:"drawType"` // 抽卡类型 0 普通
|
||
DrawCount int32 `protobuf:"varint,2,opt,name=drawCount,proto3" json:"drawCount"` // 抽卡次数
|
||
Consume int32 `protobuf:"varint,3,opt,name=consume,proto3" json:"consume"`
|
||
}
|
||
|
||
func (x *HeroDrawCardReq) Reset() {
|
||
*x = HeroDrawCardReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[18]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroDrawCardReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroDrawCardReq) ProtoMessage() {}
|
||
|
||
func (x *HeroDrawCardReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[18]
|
||
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 HeroDrawCardReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroDrawCardReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{18}
|
||
}
|
||
|
||
func (x *HeroDrawCardReq) GetDrawType() int32 {
|
||
if x != nil {
|
||
return x.DrawType
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroDrawCardReq) GetDrawCount() int32 {
|
||
if x != nil {
|
||
return x.DrawCount
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroDrawCardReq) GetConsume() int32 {
|
||
if x != nil {
|
||
return x.Consume
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type AtnoData struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Atno []*UserAtno `protobuf:"bytes,1,rep,name=atno,proto3" json:"atno"`
|
||
}
|
||
|
||
func (x *AtnoData) Reset() {
|
||
*x = AtnoData{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[19]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *AtnoData) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*AtnoData) ProtoMessage() {}
|
||
|
||
func (x *AtnoData) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[19]
|
||
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 AtnoData.ProtoReflect.Descriptor instead.
|
||
func (*AtnoData) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{19}
|
||
}
|
||
|
||
func (x *AtnoData) GetAtno() []*UserAtno {
|
||
if x != nil {
|
||
return x.Atno
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type HeroDrawCardResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Data []*AtnoData `protobuf:"bytes,1,rep,name=data,proto3" json:"data"`
|
||
Wish *UserAtno `protobuf:"bytes,2,opt,name=wish,proto3" json:"wish"` // 获得许愿石
|
||
Record *DBHeroRecord `protobuf:"bytes,3,opt,name=record,proto3" json:"record"` // 扩展数据
|
||
FirstGet map[string]bool `protobuf:"bytes,4,rep,name=firstGet,proto3" json:"firstGet" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 首次获得英雄
|
||
}
|
||
|
||
func (x *HeroDrawCardResp) Reset() {
|
||
*x = HeroDrawCardResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[20]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroDrawCardResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroDrawCardResp) ProtoMessage() {}
|
||
|
||
func (x *HeroDrawCardResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[20]
|
||
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 HeroDrawCardResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroDrawCardResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{20}
|
||
}
|
||
|
||
func (x *HeroDrawCardResp) GetData() []*AtnoData {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroDrawCardResp) GetWish() *UserAtno {
|
||
if x != nil {
|
||
return x.Wish
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroDrawCardResp) GetRecord() *DBHeroRecord {
|
||
if x != nil {
|
||
return x.Record
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroDrawCardResp) GetFirstGet() map[string]bool {
|
||
if x != nil {
|
||
return x.FirstGet
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 英雄变化推送
|
||
type HeroChangePush struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
List []*DBHero `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
|
||
}
|
||
|
||
func (x *HeroChangePush) Reset() {
|
||
*x = HeroChangePush{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[21]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroChangePush) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroChangePush) ProtoMessage() {}
|
||
|
||
func (x *HeroChangePush) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[21]
|
||
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 HeroChangePush.ProtoReflect.Descriptor instead.
|
||
func (*HeroChangePush) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{21}
|
||
}
|
||
|
||
func (x *HeroChangePush) GetList() []*DBHero {
|
||
if x != nil {
|
||
return x.List
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type HeroDrawCardFloorReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
}
|
||
|
||
func (x *HeroDrawCardFloorReq) Reset() {
|
||
*x = HeroDrawCardFloorReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[22]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroDrawCardFloorReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroDrawCardFloorReq) ProtoMessage() {}
|
||
|
||
func (x *HeroDrawCardFloorReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[22]
|
||
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 HeroDrawCardFloorReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroDrawCardFloorReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{22}
|
||
}
|
||
|
||
// 获取抽卡保底次数
|
||
type HeroDrawCardFloorResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Record *DBHeroRecord `protobuf:"bytes,1,opt,name=record,proto3" json:"record"`
|
||
}
|
||
|
||
func (x *HeroDrawCardFloorResp) Reset() {
|
||
*x = HeroDrawCardFloorResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[23]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroDrawCardFloorResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroDrawCardFloorResp) ProtoMessage() {}
|
||
|
||
func (x *HeroDrawCardFloorResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[23]
|
||
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 HeroDrawCardFloorResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroDrawCardFloorResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{23}
|
||
}
|
||
|
||
func (x *HeroDrawCardFloorResp) GetRecord() *DBHeroRecord {
|
||
if x != nil {
|
||
return x.Record
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 英雄融合
|
||
type HeroFusionReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroId string `protobuf:"bytes,1,opt,name=heroId,proto3" json:"heroId"` // 英雄配置表id
|
||
Heros map[string]int32 `protobuf:"bytes,2,rep,name=heros,proto3" json:"heros" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // key heroObjID value 数量
|
||
}
|
||
|
||
func (x *HeroFusionReq) Reset() {
|
||
*x = HeroFusionReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[24]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroFusionReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroFusionReq) ProtoMessage() {}
|
||
|
||
func (x *HeroFusionReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[24]
|
||
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 HeroFusionReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroFusionReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{24}
|
||
}
|
||
|
||
func (x *HeroFusionReq) GetHeroId() string {
|
||
if x != nil {
|
||
return x.HeroId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroFusionReq) GetHeros() map[string]int32 {
|
||
if x != nil {
|
||
return x.Heros
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type HeroFusionResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Heroid string `protobuf:"bytes,1,opt,name=heroid,proto3" json:"heroid"` // 获得新英雄
|
||
}
|
||
|
||
func (x *HeroFusionResp) Reset() {
|
||
*x = HeroFusionResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[25]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroFusionResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroFusionResp) ProtoMessage() {}
|
||
|
||
func (x *HeroFusionResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[25]
|
||
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 HeroFusionResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroFusionResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{25}
|
||
}
|
||
|
||
func (x *HeroFusionResp) GetHeroid() string {
|
||
if x != nil {
|
||
return x.Heroid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
// 天赋学习
|
||
type HeroTalentListReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
}
|
||
|
||
func (x *HeroTalentListReq) Reset() {
|
||
*x = HeroTalentListReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[26]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroTalentListReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroTalentListReq) ProtoMessage() {}
|
||
|
||
func (x *HeroTalentListReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[26]
|
||
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 HeroTalentListReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroTalentListReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{26}
|
||
}
|
||
|
||
type HeroTalentListResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Telnet []*DBHeroTalent `protobuf:"bytes,1,rep,name=telnet,proto3" json:"telnet"`
|
||
}
|
||
|
||
func (x *HeroTalentListResp) Reset() {
|
||
*x = HeroTalentListResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[27]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroTalentListResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroTalentListResp) ProtoMessage() {}
|
||
|
||
func (x *HeroTalentListResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[27]
|
||
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 HeroTalentListResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroTalentListResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{27}
|
||
}
|
||
|
||
func (x *HeroTalentListResp) GetTelnet() []*DBHeroTalent {
|
||
if x != nil {
|
||
return x.Telnet
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 天赋学习
|
||
type HeroTalentLearnReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
TalentID int32 `protobuf:"varint,1,opt,name=talentID,proto3" json:"talentID"` // 天赋ID
|
||
ObjId string `protobuf:"bytes,2,opt,name=objId,proto3" json:"objId"` // 对象唯一id
|
||
Heroid string `protobuf:"bytes,3,opt,name=heroid,proto3" json:"heroid"` //配置表的英雄id
|
||
}
|
||
|
||
func (x *HeroTalentLearnReq) Reset() {
|
||
*x = HeroTalentLearnReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[28]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroTalentLearnReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroTalentLearnReq) ProtoMessage() {}
|
||
|
||
func (x *HeroTalentLearnReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[28]
|
||
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 HeroTalentLearnReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroTalentLearnReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{28}
|
||
}
|
||
|
||
func (x *HeroTalentLearnReq) GetTalentID() int32 {
|
||
if x != nil {
|
||
return x.TalentID
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroTalentLearnReq) GetObjId() string {
|
||
if x != nil {
|
||
return x.ObjId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *HeroTalentLearnReq) GetHeroid() string {
|
||
if x != nil {
|
||
return x.Heroid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type HeroTalentLearnResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Telnet *DBHeroTalent `protobuf:"bytes,1,opt,name=telnet,proto3" json:"telnet"`
|
||
TalentID int32 `protobuf:"varint,2,opt,name=talentID,proto3" json:"talentID"` // 刚学习的天赋ID
|
||
}
|
||
|
||
func (x *HeroTalentLearnResp) Reset() {
|
||
*x = HeroTalentLearnResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[29]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroTalentLearnResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroTalentLearnResp) ProtoMessage() {}
|
||
|
||
func (x *HeroTalentLearnResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[29]
|
||
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 HeroTalentLearnResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroTalentLearnResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{29}
|
||
}
|
||
|
||
func (x *HeroTalentLearnResp) GetTelnet() *DBHeroTalent {
|
||
if x != nil {
|
||
return x.Telnet
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroTalentLearnResp) GetTalentID() int32 {
|
||
if x != nil {
|
||
return x.TalentID
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// 重置天赋
|
||
type HeroTalentResetReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
ObjId string `protobuf:"bytes,1,opt,name=objId,proto3" json:"objId"` // 对象唯一id
|
||
}
|
||
|
||
func (x *HeroTalentResetReq) Reset() {
|
||
*x = HeroTalentResetReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[30]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroTalentResetReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroTalentResetReq) ProtoMessage() {}
|
||
|
||
func (x *HeroTalentResetReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[30]
|
||
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 HeroTalentResetReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroTalentResetReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{30}
|
||
}
|
||
|
||
func (x *HeroTalentResetReq) GetObjId() string {
|
||
if x != nil {
|
||
return x.ObjId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type HeroTalentResetResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Telnet *DBHeroTalent `protobuf:"bytes,1,opt,name=telnet,proto3" json:"telnet"`
|
||
}
|
||
|
||
func (x *HeroTalentResetResp) Reset() {
|
||
*x = HeroTalentResetResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[31]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroTalentResetResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroTalentResetResp) ProtoMessage() {}
|
||
|
||
func (x *HeroTalentResetResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[31]
|
||
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 HeroTalentResetResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroTalentResetResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{31}
|
||
}
|
||
|
||
func (x *HeroTalentResetResp) GetTelnet() *DBHeroTalent {
|
||
if x != nil {
|
||
return x.Telnet
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type HeroBuyReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
BuyType int32 `protobuf:"varint,1,opt,name=buyType,proto3" json:"buyType"` //类型
|
||
BuyCount int32 `protobuf:"varint,2,opt,name=buyCount,proto3" json:"buyCount"` // 购买的数量
|
||
}
|
||
|
||
func (x *HeroBuyReq) Reset() {
|
||
*x = HeroBuyReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[32]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroBuyReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroBuyReq) ProtoMessage() {}
|
||
|
||
func (x *HeroBuyReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[32]
|
||
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 HeroBuyReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroBuyReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{32}
|
||
}
|
||
|
||
func (x *HeroBuyReq) GetBuyType() int32 {
|
||
if x != nil {
|
||
return x.BuyType
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroBuyReq) GetBuyCount() int32 {
|
||
if x != nil {
|
||
return x.BuyCount
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type HeroBuyResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
IsSucc bool `protobuf:"varint,1,opt,name=IsSucc,proto3" json:"IsSucc"`
|
||
Onebuy int32 `protobuf:"varint,3,opt,name=onebuy,proto3" json:"onebuy"` // 单次购买次数
|
||
Tenbuy int32 `protobuf:"varint,4,opt,name=tenbuy,proto3" json:"tenbuy"` // 十连购买次数
|
||
}
|
||
|
||
func (x *HeroBuyResp) Reset() {
|
||
*x = HeroBuyResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[33]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroBuyResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroBuyResp) ProtoMessage() {}
|
||
|
||
func (x *HeroBuyResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[33]
|
||
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 HeroBuyResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroBuyResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{33}
|
||
}
|
||
|
||
func (x *HeroBuyResp) GetIsSucc() bool {
|
||
if x != nil {
|
||
return x.IsSucc
|
||
}
|
||
return false
|
||
}
|
||
|
||
func (x *HeroBuyResp) GetOnebuy() int32 {
|
||
if x != nil {
|
||
return x.Onebuy
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroBuyResp) GetTenbuy() int32 {
|
||
if x != nil {
|
||
return x.Tenbuy
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// 首次获得英雄
|
||
type HeroFirstGetPush struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroId []string `protobuf:"bytes,1,rep,name=heroId,proto3" json:"heroId"` //英雄id
|
||
}
|
||
|
||
func (x *HeroFirstGetPush) Reset() {
|
||
*x = HeroFirstGetPush{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[34]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroFirstGetPush) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroFirstGetPush) ProtoMessage() {}
|
||
|
||
func (x *HeroFirstGetPush) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[34]
|
||
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 HeroFirstGetPush.ProtoReflect.Descriptor instead.
|
||
func (*HeroFirstGetPush) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{34}
|
||
}
|
||
|
||
func (x *HeroFirstGetPush) GetHeroId() []string {
|
||
if x != nil {
|
||
return x.HeroId
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 圣桃结实 奖励领取
|
||
type HeroPeachRewardReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
RewardCid int32 `protobuf:"varint,1,opt,name=rewardCid,proto3" json:"rewardCid"` // 要领取的配置id
|
||
BAllGet bool `protobuf:"varint,2,opt,name=bAllGet,proto3" json:"bAllGet"` // 一键领取
|
||
}
|
||
|
||
func (x *HeroPeachRewardReq) Reset() {
|
||
*x = HeroPeachRewardReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[35]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroPeachRewardReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroPeachRewardReq) ProtoMessage() {}
|
||
|
||
func (x *HeroPeachRewardReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[35]
|
||
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 HeroPeachRewardReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroPeachRewardReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{35}
|
||
}
|
||
|
||
func (x *HeroPeachRewardReq) GetRewardCid() int32 {
|
||
if x != nil {
|
||
return x.RewardCid
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroPeachRewardReq) GetBAllGet() bool {
|
||
if x != nil {
|
||
return x.BAllGet
|
||
}
|
||
return false
|
||
}
|
||
|
||
type HeroPeachRewardResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Peach map[int32]bool `protobuf:"bytes,1,rep,name=peach,proto3" json:"peach" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 记录圣桃结实已领取的奖励
|
||
Atno []*UserAtno `protobuf:"bytes,2,rep,name=atno,proto3" json:"atno"` // 奖励列表
|
||
}
|
||
|
||
func (x *HeroPeachRewardResp) Reset() {
|
||
*x = HeroPeachRewardResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[36]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroPeachRewardResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroPeachRewardResp) ProtoMessage() {}
|
||
|
||
func (x *HeroPeachRewardResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[36]
|
||
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 HeroPeachRewardResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroPeachRewardResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{36}
|
||
}
|
||
|
||
func (x *HeroPeachRewardResp) GetPeach() map[int32]bool {
|
||
if x != nil {
|
||
return x.Peach
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroPeachRewardResp) GetAtno() []*UserAtno {
|
||
if x != nil {
|
||
return x.Atno
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 招募指定英雄
|
||
type HeroAppointHeroReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
DrawType int32 `protobuf:"varint,1,opt,name=drawType,proto3" json:"drawType"` // 招募类型 0 限定招募 1 许愿招募
|
||
Heroid string `protobuf:"bytes,2,opt,name=heroid,proto3" json:"heroid"` // 更换招募获得的英雄
|
||
}
|
||
|
||
func (x *HeroAppointHeroReq) Reset() {
|
||
*x = HeroAppointHeroReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[37]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroAppointHeroReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroAppointHeroReq) ProtoMessage() {}
|
||
|
||
func (x *HeroAppointHeroReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[37]
|
||
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 HeroAppointHeroReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroAppointHeroReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{37}
|
||
}
|
||
|
||
func (x *HeroAppointHeroReq) GetDrawType() int32 {
|
||
if x != nil {
|
||
return x.DrawType
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroAppointHeroReq) GetHeroid() string {
|
||
if x != nil {
|
||
return x.Heroid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type HeroAppointHeroResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
DrawType int32 `protobuf:"varint,1,opt,name=drawType,proto3" json:"drawType"` // 招募类型 0 限定招募 1 许愿招募
|
||
Heroid string `protobuf:"bytes,2,opt,name=heroid,proto3" json:"heroid"` // 更换招募获得的英雄
|
||
}
|
||
|
||
func (x *HeroAppointHeroResp) Reset() {
|
||
*x = HeroAppointHeroResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[38]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroAppointHeroResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroAppointHeroResp) ProtoMessage() {}
|
||
|
||
func (x *HeroAppointHeroResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[38]
|
||
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 HeroAppointHeroResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroAppointHeroResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{38}
|
||
}
|
||
|
||
func (x *HeroAppointHeroResp) GetDrawType() int32 {
|
||
if x != nil {
|
||
return x.DrawType
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *HeroAppointHeroResp) GetHeroid() string {
|
||
if x != nil {
|
||
return x.Heroid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
// 选择抽卡协议
|
||
type HeroSelectGetListReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
}
|
||
|
||
func (x *HeroSelectGetListReq) Reset() {
|
||
*x = HeroSelectGetListReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[39]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSelectGetListReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSelectGetListReq) ProtoMessage() {}
|
||
|
||
func (x *HeroSelectGetListReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[39]
|
||
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 HeroSelectGetListReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroSelectGetListReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{39}
|
||
}
|
||
|
||
type HeroSelectGetListResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Data *DBSelectDraw `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
|
||
}
|
||
|
||
func (x *HeroSelectGetListResp) Reset() {
|
||
*x = HeroSelectGetListResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[40]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSelectGetListResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSelectGetListResp) ProtoMessage() {}
|
||
|
||
func (x *HeroSelectGetListResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[40]
|
||
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 HeroSelectGetListResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroSelectGetListResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{40}
|
||
}
|
||
|
||
func (x *HeroSelectGetListResp) GetData() *DBSelectDraw {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 选择抽卡协议
|
||
type HeroSelectDrawReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
}
|
||
|
||
func (x *HeroSelectDrawReq) Reset() {
|
||
*x = HeroSelectDrawReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[41]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSelectDrawReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSelectDrawReq) ProtoMessage() {}
|
||
|
||
func (x *HeroSelectDrawReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[41]
|
||
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 HeroSelectDrawReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroSelectDrawReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{41}
|
||
}
|
||
|
||
type HeroSelectDrawResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Data *DBSelectDraw `protobuf:"bytes,1,opt,name=data,proto3" json:"data"` // 抽卡结果
|
||
}
|
||
|
||
func (x *HeroSelectDrawResp) Reset() {
|
||
*x = HeroSelectDrawResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[42]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSelectDrawResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSelectDrawResp) ProtoMessage() {}
|
||
|
||
func (x *HeroSelectDrawResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[42]
|
||
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 HeroSelectDrawResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroSelectDrawResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{42}
|
||
}
|
||
|
||
func (x *HeroSelectDrawResp) GetData() *DBSelectDraw {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type HeroSaveCardReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Index int32 `protobuf:"varint,1,opt,name=index,proto3" json:"index"` // 保存结果 ( 1 存结果1. 1 存结果2)
|
||
}
|
||
|
||
func (x *HeroSaveCardReq) Reset() {
|
||
*x = HeroSaveCardReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[43]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSaveCardReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSaveCardReq) ProtoMessage() {}
|
||
|
||
func (x *HeroSaveCardReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[43]
|
||
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 HeroSaveCardReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroSaveCardReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{43}
|
||
}
|
||
|
||
func (x *HeroSaveCardReq) GetIndex() int32 {
|
||
if x != nil {
|
||
return x.Index
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type HeroSaveCardResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Data *DBSelectDraw `protobuf:"bytes,1,opt,name=data,proto3" json:"data"` // 抽卡结果
|
||
}
|
||
|
||
func (x *HeroSaveCardResp) Reset() {
|
||
*x = HeroSaveCardResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[44]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSaveCardResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSaveCardResp) ProtoMessage() {}
|
||
|
||
func (x *HeroSaveCardResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[44]
|
||
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 HeroSaveCardResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroSaveCardResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{44}
|
||
}
|
||
|
||
func (x *HeroSaveCardResp) GetData() *DBSelectDraw {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 选择结果
|
||
type HeroSelectCardReq struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Index int32 `protobuf:"varint,1,opt,name=index,proto3" json:"index"` // 选择获得卡片组 (0 当前结果 1: 结果1 2:结果2)
|
||
}
|
||
|
||
func (x *HeroSelectCardReq) Reset() {
|
||
*x = HeroSelectCardReq{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[45]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSelectCardReq) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSelectCardReq) ProtoMessage() {}
|
||
|
||
func (x *HeroSelectCardReq) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[45]
|
||
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 HeroSelectCardReq.ProtoReflect.Descriptor instead.
|
||
func (*HeroSelectCardReq) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{45}
|
||
}
|
||
|
||
func (x *HeroSelectCardReq) GetIndex() int32 {
|
||
if x != nil {
|
||
return x.Index
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type HeroSelectCardResp struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Data *DBSelectDraw `protobuf:"bytes,1,opt,name=data,proto3" json:"data"` // 抽卡结果
|
||
Atno []*AtnoData `protobuf:"bytes,2,rep,name=atno,proto3" json:"atno"` // 奖励
|
||
}
|
||
|
||
func (x *HeroSelectCardResp) Reset() {
|
||
*x = HeroSelectCardResp{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[46]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *HeroSelectCardResp) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*HeroSelectCardResp) ProtoMessage() {}
|
||
|
||
func (x *HeroSelectCardResp) ProtoReflect() protoreflect.Message {
|
||
mi := &file_hero_hero_msg_proto_msgTypes[46]
|
||
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 HeroSelectCardResp.ProtoReflect.Descriptor instead.
|
||
func (*HeroSelectCardResp) Descriptor() ([]byte, []int) {
|
||
return file_hero_hero_msg_proto_rawDescGZIP(), []int{46}
|
||
}
|
||
|
||
func (x *HeroSelectCardResp) GetData() *DBSelectDraw {
|
||
if x != nil {
|
||
return x.Data
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *HeroSelectCardResp) GetAtno() []*AtnoData {
|
||
if x != nil {
|
||
return x.Atno
|
||
}
|
||
return nil
|
||
}
|
||
|
||
var File_hero_hero_msg_proto protoreflect.FileDescriptor
|
||
|
||
var file_hero_hero_msg_proto_rawDesc = []byte{
|
||
0x0a, 0x13, 0x68, 0x65, 0x72, 0x6f, 0x2f, 0x68, 0x65, 0x72, 0x6f, 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, 0x37, 0x0a, 0x0b, 0x48, 0x65, 0x72, 0x6f, 0x49, 0x6e, 0x66,
|
||
0x6f, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||
0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64,
|
||
0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64, 0x22, 0x3d,
|
||
0x0a, 0x0c, 0x48, 0x65, 0x72, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10,
|
||
0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64,
|
||
0x12, 0x1b, 0x0a, 0x04, 0x62, 0x61, 0x73, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07,
|
||
0x2e, 0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x04, 0x62, 0x61, 0x73, 0x65, 0x22, 0x0d, 0x0a,
|
||
0x0b, 0x48, 0x65, 0x72, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, 0x2b, 0x0a, 0x0c,
|
||
0x48, 0x65, 0x72, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x04,
|
||
0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x44, 0x42, 0x48,
|
||
0x65, 0x72, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x38, 0x0a, 0x0e, 0x4d, 0x61, 0x70,
|
||
0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x10, 0x0a, 0x03, 0x4b,
|
||
0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a,
|
||
0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x56, 0x61,
|
||
0x6c, 0x75, 0x65, 0x22, 0xa4, 0x01, 0x0a, 0x15, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x74, 0x72, 0x65,
|
||
0x6e, 0x67, 0x74, 0x68, 0x65, 0x6e, 0x55, 0x70, 0x6c, 0x76, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a,
|
||
0x09, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||
0x52, 0x09, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x04, 0x69,
|
||
0x74, 0x65, 0x6d, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x48, 0x65, 0x72, 0x6f,
|
||
0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x65, 0x6e, 0x55, 0x70, 0x6c, 0x76, 0x52, 0x65,
|
||
0x71, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x69, 0x74, 0x65,
|
||
0x6d, 0x1a, 0x37, 0x0a, 0x09, 0x49, 0x74, 0x65, 0x6d, 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, 0x35, 0x0a, 0x16, 0x48, 0x65,
|
||
0x72, 0x6f, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x65, 0x6e, 0x55, 0x70, 0x6c, 0x76,
|
||
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, 0x37, 0x0a, 0x17, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74,
|
||
0x68, 0x65, 0x6e, 0x55, 0x70, 0x53, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09,
|
||
0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||
0x09, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x22, 0x37, 0x0a, 0x18, 0x48, 0x65,
|
||
0x72, 0x6f, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x65, 0x6e, 0x55, 0x70, 0x53, 0x74,
|
||
0x61, 0x72, 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, 0xaa, 0x01, 0x0a, 0x18, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x74, 0x72, 0x65,
|
||
0x6e, 0x67, 0x74, 0x68, 0x65, 0x6e, 0x55, 0x70, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x52, 0x65, 0x71,
|
||
0x12, 0x1c, 0x0a, 0x09, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x18, 0x01, 0x20,
|
||
0x01, 0x28, 0x09, 0x52, 0x09, 0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x12, 0x37,
|
||
0x0a, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x48,
|
||
0x65, 0x72, 0x6f, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x65, 0x6e, 0x55, 0x70, 0x53,
|
||
0x6b, 0x69, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x6e, 0x74, 0x72,
|
||
0x79, 0x52, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x1a, 0x37, 0x0a, 0x09, 0x49, 0x74, 0x65, 0x6d, 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, 0x38, 0x0a, 0x19, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68,
|
||
0x65, 0x6e, 0x55, 0x70, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 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, 0x2d, 0x0a, 0x0d, 0x48, 0x65,
|
||
0x72, 0x6f, 0x41, 0x77, 0x61, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x68,
|
||
0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
||
0x68, 0x65, 0x72, 0x6f, 0x4f, 0x62, 0x6a, 0x49, 0x44, 0x22, 0x2d, 0x0a, 0x0e, 0x48, 0x65, 0x72,
|
||
0x6f, 0x41, 0x77, 0x61, 0x6b, 0x65, 0x6e, 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, 0xaa, 0x02, 0x0a, 0x10, 0x48, 0x65, 0x72,
|
||
0x6f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x50, 0x75, 0x73, 0x68, 0x12, 0x16, 0x0a,
|
||
0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68,
|
||
0x65, 0x72, 0x6f, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
|
||
0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x48, 0x65, 0x72, 0x6f, 0x50, 0x72,
|
||
0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x50, 0x75, 0x73, 0x68, 0x2e, 0x50, 0x72, 0x6f, 0x70, 0x65,
|
||
0x72, 0x74, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
|
||
0x74, 0x79, 0x12, 0x44, 0x0a, 0x0b, 0x61, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
|
||
0x79, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x48, 0x65, 0x72, 0x6f, 0x50, 0x72,
|
||
0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x50, 0x75, 0x73, 0x68, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72,
|
||
0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x61, 0x64, 0x64,
|
||
0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x1a, 0x3b, 0x0a, 0x0d, 0x50, 0x72, 0x6f, 0x70,
|
||
0x65, 0x72, 0x74, 0x79, 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, 0x1a, 0x3e, 0x0a, 0x10, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x70,
|
||
0x65, 0x72, 0x74, 0x79, 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, 0x25, 0x0a, 0x0b, 0x48, 0x65, 0x72, 0x6f, 0x4c, 0x6f, 0x63,
|
||
0x6b, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x18, 0x01,
|
||
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x22, 0x2b, 0x0a, 0x0c,
|
||
0x48, 0x65, 0x72, 0x6f, 0x4c, 0x6f, 0x63, 0x6b, 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, 0x77, 0x0a, 0x13, 0x48, 0x65, 0x72,
|
||
0x6f, 0x47, 0x65, 0x74, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x52, 0x65, 0x71,
|
||
0x12, 0x24, 0x0a, 0x0d, 0x68, 0x65, 0x72, 0x6f, 0x43, 0x6f, 0x69, 0x6e, 0x66, 0x69, 0x67, 0x49,
|
||
0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x68, 0x65, 0x72, 0x6f, 0x43, 0x6f, 0x69,
|
||
0x6e, 0x66, 0x69, 0x67, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
|
||
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x12,
|
||
0x0a, 0x04, 0x73, 0x74, 0x61, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x74,
|
||
0x61, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x6c, 0x76, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02,
|
||
0x6c, 0x76, 0x22, 0x33, 0x0a, 0x14, 0x48, 0x65, 0x72, 0x6f, 0x47, 0x65, 0x74, 0x53, 0x70, 0x65,
|
||
0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 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, 0x65, 0x0a, 0x0f, 0x48, 0x65, 0x72, 0x6f, 0x44,
|
||
0x72, 0x61, 0x77, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x72,
|
||
0x61, 0x77, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x64, 0x72,
|
||
0x61, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6f,
|
||
0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x64, 0x72, 0x61, 0x77, 0x43,
|
||
0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x18,
|
||
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x22, 0x29,
|
||
0x0a, 0x08, 0x41, 0x74, 0x6e, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74,
|
||
0x6e, 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41,
|
||
0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x22, 0xf1, 0x01, 0x0a, 0x10, 0x48, 0x65,
|
||
0x72, 0x6f, 0x44, 0x72, 0x61, 0x77, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d,
|
||
0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x41,
|
||
0x74, 0x6e, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a,
|
||
0x04, 0x77, 0x69, 0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73,
|
||
0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x77, 0x69, 0x73, 0x68, 0x12, 0x25, 0x0a, 0x06,
|
||
0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44,
|
||
0x42, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x06, 0x72, 0x65, 0x63,
|
||
0x6f, 0x72, 0x64, 0x12, 0x3b, 0x0a, 0x08, 0x66, 0x69, 0x72, 0x73, 0x74, 0x47, 0x65, 0x74, 0x18,
|
||
0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x48, 0x65, 0x72, 0x6f, 0x44, 0x72, 0x61, 0x77,
|
||
0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x46, 0x69, 0x72, 0x73, 0x74, 0x47, 0x65,
|
||
0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x66, 0x69, 0x72, 0x73, 0x74, 0x47, 0x65, 0x74,
|
||
0x1a, 0x3b, 0x0a, 0x0d, 0x46, 0x69, 0x72, 0x73, 0x74, 0x47, 0x65, 0x74, 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, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x2d, 0x0a,
|
||
0x0e, 0x48, 0x65, 0x72, 0x6f, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x75, 0x73, 0x68, 0x12,
|
||
0x1b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e,
|
||
0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x16, 0x0a, 0x14,
|
||
0x48, 0x65, 0x72, 0x6f, 0x44, 0x72, 0x61, 0x77, 0x43, 0x61, 0x72, 0x64, 0x46, 0x6c, 0x6f, 0x6f,
|
||
0x72, 0x52, 0x65, 0x71, 0x22, 0x3e, 0x0a, 0x15, 0x48, 0x65, 0x72, 0x6f, 0x44, 0x72, 0x61, 0x77,
|
||
0x43, 0x61, 0x72, 0x64, 0x46, 0x6c, 0x6f, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a,
|
||
0x06, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
|
||
0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x06, 0x72, 0x65,
|
||
0x63, 0x6f, 0x72, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x0d, 0x48, 0x65, 0x72, 0x6f, 0x46, 0x75, 0x73,
|
||
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64,
|
||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64, 0x12, 0x2f,
|
||
0x0a, 0x05, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e,
|
||
0x48, 0x65, 0x72, 0x6f, 0x46, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x2e, 0x48, 0x65,
|
||
0x72, 0x6f, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x1a,
|
||
0x38, 0x0a, 0x0a, 0x48, 0x65, 0x72, 0x6f, 0x73, 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, 0x28, 0x0a, 0x0e, 0x48, 0x65, 0x72,
|
||
0x6f, 0x46, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x68,
|
||
0x65, 0x72, 0x6f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72,
|
||
0x6f, 0x69, 0x64, 0x22, 0x13, 0x0a, 0x11, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c, 0x65, 0x6e,
|
||
0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, 0x3b, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f,
|
||
0x54, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25,
|
||
0x0a, 0x06, 0x74, 0x65, 0x6c, 0x6e, 0x65, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d,
|
||
0x2e, 0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x74,
|
||
0x65, 0x6c, 0x6e, 0x65, 0x74, 0x22, 0x5e, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c,
|
||
0x65, 0x6e, 0x74, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x74,
|
||
0x61, 0x6c, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74,
|
||
0x61, 0x6c, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x62, 0x6a, 0x49, 0x64,
|
||
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x62, 0x6a, 0x49, 0x64, 0x12, 0x16, 0x0a,
|
||
0x06, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68,
|
||
0x65, 0x72, 0x6f, 0x69, 0x64, 0x22, 0x58, 0x0a, 0x13, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c,
|
||
0x65, 0x6e, 0x74, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x06,
|
||
0x74, 0x65, 0x6c, 0x6e, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44,
|
||
0x42, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x74, 0x65, 0x6c,
|
||
0x6e, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x18,
|
||
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x22,
|
||
0x2a, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
||
0x65, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x62, 0x6a, 0x49, 0x64, 0x18, 0x01,
|
||
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x62, 0x6a, 0x49, 0x64, 0x22, 0x3c, 0x0a, 0x13, 0x48,
|
||
0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x65, 0x74, 0x52, 0x65,
|
||
0x73, 0x70, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x65, 0x6c, 0x6e, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
|
||
0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x48, 0x65, 0x72, 0x6f, 0x54, 0x61, 0x6c, 0x65, 0x6e,
|
||
0x74, 0x52, 0x06, 0x74, 0x65, 0x6c, 0x6e, 0x65, 0x74, 0x22, 0x42, 0x0a, 0x0a, 0x48, 0x65, 0x72,
|
||
0x6f, 0x42, 0x75, 0x79, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x75, 0x79, 0x54, 0x79,
|
||
0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x62, 0x75, 0x79, 0x54, 0x79, 0x70,
|
||
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20,
|
||
0x01, 0x28, 0x05, 0x52, 0x08, 0x62, 0x75, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x55, 0x0a,
|
||
0x0b, 0x48, 0x65, 0x72, 0x6f, 0x42, 0x75, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06,
|
||
0x49, 0x73, 0x53, 0x75, 0x63, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x49, 0x73,
|
||
0x53, 0x75, 0x63, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x6e, 0x65, 0x62, 0x75, 0x79, 0x18, 0x03,
|
||
0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x6e, 0x65, 0x62, 0x75, 0x79, 0x12, 0x16, 0x0a, 0x06,
|
||
0x74, 0x65, 0x6e, 0x62, 0x75, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x74, 0x65,
|
||
0x6e, 0x62, 0x75, 0x79, 0x22, 0x2a, 0x0a, 0x10, 0x48, 0x65, 0x72, 0x6f, 0x46, 0x69, 0x72, 0x73,
|
||
0x74, 0x47, 0x65, 0x74, 0x50, 0x75, 0x73, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f,
|
||
0x49, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64,
|
||
0x22, 0x4c, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f, 0x50, 0x65, 0x61, 0x63, 0x68, 0x52, 0x65, 0x77,
|
||
0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64,
|
||
0x43, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x72, 0x65, 0x77, 0x61, 0x72,
|
||
0x64, 0x43, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x41, 0x6c, 0x6c, 0x47, 0x65, 0x74, 0x18,
|
||
0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x62, 0x41, 0x6c, 0x6c, 0x47, 0x65, 0x74, 0x22, 0xa5,
|
||
0x01, 0x0a, 0x13, 0x48, 0x65, 0x72, 0x6f, 0x50, 0x65, 0x61, 0x63, 0x68, 0x52, 0x65, 0x77, 0x61,
|
||
0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x05, 0x70, 0x65, 0x61, 0x63, 0x68, 0x18,
|
||
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x48, 0x65, 0x72, 0x6f, 0x50, 0x65, 0x61, 0x63,
|
||
0x68, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x50, 0x65, 0x61, 0x63,
|
||
0x68, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x70, 0x65, 0x61, 0x63, 0x68, 0x12, 0x1d, 0x0a,
|
||
0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73,
|
||
0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x1a, 0x38, 0x0a, 0x0a,
|
||
0x50, 0x65, 0x61, 0x63, 0x68, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
|
||
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
|
||
0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
||
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x48, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f, 0x41, 0x70,
|
||
0x70, 0x6f, 0x69, 0x6e, 0x74, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08,
|
||
0x64, 0x72, 0x61, 0x77, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
|
||
0x64, 0x72, 0x61, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f,
|
||
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64,
|
||
0x22, 0x49, 0x0a, 0x13, 0x48, 0x65, 0x72, 0x6f, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x48,
|
||
0x65, 0x72, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x72, 0x61, 0x77, 0x54,
|
||
0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x64, 0x72, 0x61, 0x77, 0x54,
|
||
0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
||
0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x69, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x48,
|
||
0x65, 0x72, 0x6f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x73, 0x74,
|
||
0x52, 0x65, 0x71, 0x22, 0x3a, 0x0a, 0x15, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x65, 0x6c, 0x65, 0x63,
|
||
0x74, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04,
|
||
0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x53,
|
||
0x65, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x72, 0x61, 0x77, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
|
||
0x13, 0x0a, 0x11, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x72, 0x61,
|
||
0x77, 0x52, 0x65, 0x71, 0x22, 0x37, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x65, 0x6c, 0x65,
|
||
0x63, 0x74, 0x44, 0x72, 0x61, 0x77, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x64, 0x61,
|
||
0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x53, 0x65, 0x6c,
|
||
0x65, 0x63, 0x74, 0x44, 0x72, 0x61, 0x77, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x27, 0x0a,
|
||
0x0f, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x61, 0x76, 0x65, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
|
||
0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
|
||
0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0x35, 0x0a, 0x10, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x61,
|
||
0x76, 0x65, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x64, 0x61,
|
||
0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44, 0x42, 0x53, 0x65, 0x6c,
|
||
0x65, 0x63, 0x74, 0x44, 0x72, 0x61, 0x77, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x29, 0x0a,
|
||
0x11, 0x48, 0x65, 0x72, 0x6f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x43, 0x61, 0x72, 0x64, 0x52,
|
||
0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||
0x05, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0x56, 0x0a, 0x12, 0x48, 0x65, 0x72, 0x6f,
|
||
0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21,
|
||
0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x44,
|
||
0x42, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x72, 0x61, 0x77, 0x52, 0x04, 0x64, 0x61, 0x74,
|
||
0x61, 0x12, 0x1d, 0x0a, 0x04, 0x61, 0x74, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||
0x09, 0x2e, 0x41, 0x74, 0x6e, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x61, 0x74, 0x6e, 0x6f,
|
||
0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||
}
|
||
|
||
var (
|
||
file_hero_hero_msg_proto_rawDescOnce sync.Once
|
||
file_hero_hero_msg_proto_rawDescData = file_hero_hero_msg_proto_rawDesc
|
||
)
|
||
|
||
func file_hero_hero_msg_proto_rawDescGZIP() []byte {
|
||
file_hero_hero_msg_proto_rawDescOnce.Do(func() {
|
||
file_hero_hero_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_hero_hero_msg_proto_rawDescData)
|
||
})
|
||
return file_hero_hero_msg_proto_rawDescData
|
||
}
|
||
|
||
var file_hero_hero_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 54)
|
||
var file_hero_hero_msg_proto_goTypes = []interface{}{
|
||
(*HeroInfoReq)(nil), // 0: HeroInfoReq
|
||
(*HeroInfoResp)(nil), // 1: HeroInfoResp
|
||
(*HeroListReq)(nil), // 2: HeroListReq
|
||
(*HeroListResp)(nil), // 3: HeroListResp
|
||
(*MapStringInt32)(nil), // 4: MapStringInt32
|
||
(*HeroStrengthenUplvReq)(nil), // 5: HeroStrengthenUplvReq
|
||
(*HeroStrengthenUplvResp)(nil), // 6: HeroStrengthenUplvResp
|
||
(*HeroStrengthenUpStarReq)(nil), // 7: HeroStrengthenUpStarReq
|
||
(*HeroStrengthenUpStarResp)(nil), // 8: HeroStrengthenUpStarResp
|
||
(*HeroStrengthenUpSkillReq)(nil), // 9: HeroStrengthenUpSkillReq
|
||
(*HeroStrengthenUpSkillResp)(nil), // 10: HeroStrengthenUpSkillResp
|
||
(*HeroAwakenReq)(nil), // 11: HeroAwakenReq
|
||
(*HeroAwakenResp)(nil), // 12: HeroAwakenResp
|
||
(*HeroPropertyPush)(nil), // 13: HeroPropertyPush
|
||
(*HeroLockReq)(nil), // 14: HeroLockReq
|
||
(*HeroLockResp)(nil), // 15: HeroLockResp
|
||
(*HeroGetSpecifiedReq)(nil), // 16: HeroGetSpecifiedReq
|
||
(*HeroGetSpecifiedResp)(nil), // 17: HeroGetSpecifiedResp
|
||
(*HeroDrawCardReq)(nil), // 18: HeroDrawCardReq
|
||
(*AtnoData)(nil), // 19: AtnoData
|
||
(*HeroDrawCardResp)(nil), // 20: HeroDrawCardResp
|
||
(*HeroChangePush)(nil), // 21: HeroChangePush
|
||
(*HeroDrawCardFloorReq)(nil), // 22: HeroDrawCardFloorReq
|
||
(*HeroDrawCardFloorResp)(nil), // 23: HeroDrawCardFloorResp
|
||
(*HeroFusionReq)(nil), // 24: HeroFusionReq
|
||
(*HeroFusionResp)(nil), // 25: HeroFusionResp
|
||
(*HeroTalentListReq)(nil), // 26: HeroTalentListReq
|
||
(*HeroTalentListResp)(nil), // 27: HeroTalentListResp
|
||
(*HeroTalentLearnReq)(nil), // 28: HeroTalentLearnReq
|
||
(*HeroTalentLearnResp)(nil), // 29: HeroTalentLearnResp
|
||
(*HeroTalentResetReq)(nil), // 30: HeroTalentResetReq
|
||
(*HeroTalentResetResp)(nil), // 31: HeroTalentResetResp
|
||
(*HeroBuyReq)(nil), // 32: HeroBuyReq
|
||
(*HeroBuyResp)(nil), // 33: HeroBuyResp
|
||
(*HeroFirstGetPush)(nil), // 34: HeroFirstGetPush
|
||
(*HeroPeachRewardReq)(nil), // 35: HeroPeachRewardReq
|
||
(*HeroPeachRewardResp)(nil), // 36: HeroPeachRewardResp
|
||
(*HeroAppointHeroReq)(nil), // 37: HeroAppointHeroReq
|
||
(*HeroAppointHeroResp)(nil), // 38: HeroAppointHeroResp
|
||
(*HeroSelectGetListReq)(nil), // 39: HeroSelectGetListReq
|
||
(*HeroSelectGetListResp)(nil), // 40: HeroSelectGetListResp
|
||
(*HeroSelectDrawReq)(nil), // 41: HeroSelectDrawReq
|
||
(*HeroSelectDrawResp)(nil), // 42: HeroSelectDrawResp
|
||
(*HeroSaveCardReq)(nil), // 43: HeroSaveCardReq
|
||
(*HeroSaveCardResp)(nil), // 44: HeroSaveCardResp
|
||
(*HeroSelectCardReq)(nil), // 45: HeroSelectCardReq
|
||
(*HeroSelectCardResp)(nil), // 46: HeroSelectCardResp
|
||
nil, // 47: HeroStrengthenUplvReq.ItemEntry
|
||
nil, // 48: HeroStrengthenUpSkillReq.ItemEntry
|
||
nil, // 49: HeroPropertyPush.PropertyEntry
|
||
nil, // 50: HeroPropertyPush.AddPropertyEntry
|
||
nil, // 51: HeroDrawCardResp.FirstGetEntry
|
||
nil, // 52: HeroFusionReq.HerosEntry
|
||
nil, // 53: HeroPeachRewardResp.PeachEntry
|
||
(*DBHero)(nil), // 54: DBHero
|
||
(*UserAtno)(nil), // 55: UserAtno
|
||
(*DBHeroRecord)(nil), // 56: DBHeroRecord
|
||
(*DBHeroTalent)(nil), // 57: DBHeroTalent
|
||
(*DBSelectDraw)(nil), // 58: DBSelectDraw
|
||
}
|
||
var file_hero_hero_msg_proto_depIdxs = []int32{
|
||
54, // 0: HeroInfoResp.base:type_name -> DBHero
|
||
54, // 1: HeroListResp.list:type_name -> DBHero
|
||
47, // 2: HeroStrengthenUplvReq.item:type_name -> HeroStrengthenUplvReq.ItemEntry
|
||
54, // 3: HeroStrengthenUplvResp.hero:type_name -> DBHero
|
||
54, // 4: HeroStrengthenUpStarResp.hero:type_name -> DBHero
|
||
48, // 5: HeroStrengthenUpSkillReq.item:type_name -> HeroStrengthenUpSkillReq.ItemEntry
|
||
54, // 6: HeroStrengthenUpSkillResp.hero:type_name -> DBHero
|
||
54, // 7: HeroAwakenResp.hero:type_name -> DBHero
|
||
49, // 8: HeroPropertyPush.property:type_name -> HeroPropertyPush.PropertyEntry
|
||
50, // 9: HeroPropertyPush.addProperty:type_name -> HeroPropertyPush.AddPropertyEntry
|
||
54, // 10: HeroLockResp.hero:type_name -> DBHero
|
||
54, // 11: HeroGetSpecifiedResp.hero:type_name -> DBHero
|
||
55, // 12: AtnoData.atno:type_name -> UserAtno
|
||
19, // 13: HeroDrawCardResp.data:type_name -> AtnoData
|
||
55, // 14: HeroDrawCardResp.wish:type_name -> UserAtno
|
||
56, // 15: HeroDrawCardResp.record:type_name -> DBHeroRecord
|
||
51, // 16: HeroDrawCardResp.firstGet:type_name -> HeroDrawCardResp.FirstGetEntry
|
||
54, // 17: HeroChangePush.list:type_name -> DBHero
|
||
56, // 18: HeroDrawCardFloorResp.record:type_name -> DBHeroRecord
|
||
52, // 19: HeroFusionReq.heros:type_name -> HeroFusionReq.HerosEntry
|
||
57, // 20: HeroTalentListResp.telnet:type_name -> DBHeroTalent
|
||
57, // 21: HeroTalentLearnResp.telnet:type_name -> DBHeroTalent
|
||
57, // 22: HeroTalentResetResp.telnet:type_name -> DBHeroTalent
|
||
53, // 23: HeroPeachRewardResp.peach:type_name -> HeroPeachRewardResp.PeachEntry
|
||
55, // 24: HeroPeachRewardResp.atno:type_name -> UserAtno
|
||
58, // 25: HeroSelectGetListResp.data:type_name -> DBSelectDraw
|
||
58, // 26: HeroSelectDrawResp.data:type_name -> DBSelectDraw
|
||
58, // 27: HeroSaveCardResp.data:type_name -> DBSelectDraw
|
||
58, // 28: HeroSelectCardResp.data:type_name -> DBSelectDraw
|
||
19, // 29: HeroSelectCardResp.atno:type_name -> AtnoData
|
||
30, // [30:30] is the sub-list for method output_type
|
||
30, // [30:30] is the sub-list for method input_type
|
||
30, // [30:30] is the sub-list for extension type_name
|
||
30, // [30:30] is the sub-list for extension extendee
|
||
0, // [0:30] is the sub-list for field type_name
|
||
}
|
||
|
||
func init() { file_hero_hero_msg_proto_init() }
|
||
func file_hero_hero_msg_proto_init() {
|
||
if File_hero_hero_msg_proto != nil {
|
||
return
|
||
}
|
||
file_hero_hero_db_proto_init()
|
||
file_comm_proto_init()
|
||
if !protoimpl.UnsafeEnabled {
|
||
file_hero_hero_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroInfoReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroInfoResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroListReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroListResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*MapStringInt32); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroStrengthenUplvReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroStrengthenUplvResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroStrengthenUpStarReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroStrengthenUpStarResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroStrengthenUpSkillReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroStrengthenUpSkillResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroAwakenReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroAwakenResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroPropertyPush); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroLockReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroLockResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroGetSpecifiedReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroGetSpecifiedResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroDrawCardReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*AtnoData); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroDrawCardResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroChangePush); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroDrawCardFloorReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroDrawCardFloorResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroFusionReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroFusionResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroTalentListReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroTalentListResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroTalentLearnReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroTalentLearnResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroTalentResetReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroTalentResetResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroBuyReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroBuyResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroFirstGetPush); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroPeachRewardReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroPeachRewardResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroAppointHeroReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroAppointHeroResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSelectGetListReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSelectGetListResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSelectDrawReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSelectDrawResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSaveCardReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSaveCardResp); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSelectCardReq); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_hero_hero_msg_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*HeroSelectCardResp); 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_hero_hero_msg_proto_rawDesc,
|
||
NumEnums: 0,
|
||
NumMessages: 54,
|
||
NumExtensions: 0,
|
||
NumServices: 0,
|
||
},
|
||
GoTypes: file_hero_hero_msg_proto_goTypes,
|
||
DependencyIndexes: file_hero_hero_msg_proto_depIdxs,
|
||
MessageInfos: file_hero_hero_msg_proto_msgTypes,
|
||
}.Build()
|
||
File_hero_hero_msg_proto = out.File
|
||
file_hero_hero_msg_proto_rawDesc = nil
|
||
file_hero_hero_msg_proto_goTypes = nil
|
||
file_hero_hero_msg_proto_depIdxs = nil
|
||
}
|