2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.lib;
|
2012-08-20 03:16:51 +02:00
|
|
|
|
|
|
|
/**
|
2013-03-08 19:40:59 +01:00
|
|
|
* Equivalent-Exchange-3
|
2012-08-25 08:46:51 +02:00
|
|
|
*
|
2013-03-08 19:40:59 +01:00
|
|
|
* ItemIds
|
2012-08-25 08:46:51 +02:00
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2012-08-20 03:16:51 +02:00
|
|
|
public class ItemIds {
|
2012-08-25 08:46:51 +02:00
|
|
|
|
2012-12-19 19:09:56 +01:00
|
|
|
/* Default item ids */
|
2012-09-28 17:10:55 +02:00
|
|
|
public static int MINIUM_SHARD_DEFAULT = 27000;
|
2012-10-26 02:55:26 +02:00
|
|
|
public static int INERT_STONE_DEFAULT = 27001;
|
|
|
|
public static int MINIUM_STONE_DEFAULT = 27002;
|
2013-03-07 00:46:19 +01:00
|
|
|
public static int PHILOSOPHERS_STONE_DEFAULT = 27003;
|
|
|
|
public static int ALCHEMICAL_DUST_DEFAULT = 27004;
|
|
|
|
public static int ALCHEMICAL_BAG_DEFAULT = 27005;
|
2012-12-19 19:09:56 +01:00
|
|
|
|
2012-09-07 21:41:43 +02:00
|
|
|
/* Current item ids */
|
2012-08-25 08:46:51 +02:00
|
|
|
public static int MINIUM_SHARD;
|
2012-10-26 02:55:26 +02:00
|
|
|
public static int INERT_STONE;
|
2012-08-25 08:46:51 +02:00
|
|
|
public static int MINIUM_STONE;
|
2013-03-07 00:46:19 +01:00
|
|
|
public static int PHILOSOPHERS_STONE;
|
|
|
|
public static int ALCHEMICAL_DUST;
|
|
|
|
public static int ALCHEMICAL_BAG;
|
2012-08-25 08:46:51 +02:00
|
|
|
|
2012-08-20 03:16:51 +02:00
|
|
|
}
|