L2LvlupData.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package com.l2jserver.gameserver.model;
  16. /**
  17. * This class ...
  18. * @author NightMarez
  19. * @version $Revision: 1.2.2.1.2.1 $ $Date: 2005/03/27 15:29:32 $
  20. */
  21. public class L2LvlupData
  22. {
  23. private int _classid;
  24. private int _classLvl;
  25. private float _classHpAdd;
  26. private float _classHpBase;
  27. private float _classHpModifier;
  28. private float _classCpAdd;
  29. private float _classCpBase;
  30. private float _classCpModifier;
  31. private float _classMpAdd;
  32. private float _classMpBase;
  33. private float _classMpModifier;
  34. /**
  35. * @return Returns the _classHpAdd.
  36. */
  37. @Deprecated
  38. public float getClassHpAdd()
  39. {
  40. return _classHpAdd;
  41. }
  42. /**
  43. * @param hpAdd The _classHpAdd to set.
  44. */
  45. public void setClassHpAdd(float hpAdd)
  46. {
  47. _classHpAdd = hpAdd;
  48. }
  49. /**
  50. * @return Returns the _classHpBase.
  51. */
  52. @Deprecated
  53. public float getClassHpBase()
  54. {
  55. return _classHpBase;
  56. }
  57. /**
  58. * @param hpBase The _classHpBase to set.
  59. */
  60. public void setClassHpBase(float hpBase)
  61. {
  62. _classHpBase = hpBase;
  63. }
  64. /**
  65. * @return Returns the _classHpModifier.
  66. */
  67. @Deprecated
  68. public float getClassHpModifier()
  69. {
  70. return _classHpModifier;
  71. }
  72. /**
  73. * @param hpModifier The _classHpModifier to set.
  74. */
  75. public void setClassHpModifier(float hpModifier)
  76. {
  77. _classHpModifier = hpModifier;
  78. }
  79. /**
  80. * @return Returns the _classCpAdd.
  81. */
  82. @Deprecated
  83. public float getClassCpAdd()
  84. {
  85. return _classCpAdd;
  86. }
  87. /**
  88. * @param cpAdd The _classCpAdd to set.
  89. */
  90. public void setClassCpAdd(float cpAdd)
  91. {
  92. _classCpAdd = cpAdd;
  93. }
  94. /**
  95. * @return Returns the _classCpBase.
  96. */
  97. @Deprecated
  98. public float getClassCpBase()
  99. {
  100. return _classCpBase;
  101. }
  102. /**
  103. * @param cpBase The _classCpBase to set.
  104. */
  105. public void setClassCpBase(float cpBase)
  106. {
  107. _classCpBase = cpBase;
  108. }
  109. /**
  110. * @return Returns the _classCpModifier.
  111. */
  112. @Deprecated
  113. public float getClassCpModifier()
  114. {
  115. return _classCpModifier;
  116. }
  117. /**
  118. * @param cpModifier The _classCpModifier to set.
  119. */
  120. public void setClassCpModifier(float cpModifier)
  121. {
  122. _classCpModifier = cpModifier;
  123. }
  124. /**
  125. * @return Returns the _classid.
  126. */
  127. public int getClassid()
  128. {
  129. return _classid;
  130. }
  131. /**
  132. * @param pClassid The _classid to set.
  133. */
  134. public void setClassid(int pClassid)
  135. {
  136. _classid = pClassid;
  137. }
  138. /**
  139. * @return Returns the _classLvl.
  140. */
  141. @Deprecated
  142. public int getClassLvl()
  143. {
  144. return _classLvl;
  145. }
  146. /**
  147. * @param lvl The _classLvl to set.
  148. */
  149. public void setClassLvl(int lvl)
  150. {
  151. _classLvl = lvl;
  152. }
  153. /**
  154. * @return Returns the _classMpAdd.
  155. */
  156. @Deprecated
  157. public float getClassMpAdd()
  158. {
  159. return _classMpAdd;
  160. }
  161. /**
  162. * @param mpAdd The _classMpAdd to set.
  163. */
  164. public void setClassMpAdd(float mpAdd)
  165. {
  166. _classMpAdd = mpAdd;
  167. }
  168. /**
  169. * @return Returns the _classMpBase.
  170. */
  171. @Deprecated
  172. public float getClassMpBase()
  173. {
  174. return _classMpBase;
  175. }
  176. /**
  177. * @param mpBase The _classMpBase to set.
  178. */
  179. public void setClassMpBase(float mpBase)
  180. {
  181. _classMpBase = mpBase;
  182. }
  183. /**
  184. * @return Returns the _classMpModifier.
  185. */
  186. @Deprecated
  187. public float getClassMpModifier()
  188. {
  189. return _classMpModifier;
  190. }
  191. /**
  192. * @param mpModifier The _classMpModifier to set.
  193. */
  194. public void setClassMpModifier(float mpModifier)
  195. {
  196. _classMpModifier = mpModifier;
  197. }
  198. }