2012-12-17 21:21:53 +01:00
package com.pahimar.ee3.lib ;
2012-11-06 21:49:43 +01:00
2013-03-08 19:40:59 +01:00
/ * *
* Equivalent - Exchange - 3
*
* Strings
*
* @author pahimar
* @license Lesser GNU Public License v3 ( http : //www.gnu.org/licenses/lgpl.html)
*
* /
2012-11-06 21:49:43 +01:00
public class Strings {
2012-12-19 19:09:56 +01:00
/* General keys */
2013-01-05 00:53:34 +01:00
public static final String TRUE = " true " ;
public static final String FALSE = " false " ;
2012-12-19 19:09:56 +01:00
2013-04-08 02:29:57 +02:00
/* Fingerprint check related constants */
2013-04-08 03:52:25 +02:00
public static final String INVALID_FINGERPRINT_MESSAGE = " The copy of Equivalent Exchange 3 that you are running has been modified from the original, and unpredictable things may happen. Please consider re-downloading the original version of the mod. " ;
2013-04-11 03:04:31 +02:00
2012-11-20 20:42:39 +01:00
/* Version check related constants */
public static final String VERSION_CHECK_INIT_LOG_MESSAGE = " version.init_log_message " ;
public static final String UNINITIALIZED_MESSAGE = " version.uninitialized " ;
public static final String CURRENT_MESSAGE = " version.current " ;
public static final String OUTDATED_MESSAGE = " version.outdated " ;
public static final String GENERAL_ERROR_MESSAGE = " version.general_error " ;
2013-01-09 21:22:21 +01:00
public static final String FINAL_ERROR_MESSAGE = " version.final_error " ;
2013-03-05 05:26:26 +01:00
public static final String MC_VERSION_NOT_FOUND = " version.mc_version_not_found " ;
2012-12-19 19:09:56 +01:00
2012-11-26 03:11:12 +01:00
/* NBT related constants */
2012-12-05 20:33:03 +01:00
public static final String NBT_ITEM_CHARGE_LEVEL_KEY = " itemChargeLevel " ;
public static final String NBT_ITEM_MODE_KEY = " itemMode " ;
2013-01-30 04:15:59 +01:00
public static final String NBT_ITEM_CRAFTING_GUI_OPEN = " itemCraftingGuiOpen " ;
public static final String NBT_ITEM_TRANSMUTATION_GUI_OPEN = " itemTransmutationGuiOpen " ;
2013-03-07 00:46:19 +01:00
public static final String NBT_ITEM_ALCHEMICAL_BAG_GUI_OPEN = " itemAlchemicalBagGuiOpen " ;
2013-03-08 03:26:42 +01:00
public static final String NBT_ITEM_DISPLAY = " display " ;
public static final String NBT_ITEM_COLOR = " color " ;
2012-12-05 20:33:03 +01:00
public static final String NBT_TE_STATE_KEY = " teState " ;
2013-03-07 03:46:19 +01:00
public static final String NBT_TE_CUSTOM_NAME = " CustomName " ;
2012-12-05 20:33:03 +01:00
public static final String NBT_TE_DIRECTION_KEY = " teDirection " ;
2013-03-08 19:40:59 +01:00
2012-12-19 19:09:56 +01:00
/* Block name constants */
2012-11-06 21:49:43 +01:00
public static final String CALCINATOR_NAME = " calcinator " ;
2013-02-18 03:30:11 +01:00
public static final String ALUDEL_NAME = " aludel " ;
2013-02-19 02:13:24 +01:00
public static final String ALCHEMICAL_CHEST_NAME = " alchemicalChest " ;
2013-04-19 17:34:45 +02:00
public static final String GLASS_BELL_NAME = " glassBell " ;
2012-11-06 21:49:43 +01:00
public static final String RED_WATER_STILL_NAME = " redWaterStill " ;
2012-11-30 21:28:42 +01:00
public static final String RED_WATER_FLOWING_NAME = " redWaterFlowing " ;
2012-12-19 19:09:56 +01:00
2012-11-06 21:49:43 +01:00
/* Item name constants */
2013-03-05 04:18:15 +01:00
public static final String MINIUM_SHARD_NAME = " shardMinium " ;
public static final String INERT_STONE_NAME = " stoneInert " ;
public static final String MINIUM_STONE_NAME = " stoneMinium " ;
public static final String PHILOSOPHERS_STONE_NAME = " stonePhilosophers " ;
2013-04-20 11:52:08 +02:00
public static final String ALCHEMICAL_DUST_NAME = " alchemicalDust " ;
2013-03-07 00:46:19 +01:00
public static final String ALCHEMICAL_BAG_NAME = " alchemicalBag " ;
2012-12-19 19:09:56 +01:00
2012-11-21 21:29:26 +01:00
/* TileEntity name constants */
public static final String TE_CALCINATOR_NAME = " tileCalcinator " ;
2013-02-18 19:55:57 +01:00
public static final String TE_ALUDEL_NAME = " tileAludel " ;
2013-02-19 02:13:24 +01:00
public static final String TE_ALCHEMICAL_CHEST_NAME = " tileAlchemicalChest " ;
2013-04-19 17:34:45 +02:00
public static final String TE_GLASS_BELL_NAME = " tileGlassBell " ;
2012-12-19 19:09:56 +01:00
2012-12-05 20:33:03 +01:00
/* Transmutation cost related constants */
public static final String TRANSMUTATION_COST = " _cost " ;
public static final String TRANSMUTATION_COST_ITEM = " item " + TRANSMUTATION_COST ;
public static final String TRANSMUTATION_COST_BLOCK = " block " + TRANSMUTATION_COST ;
public static final String TRANSMUTATION_COST_MOB = " mob " + TRANSMUTATION_COST ;
2013-03-08 19:40:59 +01:00
2013-03-07 03:46:19 +01:00
/* Container related constants */
public static final String CONTAINER_CALCINATOR_NAME = " container. " + CALCINATOR_NAME ;
public static final String CONTAINER_ALUDEL_NAME = " container. " + ALUDEL_NAME ;
public static final String CONTAINER_ALCHEMICAL_CHEST_NAME = " container. " + ALCHEMICAL_CHEST_NAME ;
public static final String CONTAINER_ALCHEMICAL_BAG_NAME = " container. " + ALCHEMICAL_BAG_NAME ;
2013-04-19 17:34:45 +02:00
public static final String CONTAINER_GLASS_BELL_NAME = " container. " + GLASS_BELL_NAME ;
2013-03-07 03:46:19 +01:00
public static final String CONTAINER_INVENTORY = " container.inventory " ;
2013-03-08 03:26:42 +01:00
public static final String CONTAINER_PORTABLE_CRAFTING = " container.crafting " ;
2012-11-06 21:49:43 +01:00
2013-03-08 19:40:59 +01:00
}