123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.model;
- /**
- * This class ...
- *
- * @author NightMarez
- * @version $Revision: 1.2.2.1.2.1 $ $Date: 2005/03/27 15:29:32 $
- */
- public class L2LvlupData
- {
- private int _classid;
- private int _classLvl;
- private float _classHpAdd;
- private float _classHpBase;
- private float _classHpModifier;
- private float _classCpAdd;
- private float _classCpBase;
- private float _classCpModifier;
- private float _classMpAdd;
- private float _classMpBase;
- private float _classMpModifier;
-
- /**
- * @return Returns the _classHpAdd.
- */
- @Deprecated
- public float getClassHpAdd()
- {
- return _classHpAdd;
- }
-
- /**
- * @param hpAdd The _classHpAdd to set.
- */
- public void setClassHpAdd(float hpAdd)
- {
- _classHpAdd = hpAdd;
- }
-
- /**
- * @return Returns the _classHpBase.
- */
- @Deprecated
- public float getClassHpBase()
- {
- return _classHpBase;
- }
-
- /**
- * @param hpBase The _classHpBase to set.
- */
- public void setClassHpBase(float hpBase)
- {
- _classHpBase = hpBase;
- }
-
- /**
- * @return Returns the _classHpModifier.
- */
- @Deprecated
- public float getClassHpModifier()
- {
- return _classHpModifier;
- }
-
- /**
- * @param hpModifier The _classHpModifier to set.
- */
- public void setClassHpModifier(float hpModifier)
- {
- _classHpModifier = hpModifier;
- }
-
- /**
- * @return Returns the _classCpAdd.
- */
- @Deprecated
- public float getClassCpAdd()
- {
- return _classCpAdd;
- }
-
- /**
- * @param cpAdd The _classCpAdd to set.
- */
- public void setClassCpAdd(float cpAdd)
- {
- _classCpAdd = cpAdd;
- }
-
- /**
- * @return Returns the _classCpBase.
- */
- @Deprecated
- public float getClassCpBase()
- {
- return _classCpBase;
- }
-
- /**
- * @param cpBase The _classCpBase to set.
- */
- public void setClassCpBase(float cpBase)
- {
- _classCpBase = cpBase;
- }
-
- /**
- * @return Returns the _classCpModifier.
- */
- @Deprecated
- public float getClassCpModifier()
- {
- return _classCpModifier;
- }
-
- /**
- * @param cpModifier The _classCpModifier to set.
- */
- public void setClassCpModifier(float cpModifier)
- {
- _classCpModifier = cpModifier;
- }
-
- /**
- * @return Returns the _classid.
- */
- public int getClassid()
- {
- return _classid;
- }
-
- /**
- * @param pClassid The _classid to set.
- */
- public void setClassid(int pClassid)
- {
- _classid = pClassid;
- }
-
- /**
- * @return Returns the _classLvl.
- */
- @Deprecated
- public int getClassLvl()
- {
- return _classLvl;
- }
-
- /**
- * @param lvl The _classLvl to set.
- */
- public void setClassLvl(int lvl)
- {
- _classLvl = lvl;
- }
-
- /**
- * @return Returns the _classMpAdd.
- */
- @Deprecated
- public float getClassMpAdd()
- {
- return _classMpAdd;
- }
-
- /**
- * @param mpAdd The _classMpAdd to set.
- */
- public void setClassMpAdd(float mpAdd)
- {
- _classMpAdd = mpAdd;
- }
-
- /**
- * @return Returns the _classMpBase.
- */
- @Deprecated
- public float getClassMpBase()
- {
- return _classMpBase;
- }
-
- /**
- * @param mpBase The _classMpBase to set.
- */
- public void setClassMpBase(float mpBase)
- {
- _classMpBase = mpBase;
- }
-
- /**
- * @return Returns the _classMpModifier.
- */
- @Deprecated
- public float getClassMpModifier()
- {
- return _classMpModifier;
- }
-
- /**
- * @param mpModifier The _classMpModifier to set.
- */
- public void setClassMpModifier(float mpModifier)
- {
- _classMpModifier = mpModifier;
- }
- }
|