📄 l1pet.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 L1Pet {
public L1Pet() {
}
private int _itemobjid;
public int get_itemobjid() {
return _itemobjid;
}
public void set_itemobjid(int i) {
_itemobjid = i;
}
private int _objid;
public int get_objid() {
return _objid;
}
public void set_objid(int i) {
_objid = i;
}
private int _npcid;
public int get_npcid() {
return _npcid;
}
public void set_npcid(int i) {
_npcid = i;
}
private String _name;
public String get_name() {
return _name;
}
public void set_name(String s) {
_name = s;
}
private int _level;
public int get_level() {
return _level;
}
public void set_level(int i) {
_level = i;
}
private int _hp;
public int get_hp() {
return _hp;
}
public void set_hp(int i) {
_hp = i;
}
private int _mp;
public int get_mp() {
return _mp;
}
public void set_mp(int i) {
_mp = i;
}
private int _exp;
public int get_exp() {
return _exp;
}
public void set_exp(int i) {
_exp = i;
}
private int _lawful;
public int get_lawful() {
return _lawful;
}
public void set_lawful(int i) {
_lawful = i;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -