//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // *************************************************************************** // * 作者:曾振东 // * 创建时间:2020-05-12 // * 用途:随从2.0处理器 // *************************************************************************** // Generated from: petHandler.proto // Note: requires additional types generated from: common.proto // Note: requires additional types generated from: item.proto namespace pomelo.pet { //--------------------------------------------------------------------------------------- /// /// 属性对象 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Attribute")] public partial class Attribute : global::ProtoBuf.IExtensible { public Attribute() {} private int _attributesKey; /// /// 属性id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"attributesKey", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int attributesKey { get { return _attributesKey; } set { _attributesKey = value; } } private string _attributesVelue = ""; /// /// 值 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"attributesVelue", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string attributesVelue { get { return _attributesVelue; } set { _attributesVelue = value; } } private int _attributesDesc = default(int); /// /// 策划配置的属性显示描述 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"attributesDesc", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int attributesDesc { get { return _attributesDesc; } set { _attributesDesc = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从技能对象 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Skill")] public partial class Skill : global::ProtoBuf.IExtensible { public Skill() {} private int _skillId; /// /// 技能模板id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"skillId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int skillId { get { return _skillId; } set { _skillId = value; } } private int _level = default(int); /// /// 技能等级 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int level { get { return _level; } set { _level = value; } } private int _pos = default(int); [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int pos { get { return _pos; } set { _pos = value; } } private bool _isLocking = default(bool); /// /// 该技能的锁定状态(主动技能忽略该字段) /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"isLocking", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(default(bool))] public bool isLocking { get { return _isLocking; } set { _isLocking = value; } } private int _kind = default(int); /// /// 技能种类(0:普攻 1:固元 2:秘法 3:神通) /// [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int kind { get { return _kind; } set { _kind = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从资质对象 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Qualification")] public partial class Qualification : global::ProtoBuf.IExtensible { public Qualification() {} private int _qScore; /// /// 资质总分(星级) /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"qScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int qScore { get { return _qScore; } set { _qScore = value; } } private int _q1 = default(int); /// /// 气血资质数值 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"q1", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int q1 { get { return _q1; } set { _q1 = value; } } private int _q2 = default(int); /// /// 御守资质数值 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"q2", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int q2 { get { return _q2; } set { _q2 = value; } } private int _q3 = default(int); /// /// 灵慧资质数值 /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"q3", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int q3 { get { return _q3; } set { _q3 = value; } } private int _q4 = default(int); /// /// 会心资质数值 /// [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"q4", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int q4 { get { return _q4; } set { _q4 = value; } } private int _q5 = default(int); /// /// 破势资质数值 /// [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"q5", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int q5 { get { return _q5; } set { _q5 = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从信息对象 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetInfo")] public partial class PetInfo : global::ProtoBuf.IExtensible { public PetInfo() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _templateId; /// /// 随从模板id /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int templateId { get { return _templateId; } set { _templateId = value; } } private string _name = ""; /// /// 名称 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string name { get { return _name; } set { _name = value; } } private int _skin = default(int); /// /// 皮肤(模型的品阶,如:1 2 3) /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"skin", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int skin { get { return _skin; } set { _skin = value; } } private int _sex = default(int); /// /// 性别(0:公 1:母) /// [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int sex { get { return _sex; } set { _sex = value; } } private int _qcolor = default(int); /// /// 成色(1:蓝 2:紫 3:橙) /// [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"qcolor", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int qcolor { get { return _qcolor; } set { _qcolor = value; } } private int _type = default(int); /// /// 资质类型(1:气血 2:御守 3:灵慧 4:会心 5:破势) /// [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int type { get { return _type; } set { _type = value; } } private int _fate = default(int); /// /// 命格(1:七杀 2:离明 3:夜耀 4:昌曲 5:沧海) /// [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"fate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int fate { get { return _fate; } set { _fate = value; } } private int _level = default(int); /// /// 等级 /// [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int level { get { return _level; } set { _level = value; } } private int _exp = default(int); /// /// 经验 /// [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"exp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int exp { get { return _exp; } set { _exp = value; } } private int _grade = default(int); /// /// 等阶 /// [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"grade", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int grade { get { return _grade; } set { _grade = value; } } private int _fightPower = default(int); /// /// 战力 /// [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"fightPower", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int fightPower { get { return _fightPower; } set { _fightPower = value; } } private bool _isFight = default(bool); /// /// 是否出战(false:未出战) /// [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"isFight", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(default(bool))] public bool isFight { get { return _isFight; } set { _isFight = value; } } private pomelo.pet.Qualification _qualification = null; /// /// 当前资质信息 /// [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"qualification", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(null)] public pomelo.pet.Qualification qualification { get { return _qualification; } set { _qualification = value; } } private int _growth = default(int); /// /// 成长值(*100后的值) /// [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"growth", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int growth { get { return _growth; } set { _growth = value; } } private int _growthScore = default(int); /// /// 成长值评分 /// [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"growthScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int growthScore { get { return _growthScore; } set { _growthScore = value; } } private int _qualityScore = default(int); /// /// 品质评分 /// [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"qualityScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int qualityScore { get { return _qualityScore; } set { _qualityScore = value; } } private int _qiling = default(int); /// /// 启灵值(*100后的值) /// [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name=@"qiling", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int qiling { get { return _qiling; } set { _qiling = value; } } private int _qilingAttrUp = default(int); /// /// 启灵基础属性加成万分比 /// [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"qilingAttrUp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int qilingAttrUp { get { return _qilingAttrUp; } set { _qilingAttrUp = value; } } private readonly global::System.Collections.Generic.List _skills = new global::System.Collections.Generic.List(); /// /// 技能 /// [global::ProtoBuf.ProtoMember(20, Name=@"skills", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List skills { get { return _skills; } } private readonly global::System.Collections.Generic.List _property = new global::System.Collections.Generic.List(); /// /// 属性 /// [global::ProtoBuf.ProtoMember(21, Name=@"property", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List property { get { return _property; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 葫芦对象 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Gourd")] public partial class Gourd : global::ProtoBuf.IExtensible { public Gourd() {} private int _pos; /// /// 葫芦藤位置(0:普通葫芦 1:新手引导葫芦|普通葫芦, 2:灵气葫芦) /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int pos { get { return _pos; } set { _pos = value; } } private int _gourdType = default(int); /// /// 葫芦类型(0:新手引导葫芦 1:普通葫芦, 2:灵气葫芦, 3:灵修葫芦) /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"gourdType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int gourdType { get { return _gourdType; } set { _gourdType = value; } } private long _time = default(long); /// /// 到期时间 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(long))] public long time { get { return _time; } set { _time = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 请求随从信息 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetPetInfoRequest")] public partial class GetPetInfoRequest : global::ProtoBuf.IExtensible { public GetPetInfoRequest() {} private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 请求随从信息 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetPetInfoResponse")] public partial class GetPetInfoResponse : global::ProtoBuf.IExtensible { public GetPetInfoResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private int _s2c_grid = default(int); /// /// 随从栏位(格子数) /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_grid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int s2c_grid { get { return _s2c_grid; } set { _s2c_grid = value; } } private readonly global::System.Collections.Generic.List _s2c_pets = new global::System.Collections.Generic.List(); /// /// 随从列表 /// [global::ProtoBuf.ProtoMember(4, Name=@"s2c_pets", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_pets { get { return _s2c_pets; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 葫芦藤信息 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGourdInfoRequest")] public partial class GetGourdInfoRequest : global::ProtoBuf.IExtensible { public GetGourdInfoRequest() {} private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 葫芦藤信息 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGourdInfoResponse")] public partial class GetGourdInfoResponse : global::ProtoBuf.IExtensible { public GetGourdInfoResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private readonly global::System.Collections.Generic.List _s2c_gourdsInfo = new global::System.Collections.Generic.List(); [global::ProtoBuf.ProtoMember(3, Name=@"s2c_gourdsInfo", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_gourdsInfo { get { return _s2c_gourdsInfo; } } private long _s2c_time = default(long); /// /// 浇水刷新到期时间 /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(long))] public long s2c_time { get { return _s2c_time; } set { _s2c_time = value; } } private int _s2c_remainingNum = default(int); /// /// 可浇水次数 /// [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_remainingNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int s2c_remainingNum { get { return _s2c_remainingNum; } set { _s2c_remainingNum = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 浇水 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WateringRequest")] public partial class WateringRequest : global::ProtoBuf.IExtensible { public WateringRequest() {} private int _wateringType; /// /// 浇水类型(1:普通浇水 2:灵气浇水) /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"wateringType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int wateringType { get { return _wateringType; } set { _wateringType = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 浇水 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WateringResponse")] public partial class WateringResponse : global::ProtoBuf.IExtensible { public WateringResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private readonly global::System.Collections.Generic.List _s2c_gourdsInfo = new global::System.Collections.Generic.List(); [global::ProtoBuf.ProtoMember(3, Name=@"s2c_gourdsInfo", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_gourdsInfo { get { return _s2c_gourdsInfo; } } private long _s2c_time = default(long); /// /// 浇水刷新到期时间 /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(long))] public long s2c_time { get { return _s2c_time; } set { _s2c_time = value; } } private int _s2c_remainingNum = default(int); /// /// 可浇水次数 /// [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_remainingNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int s2c_remainingNum { get { return _s2c_remainingNum; } set { _s2c_remainingNum = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 摘取取葫芦 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PikupGourdRequest")] public partial class PikupGourdRequest : global::ProtoBuf.IExtensible { public PikupGourdRequest() {} private int _pos; /// /// 葫芦位置 /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int pos { get { return _pos; } set { _pos = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 摘取取葫芦 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PikupGourdResponse")] public partial class PikupGourdResponse : global::ProtoBuf.IExtensible { public PikupGourdResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private readonly global::System.Collections.Generic.List _s2c_items = new global::System.Collections.Generic.List(); /// /// 获得的道具 /// [global::ProtoBuf.ProtoMember(3, Name=@"s2c_items", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_items { get { return _s2c_items; } } private int _s2c_pet = default(int); /// /// 获得的随从模板id /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_pet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int s2c_pet { get { return _s2c_pet; } set { _s2c_pet = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 改名 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeNameRequest")] public partial class ChangeNameRequest : global::ProtoBuf.IExtensible { public ChangeNameRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private string _petName = ""; /// /// 随从名字 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"petName", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string petName { get { return _petName; } set { _petName = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 改名 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeNameResponse")] public partial class ChangeNameResponse : global::ProtoBuf.IExtensible { public ChangeNameResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 出战 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetFightRequest")] public partial class PetFightRequest : global::ProtoBuf.IExtensible { public PetFightRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 出战 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetFightResponse")] public partial class PetFightResponse : global::ProtoBuf.IExtensible { public PetFightResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 升级 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetUpGradeRequest")] public partial class PetUpGradeRequest : global::ProtoBuf.IExtensible { public PetUpGradeRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _seting = default(int); /// /// 升级方式(0:升一级 1:升到最高) /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"seting", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int seting { get { return _seting; } set { _seting = value; } } private string _itemCode = ""; /// /// 物品code /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string itemCode { get { return _itemCode; } set { _itemCode = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 升级 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetUpGradeResponse")] public partial class PetUpGradeResponse : global::ProtoBuf.IExtensible { public PetUpGradeResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 升阶解锁皮肤 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetUpOrderRequest")] public partial class PetUpOrderRequest : global::ProtoBuf.IExtensible { public PetUpOrderRequest() {} private string _id; /// /// 升阶的随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private string _first; /// /// 升阶勾选的主随从唯一id /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"first", DataFormat = global::ProtoBuf.DataFormat.Default)] public string first { get { return _first; } set { _first = value; } } private readonly global::System.Collections.Generic.List _second = new global::System.Collections.Generic.List(); /// /// 升阶勾选的其他随从唯一id /// [global::ProtoBuf.ProtoMember(3, Name=@"second", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List second { get { return _second; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 升阶解锁皮肤 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetUpOrderResponse")] public partial class PetUpOrderResponse : global::ProtoBuf.IExtensible { public PetUpOrderResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从休息 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetRestRequest")] public partial class PetRestRequest : global::ProtoBuf.IExtensible { public PetRestRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从休息 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetRestResponse")] public partial class PetRestResponse : global::ProtoBuf.IExtensible { public PetRestResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 放生随从 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetDeletRequest")] public partial class PetDeletRequest : global::ProtoBuf.IExtensible { public PetDeletRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 放生随从 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetDeletResponse")] public partial class PetDeletResponse : global::ProtoBuf.IExtensible { public PetDeletResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从洗炼 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetRefineRequest")] public partial class PetRefineRequest : global::ProtoBuf.IExtensible { public PetRefineRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从洗炼 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetRefineResponse")] public partial class PetRefineResponse : global::ProtoBuf.IExtensible { public PetRefineResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private pomelo.pet.Qualification _qualification = null; /// /// 当前资质信息 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"qualification", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(null)] public pomelo.pet.Qualification qualification { get { return _qualification; } set { _qualification = value; } } private int _growth = default(int); /// /// 成长值(*100后的值) /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"growth", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int growth { get { return _growth; } set { _growth = value; } } private int _growthScore = default(int); /// /// 成长值评分 /// [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"growthScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int growthScore { get { return _growthScore; } set { _growthScore = value; } } private int _qualityScore = default(int); /// /// 品质评分 /// [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"qualityScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int qualityScore { get { return _qualityScore; } set { _qualityScore = value; } } private int _qilingAttrUp = default(int); /// /// 启灵基础属性加成万分比 /// [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"qilingAttrUp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int qilingAttrUp { get { return _qilingAttrUp; } set { _qilingAttrUp = value; } } private readonly global::System.Collections.Generic.List _property = new global::System.Collections.Generic.List(); /// /// 洗炼后属性 /// [global::ProtoBuf.ProtoMember(8, Name=@"property", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List property { get { return _property; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从洗炼属性替换 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetRefineAttrRequest")] public partial class PetRefineAttrRequest : global::ProtoBuf.IExtensible { public PetRefineAttrRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从洗炼属性替换 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetRefineAttrResponse")] public partial class PetRefineAttrResponse : global::ProtoBuf.IExtensible { public PetRefineAttrResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从技能学习 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillLearnRequest")] public partial class PetSkillLearnRequest : global::ProtoBuf.IExtensible { public PetSkillLearnRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _petSkillId = default(int); /// /// 技能模板id /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"petSkillId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int petSkillId { get { return _petSkillId; } set { _petSkillId = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从技能学习 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillLearnResponse")] public partial class PetSkillLearnResponse : global::ProtoBuf.IExtensible { public PetSkillLearnResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从技能升级 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillUpGradeRequest")] public partial class PetSkillUpGradeRequest : global::ProtoBuf.IExtensible { public PetSkillUpGradeRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _petSkillId = default(int); /// /// 技能模板id /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"petSkillId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int petSkillId { get { return _petSkillId; } set { _petSkillId = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 随从技能升级 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillUpGradeResponse")] public partial class PetSkillUpGradeResponse : global::ProtoBuf.IExtensible { public PetSkillUpGradeResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 设置皮肤 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSetSkinRequest")] public partial class PetSetSkinRequest : global::ProtoBuf.IExtensible { public PetSetSkinRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _petSkin = default(int); /// /// 随从皮肤(发随从等阶) /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"petSkin", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int petSkin { get { return _petSkin; } set { _petSkin = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 设置皮肤 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSetSkinResponse")] public partial class PetSetSkinResponse : global::ProtoBuf.IExtensible { public PetSetSkinResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 锁定技能 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillLockRequest")] public partial class PetSkillLockRequest : global::ProtoBuf.IExtensible { public PetSkillLockRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _petSkillId = default(int); /// /// 技能模板id /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"petSkillId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int petSkillId { get { return _petSkillId; } set { _petSkillId = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 锁定技能 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillLockResponse")] public partial class PetSkillLockResponse : global::ProtoBuf.IExtensible { public PetSkillLockResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 解锁技能 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillUnLockRequest")] public partial class PetSkillUnLockRequest : global::ProtoBuf.IExtensible { public PetSkillUnLockRequest() {} private string _id; /// /// 随从唯一id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private int _petSkillId = default(int); /// /// 技能模板id /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"petSkillId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int petSkillId { get { return _petSkillId; } set { _petSkillId = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 解锁技能 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PetSkillUnLockResponse")] public partial class PetSkillUnLockResponse : global::ProtoBuf.IExtensible { public PetSkillUnLockResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 查询其他玩家宠物属性 请求 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryOtherPlayerPetAttrRequest")] public partial class QueryOtherPlayerPetAttrRequest : global::ProtoBuf.IExtensible { public QueryOtherPlayerPetAttrRequest() {} private string _otherPlayerId; /// /// 查看的角色id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"otherPlayerId", DataFormat = global::ProtoBuf.DataFormat.Default)] public string otherPlayerId { get { return _otherPlayerId; } set { _otherPlayerId = value; } } private string _otherPetId = ""; /// /// 查看的宠物唯一id(此处不传,默认查看玩家出战的宠物) /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"otherPetId", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string otherPetId { get { return _otherPetId; } set { _otherPetId = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 查询其他玩家宠物属性 返回 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryOtherPlayerPetAttrResponse")] public partial class QueryOtherPlayerPetAttrResponse : global::ProtoBuf.IExtensible { public QueryOtherPlayerPetAttrResponse() {} private int _s2c_code; /// /// 错误码 200:OK /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; /// /// 错误提示 /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private pomelo.pet.PetInfo _s2c_petInfo = null; /// /// 随从 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_petInfo", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(null)] public pomelo.pet.PetInfo s2c_petInfo { get { return _s2c_petInfo; } set { _s2c_petInfo = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 通知获得随从 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddPetPush")] public partial class AddPetPush : global::ProtoBuf.IExtensible { public AddPetPush() {} private pomelo.pet.PetInfo _s2c_pet; /// /// 随从信息 /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_pet", DataFormat = global::ProtoBuf.DataFormat.Default)] public pomelo.pet.PetInfo s2c_pet { get { return _s2c_pet; } set { _s2c_pet = value; } } private bool _s2c_isTips = default(bool); /// /// 是否弹获得弹框(false:不弹) /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_isTips", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(default(bool))] public bool s2c_isTips { get { return _s2c_isTips; } set { _s2c_isTips = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 通知随从信息改变 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UpdatePetPush")] public partial class UpdatePetPush : global::ProtoBuf.IExtensible { public UpdatePetPush() {} private int _s2c_type; /// /// 类型(1:随从改名 2:随从出战 3:随从升级 4:解锁皮肤 5:随从休息 6:随从洗炼属性替换 7:随从技能学习 8:随从技能升级 9:设置随从皮肤 10:锁定随从技能 11:解锁随从技能 12:刷新洗炼缓存属性) /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_type { get { return _s2c_type; } set { _s2c_type = value; } } private pomelo.pet.PetInfo _s2c_pet = null; /// /// 随从信息(只发改变值) /// [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_pet", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue(null)] public pomelo.pet.PetInfo s2c_pet { get { return _s2c_pet; } set { _s2c_pet = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 通知删除随从 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DeletePetPush")] public partial class DeletePetPush : global::ProtoBuf.IExtensible { public DeletePetPush() {} private readonly global::System.Collections.Generic.List _s2c_ids = new global::System.Collections.Generic.List(); /// /// 随从唯一id集合 /// [global::ProtoBuf.ProtoMember(1, Name=@"s2c_ids", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_ids { get { return _s2c_ids; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } }