L2LvlupData.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. *
  19. * @author NightMarez
  20. * @version $Revision: 1.2.2.1.2.1 $ $Date: 2005/03/27 15:29:32 $
  21. */
  22. public class L2LvlupData
  23. {
  24. private int _classid;
  25. private int _classLvl;
  26. private float _classHpAdd;
  27. private float _classHpBase;
  28. private float _classHpModifier;
  29. private float _classCpAdd;
  30. private float _classCpBase;
  31. private float _classCpModifier;
  32. private float _classMpAdd;
  33. private float _classMpBase;
  34. private float _classMpModifier;
  35. /**
  36. * @return Returns the _classHpAdd.
  37. */
  38. @Deprecated
  39. public float getClassHpAdd()
  40. {
  41. return _classHpAdd;
  42. }
  43. /**
  44. * @param hpAdd The _classHpAdd to set.
  45. */
  46. public void setClassHpAdd(float hpAdd)
  47. {
  48. _classHpAdd = hpAdd;
  49. }
  50. /**
  51. * @return Returns the _classHpBase.
  52. */
  53. @Deprecated
  54. public float getClassHpBase()
  55. {
  56. return _classHpBase;
  57. }
  58. /**
  59. * @param hpBase The _classHpBase to set.
  60. */
  61. public void setClassHpBase(float hpBase)
  62. {
  63. _classHpBase = hpBase;
  64. }
  65. /**
  66. * @return Returns the _classHpModifier.
  67. */
  68. @Deprecated
  69. public float getClassHpModifier()
  70. {
  71. return _classHpModifier;
  72. }
  73. /**
  74. * @param hpModifier The _classHpModifier to set.
  75. */
  76. public void setClassHpModifier(float hpModifier)
  77. {
  78. _classHpModifier = hpModifier;
  79. }
  80. /**
  81. * @return Returns the _classCpAdd.
  82. */
  83. @Deprecated
  84. public float getClassCpAdd()
  85. {
  86. return _classCpAdd;
  87. }
  88. /**
  89. * @param cpAdd The _classCpAdd to set.
  90. */
  91. public void setClassCpAdd(float cpAdd)
  92. {
  93. _classCpAdd = cpAdd;
  94. }
  95. /**
  96. * @return Returns the _classCpBase.
  97. */
  98. @Deprecated
  99. public float getClassCpBase()
  100. {
  101. return _classCpBase;
  102. }
  103. /**
  104. * @param cpBase The _classCpBase to set.
  105. */
  106. public void setClassCpBase(float cpBase)
  107. {
  108. _classCpBase = cpBase;
  109. }
  110. /**
  111. * @return Returns the _classCpModifier.
  112. */
  113. @Deprecated
  114. public float getClassCpModifier()
  115. {
  116. return _classCpModifier;
  117. }
  118. /**
  119. * @param cpModifier The _classCpModifier to set.
  120. */
  121. public void setClassCpModifier(float cpModifier)
  122. {
  123. _classCpModifier = cpModifier;
  124. }
  125. /**
  126. * @return Returns the _classid.
  127. */
  128. public int getClassid()
  129. {
  130. return _classid;
  131. }
  132. /**
  133. * @param pClassid The _classid to set.
  134. */
  135. public void setClassid(int pClassid)
  136. {
  137. _classid = pClassid;
  138. }
  139. /**
  140. * @return Returns the _classLvl.
  141. */
  142. @Deprecated
  143. public int getClassLvl()
  144. {
  145. return _classLvl;
  146. }
  147. /**
  148. * @param lvl The _classLvl to set.
  149. */
  150. public void setClassLvl(int lvl)
  151. {
  152. _classLvl = lvl;
  153. }
  154. /**
  155. * @return Returns the _classMpAdd.
  156. */
  157. @Deprecated
  158. public float getClassMpAdd()
  159. {
  160. return _classMpAdd;
  161. }
  162. /**
  163. * @param mpAdd The _classMpAdd to set.
  164. */
  165. public void setClassMpAdd(float mpAdd)
  166. {
  167. _classMpAdd = mpAdd;
  168. }
  169. /**
  170. * @return Returns the _classMpBase.
  171. */
  172. @Deprecated
  173. public float getClassMpBase()
  174. {
  175. return _classMpBase;
  176. }
  177. /**
  178. * @param mpBase The _classMpBase to set.
  179. */
  180. public void setClassMpBase(float mpBase)
  181. {
  182. _classMpBase = mpBase;
  183. }
  184. /**
  185. * @return Returns the _classMpModifier.
  186. */
  187. @Deprecated
  188. public float getClassMpModifier()
  189. {
  190. return _classMpModifier;
  191. }
  192. /**
  193. * @param mpModifier The _classMpModifier to set.
  194. */
  195. public void setClassMpModifier(float mpModifier)
  196. {
  197. _classMpModifier = mpModifier;
  198. }
  199. }