📄 l1petitem.java
字号:
/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package l1j.server.server.templates;
public class L1PetItem {
public L1PetItem() {
}
private int _itemId;
public int getItemId() {
return _itemId;
}
public void setItemId(int i) {
_itemId = i;
}
private int _hitModifier;
public int getHitModifier() {
return _hitModifier;
}
public void setHitModifier(int i) {
_hitModifier = i;
}
private int _damageModifier;
public int getDamageModifier() {
return _damageModifier;
}
public void setDamageModifier(int i) {
_damageModifier = i;
}
private int _AddAc;
public int getAddAc() {
return _AddAc;
}
public void setAddAc(int i) {
_AddAc = i;
}
private int _addStr;
public int getAddStr() {
return _addStr;
}
public void setAddStr(int i) {
_addStr = i;
}
private int _addCon;
public int getAddCon() {
return _addCon;
}
public void setAddCon(int i) {
_addCon = i;
}
private int _addDex;
public int getAddDex() {
return _addDex;
}
public void setAddDex(int i) {
_addDex = i;
}
private int _addInt;
public int getAddInt() {
return _addInt;
}
public void setAddInt(int i) {
_addInt = i;
}
private int _addWis;
public int getAddWis() {
return _addWis;
}
public void setAddWis(int i) {
_addWis = i;
}
private int _addHp;
public int getAddHp() {
return _addHp;
}
public void setAddHp(int i) {
_addHp = i;
}
private int _addMp;
public int getAddMp() {
return _addMp;
}
public void setAddMp(int i) {
_addMp = i;
}
private int _addSp;
public int getAddSp() {
return _addSp;
}
public void setAddSp(int i) {
_addSp = i;
}
private int _addMr;
public int getAddMr() {
return _addMr;
}
public void setAddMr(int i) {
_addMr = i;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -