2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.lib;
|
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
|
|
|
|
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";
|
2012-12-19 19:09:56 +01:00
|
|
|
|
|
|
|
/* Gui related constants */
|
2012-11-06 21:49:43 +01:00
|
|
|
public static final String GUI_CALCINATOR_NAME = "gui.calcinator.name";
|
2013-02-19 02:13:24 +01:00
|
|
|
public static final String GUI_ALUDEL_NAME = "gui.aludel.name";
|
|
|
|
public static final String GUI_ALCHEMICAL_CHEST_NAME = "gui.alchemicalChest.name";
|
2013-02-25 05:03:45 +01:00
|
|
|
public static final String GUI_ALCHEMICAL_BAG_NAME = "gui.alchemicalBag.name";
|
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-02-26 22:08:43 +01:00
|
|
|
public static final String NBT_ITEM_ALCHEMY_BAG_GUI_OPEN = "itemAlchemyBagGuiOpen";
|
2012-12-05 20:33:03 +01:00
|
|
|
public static final String NBT_TE_OWNER_KEY = "teOwner";
|
|
|
|
public static final String NBT_TE_STATE_KEY = "teState";
|
|
|
|
public static final String NBT_TE_DIRECTION_KEY = "teDirection";
|
2013-01-22 04:15:51 +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";
|
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 */
|
|
|
|
public static final String MINIUM_SHARD_NAME = "miniumShard";
|
|
|
|
public static final String INERT_STONE_NAME = "inertStone";
|
|
|
|
public static final String MINIUM_STONE_NAME = "miniumStone";
|
|
|
|
public static final String PHILOSOPHER_STONE_NAME = "philStone";
|
|
|
|
public static final String ALCHEMY_DUST_NAME = "alchemyDust";
|
2012-12-01 04:45:54 +01:00
|
|
|
public static final String ALCHEMY_BAG_NAME = "alchemyBag";
|
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";
|
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;
|
2012-11-06 21:49:43 +01:00
|
|
|
|
2013-01-05 00:53:34 +01:00
|
|
|
}
|