⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 l1itemid.java

📁 网络游戏天堂1的java源代码。。。。。
💻 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.model.item;

public class L1ItemId {
	/**
	 * レッドポーション
	 */
	public static final int POTION_OF_HEALING = 40010;

	/**
	 * 祝福されたレッドポーション
	 */
	public static final int B_POTION_OF_HEALING = 140010;

	/**
	 * 呪われたレッドポーション
	 */
	public static final int C_POTION_OF_HEALING = 240010;

	/**
	 * オレンジポーション
	 */
	public static final int POTION_OF_EXTRA_HEALING = 40011;

	/**
	 * 祝福されたオレンジポーション
	 */
	public static final int B_POTION_OF_EXTRA_HEALING = 140011;

	/**
	 * クリアーポーション
	 */
	public static final int POTION_OF_GREATER_HEALING = 40012;

	/**
	 * 祝福されたクリアーポーション
	 */
	public static final int B_POTION_OF_GREATER_HEALING = 140012;

	/**
	 * ヘイストポーション
	 */
	public static final int POTION_OF_HASTE_SELF = 40013;

	/**
	 * 祝福されたヘイストポーション
	 */
	public static final int B_POTION_OF_HASTE_SELF = 140013;

	/**
	 * 強化ヘイストポーション
	 */
	public static final int POTION_OF_GREATER_HASTE_SELF = 40018;

	/**
	 * 祝福された強化ヘイストポーション
	 */
	public static final int B_POTION_OF_GREATER_HASTE_SELF = 140018;

	/**
	 * ブレイブポーション
	 */
	public static final int POTION_OF_EMOTION_BRAVERY = 40014;

	/**
	 * 祝福されたブレイブポーション
	 */
	public static final int B_POTION_OF_EMOTION_BRAVERY = 140014;

	/**
	 * 魔力回復ポーション
	 */
	public static final int POTION_OF_MANA = 40015;

	/**
	 * 祝福された魔力回復ポーション
	 */
	public static final int B_POTION_OF_MANA = 140015;

	/**
	 * ウィズダムポーション
	 */
	public static final int POTION_OF_EMOTION_WISDOM = 40016;

	/**
	 * 祝福されたウィズダムポーション
	 */
	public static final int B_POTION_OF_EMOTION_WISDOM = 140016;

	/**
	 * シアンポーション
	 */
	public static final int POTION_OF_CURE_POISON = 40017;

	/**
	 * 濃縮体力回復剤
	 */
	public static final int CONDENSED_POTION_OF_HEALING = 40019;

	/**
	 * 濃縮高級体力回復剤
	 */
	public static final int CONDENSED_POTION_OF_EXTRA_HEALING = 40020;

	/**
	 * 濃縮強力体力回復剤
	 */
	public static final int CONDENSED_POTION_OF_GREATER_HEALING = 40021;

	/**
	 * ブラインドポーション
	 */
	public static final int POTION_OF_BLINDNESS = 40025;

	/**
	 * 防具強化スクロール
	 */
	public static final int SCROLL_OF_ENCHANT_ARMOR = 40074;

	/**
	 * 祝福された防具強化スクロール
	 */
	public static final int B_SCROLL_OF_ENCHANT_ARMOR = 140074;

	/**
	 * 呪われた防具強化スクロール
	 */
	public static final int C_SCROLL_OF_ENCHANT_ARMOR = 240074;

	/**
	 * 武器強化スクロール
	 */
	public static final int SCROLL_OF_ENCHANT_WEAPON = 40087;

	/**
	 * 祝福された武器強化スクロール
	 */
	public static final int B_SCROLL_OF_ENCHANT_WEAPON = 140087;

	/**
	 * 呪われた武器強化スクロール
	 */
	public static final int C_SCROLL_OF_ENCHANT_WEAPON = 240087;

	/**
	 * 試練のスクロール
	 */
	public static final int SCROLL_OF_ENCHANT_QUEST_WEAPON = 40660;

	/**
	 * アデナ
	 */
	public static final int ADENA = 40308;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -