_equipHandler.cs 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // ***************************************************************************
  10. // * 作者= 卢松洁
  11. // * 创建时间= 2015-08-27
  12. // * 用途= 装备处理器
  13. // ***************************************************************************/
  14. // Generated from: equipHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: item.proto
  17. namespace pomelo.area
  18. {
  19. //---------------------------------------------------------------------------------------
  20. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipPos")]
  21. public partial class EquipPos : global::ProtoBuf.IExtensible
  22. {
  23. public EquipPos() {}
  24. private int _bagOrBody;
  25. /// <summary>
  26. /// 身上还是背包里
  27. /// </summary>
  28. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"bagOrBody", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  29. public int bagOrBody
  30. {
  31. get { return _bagOrBody; }
  32. set { _bagOrBody = value; }
  33. }
  34. private int _posOrGrid;
  35. /// <summary>
  36. /// 位置
  37. /// </summary>
  38. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"posOrGrid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  39. public int posOrGrid
  40. {
  41. get { return _posOrGrid; }
  42. set { _posOrGrid = value; }
  43. }
  44. private global::ProtoBuf.IExtension extensionObject;
  45. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  46. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  47. }
  48. //---------------------------------------------------------------------------------------
  49. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnEquipRequest")]
  50. public partial class UnEquipRequest : global::ProtoBuf.IExtensible
  51. {
  52. public UnEquipRequest() {}
  53. private int _c2s_gridIndex;
  54. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_gridIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  55. public int c2s_gridIndex
  56. {
  57. get { return _c2s_gridIndex; }
  58. set { _c2s_gridIndex = value; }
  59. }
  60. private global::ProtoBuf.IExtension extensionObject;
  61. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  62. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  63. }
  64. //---------------------------------------------------------------------------------------
  65. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRequest")]
  66. public partial class EquipRequest : global::ProtoBuf.IExtensible
  67. {
  68. public EquipRequest() {}
  69. private int _c2s_gridIndex;
  70. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_gridIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  71. public int c2s_gridIndex
  72. {
  73. get { return _c2s_gridIndex; }
  74. set { _c2s_gridIndex = value; }
  75. }
  76. private global::ProtoBuf.IExtension extensionObject;
  77. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  78. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  79. }
  80. //---------------------------------------------------------------------------------------
  81. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipStrengthenRequest")]
  82. public partial class EquipStrengthenRequest : global::ProtoBuf.IExtensible
  83. {
  84. public EquipStrengthenRequest() {}
  85. private int _c2s_pos;
  86. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  87. public int c2s_pos
  88. {
  89. get { return _c2s_pos; }
  90. set { _c2s_pos = value; }
  91. }
  92. private int _c2s_demotions = default(int);
  93. /// <summary>
  94. /// 使用祝福石数量
  95. /// </summary>
  96. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_demotions", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  97. [global::System.ComponentModel.DefaultValue(default(int))]
  98. public int c2s_demotions
  99. {
  100. get { return _c2s_demotions; }
  101. set { _c2s_demotions = value; }
  102. }
  103. private global::ProtoBuf.IExtension extensionObject;
  104. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  105. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  106. }
  107. //---------------------------------------------------------------------------------------
  108. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipStrengthenByFiveRequest")]
  109. public partial class EquipStrengthenByFiveRequest : global::ProtoBuf.IExtensible
  110. {
  111. public EquipStrengthenByFiveRequest() {}
  112. private int _c2s_pos;
  113. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  114. public int c2s_pos
  115. {
  116. get { return _c2s_pos; }
  117. set { _c2s_pos = value; }
  118. }
  119. private global::ProtoBuf.IExtension extensionObject;
  120. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  121. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  122. }
  123. //---------------------------------------------------------------------------------------
  124. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"OpenEquipHandlerRequest")]
  125. public partial class OpenEquipHandlerRequest : global::ProtoBuf.IExtensible
  126. {
  127. public OpenEquipHandlerRequest() {}
  128. private int _code;
  129. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  130. public int code
  131. {
  132. get { return _code; }
  133. set { _code = value; }
  134. }
  135. private global::ProtoBuf.IExtension extensionObject;
  136. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  137. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  138. }
  139. //---------------------------------------------------------------------------------------
  140. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"OpenEquipHandlerResponse")]
  141. public partial class OpenEquipHandlerResponse : global::ProtoBuf.IExtensible
  142. {
  143. public OpenEquipHandlerResponse() {}
  144. private int _s2c_code;
  145. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  146. public int s2c_code
  147. {
  148. get { return _s2c_code; }
  149. set { _s2c_code = value; }
  150. }
  151. private string _s2c_msg = "";
  152. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  153. [global::System.ComponentModel.DefaultValue("")]
  154. public string s2c_msg
  155. {
  156. get { return _s2c_msg; }
  157. set { _s2c_msg = value; }
  158. }
  159. private global::ProtoBuf.IExtension extensionObject;
  160. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  161. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  162. }
  163. //---------------------------------------------------------------------------------------
  164. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipStrengthenData")]
  165. public partial class EquipStrengthenData : global::ProtoBuf.IExtensible
  166. {
  167. public EquipStrengthenData() {}
  168. private readonly global::System.Collections.Generic.List<pomelo.item.MiniItem> _costItem = new global::System.Collections.Generic.List<pomelo.item.MiniItem>();
  169. /// <summary>
  170. /// ,,
  171. /// </summary>
  172. [global::ProtoBuf.ProtoMember(1, Name=@"costItem", DataFormat = global::ProtoBuf.DataFormat.Default)]
  173. public global::System.Collections.Generic.List<pomelo.item.MiniItem> costItem
  174. {
  175. get { return _costItem; }
  176. }
  177. private int _needGoldNum = default(int);
  178. /// <summary>
  179. /// ,,
  180. /// </summary>
  181. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"needGoldNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  182. [global::System.ComponentModel.DefaultValue(default(int))]
  183. public int needGoldNum
  184. {
  185. get { return _needGoldNum; }
  186. set { _needGoldNum = value; }
  187. }
  188. private readonly global::System.Collections.Generic.List<pomelo.AttributeSimple> _simpleAtts = new global::System.Collections.Generic.List<pomelo.AttributeSimple>();
  189. /// <summary>
  190. /// 基础属性,,
  191. /// </summary>
  192. [global::ProtoBuf.ProtoMember(7, Name=@"simpleAtts", DataFormat = global::ProtoBuf.DataFormat.Default)]
  193. public global::System.Collections.Generic.List<pomelo.AttributeSimple> simpleAtts
  194. {
  195. get { return _simpleAtts; }
  196. }
  197. private global::ProtoBuf.IExtension extensionObject;
  198. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  199. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  200. }
  201. //---------------------------------------------------------------------------------------
  202. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnEquipResponse")]
  203. public partial class UnEquipResponse : global::ProtoBuf.IExtensible
  204. {
  205. public UnEquipResponse() {}
  206. private int _s2c_code;
  207. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  208. public int s2c_code
  209. {
  210. get { return _s2c_code; }
  211. set { _s2c_code = value; }
  212. }
  213. private string _s2c_msg = "";
  214. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  215. [global::System.ComponentModel.DefaultValue("")]
  216. public string s2c_msg
  217. {
  218. get { return _s2c_msg; }
  219. set { _s2c_msg = value; }
  220. }
  221. private global::ProtoBuf.IExtension extensionObject;
  222. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  223. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  224. }
  225. //---------------------------------------------------------------------------------------
  226. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipResponse")]
  227. public partial class EquipResponse : global::ProtoBuf.IExtensible
  228. {
  229. public EquipResponse() {}
  230. private int _s2c_code;
  231. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  232. public int s2c_code
  233. {
  234. get { return _s2c_code; }
  235. set { _s2c_code = value; }
  236. }
  237. private string _s2c_msg = "";
  238. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  239. [global::System.ComponentModel.DefaultValue("")]
  240. public string s2c_msg
  241. {
  242. get { return _s2c_msg; }
  243. set { _s2c_msg = value; }
  244. }
  245. private global::ProtoBuf.IExtension extensionObject;
  246. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  247. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  248. }
  249. //---------------------------------------------------------------------------------------
  250. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipStrengthenResponse")]
  251. public partial class EquipStrengthenResponse : global::ProtoBuf.IExtensible
  252. {
  253. public EquipStrengthenResponse() {}
  254. private int _s2c_code;
  255. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  256. public int s2c_code
  257. {
  258. get { return _s2c_code; }
  259. set { _s2c_code = value; }
  260. }
  261. private string _s2c_msg = "";
  262. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  263. [global::System.ComponentModel.DefaultValue("")]
  264. public string s2c_msg
  265. {
  266. get { return _s2c_msg; }
  267. set { _s2c_msg = value; }
  268. }
  269. private pomelo.area.EquipStrengthenData _s2c_strengthenData = null;
  270. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_strengthenData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  271. [global::System.ComponentModel.DefaultValue(null)]
  272. public pomelo.area.EquipStrengthenData s2c_strengthenData
  273. {
  274. get { return _s2c_strengthenData; }
  275. set { _s2c_strengthenData = value; }
  276. }
  277. private int _s2c_success = default(int);
  278. /// <summary>
  279. /// 强化结果 -X : 降级数, 0-失败未降级, 1:升级成功
  280. /// </summary>
  281. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_success", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  282. [global::System.ComponentModel.DefaultValue(default(int))]
  283. public int s2c_success
  284. {
  285. get { return _s2c_success; }
  286. set { _s2c_success = value; }
  287. }
  288. private global::ProtoBuf.IExtension extensionObject;
  289. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  290. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  291. }
  292. //---------------------------------------------------------------------------------------
  293. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipStrengthenByFiveResponse")]
  294. public partial class EquipStrengthenByFiveResponse : global::ProtoBuf.IExtensible
  295. {
  296. public EquipStrengthenByFiveResponse() {}
  297. private int _s2c_code;
  298. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  299. public int s2c_code
  300. {
  301. get { return _s2c_code; }
  302. set { _s2c_code = value; }
  303. }
  304. private string _s2c_msg = "";
  305. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  306. [global::System.ComponentModel.DefaultValue("")]
  307. public string s2c_msg
  308. {
  309. get { return _s2c_msg; }
  310. set { _s2c_msg = value; }
  311. }
  312. private pomelo.area.EquipStrengthenData _s2c_strengthenData = null;
  313. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_strengthenData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  314. [global::System.ComponentModel.DefaultValue(null)]
  315. public pomelo.area.EquipStrengthenData s2c_strengthenData
  316. {
  317. get { return _s2c_strengthenData; }
  318. set { _s2c_strengthenData = value; }
  319. }
  320. private int _s2c_success = default(int);
  321. /// <summary>
  322. /// 强化是否成功 1 成功 0 失败
  323. /// </summary>
  324. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_success", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  325. [global::System.ComponentModel.DefaultValue(default(int))]
  326. public int s2c_success
  327. {
  328. get { return _s2c_success; }
  329. set { _s2c_success = value; }
  330. }
  331. private global::ProtoBuf.IExtension extensionObject;
  332. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  333. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  334. }
  335. //---------------------------------------------------------------------------------------
  336. /// <summary>
  337. /// 请求附魔
  338. /// </summary>
  339. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnchantEquipRequest")]
  340. public partial class EnchantEquipRequest : global::ProtoBuf.IExtensible
  341. {
  342. public EnchantEquipRequest() {}
  343. private int _c2s_pos;
  344. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  345. public int c2s_pos
  346. {
  347. get { return _c2s_pos; }
  348. set { _c2s_pos = value; }
  349. }
  350. private int _c2s_gridIndex;
  351. /// <summary>
  352. /// 图纸模版id
  353. /// </summary>
  354. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_gridIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  355. public int c2s_gridIndex
  356. {
  357. get { return _c2s_gridIndex; }
  358. set { _c2s_gridIndex = value; }
  359. }
  360. private int _c2s_diamond;
  361. /// <summary>
  362. /// 是否钻石补足,1-补足,0-不补足
  363. /// </summary>
  364. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_diamond", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  365. public int c2s_diamond
  366. {
  367. get { return _c2s_diamond; }
  368. set { _c2s_diamond = value; }
  369. }
  370. private global::ProtoBuf.IExtension extensionObject;
  371. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  372. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  373. }
  374. //---------------------------------------------------------------------------------------
  375. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnchantEquipResponse")]
  376. public partial class EnchantEquipResponse : global::ProtoBuf.IExtensible
  377. {
  378. public EnchantEquipResponse() {}
  379. private int _s2c_code;
  380. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  381. public int s2c_code
  382. {
  383. get { return _s2c_code; }
  384. set { _s2c_code = value; }
  385. }
  386. private string _s2c_msg = "";
  387. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  388. [global::System.ComponentModel.DefaultValue("")]
  389. public string s2c_msg
  390. {
  391. get { return _s2c_msg; }
  392. set { _s2c_msg = value; }
  393. }
  394. private readonly global::System.Collections.Generic.List<pomelo.AttributeBase> _s2c_magicAtts = new global::System.Collections.Generic.List<pomelo.AttributeBase>();
  395. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_magicAtts", DataFormat = global::ProtoBuf.DataFormat.Default)]
  396. public global::System.Collections.Generic.List<pomelo.AttributeBase> s2c_magicAtts
  397. {
  398. get { return _s2c_magicAtts; }
  399. }
  400. private global::ProtoBuf.IExtension extensionObject;
  401. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  402. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  403. }
  404. //---------------------------------------------------------------------------------------
  405. /// <summary>
  406. /// 确认附魔
  407. /// </summary>
  408. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConfirmEnchantEquipRequest")]
  409. public partial class ConfirmEnchantEquipRequest : global::ProtoBuf.IExtensible
  410. {
  411. public ConfirmEnchantEquipRequest() {}
  412. private int _c2s_pos;
  413. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  414. public int c2s_pos
  415. {
  416. get { return _c2s_pos; }
  417. set { _c2s_pos = value; }
  418. }
  419. private global::ProtoBuf.IExtension extensionObject;
  420. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  421. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  422. }
  423. //---------------------------------------------------------------------------------------
  424. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConfirmEnchantEquipResponse")]
  425. public partial class ConfirmEnchantEquipResponse : global::ProtoBuf.IExtensible
  426. {
  427. public ConfirmEnchantEquipResponse() {}
  428. private int _s2c_code;
  429. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  430. public int s2c_code
  431. {
  432. get { return _s2c_code; }
  433. set { _s2c_code = value; }
  434. }
  435. private string _s2c_msg = "";
  436. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  437. [global::System.ComponentModel.DefaultValue("")]
  438. public string s2c_msg
  439. {
  440. get { return _s2c_msg; }
  441. set { _s2c_msg = value; }
  442. }
  443. private global::ProtoBuf.IExtension extensionObject;
  444. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  445. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  446. }
  447. //---------------------------------------------------------------------------------------
  448. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"IdentifyEquipRequest")]
  449. public partial class IdentifyEquipRequest : global::ProtoBuf.IExtensible
  450. {
  451. public IdentifyEquipRequest() {}
  452. private int _c2s_gridIndex;
  453. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_gridIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  454. public int c2s_gridIndex
  455. {
  456. get { return _c2s_gridIndex; }
  457. set { _c2s_gridIndex = value; }
  458. }
  459. private global::ProtoBuf.IExtension extensionObject;
  460. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  461. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  462. }
  463. //---------------------------------------------------------------------------------------
  464. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"IdentifyEquipResponse")]
  465. public partial class IdentifyEquipResponse : global::ProtoBuf.IExtensible
  466. {
  467. public IdentifyEquipResponse() {}
  468. private int _s2c_code;
  469. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  470. public int s2c_code
  471. {
  472. get { return _s2c_code; }
  473. set { _s2c_code = value; }
  474. }
  475. private string _s2c_msg = "";
  476. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  477. [global::System.ComponentModel.DefaultValue("")]
  478. public string s2c_msg
  479. {
  480. get { return _s2c_msg; }
  481. set { _s2c_msg = value; }
  482. }
  483. private global::ProtoBuf.IExtension extensionObject;
  484. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  485. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  486. }
  487. //---------------------------------------------------------------------------------------
  488. /// <summary>
  489. /// 精炼
  490. /// </summary>
  491. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefineEquipRequest")]
  492. public partial class RefineEquipRequest : global::ProtoBuf.IExtensible
  493. {
  494. public RefineEquipRequest() {}
  495. private int _c2s_pos;
  496. /// <summary>
  497. /// 装备穿着位置
  498. /// </summary>
  499. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  500. public int c2s_pos
  501. {
  502. get { return _c2s_pos; }
  503. set { _c2s_pos = value; }
  504. }
  505. private string _c2s_itemCode;
  506. /// <summary>
  507. /// 选择材料
  508. /// </summary>
  509. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  510. public string c2s_itemCode
  511. {
  512. get { return _c2s_itemCode; }
  513. set { _c2s_itemCode = value; }
  514. }
  515. private global::ProtoBuf.IExtension extensionObject;
  516. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  517. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  518. }
  519. //---------------------------------------------------------------------------------------
  520. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefineEquipResponse")]
  521. public partial class RefineEquipResponse : global::ProtoBuf.IExtensible
  522. {
  523. public RefineEquipResponse() {}
  524. private int _s2c_code;
  525. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  526. public int s2c_code
  527. {
  528. get { return _s2c_code; }
  529. set { _s2c_code = value; }
  530. }
  531. private string _s2c_msg = "";
  532. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  533. [global::System.ComponentModel.DefaultValue("")]
  534. public string s2c_msg
  535. {
  536. get { return _s2c_msg; }
  537. set { _s2c_msg = value; }
  538. }
  539. private global::ProtoBuf.IExtension extensionObject;
  540. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  541. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  542. }
  543. //---------------------------------------------------------------------------------------
  544. /// <summary>
  545. /// 一键精炼
  546. /// </summary>
  547. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefineOneKeyRequest")]
  548. public partial class RefineOneKeyRequest : global::ProtoBuf.IExtensible
  549. {
  550. public RefineOneKeyRequest() {}
  551. private int _c2s_pos;
  552. /// <summary>
  553. /// 装备穿着位置
  554. /// </summary>
  555. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  556. public int c2s_pos
  557. {
  558. get { return _c2s_pos; }
  559. set { _c2s_pos = value; }
  560. }
  561. private string _c2s_itemCode;
  562. /// <summary>
  563. /// 选择材料
  564. /// </summary>
  565. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_itemCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  566. public string c2s_itemCode
  567. {
  568. get { return _c2s_itemCode; }
  569. set { _c2s_itemCode = value; }
  570. }
  571. private global::ProtoBuf.IExtension extensionObject;
  572. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  573. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  574. }
  575. //---------------------------------------------------------------------------------------
  576. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefineOneKeyResponse")]
  577. public partial class RefineOneKeyResponse : global::ProtoBuf.IExtensible
  578. {
  579. public RefineOneKeyResponse() {}
  580. private int _s2c_code;
  581. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  582. public int s2c_code
  583. {
  584. get { return _s2c_code; }
  585. set { _s2c_code = value; }
  586. }
  587. private string _s2c_msg = "";
  588. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  589. [global::System.ComponentModel.DefaultValue("")]
  590. public string s2c_msg
  591. {
  592. get { return _s2c_msg; }
  593. set { _s2c_msg = value; }
  594. }
  595. private global::ProtoBuf.IExtension extensionObject;
  596. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  597. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  598. }
  599. //---------------------------------------------------------------------------------------
  600. /// <summary>
  601. /// 重置精炼属性
  602. /// </summary>
  603. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefineResetRequest")]
  604. public partial class RefineResetRequest : global::ProtoBuf.IExtensible
  605. {
  606. public RefineResetRequest() {}
  607. private int _c2s_pos;
  608. /// <summary>
  609. /// 装备穿着位置
  610. /// </summary>
  611. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  612. public int c2s_pos
  613. {
  614. get { return _c2s_pos; }
  615. set { _c2s_pos = value; }
  616. }
  617. private int _c2s_propIndex;
  618. /// <summary>
  619. /// 精炼属性下标索引
  620. /// </summary>
  621. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_propIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  622. public int c2s_propIndex
  623. {
  624. get { return _c2s_propIndex; }
  625. set { _c2s_propIndex = value; }
  626. }
  627. private global::ProtoBuf.IExtension extensionObject;
  628. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  629. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  630. }
  631. //---------------------------------------------------------------------------------------
  632. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefineResetResponse")]
  633. public partial class RefineResetResponse : global::ProtoBuf.IExtensible
  634. {
  635. public RefineResetResponse() {}
  636. private int _s2c_code;
  637. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  638. public int s2c_code
  639. {
  640. get { return _s2c_code; }
  641. set { _s2c_code = value; }
  642. }
  643. private string _s2c_msg = "";
  644. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  645. [global::System.ComponentModel.DefaultValue("")]
  646. public string s2c_msg
  647. {
  648. get { return _s2c_msg; }
  649. set { _s2c_msg = value; }
  650. }
  651. private global::ProtoBuf.IExtension extensionObject;
  652. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  653. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  654. }
  655. //---------------------------------------------------------------------------------------
  656. /// <summary>
  657. /// 装备制作
  658. /// </summary>
  659. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipMakeRequest")]
  660. public partial class EquipMakeRequest : global::ProtoBuf.IExtensible
  661. {
  662. public EquipMakeRequest() {}
  663. private string _c2s_targetCode;
  664. /// <summary>
  665. /// 打造的目标代码
  666. /// </summary>
  667. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_targetCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  668. public string c2s_targetCode
  669. {
  670. get { return _c2s_targetCode; }
  671. set { _c2s_targetCode = value; }
  672. }
  673. private global::ProtoBuf.IExtension extensionObject;
  674. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  675. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  676. }
  677. //---------------------------------------------------------------------------------------
  678. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipMakeResponse")]
  679. public partial class EquipMakeResponse : global::ProtoBuf.IExtensible
  680. {
  681. public EquipMakeResponse() {}
  682. private int _s2c_code;
  683. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  684. public int s2c_code
  685. {
  686. get { return _s2c_code; }
  687. set { _s2c_code = value; }
  688. }
  689. private string _s2c_msg = "";
  690. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  691. [global::System.ComponentModel.DefaultValue("")]
  692. public string s2c_msg
  693. {
  694. get { return _s2c_msg; }
  695. set { _s2c_msg = value; }
  696. }
  697. private global::ProtoBuf.IExtension extensionObject;
  698. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  699. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  700. }
  701. //---------------------------------------------------------------------------------------
  702. /// <summary>
  703. /// 装备升级
  704. /// </summary>
  705. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipLevelUpRequest")]
  706. public partial class EquipLevelUpRequest : global::ProtoBuf.IExtensible
  707. {
  708. public EquipLevelUpRequest() {}
  709. private pomelo.area.EquipPos _c2s_equipPos;
  710. /// <summary>
  711. /// 装备位置
  712. /// </summary>
  713. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_equipPos", DataFormat = global::ProtoBuf.DataFormat.Default)]
  714. public pomelo.area.EquipPos c2s_equipPos
  715. {
  716. get { return _c2s_equipPos; }
  717. set { _c2s_equipPos = value; }
  718. }
  719. private int _c2s_mateType;
  720. /// <summary>
  721. /// 使用材料类型 1:使用装备升级 2:使用材料升级
  722. /// </summary>
  723. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_mateType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  724. public int c2s_mateType
  725. {
  726. get { return _c2s_mateType; }
  727. set { _c2s_mateType = value; }
  728. }
  729. private global::ProtoBuf.IExtension extensionObject;
  730. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  731. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  732. }
  733. //---------------------------------------------------------------------------------------
  734. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipLevelUpResponse")]
  735. public partial class EquipLevelUpResponse : global::ProtoBuf.IExtensible
  736. {
  737. public EquipLevelUpResponse() {}
  738. private int _s2c_code;
  739. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  740. public int s2c_code
  741. {
  742. get { return _s2c_code; }
  743. set { _s2c_code = value; }
  744. }
  745. private string _s2c_msg = "";
  746. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  747. [global::System.ComponentModel.DefaultValue("")]
  748. public string s2c_msg
  749. {
  750. get { return _s2c_msg; }
  751. set { _s2c_msg = value; }
  752. }
  753. private global::ProtoBuf.IExtension extensionObject;
  754. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  755. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  756. }
  757. //---------------------------------------------------------------------------------------
  758. /// <summary>
  759. /// 装备提升品质等级
  760. /// </summary>
  761. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipColorUpRequest")]
  762. public partial class EquipColorUpRequest : global::ProtoBuf.IExtensible
  763. {
  764. public EquipColorUpRequest() {}
  765. private pomelo.area.EquipPos _c2s_equipPos;
  766. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_equipPos", DataFormat = global::ProtoBuf.DataFormat.Default)]
  767. public pomelo.area.EquipPos c2s_equipPos
  768. {
  769. get { return _c2s_equipPos; }
  770. set { _c2s_equipPos = value; }
  771. }
  772. private global::ProtoBuf.IExtension extensionObject;
  773. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  774. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  775. }
  776. //---------------------------------------------------------------------------------------
  777. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipColorUpResponse")]
  778. public partial class EquipColorUpResponse : global::ProtoBuf.IExtensible
  779. {
  780. public EquipColorUpResponse() {}
  781. private int _s2c_code;
  782. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  783. public int s2c_code
  784. {
  785. get { return _s2c_code; }
  786. set { _s2c_code = value; }
  787. }
  788. private string _s2c_msg = "";
  789. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  790. [global::System.ComponentModel.DefaultValue("")]
  791. public string s2c_msg
  792. {
  793. get { return _s2c_msg; }
  794. set { _s2c_msg = value; }
  795. }
  796. private global::ProtoBuf.IExtension extensionObject;
  797. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  798. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  799. }
  800. //---------------------------------------------------------------------------------------
  801. /// <summary>
  802. /// 镶嵌宝石
  803. /// </summary>
  804. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FillGemRequest")]
  805. public partial class FillGemRequest : global::ProtoBuf.IExtensible
  806. {
  807. public FillGemRequest() {}
  808. private int _c2s_pos;
  809. /// <summary>
  810. /// 装备pos
  811. /// </summary>
  812. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  813. public int c2s_pos
  814. {
  815. get { return _c2s_pos; }
  816. set { _c2s_pos = value; }
  817. }
  818. private int _c2s_index;
  819. /// <summary>
  820. /// 宝石孔pos
  821. /// </summary>
  822. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  823. public int c2s_index
  824. {
  825. get { return _c2s_index; }
  826. set { _c2s_index = value; }
  827. }
  828. private int _c2s_gridIndex;
  829. /// <summary>
  830. /// 宝石在背包中中的index
  831. /// </summary>
  832. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_gridIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  833. public int c2s_gridIndex
  834. {
  835. get { return _c2s_gridIndex; }
  836. set { _c2s_gridIndex = value; }
  837. }
  838. private global::ProtoBuf.IExtension extensionObject;
  839. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  840. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  841. }
  842. //---------------------------------------------------------------------------------------
  843. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FillGemResponse")]
  844. public partial class FillGemResponse : global::ProtoBuf.IExtensible
  845. {
  846. public FillGemResponse() {}
  847. private int _s2c_code;
  848. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  849. public int s2c_code
  850. {
  851. get { return _s2c_code; }
  852. set { _s2c_code = value; }
  853. }
  854. private string _s2c_msg = "";
  855. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  856. [global::System.ComponentModel.DefaultValue("")]
  857. public string s2c_msg
  858. {
  859. get { return _s2c_msg; }
  860. set { _s2c_msg = value; }
  861. }
  862. private int _s2c_index = default(int);
  863. /// <summary>
  864. /// 当前镶嵌的位置
  865. /// </summary>
  866. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  867. [global::System.ComponentModel.DefaultValue(default(int))]
  868. public int s2c_index
  869. {
  870. get { return _s2c_index; }
  871. set { _s2c_index = value; }
  872. }
  873. private global::ProtoBuf.IExtension extensionObject;
  874. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  875. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  876. }
  877. //---------------------------------------------------------------------------------------
  878. /// <summary>
  879. /// 一键镶嵌宝石
  880. /// </summary>
  881. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FillAllGemRequest")]
  882. public partial class FillAllGemRequest : global::ProtoBuf.IExtensible
  883. {
  884. public FillAllGemRequest() {}
  885. private int _c2s_pos;
  886. /// <summary>
  887. /// 装备pos
  888. /// </summary>
  889. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  890. public int c2s_pos
  891. {
  892. get { return _c2s_pos; }
  893. set { _c2s_pos = value; }
  894. }
  895. private global::ProtoBuf.IExtension extensionObject;
  896. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  897. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  898. }
  899. //---------------------------------------------------------------------------------------
  900. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FillAllGemResponse")]
  901. public partial class FillAllGemResponse : global::ProtoBuf.IExtensible
  902. {
  903. public FillAllGemResponse() {}
  904. private int _s2c_code;
  905. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  906. public int s2c_code
  907. {
  908. get { return _s2c_code; }
  909. set { _s2c_code = value; }
  910. }
  911. private string _s2c_msg = "";
  912. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  913. [global::System.ComponentModel.DefaultValue("")]
  914. public string s2c_msg
  915. {
  916. get { return _s2c_msg; }
  917. set { _s2c_msg = value; }
  918. }
  919. private global::ProtoBuf.IExtension extensionObject;
  920. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  921. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  922. }
  923. //---------------------------------------------------------------------------------------
  924. /// <summary>
  925. /// 卸载某个孔的宝石
  926. /// </summary>
  927. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnFillGemRequest")]
  928. public partial class UnFillGemRequest : global::ProtoBuf.IExtensible
  929. {
  930. public UnFillGemRequest() {}
  931. private int _c2s_pos;
  932. /// <summary>
  933. /// 装备pos
  934. /// </summary>
  935. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  936. public int c2s_pos
  937. {
  938. get { return _c2s_pos; }
  939. set { _c2s_pos = value; }
  940. }
  941. private int _c2s_index;
  942. /// <summary>
  943. /// 宝石孔pos
  944. /// </summary>
  945. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  946. public int c2s_index
  947. {
  948. get { return _c2s_index; }
  949. set { _c2s_index = value; }
  950. }
  951. private global::ProtoBuf.IExtension extensionObject;
  952. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  953. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  954. }
  955. //---------------------------------------------------------------------------------------
  956. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnFillGemResponse")]
  957. public partial class UnFillGemResponse : global::ProtoBuf.IExtensible
  958. {
  959. public UnFillGemResponse() {}
  960. private int _s2c_code;
  961. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  962. public int s2c_code
  963. {
  964. get { return _s2c_code; }
  965. set { _s2c_code = value; }
  966. }
  967. private string _s2c_msg = "";
  968. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  969. [global::System.ComponentModel.DefaultValue("")]
  970. public string s2c_msg
  971. {
  972. get { return _s2c_msg; }
  973. set { _s2c_msg = value; }
  974. }
  975. private global::ProtoBuf.IExtension extensionObject;
  976. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  977. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  978. }
  979. //---------------------------------------------------------------------------------------
  980. /// <summary>
  981. /// 卸载所有宝石
  982. /// </summary>
  983. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnFillAllGemRequest")]
  984. public partial class UnFillAllGemRequest : global::ProtoBuf.IExtensible
  985. {
  986. public UnFillAllGemRequest() {}
  987. private int _c2s_pos;
  988. /// <summary>
  989. /// 装备pos
  990. /// </summary>
  991. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  992. public int c2s_pos
  993. {
  994. get { return _c2s_pos; }
  995. set { _c2s_pos = value; }
  996. }
  997. private global::ProtoBuf.IExtension extensionObject;
  998. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  999. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1000. }
  1001. //---------------------------------------------------------------------------------------
  1002. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnFillAllGemResponse")]
  1003. public partial class UnFillAllGemResponse : global::ProtoBuf.IExtensible
  1004. {
  1005. public UnFillAllGemResponse() {}
  1006. private int _s2c_code;
  1007. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1008. public int s2c_code
  1009. {
  1010. get { return _s2c_code; }
  1011. set { _s2c_code = value; }
  1012. }
  1013. private string _s2c_msg = "";
  1014. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1015. [global::System.ComponentModel.DefaultValue("")]
  1016. public string s2c_msg
  1017. {
  1018. get { return _s2c_msg; }
  1019. set { _s2c_msg = value; }
  1020. }
  1021. private global::ProtoBuf.IExtension extensionObject;
  1022. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1023. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1024. }
  1025. //---------------------------------------------------------------------------------------
  1026. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SuitAttr")]
  1027. public partial class SuitAttr : global::ProtoBuf.IExtensible
  1028. {
  1029. public SuitAttr() {}
  1030. private int _level = default(int);
  1031. /// <summary>
  1032. /// 等级
  1033. /// </summary>
  1034. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1035. [global::System.ComponentModel.DefaultValue(default(int))]
  1036. public int level
  1037. {
  1038. get { return _level; }
  1039. set { _level = value; }
  1040. }
  1041. private int _advanced = default(int);
  1042. /// <summary>
  1043. /// 进阶
  1044. /// </summary>
  1045. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"advanced", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1046. [global::System.ComponentModel.DefaultValue(default(int))]
  1047. public int advanced
  1048. {
  1049. get { return _advanced; }
  1050. set { _advanced = value; }
  1051. }
  1052. private int _qColor;
  1053. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"qColor", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1054. public int qColor
  1055. {
  1056. get { return _qColor; }
  1057. set { _qColor = value; }
  1058. }
  1059. private readonly global::System.Collections.Generic.List<pomelo.AttributeBase> _attrs = new global::System.Collections.Generic.List<pomelo.AttributeBase>();
  1060. [global::ProtoBuf.ProtoMember(4, Name=@"attrs", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1061. public global::System.Collections.Generic.List<pomelo.AttributeBase> attrs
  1062. {
  1063. get { return _attrs; }
  1064. }
  1065. private global::ProtoBuf.IExtension extensionObject;
  1066. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1067. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1068. }
  1069. //---------------------------------------------------------------------------------------
  1070. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SuitTypeAttr")]
  1071. public partial class SuitTypeAttr : global::ProtoBuf.IExtensible
  1072. {
  1073. public SuitTypeAttr() {}
  1074. private int _type;
  1075. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1076. public int type
  1077. {
  1078. get { return _type; }
  1079. set { _type = value; }
  1080. }
  1081. private pomelo.area.SuitAttr _attr = null;
  1082. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"attr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1083. [global::System.ComponentModel.DefaultValue(null)]
  1084. public pomelo.area.SuitAttr attr
  1085. {
  1086. get { return _attr; }
  1087. set { _attr = value; }
  1088. }
  1089. private global::ProtoBuf.IExtension extensionObject;
  1090. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1091. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1092. }
  1093. //---------------------------------------------------------------------------------------
  1094. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SuitAttrSort")]
  1095. public partial class SuitAttrSort : global::ProtoBuf.IExtensible
  1096. {
  1097. public SuitAttrSort() {}
  1098. private int _level = default(int);
  1099. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1100. [global::System.ComponentModel.DefaultValue(default(int))]
  1101. public int level
  1102. {
  1103. get { return _level; }
  1104. set { _level = value; }
  1105. }
  1106. private int _advanced = default(int);
  1107. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"advanced", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1108. [global::System.ComponentModel.DefaultValue(default(int))]
  1109. public int advanced
  1110. {
  1111. get { return _advanced; }
  1112. set { _advanced = value; }
  1113. }
  1114. private readonly global::System.Collections.Generic.List<pomelo.area.SuitAttr> _attr = new global::System.Collections.Generic.List<pomelo.area.SuitAttr>();
  1115. [global::ProtoBuf.ProtoMember(3, Name=@"attr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1116. public global::System.Collections.Generic.List<pomelo.area.SuitAttr> attr
  1117. {
  1118. get { return _attr; }
  1119. }
  1120. private global::ProtoBuf.IExtension extensionObject;
  1121. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1122. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1123. }
  1124. //---------------------------------------------------------------------------------------
  1125. /// <summary>
  1126. /// 玩家套装属性界面
  1127. /// </summary>
  1128. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSuitAttrRequest")]
  1129. public partial class GetSuitAttrRequest : global::ProtoBuf.IExtensible
  1130. {
  1131. public GetSuitAttrRequest() {}
  1132. private global::ProtoBuf.IExtension extensionObject;
  1133. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1134. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1135. }
  1136. //---------------------------------------------------------------------------------------
  1137. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSuitAttrResponse")]
  1138. public partial class GetSuitAttrResponse : global::ProtoBuf.IExtensible
  1139. {
  1140. public GetSuitAttrResponse() {}
  1141. private int _s2c_code;
  1142. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1143. public int s2c_code
  1144. {
  1145. get { return _s2c_code; }
  1146. set { _s2c_code = value; }
  1147. }
  1148. private string _s2c_msg = "";
  1149. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1150. [global::System.ComponentModel.DefaultValue("")]
  1151. public string s2c_msg
  1152. {
  1153. get { return _s2c_msg; }
  1154. set { _s2c_msg = value; }
  1155. }
  1156. private readonly global::System.Collections.Generic.List<pomelo.area.SuitTypeAttr> _s2c_data = new global::System.Collections.Generic.List<pomelo.area.SuitTypeAttr>();
  1157. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1158. public global::System.Collections.Generic.List<pomelo.area.SuitTypeAttr> s2c_data
  1159. {
  1160. get { return _s2c_data; }
  1161. }
  1162. private global::ProtoBuf.IExtension extensionObject;
  1163. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1164. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1165. }
  1166. //---------------------------------------------------------------------------------------
  1167. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSuitDetailRequest")]
  1168. public partial class GetSuitDetailRequest : global::ProtoBuf.IExtensible
  1169. {
  1170. public GetSuitDetailRequest() {}
  1171. private int _c2s_suitType;
  1172. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_suitType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1173. public int c2s_suitType
  1174. {
  1175. get { return _c2s_suitType; }
  1176. set { _c2s_suitType = value; }
  1177. }
  1178. private global::ProtoBuf.IExtension extensionObject;
  1179. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1180. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1181. }
  1182. //---------------------------------------------------------------------------------------
  1183. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSuitDetailResponse")]
  1184. public partial class GetSuitDetailResponse : global::ProtoBuf.IExtensible
  1185. {
  1186. public GetSuitDetailResponse() {}
  1187. private int _s2c_code;
  1188. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1189. public int s2c_code
  1190. {
  1191. get { return _s2c_code; }
  1192. set { _s2c_code = value; }
  1193. }
  1194. private string _s2c_msg = "";
  1195. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1196. [global::System.ComponentModel.DefaultValue("")]
  1197. public string s2c_msg
  1198. {
  1199. get { return _s2c_msg; }
  1200. set { _s2c_msg = value; }
  1201. }
  1202. private readonly global::System.Collections.Generic.List<pomelo.area.SuitAttrSort> _s2c_data = new global::System.Collections.Generic.List<pomelo.area.SuitAttrSort>();
  1203. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1204. public global::System.Collections.Generic.List<pomelo.area.SuitAttrSort> s2c_data
  1205. {
  1206. get { return _s2c_data; }
  1207. }
  1208. private global::ProtoBuf.IExtension extensionObject;
  1209. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1210. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1211. }
  1212. //---------------------------------------------------------------------------------------
  1213. /// <summary>
  1214. /// 获取传承的信息,这里主要是能否附魔
  1215. /// </summary>
  1216. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetInheritInfoRequest")]
  1217. public partial class GetInheritInfoRequest : global::ProtoBuf.IExtensible
  1218. {
  1219. public GetInheritInfoRequest() {}
  1220. private pomelo.area.EquipPos _c2s_inheritEquip;
  1221. /// <summary>
  1222. /// 可传承的装备
  1223. /// </summary>
  1224. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_inheritEquip", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1225. public pomelo.area.EquipPos c2s_inheritEquip
  1226. {
  1227. get { return _c2s_inheritEquip; }
  1228. set { _c2s_inheritEquip = value; }
  1229. }
  1230. private pomelo.area.EquipPos _c2s_beiInheritEquip;
  1231. /// <summary>
  1232. /// 被传承的装备
  1233. /// </summary>
  1234. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_beiInheritEquip", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1235. public pomelo.area.EquipPos c2s_beiInheritEquip
  1236. {
  1237. get { return _c2s_beiInheritEquip; }
  1238. set { _c2s_beiInheritEquip = value; }
  1239. }
  1240. private global::ProtoBuf.IExtension extensionObject;
  1241. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1242. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1243. }
  1244. //---------------------------------------------------------------------------------------
  1245. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetInheritInfoResponse")]
  1246. public partial class GetInheritInfoResponse : global::ProtoBuf.IExtensible
  1247. {
  1248. public GetInheritInfoResponse() {}
  1249. private int _s2c_code;
  1250. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1251. public int s2c_code
  1252. {
  1253. get { return _s2c_code; }
  1254. set { _s2c_code = value; }
  1255. }
  1256. private string _s2c_msg = "";
  1257. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1258. [global::System.ComponentModel.DefaultValue("")]
  1259. public string s2c_msg
  1260. {
  1261. get { return _s2c_msg; }
  1262. set { _s2c_msg = value; }
  1263. }
  1264. private int _s2c_magical = default(int);
  1265. /// <summary>
  1266. /// 能否传承附魔 1 可以 0 不可以
  1267. /// </summary>
  1268. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_magical", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1269. [global::System.ComponentModel.DefaultValue(default(int))]
  1270. public int s2c_magical
  1271. {
  1272. get { return _s2c_magical; }
  1273. set { _s2c_magical = value; }
  1274. }
  1275. private int _s2c_gold = default(int);
  1276. /// <summary>
  1277. /// 金币消耗
  1278. /// </summary>
  1279. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_gold", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1280. [global::System.ComponentModel.DefaultValue(default(int))]
  1281. public int s2c_gold
  1282. {
  1283. get { return _s2c_gold; }
  1284. set { _s2c_gold = value; }
  1285. }
  1286. private global::ProtoBuf.IExtension extensionObject;
  1287. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1288. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1289. }
  1290. //---------------------------------------------------------------------------------------
  1291. /// <summary>
  1292. /// 装备传承请求
  1293. /// </summary>
  1294. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipInheritRequest")]
  1295. public partial class EquipInheritRequest : global::ProtoBuf.IExtensible
  1296. {
  1297. public EquipInheritRequest() {}
  1298. private pomelo.area.EquipPos _c2s_inheritEquip;
  1299. /// <summary>
  1300. /// 可传承的装备
  1301. /// </summary>
  1302. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_inheritEquip", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1303. public pomelo.area.EquipPos c2s_inheritEquip
  1304. {
  1305. get { return _c2s_inheritEquip; }
  1306. set { _c2s_inheritEquip = value; }
  1307. }
  1308. private pomelo.area.EquipPos _c2s_beiInheritEquip;
  1309. /// <summary>
  1310. /// 被传承的装备
  1311. /// </summary>
  1312. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_beiInheritEquip", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1313. public pomelo.area.EquipPos c2s_beiInheritEquip
  1314. {
  1315. get { return _c2s_beiInheritEquip; }
  1316. set { _c2s_beiInheritEquip = value; }
  1317. }
  1318. private int _c2s_magical = default(int);
  1319. /// <summary>
  1320. /// 是否传承附魔
  1321. /// </summary>
  1322. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"c2s_magical", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1323. [global::System.ComponentModel.DefaultValue(default(int))]
  1324. public int c2s_magical
  1325. {
  1326. get { return _c2s_magical; }
  1327. set { _c2s_magical = value; }
  1328. }
  1329. private int _c2s_jewel = default(int);
  1330. /// <summary>
  1331. /// 是否传承宝石
  1332. /// </summary>
  1333. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"c2s_jewel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1334. [global::System.ComponentModel.DefaultValue(default(int))]
  1335. public int c2s_jewel
  1336. {
  1337. get { return _c2s_jewel; }
  1338. set { _c2s_jewel = value; }
  1339. }
  1340. private int _c2s_refine = default(int);
  1341. /// <summary>
  1342. /// 是否传承精炼属性
  1343. /// </summary>
  1344. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"c2s_refine", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1345. [global::System.ComponentModel.DefaultValue(default(int))]
  1346. public int c2s_refine
  1347. {
  1348. get { return _c2s_refine; }
  1349. set { _c2s_refine = value; }
  1350. }
  1351. private int _c2s_isAuto = default(int);
  1352. /// <summary>
  1353. /// 是否是自动传承 0:手动传承 1:自动传承
  1354. /// </summary>
  1355. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"c2s_isAuto", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1356. [global::System.ComponentModel.DefaultValue(default(int))]
  1357. public int c2s_isAuto
  1358. {
  1359. get { return _c2s_isAuto; }
  1360. set { _c2s_isAuto = value; }
  1361. }
  1362. private global::ProtoBuf.IExtension extensionObject;
  1363. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1364. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1365. }
  1366. //---------------------------------------------------------------------------------------
  1367. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipInheritResponse")]
  1368. public partial class EquipInheritResponse : global::ProtoBuf.IExtensible
  1369. {
  1370. public EquipInheritResponse() {}
  1371. private int _s2c_code;
  1372. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1373. public int s2c_code
  1374. {
  1375. get { return _s2c_code; }
  1376. set { _s2c_code = value; }
  1377. }
  1378. private string _s2c_msg = "";
  1379. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1380. [global::System.ComponentModel.DefaultValue("")]
  1381. public string s2c_msg
  1382. {
  1383. get { return _s2c_msg; }
  1384. set { _s2c_msg = value; }
  1385. }
  1386. private global::ProtoBuf.IExtension extensionObject;
  1387. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1388. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1389. }
  1390. //---------------------------------------------------------------------------------------
  1391. /// <summary>
  1392. /// 装备熔炼
  1393. /// </summary>
  1394. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipMeltRequest")]
  1395. public partial class EquipMeltRequest : global::ProtoBuf.IExtensible
  1396. {
  1397. public EquipMeltRequest() {}
  1398. private readonly global::System.Collections.Generic.List<int> _c2s_indexs = new global::System.Collections.Generic.List<int>();
  1399. /// <summary>
  1400. /// 需要熔炼的装备indexs
  1401. /// </summary>
  1402. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_indexs", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1403. public global::System.Collections.Generic.List<int> c2s_indexs
  1404. {
  1405. get { return _c2s_indexs; }
  1406. }
  1407. private global::ProtoBuf.IExtension extensionObject;
  1408. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1409. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1410. }
  1411. //---------------------------------------------------------------------------------------
  1412. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipMeltResponse")]
  1413. public partial class EquipMeltResponse : global::ProtoBuf.IExtensible
  1414. {
  1415. public EquipMeltResponse() {}
  1416. private int _s2c_code;
  1417. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1418. public int s2c_code
  1419. {
  1420. get { return _s2c_code; }
  1421. set { _s2c_code = value; }
  1422. }
  1423. private string _s2c_msg = "";
  1424. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1425. [global::System.ComponentModel.DefaultValue("")]
  1426. public string s2c_msg
  1427. {
  1428. get { return _s2c_msg; }
  1429. set { _s2c_msg = value; }
  1430. }
  1431. private int _s2c_exp = default(int);
  1432. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_exp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1433. [global::System.ComponentModel.DefaultValue(default(int))]
  1434. public int s2c_exp
  1435. {
  1436. get { return _s2c_exp; }
  1437. set { _s2c_exp = value; }
  1438. }
  1439. private readonly global::System.Collections.Generic.List<pomelo.item.MiniItem> _s2c_item = new global::System.Collections.Generic.List<pomelo.item.MiniItem>();
  1440. [global::ProtoBuf.ProtoMember(4, Name=@"s2c_item", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1441. public global::System.Collections.Generic.List<pomelo.item.MiniItem> s2c_item
  1442. {
  1443. get { return _s2c_item; }
  1444. }
  1445. private global::ProtoBuf.IExtension extensionObject;
  1446. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1447. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1448. }
  1449. //---------------------------------------------------------------------------------------
  1450. /// <summary>
  1451. /// 聊天装备详情查看
  1452. /// </summary>
  1453. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChatEquipDetailRequest")]
  1454. public partial class ChatEquipDetailRequest : global::ProtoBuf.IExtensible
  1455. {
  1456. public ChatEquipDetailRequest() {}
  1457. private string _c2s_id;
  1458. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_id", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1459. public string c2s_id
  1460. {
  1461. get { return _c2s_id; }
  1462. set { _c2s_id = value; }
  1463. }
  1464. private global::ProtoBuf.IExtension extensionObject;
  1465. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1466. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1467. }
  1468. //---------------------------------------------------------------------------------------
  1469. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChatEquipDetailResponse")]
  1470. public partial class ChatEquipDetailResponse : global::ProtoBuf.IExtensible
  1471. {
  1472. public ChatEquipDetailResponse() {}
  1473. private int _s2c_code;
  1474. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1475. public int s2c_code
  1476. {
  1477. get { return _s2c_code; }
  1478. set { _s2c_code = value; }
  1479. }
  1480. private string _s2c_msg = "";
  1481. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1482. [global::System.ComponentModel.DefaultValue("")]
  1483. public string s2c_msg
  1484. {
  1485. get { return _s2c_msg; }
  1486. set { _s2c_msg = value; }
  1487. }
  1488. private pomelo.item.ItemDetail _s2c_data = null;
  1489. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1490. [global::System.ComponentModel.DefaultValue(null)]
  1491. public pomelo.item.ItemDetail s2c_data
  1492. {
  1493. get { return _s2c_data; }
  1494. set { _s2c_data = value; }
  1495. }
  1496. private global::ProtoBuf.IExtension extensionObject;
  1497. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1498. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1499. }
  1500. //---------------------------------------------------------------------------------------
  1501. /// <summary>
  1502. /// 洗练请求
  1503. /// </summary>
  1504. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRebornRequest")]
  1505. public partial class EquipRebornRequest : global::ProtoBuf.IExtensible
  1506. {
  1507. public EquipRebornRequest() {}
  1508. private string _equipId;
  1509. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1510. public string equipId
  1511. {
  1512. get { return _equipId; }
  1513. set { _equipId = value; }
  1514. }
  1515. private global::ProtoBuf.IExtension extensionObject;
  1516. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1517. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1518. }
  1519. //---------------------------------------------------------------------------------------
  1520. /// <summary>
  1521. /// 洗练响应
  1522. /// </summary>
  1523. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRebornResponse")]
  1524. public partial class EquipRebornResponse : global::ProtoBuf.IExtensible
  1525. {
  1526. public EquipRebornResponse() {}
  1527. private int _s2c_code;
  1528. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1529. public int s2c_code
  1530. {
  1531. get { return _s2c_code; }
  1532. set { _s2c_code = value; }
  1533. }
  1534. private string _s2c_msg = "";
  1535. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1536. [global::System.ComponentModel.DefaultValue("")]
  1537. public string s2c_msg
  1538. {
  1539. get { return _s2c_msg; }
  1540. set { _s2c_msg = value; }
  1541. }
  1542. private global::ProtoBuf.IExtension extensionObject;
  1543. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1544. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1545. }
  1546. //---------------------------------------------------------------------------------------
  1547. /// <summary>
  1548. /// 重铸请求
  1549. /// </summary>
  1550. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRebuildRequest")]
  1551. public partial class EquipRebuildRequest : global::ProtoBuf.IExtensible
  1552. {
  1553. public EquipRebuildRequest() {}
  1554. private string _equipId;
  1555. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1556. public string equipId
  1557. {
  1558. get { return _equipId; }
  1559. set { _equipId = value; }
  1560. }
  1561. private readonly global::System.Collections.Generic.List<int> _lockedAttId = new global::System.Collections.Generic.List<int>();
  1562. [global::ProtoBuf.ProtoMember(2, Name=@"lockedAttId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1563. public global::System.Collections.Generic.List<int> lockedAttId
  1564. {
  1565. get { return _lockedAttId; }
  1566. }
  1567. private global::ProtoBuf.IExtension extensionObject;
  1568. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1569. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1570. }
  1571. //---------------------------------------------------------------------------------------
  1572. /// <summary>
  1573. /// 重铸响应
  1574. /// </summary>
  1575. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRebuildResponse")]
  1576. public partial class EquipRebuildResponse : global::ProtoBuf.IExtensible
  1577. {
  1578. public EquipRebuildResponse() {}
  1579. private int _s2c_code;
  1580. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1581. public int s2c_code
  1582. {
  1583. get { return _s2c_code; }
  1584. set { _s2c_code = value; }
  1585. }
  1586. private string _s2c_msg = "";
  1587. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1588. [global::System.ComponentModel.DefaultValue("")]
  1589. public string s2c_msg
  1590. {
  1591. get { return _s2c_msg; }
  1592. set { _s2c_msg = value; }
  1593. }
  1594. private global::ProtoBuf.IExtension extensionObject;
  1595. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1596. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1597. }
  1598. //---------------------------------------------------------------------------------------
  1599. /// <summary>
  1600. /// 高级重铸请求
  1601. /// </summary>
  1602. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipSeniorRebuildRequest")]
  1603. public partial class EquipSeniorRebuildRequest : global::ProtoBuf.IExtensible
  1604. {
  1605. public EquipSeniorRebuildRequest() {}
  1606. private string _equipId;
  1607. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1608. public string equipId
  1609. {
  1610. get { return _equipId; }
  1611. set { _equipId = value; }
  1612. }
  1613. private global::ProtoBuf.IExtension extensionObject;
  1614. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1615. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1616. }
  1617. //---------------------------------------------------------------------------------------
  1618. /// <summary>
  1619. /// 高级重铸响应
  1620. /// </summary>
  1621. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipSeniorRebuildResponse")]
  1622. public partial class EquipSeniorRebuildResponse : global::ProtoBuf.IExtensible
  1623. {
  1624. public EquipSeniorRebuildResponse() {}
  1625. private int _s2c_code;
  1626. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1627. public int s2c_code
  1628. {
  1629. get { return _s2c_code; }
  1630. set { _s2c_code = value; }
  1631. }
  1632. private string _s2c_msg = "";
  1633. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1634. [global::System.ComponentModel.DefaultValue("")]
  1635. public string s2c_msg
  1636. {
  1637. get { return _s2c_msg; }
  1638. set { _s2c_msg = value; }
  1639. }
  1640. private global::ProtoBuf.IExtension extensionObject;
  1641. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1642. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1643. }
  1644. //---------------------------------------------------------------------------------------
  1645. /// <summary>
  1646. /// 精炼请求
  1647. /// </summary>
  1648. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRefineRequest")]
  1649. public partial class EquipRefineRequest : global::ProtoBuf.IExtensible
  1650. {
  1651. public EquipRefineRequest() {}
  1652. private string _equipId;
  1653. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1654. public string equipId
  1655. {
  1656. get { return _equipId; }
  1657. set { _equipId = value; }
  1658. }
  1659. private string _attrkey;
  1660. /// <summary>
  1661. /// 精炼的属性名
  1662. /// </summary>
  1663. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"attrkey", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1664. public string attrkey
  1665. {
  1666. get { return _attrkey; }
  1667. set { _attrkey = value; }
  1668. }
  1669. private global::ProtoBuf.IExtension extensionObject;
  1670. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1671. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1672. }
  1673. //---------------------------------------------------------------------------------------
  1674. /// <summary>
  1675. /// 精炼响应
  1676. /// </summary>
  1677. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRefineResponse")]
  1678. public partial class EquipRefineResponse : global::ProtoBuf.IExtensible
  1679. {
  1680. public EquipRefineResponse() {}
  1681. private int _s2c_code;
  1682. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1683. public int s2c_code
  1684. {
  1685. get { return _s2c_code; }
  1686. set { _s2c_code = value; }
  1687. }
  1688. private string _s2c_msg = "";
  1689. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1690. [global::System.ComponentModel.DefaultValue("")]
  1691. public string s2c_msg
  1692. {
  1693. get { return _s2c_msg; }
  1694. set { _s2c_msg = value; }
  1695. }
  1696. private global::ProtoBuf.IExtension extensionObject;
  1697. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1698. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1699. }
  1700. //---------------------------------------------------------------------------------------
  1701. /// <summary>
  1702. /// 精炼请求
  1703. /// </summary>
  1704. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRefineLegendRequest")]
  1705. public partial class EquipRefineLegendRequest : global::ProtoBuf.IExtensible
  1706. {
  1707. public EquipRefineLegendRequest() {}
  1708. private string _equipId;
  1709. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1710. public string equipId
  1711. {
  1712. get { return _equipId; }
  1713. set { _equipId = value; }
  1714. }
  1715. private string _attrkey = "";
  1716. /// <summary>
  1717. /// 精炼的属性名
  1718. /// </summary>
  1719. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"attrkey", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1720. [global::System.ComponentModel.DefaultValue("")]
  1721. public string attrkey
  1722. {
  1723. get { return _attrkey; }
  1724. set { _attrkey = value; }
  1725. }
  1726. private global::ProtoBuf.IExtension extensionObject;
  1727. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1728. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1729. }
  1730. //---------------------------------------------------------------------------------------
  1731. /// <summary>
  1732. /// 精炼响应
  1733. /// </summary>
  1734. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipRefineLegendResponse")]
  1735. public partial class EquipRefineLegendResponse : global::ProtoBuf.IExtensible
  1736. {
  1737. public EquipRefineLegendResponse() {}
  1738. private int _s2c_code;
  1739. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1740. public int s2c_code
  1741. {
  1742. get { return _s2c_code; }
  1743. set { _s2c_code = value; }
  1744. }
  1745. private string _s2c_msg = "";
  1746. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1747. [global::System.ComponentModel.DefaultValue("")]
  1748. public string s2c_msg
  1749. {
  1750. get { return _s2c_msg; }
  1751. set { _s2c_msg = value; }
  1752. }
  1753. private global::ProtoBuf.IExtension extensionObject;
  1754. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1755. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1756. }
  1757. //---------------------------------------------------------------------------------------
  1758. /// <summary>
  1759. /// 保存洗练请求
  1760. /// </summary>
  1761. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRebornRequest")]
  1762. public partial class SaveRebornRequest : global::ProtoBuf.IExtensible
  1763. {
  1764. public SaveRebornRequest() {}
  1765. private string _equipId;
  1766. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1767. public string equipId
  1768. {
  1769. get { return _equipId; }
  1770. set { _equipId = value; }
  1771. }
  1772. private global::ProtoBuf.IExtension extensionObject;
  1773. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1774. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1775. }
  1776. //---------------------------------------------------------------------------------------
  1777. /// <summary>
  1778. /// 保存洗练响应
  1779. /// </summary>
  1780. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRebornResponse")]
  1781. public partial class SaveRebornResponse : global::ProtoBuf.IExtensible
  1782. {
  1783. public SaveRebornResponse() {}
  1784. private int _s2c_code;
  1785. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1786. public int s2c_code
  1787. {
  1788. get { return _s2c_code; }
  1789. set { _s2c_code = value; }
  1790. }
  1791. private string _s2c_msg = "";
  1792. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1793. [global::System.ComponentModel.DefaultValue("")]
  1794. public string s2c_msg
  1795. {
  1796. get { return _s2c_msg; }
  1797. set { _s2c_msg = value; }
  1798. }
  1799. private global::ProtoBuf.IExtension extensionObject;
  1800. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1801. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1802. }
  1803. //---------------------------------------------------------------------------------------
  1804. /// <summary>
  1805. /// 保存重铸请求
  1806. /// </summary>
  1807. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRebuildRequest")]
  1808. public partial class SaveRebuildRequest : global::ProtoBuf.IExtensible
  1809. {
  1810. public SaveRebuildRequest() {}
  1811. private string _equipId;
  1812. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1813. public string equipId
  1814. {
  1815. get { return _equipId; }
  1816. set { _equipId = value; }
  1817. }
  1818. private global::ProtoBuf.IExtension extensionObject;
  1819. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1820. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1821. }
  1822. //---------------------------------------------------------------------------------------
  1823. /// <summary>
  1824. /// 保存重铸响应
  1825. /// </summary>
  1826. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRebuildResponse")]
  1827. public partial class SaveRebuildResponse : global::ProtoBuf.IExtensible
  1828. {
  1829. public SaveRebuildResponse() {}
  1830. private int _s2c_code;
  1831. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1832. public int s2c_code
  1833. {
  1834. get { return _s2c_code; }
  1835. set { _s2c_code = value; }
  1836. }
  1837. private string _s2c_msg = "";
  1838. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1839. [global::System.ComponentModel.DefaultValue("")]
  1840. public string s2c_msg
  1841. {
  1842. get { return _s2c_msg; }
  1843. set { _s2c_msg = value; }
  1844. }
  1845. private global::ProtoBuf.IExtension extensionObject;
  1846. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1847. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1848. }
  1849. //---------------------------------------------------------------------------------------
  1850. /// <summary>
  1851. /// 传承重铸装备请求
  1852. /// </summary>
  1853. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SmritiRequest")]
  1854. public partial class SmritiRequest : global::ProtoBuf.IExtensible
  1855. {
  1856. public SmritiRequest() {}
  1857. private string _letf_equipId;
  1858. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"letf_equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1859. public string letf_equipId
  1860. {
  1861. get { return _letf_equipId; }
  1862. set { _letf_equipId = value; }
  1863. }
  1864. private string _right_equipId;
  1865. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"right_equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1866. public string right_equipId
  1867. {
  1868. get { return _right_equipId; }
  1869. set { _right_equipId = value; }
  1870. }
  1871. private global::ProtoBuf.IExtension extensionObject;
  1872. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1873. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1874. }
  1875. //---------------------------------------------------------------------------------------
  1876. /// <summary>
  1877. /// 传承重铸装备响应
  1878. /// </summary>
  1879. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SmritiResponse")]
  1880. public partial class SmritiResponse : global::ProtoBuf.IExtensible
  1881. {
  1882. public SmritiResponse() {}
  1883. private int _s2c_code;
  1884. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1885. public int s2c_code
  1886. {
  1887. get { return _s2c_code; }
  1888. set { _s2c_code = value; }
  1889. }
  1890. private string _s2c_msg = "";
  1891. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1892. [global::System.ComponentModel.DefaultValue("")]
  1893. public string s2c_msg
  1894. {
  1895. get { return _s2c_msg; }
  1896. set { _s2c_msg = value; }
  1897. }
  1898. private global::ProtoBuf.IExtension extensionObject;
  1899. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1900. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1901. }
  1902. //---------------------------------------------------------------------------------------
  1903. /// <summary>
  1904. /// 保存高级重铸请求
  1905. /// </summary>
  1906. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveSeniorRebuildRequest")]
  1907. public partial class SaveSeniorRebuildRequest : global::ProtoBuf.IExtensible
  1908. {
  1909. public SaveSeniorRebuildRequest() {}
  1910. private string _equipId;
  1911. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1912. public string equipId
  1913. {
  1914. get { return _equipId; }
  1915. set { _equipId = value; }
  1916. }
  1917. private global::ProtoBuf.IExtension extensionObject;
  1918. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1919. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1920. }
  1921. //---------------------------------------------------------------------------------------
  1922. /// <summary>
  1923. /// 保存高级重铸响应
  1924. /// </summary>
  1925. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveSeniorRebuildResponse")]
  1926. public partial class SaveSeniorRebuildResponse : global::ProtoBuf.IExtensible
  1927. {
  1928. public SaveSeniorRebuildResponse() {}
  1929. private int _s2c_code;
  1930. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1931. public int s2c_code
  1932. {
  1933. get { return _s2c_code; }
  1934. set { _s2c_code = value; }
  1935. }
  1936. private string _s2c_msg = "";
  1937. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1938. [global::System.ComponentModel.DefaultValue("")]
  1939. public string s2c_msg
  1940. {
  1941. get { return _s2c_msg; }
  1942. set { _s2c_msg = value; }
  1943. }
  1944. private global::ProtoBuf.IExtension extensionObject;
  1945. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1946. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1947. }
  1948. //---------------------------------------------------------------------------------------
  1949. /// <summary>
  1950. /// 保存精炼请求
  1951. /// </summary>
  1952. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRefineRequest")]
  1953. public partial class SaveRefineRequest : global::ProtoBuf.IExtensible
  1954. {
  1955. public SaveRefineRequest() {}
  1956. private string _equipId;
  1957. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1958. public string equipId
  1959. {
  1960. get { return _equipId; }
  1961. set { _equipId = value; }
  1962. }
  1963. private string _attrkey;
  1964. /// <summary>
  1965. /// 精炼的属性名
  1966. /// </summary>
  1967. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"attrkey", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1968. public string attrkey
  1969. {
  1970. get { return _attrkey; }
  1971. set { _attrkey = value; }
  1972. }
  1973. private global::ProtoBuf.IExtension extensionObject;
  1974. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1975. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1976. }
  1977. //---------------------------------------------------------------------------------------
  1978. /// <summary>
  1979. /// 保存精炼响应
  1980. /// </summary>
  1981. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRefineResponse")]
  1982. public partial class SaveRefineResponse : global::ProtoBuf.IExtensible
  1983. {
  1984. public SaveRefineResponse() {}
  1985. private int _s2c_code;
  1986. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1987. public int s2c_code
  1988. {
  1989. get { return _s2c_code; }
  1990. set { _s2c_code = value; }
  1991. }
  1992. private string _s2c_msg = "";
  1993. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1994. [global::System.ComponentModel.DefaultValue("")]
  1995. public string s2c_msg
  1996. {
  1997. get { return _s2c_msg; }
  1998. set { _s2c_msg = value; }
  1999. }
  2000. private global::ProtoBuf.IExtension extensionObject;
  2001. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2002. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2003. }
  2004. //---------------------------------------------------------------------------------------
  2005. /// <summary>
  2006. /// 保存开光请求
  2007. /// </summary>
  2008. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRefineLegendRequest")]
  2009. public partial class SaveRefineLegendRequest : global::ProtoBuf.IExtensible
  2010. {
  2011. public SaveRefineLegendRequest() {}
  2012. private string _equipId;
  2013. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2014. public string equipId
  2015. {
  2016. get { return _equipId; }
  2017. set { _equipId = value; }
  2018. }
  2019. private string _attrkey = "";
  2020. /// <summary>
  2021. /// 精炼的属性名
  2022. /// </summary>
  2023. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"attrkey", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2024. [global::System.ComponentModel.DefaultValue("")]
  2025. public string attrkey
  2026. {
  2027. get { return _attrkey; }
  2028. set { _attrkey = value; }
  2029. }
  2030. private global::ProtoBuf.IExtension extensionObject;
  2031. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2032. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2033. }
  2034. //---------------------------------------------------------------------------------------
  2035. /// <summary>
  2036. /// 保存开光响应
  2037. /// </summary>
  2038. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SaveRefineLegendResponse")]
  2039. public partial class SaveRefineLegendResponse : global::ProtoBuf.IExtensible
  2040. {
  2041. public SaveRefineLegendResponse() {}
  2042. private int _s2c_code;
  2043. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2044. public int s2c_code
  2045. {
  2046. get { return _s2c_code; }
  2047. set { _s2c_code = value; }
  2048. }
  2049. private string _s2c_msg = "";
  2050. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2051. [global::System.ComponentModel.DefaultValue("")]
  2052. public string s2c_msg
  2053. {
  2054. get { return _s2c_msg; }
  2055. set { _s2c_msg = value; }
  2056. }
  2057. private global::ProtoBuf.IExtension extensionObject;
  2058. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2059. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2060. }
  2061. //---------------------------------------------------------------------------------------
  2062. /// <summary>
  2063. /// 获取装备可能会精炼出来的随机属性集合
  2064. /// </summary>
  2065. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetRefineExtPropRequest")]
  2066. public partial class GetRefineExtPropRequest : global::ProtoBuf.IExtensible
  2067. {
  2068. public GetRefineExtPropRequest() {}
  2069. private string _equipId;
  2070. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2071. public string equipId
  2072. {
  2073. get { return _equipId; }
  2074. set { _equipId = value; }
  2075. }
  2076. private global::ProtoBuf.IExtension extensionObject;
  2077. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2078. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2079. }
  2080. //---------------------------------------------------------------------------------------
  2081. /// <summary>
  2082. /// 返回装备可能会精炼出来的随机属性集合
  2083. /// </summary>
  2084. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetRefineExtPropResponse")]
  2085. public partial class GetRefineExtPropResponse : global::ProtoBuf.IExtensible
  2086. {
  2087. public GetRefineExtPropResponse() {}
  2088. private int _s2c_code;
  2089. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2090. public int s2c_code
  2091. {
  2092. get { return _s2c_code; }
  2093. set { _s2c_code = value; }
  2094. }
  2095. private string _s2c_msg = "";
  2096. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2097. [global::System.ComponentModel.DefaultValue("")]
  2098. public string s2c_msg
  2099. {
  2100. get { return _s2c_msg; }
  2101. set { _s2c_msg = value; }
  2102. }
  2103. private readonly global::System.Collections.Generic.List<pomelo.AttributeBase> _extAtts = new global::System.Collections.Generic.List<pomelo.AttributeBase>();
  2104. [global::ProtoBuf.ProtoMember(3, Name=@"extAtts", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2105. public global::System.Collections.Generic.List<pomelo.AttributeBase> extAtts
  2106. {
  2107. get { return _extAtts; }
  2108. }
  2109. private global::ProtoBuf.IExtension extensionObject;
  2110. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2111. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2112. }
  2113. //---------------------------------------------------------------------------------------
  2114. /// <summary>
  2115. /// 装备血炼 id = 720
  2116. /// </summary>
  2117. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AbsorbEquipAttrToPosRequest")]
  2118. public partial class AbsorbEquipAttrToPosRequest : global::ProtoBuf.IExtensible
  2119. {
  2120. public AbsorbEquipAttrToPosRequest() {}
  2121. private int _c2s_pos;
  2122. /// <summary>
  2123. /// 血炼的部位
  2124. /// </summary>
  2125. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2126. public int c2s_pos
  2127. {
  2128. get { return _c2s_pos; }
  2129. set { _c2s_pos = value; }
  2130. }
  2131. private global::ProtoBuf.IExtension extensionObject;
  2132. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2133. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2134. }
  2135. //---------------------------------------------------------------------------------------
  2136. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AbsorbEquipAttrToPosResponse")]
  2137. public partial class AbsorbEquipAttrToPosResponse : global::ProtoBuf.IExtensible
  2138. {
  2139. public AbsorbEquipAttrToPosResponse() {}
  2140. private int _s2c_code;
  2141. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2142. public int s2c_code
  2143. {
  2144. get { return _s2c_code; }
  2145. set { _s2c_code = value; }
  2146. }
  2147. private string _s2c_msg = "";
  2148. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2149. [global::System.ComponentModel.DefaultValue("")]
  2150. public string s2c_msg
  2151. {
  2152. get { return _s2c_msg; }
  2153. set { _s2c_msg = value; }
  2154. }
  2155. private int _s2c_index;
  2156. /// <summary>
  2157. /// -1失败:》0替换属性的index
  2158. /// </summary>
  2159. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2160. public int s2c_index
  2161. {
  2162. get { return _s2c_index; }
  2163. set { _s2c_index = value; }
  2164. }
  2165. private global::ProtoBuf.IExtension extensionObject;
  2166. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2167. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2168. }
  2169. //---------------------------------------------------------------------------------------
  2170. /// <summary>
  2171. /// 装备格子信息
  2172. /// </summary>
  2173. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipmentSimplePush")]
  2174. public partial class EquipmentSimplePush : global::ProtoBuf.IExtensible
  2175. {
  2176. public EquipmentSimplePush() {}
  2177. private int _s2c_code;
  2178. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2179. public int s2c_code
  2180. {
  2181. get { return _s2c_code; }
  2182. set { _s2c_code = value; }
  2183. }
  2184. private readonly global::System.Collections.Generic.List<pomelo.item.Grid> _s2c_data = new global::System.Collections.Generic.List<pomelo.item.Grid>();
  2185. [global::ProtoBuf.ProtoMember(2, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2186. public global::System.Collections.Generic.List<pomelo.item.Grid> s2c_data
  2187. {
  2188. get { return _s2c_data; }
  2189. }
  2190. private global::ProtoBuf.IExtension extensionObject;
  2191. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2192. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2193. }
  2194. //---------------------------------------------------------------------------------------
  2195. /// <summary>
  2196. /// 格子强化信息
  2197. /// </summary>
  2198. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"StrengthPosPush")]
  2199. public partial class StrengthPosPush : global::ProtoBuf.IExtensible
  2200. {
  2201. public StrengthPosPush() {}
  2202. private int _s2c_code;
  2203. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2204. public int s2c_code
  2205. {
  2206. get { return _s2c_code; }
  2207. set { _s2c_code = value; }
  2208. }
  2209. private string _s2c_msg = "";
  2210. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2211. [global::System.ComponentModel.DefaultValue("")]
  2212. public string s2c_msg
  2213. {
  2214. get { return _s2c_msg; }
  2215. set { _s2c_msg = value; }
  2216. }
  2217. private readonly global::System.Collections.Generic.List<pomelo.item.EquipGridStrengthInfo> _strengthInfos = new global::System.Collections.Generic.List<pomelo.item.EquipGridStrengthInfo>();
  2218. [global::ProtoBuf.ProtoMember(3, Name=@"strengthInfos", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2219. public global::System.Collections.Generic.List<pomelo.item.EquipGridStrengthInfo> strengthInfos
  2220. {
  2221. get { return _strengthInfos; }
  2222. }
  2223. private global::ProtoBuf.IExtension extensionObject;
  2224. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2225. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2226. }
  2227. //---------------------------------------------------------------------------------------
  2228. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EquipInheritPush")]
  2229. public partial class EquipInheritPush : global::ProtoBuf.IExtensible
  2230. {
  2231. public EquipInheritPush() {}
  2232. private int _s2c_code;
  2233. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2234. public int s2c_code
  2235. {
  2236. get { return _s2c_code; }
  2237. set { _s2c_code = value; }
  2238. }
  2239. private string _s2c_msg = "";
  2240. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2241. [global::System.ComponentModel.DefaultValue("")]
  2242. public string s2c_msg
  2243. {
  2244. get { return _s2c_msg; }
  2245. set { _s2c_msg = value; }
  2246. }
  2247. private pomelo.area.EquipPos _s2c_sourceEquip = null;
  2248. /// <summary>
  2249. /// 可传承的源装备
  2250. /// </summary>
  2251. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_sourceEquip", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2252. [global::System.ComponentModel.DefaultValue(null)]
  2253. public pomelo.area.EquipPos s2c_sourceEquip
  2254. {
  2255. get { return _s2c_sourceEquip; }
  2256. set { _s2c_sourceEquip = value; }
  2257. }
  2258. private pomelo.area.EquipPos _s2c_destEquip = null;
  2259. /// <summary>
  2260. /// 被传承的目标装备
  2261. /// </summary>
  2262. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_destEquip", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2263. [global::System.ComponentModel.DefaultValue(null)]
  2264. public pomelo.area.EquipPos s2c_destEquip
  2265. {
  2266. get { return _s2c_destEquip; }
  2267. set { _s2c_destEquip = value; }
  2268. }
  2269. private int _s2c_gold = default(int);
  2270. /// <summary>
  2271. /// 需要金币
  2272. /// </summary>
  2273. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_gold", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2274. [global::System.ComponentModel.DefaultValue(default(int))]
  2275. public int s2c_gold
  2276. {
  2277. get { return _s2c_gold; }
  2278. set { _s2c_gold = value; }
  2279. }
  2280. private global::ProtoBuf.IExtension extensionObject;
  2281. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2282. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2283. }
  2284. }