diff --git a/Minecraft.Client/Common/Leaderboards/SonyLeaderboardManager.cpp b/Minecraft.Client/Common/Leaderboards/SonyLeaderboardManager.cpp
index d191110d..7e7d97f1 100644
--- a/Minecraft.Client/Common/Leaderboards/SonyLeaderboardManager.cpp
+++ b/Minecraft.Client/Common/Leaderboards/SonyLeaderboardManager.cpp
@@ -154,7 +154,7 @@ void SonyLeaderboardManager::scoreboardThreadInternal()
// The following NP call should be reserved for asynchronous multiplayer modes that require PS Plus to be accessed.
//
// Note 2:
- // The message is not displayed with a user without PlayStation®Plus subscription and they are able to access the Leaderboards.
+ // The message is not displayed with a user without PlayStation�Plus subscription and they are able to access the Leaderboards.
// NotifyAsyncPlusFeature();
diff --git a/Minecraft.Client/Common/Media/MediaOrbis.arc b/Minecraft.Client/Common/Media/MediaOrbis.arc
index 9ba94ed5..70824723 100644
Binary files a/Minecraft.Client/Common/Media/MediaOrbis.arc and b/Minecraft.Client/Common/Media/MediaOrbis.arc differ
diff --git a/Minecraft.Client/Common/Postbuilds/Orbis-postbuild.ps1 b/Minecraft.Client/Common/Postbuilds/Orbis-postbuild.ps1
index fd1aec5e..867a4268 100644
--- a/Minecraft.Client/Common/Postbuilds/Orbis-postbuild.ps1
+++ b/Minecraft.Client/Common/Postbuilds/Orbis-postbuild.ps1
@@ -6,13 +6,13 @@ param(
Write-Host "Orbis Postbuild script started. Output Directory: $OutDir, Project Directory: $ProjectDir"
$directories = @(
- "music",
- "Orbis",
- "Common",
- "Common\Media",
- "Common\Tutorial",
- "Common\res",
- "Sound"
+ "PS4_GAME\music",
+ "PS4_GAME\Orbis",
+ "PS4_GAME\Common",
+ "PS4_GAME\Common\Media",
+ "PS4_GAME\Common\Tutorial",
+ "PS4_GAME\Common\res",
+ "PS4_GAME\Orbis\Sound"
)
foreach ($dir in $directories) {
@@ -27,7 +27,7 @@ $folderCopies = @(
@{ Source = "PS3\Sound"; Dest = "PS4_GAME\Sound" },
@{ Source = "Common\Postbuilds\Contents\Orbis\sce_module"; Dest = "PS4_GAME\sce_module" },
@{ Source = "Common\Postbuilds\Contents\Orbis\sce_gls"; Dest = "PS4_GAME\sce_gls" },
- @{ Source = "Common\Postbuilds\Contents\Orbis\sce_sys"; Dest = "PS4_GAME\sce_sys" },
+ @{ Source = "Common\Postbuilds\Contents\Orbis\sce_sys"; Dest = "PS4_GAME\sce_sys" }
)
foreach ($copy in $folderCopies) {
@@ -41,7 +41,7 @@ foreach ($copy in $folderCopies) {
$fileCopies = @(
@{ Source = "Orbis\PS4ProductCodes.bin"; Dest = "PS4_GAME\Orbis\PS4ProductCodes.bin" },
- @{ Source = "Orbis\session_image.jpg"; Dest = "PS4_GAME\Orbis\session_image.jpg" },
+ @{ Source = "Orbis\session_image.jpg"; Dest = "PS4_GAME\Orbis\session_image.jpg" }
)
foreach ($copy in $fileCopies) {
diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj
index 409773fd..32ea6a5d 100644
--- a/Minecraft.Client/Minecraft.Client.vcxproj
+++ b/Minecraft.Client/Minecraft.Client.vcxproj
@@ -3068,6 +3068,12 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU
false
+
+ powershell -ExecutionPolicy Bypass -File "$(ProjectDir)/Common/Postbuilds/Orbis-postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
+
+
+ Run Orbis postbuild script
+
@@ -3185,6 +3191,12 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU
false
+
+ powershell -ExecutionPolicy Bypass -File "$(ProjectDir)/Common/Postbuilds/Orbis-postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
+
+
+ Run Orbis postbuild script
+
diff --git a/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.cpp b/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.cpp
index 9ca6d90b..9f00d2f7 100644
--- a/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.cpp
+++ b/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.cpp
@@ -41,14 +41,14 @@ static void CreatePort(uint32_t *portId, const SceVoicePortParam *pArg)
int err = sceVoiceCreatePort( portId, pArg );
assert(err == SCE_OK);
- assert(*portId != SCE_VOICE_INVALID_PORT_ID);
+ assert(*portId != VOICE_INVALID_PORT_ID);
C4JThread::PopAffinity(); // PS4 only
}
static void DeletePort(uint32_t& port)
{
int32_t result;
- if (port != SCE_VOICE_INVALID_PORT_ID)
+ if (port != VOICE_INVALID_PORT_ID)
{
result = sceVoiceDeletePort( port );
if (result != SCE_OK)
@@ -56,7 +56,7 @@ static void DeletePort(uint32_t& port)
app.DebugPrintf("sceVoiceDeletePort failed %0x\n", result);
assert(0);
}
- port = SCE_VOICE_INVALID_PORT_ID;
+ port = VOICE_INVALID_PORT_ID;
}
}
diff --git a/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.h b/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.h
index f7feb585..455f0b53 100644
--- a/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.h
+++ b/Minecraft.Client/Orbis/Network/SonyVoiceChat_Orbis.h
@@ -8,6 +8,7 @@
static const int sc_maxVoiceDataSize = 2048;
+#define VOICE_INVALID_PORT_ID 0xff // str1k3r - use of SCE_VOICE_INVALID_PORT_ID causes a crash when loading / making worlds.
class VoicePacket
{
@@ -87,9 +88,9 @@ public:
public:
SQRLocalVoiceDevice()
- : m_headsetPort(SCE_VOICE_INVALID_PORT_ID)
- , m_microphonePort(SCE_VOICE_INVALID_PORT_ID)
, m_localUserID(SCE_USER_SERVICE_USER_ID_INVALID)
+ : m_headsetPort(VOICE_INVALID_PORT_ID)
+ , m_microphonePort(VOICE_INVALID_PORT_ID)
{
for(int i=0;i<4;i++)
m_localConnections[i] = 0;
diff --git a/Minecraft.Client/OrbisMedia/loc/stringsGeneric.xml b/Minecraft.Client/OrbisMedia/loc/stringsGeneric.xml
index a631dfc3..56c35b59 100644
--- a/Minecraft.Client/OrbisMedia/loc/stringsGeneric.xml
+++ b/Minecraft.Client/OrbisMedia/loc/stringsGeneric.xml
@@ -1675,9 +1675,69 @@ Can also be used for low-level lighting.
Mob Heads can be placed as a decoration, or worn as a mask in the helmet slot.
-
+
-
+
+ Used to execute commands.
+
+
+
+ Projects a beam of light into the sky and can provide Status Effects to nearby players.
+
+
+
+ Stores blocks and items inside. Place two chest side by side to create a larger chest with double capacity. The trapped chest also creates a Redstone charge when opened.
+
+
+
+ Provides a Redstone charge. The charge will be stronger if more items are on the plate.
+
+
+
+ Provides a Redstone charge. The charge will be stronger if more items are on the plate. Requires more weight than the light plate.
+
+
+
+ Used as a redstone power source. Can be crafted back into Redstone.
+
+
+
+ Used to catch items or to transfer items into and out of containers.
+
+
+
+ A type of rail that can enable or disable Minecarts with Hoppers and trigger Minecarts with TNT.
+
+
+
+ Used to hold and drop items, or push items into another container, when given a Redstone charge.
+
+
+
+ Colorful blocks crafted by dyeing Hardened clay.
+
+
+
+ Can be fed to Horses, Donkeys or Mules to heal up to 10 Hearts. Speeds up the growth of foals.
+
+
+
+ Created by smelting Clay in a furnace.
+
+
+
+ Crafted from glass and a dye.
+
+
+
+ Crafted from Stained Glass
+
+
+
+ A compact way of storing Coal. Can be used as fuel in a Furnace.
+
+
+
Squid
@@ -2895,9 +2955,13 @@ Can also be used for low-level lighting.
Jungle Wood Planks
-
+
-
+
+ Wood Planks (any type)
+
+
+
Sapling
@@ -5688,9 +5752,41 @@ Can also be used for low-level lighting.
Clear All Slots
-
+
-
+
+ Mount
+
+
+
+ Dismount
+
+
+
+ Attach Chest
+
+
+
+ Launch
+
+
+
+ Leash
+
+
+
+ Release
+
+
+
+ Attach
+
+
+
+ Name
+
+
+
OK
@@ -5700,9 +5796,13 @@ Can also be used for low-level lighting.
Minecraft Store
-
+
-
+
+ Are you sure you want to leave your current game and join the new one? Any unsaved progress will be lost.
+
+
+
Exit Game
@@ -5732,9 +5832,17 @@ Can also be used for low-level lighting.
This save is corrupt or damaged. Would you like to delete it?
-
+
-
+
+ Str1k3r: Placeholder
+
+
+
+ Str1k3r: Placeholder
+
+
+
Are you sure you want to exit to the main menu and disconnect all players from the game? Any unsaved progress will be lost.
@@ -5744,9 +5852,13 @@ Can also be used for low-level lighting.
Exit without saving
-
+
-
+
+ Are you sure you want to exit to the main menu? Any unsaved progress will be lost.
+
+
+
Are you sure you want to exit to the main menu? Your progress will be lost!
@@ -6503,9 +6615,13 @@ Would you like to install the mash-up pack or texture pack now?
Game Mode: Creative
-
+
-
+
+ Game Mode: Adventure
+
+
+
Survival
@@ -6517,6 +6633,10 @@ Would you like to install the mash-up pack or texture pack now?
Adventure
+
+ Adventure
+
+
Created in Survival Mode
@@ -6555,9 +6675,13 @@ Would you like to install the mash-up pack or texture pack now?
Superflat
-
+
-
+
+ Enter a seed to generate the same terrain again. Leave blank for a random world.
+
+
+
When enabled, the game will be an online game.
@@ -6575,13 +6699,29 @@ Would you like to install the mash-up pack or texture pack now?
When disabled, players joining the game cannot build or mine until authorised.
-
+
-
+
+ Increase World Size
+
+
+
+ Overwrite World Edges
+
+
+
When enabled, fire may spread to nearby flammable blocks.
-
+
-
+
+ Select a larger world size to increase the amount of the world that you can explore. Larger worlds cannot be made smaller again.
+
+
+
+ When enabled, the outer 32 tiles around the world edge will be overwritten by newly generated tiles to make the world size increase seamless. When disabled, the world size increase will leave all original tiles intact.
+
+
+
When enabled, TNT will explode when activated.
@@ -7110,9 +7250,13 @@ Would you like to install the mash-up pack or texture pack now?
This animal can't enter Love Mode. The maximum number of breeding Chickens has been reached.
-
+
-
+
+ This animal can't enter Love Mode. The maximum number of breeding horses has been reached.
+
+
+
This animal can't enter Love Mode. The maximum number of breeding Mooshrooms has been reached.
@@ -7162,7 +7306,11 @@ Would you like to install the mash-up pack or texture pack now?
Credits
-
+
+
+
+ Languages
+
Reinstall Content
@@ -7566,9 +7714,25 @@ Would you like to install the mash-up pack or texture pack now?
Poison
-
+
-
+
+ Wither
+
+
+
+ Health Boost
+
+
+
+ Absorption
+
+
+
+ Saturation
+
+
+
of Swiftness
@@ -7642,9 +7806,25 @@ Would you like to install the mash-up pack or texture pack now?
of Poison
-
+
-
+
+ of Decay
+
+
+
+ of Health Boost
+
+
+
+ of Absorption
+
+
+
+ of Saturation
+
+
+
@@ -7837,6 +8017,10 @@ Would you like to install the mash-up pack or texture pack now?
Reduces health of the affected players, animals and monsters over time.
+
+ When Applied:
+
+
Horse Jump Strength
diff --git a/Minecraft.Client/OrbisMedia/loc/stringsLanguages.xml b/Minecraft.Client/OrbisMedia/loc/stringsLanguages.xml
new file mode 100644
index 00000000..0e70e2e2
--- /dev/null
+++ b/Minecraft.Client/OrbisMedia/loc/stringsLanguages.xml
@@ -0,0 +1,88 @@
+
+
+
+ System Language
+
+
+ English
+
+
+
+ German
+
+
+
+ Spanish
+
+
+ Spanish (Spain)
+
+
+ Spanish (Latin America)
+
+
+
+ French
+
+
+
+ Italian
+
+
+
+ Portuguese
+
+
+ Portuguese (Portugal)
+
+
+ Portuguese (Brazil)
+
+
+
+ Japanese
+
+
+
+ Korean
+
+
+
+ Chinese (Traditional)
+
+
+ Chinese (Simplified)
+
+
+
+ Danish
+
+
+ Finnish
+
+
+
+ Dutch
+
+
+
+ Polish
+
+
+ Russian
+
+
+ Swedish
+
+
+ Norwegian
+
+
+
+ Greek
+
+
+
+ Turkish
+
+
\ No newline at end of file
diff --git a/Minecraft.Client/OrbisMedia/loc/stringsPlatformSpecific.xml b/Minecraft.Client/OrbisMedia/loc/stringsPlatformSpecific.xml
index 42f318f7..047d6606 100644
--- a/Minecraft.Client/OrbisMedia/loc/stringsPlatformSpecific.xml
+++ b/Minecraft.Client/OrbisMedia/loc/stringsPlatformSpecific.xml
@@ -270,6 +270,10 @@ If you try to save while using the trial version, you will be given the option t
Download Failed. Please try again later.
+
+ The saved file in the download area has a version number that Minecraft: PlayStation®4 Edition does not yet support.
+
+
Failed to join the game due to a restrictive NAT type. Please check your network settings.
diff --git a/Minecraft.Client/OrbisMedia/strings.h b/Minecraft.Client/OrbisMedia/strings.h
index 085f778d..356863d4 100644
--- a/Minecraft.Client/OrbisMedia/strings.h
+++ b/Minecraft.Client/OrbisMedia/strings.h
@@ -1,4387 +1,2307 @@
#pragma once
-#define IDS_GAMEOPTION_INCREASE_WORLD_SIZE 1624
-#define IDS_GAMEOPTION_INCREASE_WORLD_SIZE_OVERWRITE_EDGES 1625
-#define IDS_GAMEOPTION_WORLD_SIZE 1620
-#define IDS_INCREASE_WORLD_SIZE 1621
-#define IDS_INCREASE_WORLD_SIZE_OVERWRITE_EDGES 1622
-#define IDS__NETWORK_PSN 0
-#define IDS_ACHIEVEMENTS 0
-#define IDS_ACHIEVEMENTS 1
-#define IDS_ACTION_BAN_LEVEL_DESCRIPTION 1
-#define IDS_ACTION_BAN_LEVEL_DESCRIPTION 2
-#define IDS_ACTION_BAN_LEVEL_TITLE 2
-#define IDS_ACTION_BAN_LEVEL_TITLE 3
-#define IDS_ADVENTURE 3
-#define IDS_ADVENTURE 4
-#define IDS_ALLOWFRIENDSOFFRIENDS 4
-#define IDS_ALLOWFRIENDSOFFRIENDS 5
-#define IDS_ANY_WOOL 5
-#define IDS_ANY_WOOL 6
-#define IDS_ATTRIBUTE_NAME_GENERIC_ATTACKDAMAGE 6
-#define IDS_ATTRIBUTE_NAME_GENERIC_ATTACKDAMAGE 7
-#define IDS_ATTRIBUTE_NAME_GENERIC_FOLLOWRANGE 7
-#define IDS_ATTRIBUTE_NAME_GENERIC_FOLLOWRANGE 8
-#define IDS_ATTRIBUTE_NAME_GENERIC_KNOCKBACKRESISTANCE 8
-#define IDS_ATTRIBUTE_NAME_GENERIC_KNOCKBACKRESISTANCE 9
-#define IDS_ATTRIBUTE_NAME_GENERIC_MAXHEALTH 10
-#define IDS_ATTRIBUTE_NAME_GENERIC_MAXHEALTH 9
-#define IDS_ATTRIBUTE_NAME_GENERIC_MOVEMENTSPEED 10
-#define IDS_ATTRIBUTE_NAME_GENERIC_MOVEMENTSPEED 11
-#define IDS_ATTRIBUTE_NAME_HORSE_JUMPSTRENGTH 11
-#define IDS_ATTRIBUTE_NAME_HORSE_JUMPSTRENGTH 12
-#define IDS_ATTRIBUTE_NAME_ZOMBIE_SPAWNREINFORCEMENTS 12
-#define IDS_ATTRIBUTE_NAME_ZOMBIE_SPAWNREINFORCEMENTS 13
-#define IDS_AUDIO 13
-#define IDS_AUDIO 14
-#define IDS_AUTOSAVE_COUNTDOWN 14
-#define IDS_AUTOSAVE_COUNTDOWN 15
-#define IDS_AWARD_GAMERPIC1 15
-#define IDS_AWARD_GAMERPIC1 16
-#define IDS_AWARD_GAMERPIC2 16
-#define IDS_AWARD_GAMERPIC2 17
-#define IDS_AWARD_TITLE 17
-#define IDS_AWARD_TITLE 18
-#define IDS_BACK 18
-#define IDS_BACK 19
-#define IDS_BACK_BUTTON 19
-#define IDS_BACK_BUTTON 20
-#define IDS_BANNED_LEVEL_TITLE 20
-#define IDS_BANNED_LEVEL_TITLE 21
-#define IDS_BAT 21
-#define IDS_BAT 22
-#define IDS_BLAZE 22
-#define IDS_BLAZE 23
-#define IDS_BONUS_CHEST 23
-#define IDS_BONUS_CHEST 24
-#define IDS_BOSS_ENDERDRAGON_HEALTH 24
-#define IDS_BOSS_ENDERDRAGON_HEALTH 25
-#define IDS_BREWING_STAND 25
-#define IDS_BREWING_STAND 26
-#define IDS_BUTTON_REMOVE_FROM_BAN_LIST 26
-#define IDS_BUTTON_REMOVE_FROM_BAN_LIST 27
-#define IDS_CAN_ATTACK_ANIMALS 27
-#define IDS_CAN_ATTACK_ANIMALS 28
-#define IDS_CAN_ATTACK_PLAYERS 28
-#define IDS_CAN_ATTACK_PLAYERS 29
-#define IDS_CAN_BUILD_AND_MINE 29
-#define IDS_CAN_BUILD_AND_MINE 30
-#define IDS_CAN_DISABLE_EXHAUSTION 30
-#define IDS_CAN_DISABLE_EXHAUSTION 31
-#define IDS_CAN_FLY 31
-#define IDS_CAN_FLY 32
-#define IDS_CAN_INVISIBLE 32
-#define IDS_CAN_INVISIBLE 33
-#define IDS_CAN_OPEN_CONTAINERS 33
-#define IDS_CAN_OPEN_CONTAINERS 34
-#define IDS_CAN_USE_DOORS_AND_SWITCHES 34
-#define IDS_CAN_USE_DOORS_AND_SWITCHES 35
-#define IDS_CANCEL 35
-#define IDS_CANCEL 36
-#define IDS_CANCEL_UPLOAD_TEXT 37
-#define IDS_CANCEL_UPLOAD_TITLE 38
-#define IDS_CANT_PLACE_NEAR_SPAWN_TEXT 36
-#define IDS_CANT_PLACE_NEAR_SPAWN_TEXT 39
-#define IDS_CANT_PLACE_NEAR_SPAWN_TITLE 37
-#define IDS_CANT_PLACE_NEAR_SPAWN_TITLE 40
-#define IDS_CANT_SHEAR_MOOSHROOM 38
-#define IDS_CANT_SHEAR_MOOSHROOM 41
-#define IDS_CANT_SPAWN_IN_PEACEFUL 39
-#define IDS_CANT_SPAWN_IN_PEACEFUL 42
-#define IDS_CANTJOIN_TITLE 40
-#define IDS_CANTJOIN_TITLE 43
-#define IDS_CARROTS 41
-#define IDS_CARROTS 44
-#define IDS_CAVE_SPIDER 42
-#define IDS_CAVE_SPIDER 45
-#define IDS_CHANGE_SKIN 43
-#define IDS_CHANGE_SKIN 46
-#define IDS_CHAT_RESTRICTION_UGC 44
-#define IDS_CHAT_RESTRICTION_UGC 47
-#define IDS_CHECKBOX_ANIMATED_CHARACTER 45
-#define IDS_CHECKBOX_ANIMATED_CHARACTER 48
-#define IDS_CHECKBOX_CUSTOM_SKIN_ANIM 46
-#define IDS_CHECKBOX_CUSTOM_SKIN_ANIM 49
-#define IDS_CHECKBOX_DEATH_MESSAGES 47
-#define IDS_CHECKBOX_DEATH_MESSAGES 50
-#define IDS_CHECKBOX_DISPLAY_HAND 48
-#define IDS_CHECKBOX_DISPLAY_HAND 51
-#define IDS_CHECKBOX_DISPLAY_HUD 49
-#define IDS_CHECKBOX_DISPLAY_HUD 52
-#define IDS_CHECKBOX_DISPLAY_SPLITSCREENGAMERTAGS 50
-#define IDS_CHECKBOX_DISPLAY_SPLITSCREENGAMERTAGS 53
-#define IDS_CHECKBOX_RENDER_BEDROCKFOG 51
-#define IDS_CHECKBOX_RENDER_BEDROCKFOG 54
-#define IDS_CHECKBOX_RENDER_CLOUDS 52
-#define IDS_CHECKBOX_RENDER_CLOUDS 55
-#define IDS_CHECKBOX_VERTICAL_SPLIT_SCREEN 53
-#define IDS_CHECKBOX_VERTICAL_SPLIT_SCREEN 56
-#define IDS_CHEST 54
-#define IDS_CHEST 57
-#define IDS_CHEST_LARGE 55
-#define IDS_CHEST_LARGE 58
-#define IDS_CHICKEN 56
-#define IDS_CHICKEN 59
-#define IDS_COMMAND_TELEPORT_ME 57
-#define IDS_COMMAND_TELEPORT_ME 60
-#define IDS_COMMAND_TELEPORT_SUCCESS 58
-#define IDS_COMMAND_TELEPORT_SUCCESS 61
-#define IDS_COMMAND_TELEPORT_TO_ME 59
-#define IDS_COMMAND_TELEPORT_TO_ME 62
-#define IDS_CONFIRM_CANCEL 60
-#define IDS_CONFIRM_CANCEL 63
-#define IDS_CONFIRM_DECLINE_SAVE_GAME 61
-#define IDS_CONFIRM_DECLINE_SAVE_GAME 64
-#define IDS_CONFIRM_DISABLE_AUTOSAVE 62
-#define IDS_CONFIRM_ENABLE_AUTOSAVE 63
-#define IDS_CONFIRM_EXIT_GAME 64
-#define IDS_CONFIRM_EXIT_GAME 65
-#define IDS_CONFIRM_EXIT_GAME_CONFIRM_DISCONNECT 65
-#define IDS_CONFIRM_EXIT_GAME_CONFIRM_DISCONNECT_SAVE 66
-#define IDS_CONFIRM_EXIT_GAME_PROGRESS_LOST 67
-#define IDS_CONFIRM_LEAVE_VIA_INVITE 68
-#define IDS_CONFIRM_OK 69
-#define IDS_CONFIRM_SAVE_GAME 70
-#define IDS_CONFIRM_START_CREATIVE 71
-#define IDS_CONFIRM_START_HOST_PRIVILEGES 72
-#define IDS_CONFIRM_START_SAVEDINCREATIVE 73
-#define IDS_CONFIRM_START_SAVEDINCREATIVE_CONTINUE 74
-#define IDS_CONNECTION_FAILED 75
-#define IDS_CONNECTION_FAILED_NO_SD_SPLITSCREEN 76
-#define IDS_CONNECTION_LOST 77
-#define IDS_CONNECTION_LOST_LIVE 78
-#define IDS_CONNECTION_LOST_LIVE_NO_EXIT 79
-#define IDS_CONNECTION_LOST_SERVER 80
-#define IDS_CONTAINER_ANIMAL 81
-#define IDS_CONTAINER_ANIMAL 82
-#define IDS_CONTAINER_BEACON 82
-#define IDS_CONTAINER_BEACON 83
-#define IDS_CONTAINER_BEACON_PRIMARY_POWER 83
-#define IDS_CONTAINER_BEACON_PRIMARY_POWER 84
-#define IDS_CONTAINER_BEACON_SECONDARY_POWER 84
-#define IDS_CONTAINER_BEACON_SECONDARY_POWER 85
-#define IDS_CONTAINER_DROPPER 85
-#define IDS_CONTAINER_DROPPER 86
-#define IDS_CONTAINER_HOPPER 86
-#define IDS_CONTAINER_HOPPER 87
-#define IDS_CONTAINER_MINECART 87
-#define IDS_CONTAINER_MINECART 88
-#define IDS_CONTENT_RESTRICTION 81
-#define IDS_CONTENT_RESTRICTION 88
-#define IDS_CONTENT_RESTRICTION_MULTIPLAYER 89
-#define IDS_CONTENT_RESTRICTION_PATCH_AVAILABLE 90
-#define IDS_CONTROL 91
-#define IDS_CONTROLER_DISCONNECT_TEXT 92
-#define IDS_CONTROLER_DISCONNECT_TITLE 93
-#define IDS_CONTROLLER_A 94
-#define IDS_CONTROLLER_B 95
-#define IDS_CONTROLLER_BACK 96
-#define IDS_CONTROLLER_DPAD_D 97
-#define IDS_CONTROLLER_DPAD_L 98
-#define IDS_CONTROLLER_DPAD_R 99
-#define IDS_CONTROLLER_DPAD_U 100
-#define IDS_CONTROLLER_LEFT_BUMPER 101
-#define IDS_CONTROLLER_LEFT_STICK 102
-#define IDS_CONTROLLER_LEFT_THUMBSTICK 103
-#define IDS_CONTROLLER_LEFT_TRIGGER 104
-#define IDS_CONTROLLER_RIGHT_BUMPER 105
-#define IDS_CONTROLLER_RIGHT_STICK 106
-#define IDS_CONTROLLER_RIGHT_THUMBSTICK 107
-#define IDS_CONTROLLER_RIGHT_TRIGGER 108
-#define IDS_CONTROLLER_START 109
-#define IDS_CONTROLLER_X 110
-#define IDS_CONTROLLER_Y 111
-#define IDS_CONTROLS 112
-#define IDS_CONTROLS_ACTION 113
-#define IDS_CONTROLS_CRAFTING 114
-#define IDS_CONTROLS_DPAD 115
-#define IDS_CONTROLS_DROP 116
-#define IDS_CONTROLS_HELDITEM 117
-#define IDS_CONTROLS_INVENTORY 118
-#define IDS_CONTROLS_JUMP 119
-#define IDS_CONTROLS_JUMPFLY 120
-#define IDS_CONTROLS_LAYOUT 121
-#define IDS_CONTROLS_LOOK 122
-#define IDS_CONTROLS_MOVE 123
-#define IDS_CONTROLS_PAUSE 124
-#define IDS_CONTROLS_PLAYERS 125
-#define IDS_CONTROLS_SCHEME0 126
-#define IDS_CONTROLS_SCHEME1 127
-#define IDS_CONTROLS_SCHEME2 128
-#define IDS_CONTROLS_SNEAK 129
-#define IDS_CONTROLS_SNEAKFLY 130
-#define IDS_CONTROLS_THIRDPERSON 131
-#define IDS_CONTROLS_USE 132
-#define IDS_COPYSAVE 133
-#define IDS_COPYSAVE_FAILED_LOCAL 134
-#define IDS_COPYSAVE_FAILED_QUOTA 135
-#define IDS_COPYSAVE_FAILED_TITLE 136
-#define IDS_CORRUPT_DLC 133
-#define IDS_CORRUPT_DLC 137
-#define IDS_CORRUPT_DLC_MULTIPLE 134
-#define IDS_CORRUPT_DLC_MULTIPLE 138
-#define IDS_CORRUPT_DLC_TITLE 135
-#define IDS_CORRUPT_DLC_TITLE 139
-#define IDS_CORRUPT_FILE 136
-#define IDS_CORRUPT_FILE 140
-#define IDS_CORRUPT_OPTIONS 137
-#define IDS_CORRUPT_OPTIONS 141
-#define IDS_CORRUPT_OPTIONS_DELETE 138
-#define IDS_CORRUPT_OPTIONS_RETRY 139
-#define IDS_CORRUPT_OR_DAMAGED_SAVE_TEXT 140
-#define IDS_CORRUPT_OR_DAMAGED_SAVE_TEXT 142
-#define IDS_CORRUPT_OR_DAMAGED_SAVE_TITLE 141
-#define IDS_CORRUPT_OR_DAMAGED_SAVE_TITLE 143
-#define IDS_CORRUPT_SAVECACHE 142
-#define IDS_CORRUPT_SAVECACHE 144
-#define IDS_CORRUPTSAVE_TEXT 143
-#define IDS_CORRUPTSAVE_TEXT 145
-#define IDS_CORRUPTSAVE_TITLE 144
-#define IDS_CORRUPTSAVE_TITLE 146
-#define IDS_COW 145
-#define IDS_COW 147
-#define IDS_CREATE_NEW_WORLD 146
-#define IDS_CREATE_NEW_WORLD 148
-#define IDS_CREATE_NEW_WORLD_RANDOM_SEED 147
-#define IDS_CREATE_NEW_WORLD_RANDOM_SEED 149
-#define IDS_CREATE_NEW_WORLD_SEED 148
-#define IDS_CREATE_NEW_WORLD_SEED 150
-#define IDS_CREATE_NEW_WORLD_SEEDTEXT 149
-#define IDS_CREATE_NEW_WORLD_SEEDTEXT 151
-#define IDS_CREATEANEWSAVE 150
-#define IDS_CREATEANEWSAVE 152
-#define IDS_CREATED_IN_CREATIVE 151
-#define IDS_CREATED_IN_CREATIVE 153
-#define IDS_CREATED_IN_SURVIVAL 152
-#define IDS_CREATED_IN_SURVIVAL 154
-#define IDS_CREATIVE 153
-#define IDS_CREATIVE 155
-#define IDS_CREDITS 154
-#define IDS_CREDITS 156
-#define IDS_CREDITS_ADDITIONALSTE 155
-#define IDS_CREDITS_ADDITIONALSTE 157
-#define IDS_CREDITS_ART 156
-#define IDS_CREDITS_ART 158
-#define IDS_CREDITS_ARTDEVELOPER 157
-#define IDS_CREDITS_ARTDEVELOPER 159
-#define IDS_CREDITS_ASIALOC 158
-#define IDS_CREDITS_ASIALOC 160
-#define IDS_CREDITS_BIZDEV 159
-#define IDS_CREDITS_BIZDEV 161
-#define IDS_CREDITS_BULLYCOORD 160
-#define IDS_CREDITS_BULLYCOORD 162
-#define IDS_CREDITS_CEO 161
-#define IDS_CREDITS_CEO 163
-#define IDS_CREDITS_CHIEFARCHITECT 162
-#define IDS_CREDITS_CHIEFARCHITECT 164
-#define IDS_CREDITS_CODENINJA 163
-#define IDS_CREDITS_CODENINJA 165
-#define IDS_CREDITS_COMMUNITYMANAGER 164
-#define IDS_CREDITS_COMMUNITYMANAGER 166
-#define IDS_CREDITS_CONCEPTART 165
-#define IDS_CREDITS_CONCEPTART 167
-#define IDS_CREDITS_CRUNCHER 166
-#define IDS_CREDITS_CRUNCHER 168
-#define IDS_CREDITS_CUSTOMERSUPPORT 167
-#define IDS_CREDITS_CUSTOMERSUPPORT 169
-#define IDS_CREDITS_DESIGNTEAM 168
-#define IDS_CREDITS_DESIGNTEAM 170
-#define IDS_CREDITS_DESPROG 169
-#define IDS_CREDITS_DESPROG 171
-#define IDS_CREDITS_DEVELOPER 170
-#define IDS_CREDITS_DEVELOPER 172
-#define IDS_CREDITS_DEVELOPMENTTEAM 171
-#define IDS_CREDITS_DEVELOPMENTTEAM 173
-#define IDS_CREDITS_DOF 172
-#define IDS_CREDITS_DOF 174
-#define IDS_CREDITS_EUROPELOC 173
-#define IDS_CREDITS_EUROPELOC 175
-#define IDS_CREDITS_EXECPRODUCER 174
-#define IDS_CREDITS_EXECPRODUCER 176
-#define IDS_CREDITS_EXPLODANIM 175
-#define IDS_CREDITS_EXPLODANIM 177
-#define IDS_CREDITS_GAMECRAFTER 176
-#define IDS_CREDITS_GAMECRAFTER 178
-#define IDS_CREDITS_JON_KAGSTROM 177
-#define IDS_CREDITS_JON_KAGSTROM 179
-#define IDS_CREDITS_LEADPC 178
-#define IDS_CREDITS_LEADPC 180
-#define IDS_CREDITS_LEADPRODUCER 179
-#define IDS_CREDITS_LEADPRODUCER 181
-#define IDS_CREDITS_LEADTESTER 180
-#define IDS_CREDITS_LEADTESTER 182
-#define IDS_CREDITS_MARKETING 181
-#define IDS_CREDITS_MARKETING 183
-#define IDS_CREDITS_MGSCENTRAL 182
-#define IDS_CREDITS_MGSCENTRAL 184
-#define IDS_CREDITS_MILESTONEACCEPT 183
-#define IDS_CREDITS_MILESTONEACCEPT 185
-#define IDS_CREDITS_MUSICANDSOUNDS 184
-#define IDS_CREDITS_MUSICANDSOUNDS 186
-#define IDS_CREDITS_OFFICEDJ 185
-#define IDS_CREDITS_OFFICEDJ 187
-#define IDS_CREDITS_ORIGINALDESIGN 186
-#define IDS_CREDITS_ORIGINALDESIGN 188
-#define IDS_CREDITS_PMPROD 187
-#define IDS_CREDITS_PMPROD 189
-#define IDS_CREDITS_PORTFOLIODIRECTOR 188
-#define IDS_CREDITS_PORTFOLIODIRECTOR 190
-#define IDS_CREDITS_PRODUCER 189
-#define IDS_CREDITS_PRODUCER 191
-#define IDS_CREDITS_PRODUCTMANAGER 190
-#define IDS_CREDITS_PRODUCTMANAGER 192
-#define IDS_CREDITS_PROGRAMMING 191
-#define IDS_CREDITS_PROGRAMMING 193
-#define IDS_CREDITS_PROJECT 192
-#define IDS_CREDITS_PROJECT 194
-#define IDS_CREDITS_QA 193
-#define IDS_CREDITS_QA 195
-#define IDS_CREDITS_REDMONDLOC 194
-#define IDS_CREDITS_REDMONDLOC 196
-#define IDS_CREDITS_RELEASEMANAGEMENT 195
-#define IDS_CREDITS_RELEASEMANAGEMENT 197
-#define IDS_CREDITS_RESTOFMOJANG 196
-#define IDS_CREDITS_RESTOFMOJANG 198
-#define IDS_CREDITS_RISE_LUGO 197
-#define IDS_CREDITS_RISE_LUGO 199
-#define IDS_CREDITS_SDET 198
-#define IDS_CREDITS_SDET 200
-#define IDS_CREDITS_SPECIALTHANKS 199
-#define IDS_CREDITS_SPECIALTHANKS 201
-#define IDS_CREDITS_SRTESTLEAD 200
-#define IDS_CREDITS_SRTESTLEAD 202
-#define IDS_CREDITS_TESTASSOCIATES 201
-#define IDS_CREDITS_TESTASSOCIATES 203
-#define IDS_CREDITS_TESTLEAD 202
-#define IDS_CREDITS_TESTLEAD 204
-#define IDS_CREDITS_TESTMANAGER 203
-#define IDS_CREDITS_TESTMANAGER 205
-#define IDS_CREDITS_TOBIAS_MOLLSTAM 204
-#define IDS_CREDITS_TOBIAS_MOLLSTAM 206
-#define IDS_CREDITS_USERRESEARCH 205
-#define IDS_CREDITS_USERRESEARCH 207
-#define IDS_CREDITS_WCW 206
-#define IDS_CREDITS_WCW 208
-#define IDS_CREDITS_XBLADIRECTOR 207
-#define IDS_CREDITS_XBLADIRECTOR 209
-#define IDS_CREEPER 208
-#define IDS_CREEPER 210
-#define IDS_CURRENT_LAYOUT 209
-#define IDS_CURRENT_LAYOUT 211
-#define IDS_DAYLIGHT_CYCLE 210
-#define IDS_DEATH_ARROW 211
-#define IDS_DEATH_ARROW 212
-#define IDS_DEATH_ARROW_ITEM 212
-#define IDS_DEATH_ARROW_ITEM 213
-#define IDS_DEATH_CACTUS 213
-#define IDS_DEATH_CACTUS 214
-#define IDS_DEATH_CACTUS_PLAYER 214
-#define IDS_DEATH_CACTUS_PLAYER 215
-#define IDS_DEATH_DRAGON_BREATH 215
-#define IDS_DEATH_DRAGON_BREATH 216
-#define IDS_DEATH_DROWN 216
-#define IDS_DEATH_DROWN 217
-#define IDS_DEATH_DROWN_PLAYER 217
-#define IDS_DEATH_DROWN_PLAYER 218
-#define IDS_DEATH_EXPLOSION 218
-#define IDS_DEATH_EXPLOSION 219
-#define IDS_DEATH_EXPLOSION_PLAYER 219
-#define IDS_DEATH_EXPLOSION_PLAYER 220
-#define IDS_DEATH_FALL 220
-#define IDS_DEATH_FALL 221
-#define IDS_DEATH_FALLING_ANVIL 221
-#define IDS_DEATH_FALLING_ANVIL 222
-#define IDS_DEATH_FALLING_TILE 222
-#define IDS_DEATH_FALLING_TILE 223
-#define IDS_DEATH_FELL_ACCIDENT_GENERIC 223
-#define IDS_DEATH_FELL_ACCIDENT_GENERIC 224
-#define IDS_DEATH_FELL_ACCIDENT_LADDER 224
-#define IDS_DEATH_FELL_ACCIDENT_LADDER 225
-#define IDS_DEATH_FELL_ACCIDENT_VINES 225
-#define IDS_DEATH_FELL_ACCIDENT_VINES 226
-#define IDS_DEATH_FELL_ACCIDENT_WATER 226
-#define IDS_DEATH_FELL_ACCIDENT_WATER 227
-#define IDS_DEATH_FELL_ASSIST 227
-#define IDS_DEATH_FELL_ASSIST 228
-#define IDS_DEATH_FELL_ASSIST_ITEM 228
-#define IDS_DEATH_FELL_ASSIST_ITEM 229
-#define IDS_DEATH_FELL_FINISH 229
-#define IDS_DEATH_FELL_FINISH 230
-#define IDS_DEATH_FELL_FINISH_ITEM 230
-#define IDS_DEATH_FELL_FINISH_ITEM 231
-#define IDS_DEATH_FELL_KILLER 231
-#define IDS_DEATH_FELL_KILLER 232
-#define IDS_DEATH_FIREBALL 232
-#define IDS_DEATH_FIREBALL 233
-#define IDS_DEATH_FIREBALL_ITEM 233
-#define IDS_DEATH_FIREBALL_ITEM 234
-#define IDS_DEATH_GENERIC 234
-#define IDS_DEATH_GENERIC 235
-#define IDS_DEATH_INDIRECT_MAGIC 235
-#define IDS_DEATH_INDIRECT_MAGIC 236
-#define IDS_DEATH_INDIRECT_MAGIC_ITEM 236
-#define IDS_DEATH_INDIRECT_MAGIC_ITEM 237
-#define IDS_DEATH_INFIRE 237
-#define IDS_DEATH_INFIRE 238
-#define IDS_DEATH_INFIRE_PLAYER 238
-#define IDS_DEATH_INFIRE_PLAYER 239
-#define IDS_DEATH_INWALL 239
-#define IDS_DEATH_INWALL 240
-#define IDS_DEATH_LAVA 240
-#define IDS_DEATH_LAVA 241
-#define IDS_DEATH_LAVA_PLAYER 241
-#define IDS_DEATH_LAVA_PLAYER 242
-#define IDS_DEATH_MAGIC 242
-#define IDS_DEATH_MAGIC 243
-#define IDS_DEATH_MOB 243
-#define IDS_DEATH_MOB 244
-#define IDS_DEATH_ONFIRE 244
-#define IDS_DEATH_ONFIRE 245
-#define IDS_DEATH_ONFIRE_PLAYER 245
-#define IDS_DEATH_ONFIRE_PLAYER 246
-#define IDS_DEATH_OUTOFWORLD 246
-#define IDS_DEATH_OUTOFWORLD 247
-#define IDS_DEATH_PLAYER 247
-#define IDS_DEATH_PLAYER 248
-#define IDS_DEATH_PLAYER_ITEM 248
-#define IDS_DEATH_PLAYER_ITEM 249
-#define IDS_DEATH_STARVE 249
-#define IDS_DEATH_STARVE 250
-#define IDS_DEATH_THORNS 250
-#define IDS_DEATH_THORNS 251
-#define IDS_DEATH_THROWN 251
-#define IDS_DEATH_THROWN 252
-#define IDS_DEATH_THROWN_ITEM 252
-#define IDS_DEATH_THROWN_ITEM 253
-#define IDS_DEATH_WITHER 253
-#define IDS_DEATH_WITHER 254
-#define IDS_DEBUG_SETTINGS 254
-#define IDS_DEBUG_SETTINGS 255
-#define IDS_DEFAULT_SAVENAME 255
-#define IDS_DEFAULT_SAVENAME 256
-#define IDS_DEFAULT_SKINS 256
-#define IDS_DEFAULT_SKINS 257
-#define IDS_DEFAULT_TEXTUREPACK 257
-#define IDS_DEFAULT_TEXTUREPACK 258
-#define IDS_DEFAULT_WORLD_NAME 258
-#define IDS_DEFAULT_WORLD_NAME 259
-#define IDS_DEFAULTS_TEXT 259
-#define IDS_DEFAULTS_TEXT 260
-#define IDS_DEFAULTS_TITLE 260
-#define IDS_DEFAULTS_TITLE 261
-#define IDS_DESC_ACTIVATOR_RAIL 261
-#define IDS_DESC_ANVIL 262
-#define IDS_DESC_APPLE 263
-#define IDS_DESC_ARROW 264
-#define IDS_DESC_BAT 265
-#define IDS_DESC_BEACON 266
-#define IDS_DESC_BED 266
-#define IDS_DESC_BED 267
-#define IDS_DESC_BEDROCK 267
-#define IDS_DESC_BEDROCK 268
-#define IDS_DESC_BEEF_COOKED 268
-#define IDS_DESC_BEEF_COOKED 269
-#define IDS_DESC_BEEF_RAW 269
-#define IDS_DESC_BEEF_RAW 270
-#define IDS_DESC_BLAZE 270
-#define IDS_DESC_BLAZE 271
-#define IDS_DESC_BLAZE_POWDER 271
-#define IDS_DESC_BLAZE_POWDER 272
-#define IDS_DESC_BLAZE_ROD 272
-#define IDS_DESC_BLAZE_ROD 273
-#define IDS_DESC_BLOCK 273
-#define IDS_DESC_BLOCK 274
-#define IDS_DESC_BLOCK_DIAMOND 274
-#define IDS_DESC_BLOCK_DIAMOND 275
-#define IDS_DESC_BLOCK_GOLD 275
-#define IDS_DESC_BLOCK_GOLD 276
-#define IDS_DESC_BLOCK_IRON 276
-#define IDS_DESC_BLOCK_IRON 277
-#define IDS_DESC_BLOCK_LAPIS 277
-#define IDS_DESC_BLOCK_LAPIS 278
-#define IDS_DESC_BOAT 278
-#define IDS_DESC_BOAT 279
-#define IDS_DESC_BONE 279
-#define IDS_DESC_BONE 280
-#define IDS_DESC_BOOK 280
-#define IDS_DESC_BOOK 281
-#define IDS_DESC_BOOKSHELF 281
-#define IDS_DESC_BOOKSHELF 282
-#define IDS_DESC_BOOTS 282
-#define IDS_DESC_BOOTS 283
-#define IDS_DESC_BOOTS_CHAIN 283
-#define IDS_DESC_BOOTS_CHAIN 284
-#define IDS_DESC_BOOTS_DIAMOND 284
-#define IDS_DESC_BOOTS_DIAMOND 285
-#define IDS_DESC_BOOTS_GOLD 285
-#define IDS_DESC_BOOTS_GOLD 286
-#define IDS_DESC_BOOTS_IRON 286
-#define IDS_DESC_BOOTS_IRON 287
-#define IDS_DESC_BOOTS_LEATHER 287
-#define IDS_DESC_BOOTS_LEATHER 288
-#define IDS_DESC_BOW 288
-#define IDS_DESC_BOW 289
-#define IDS_DESC_BOWL 289
-#define IDS_DESC_BOWL 290
-#define IDS_DESC_BREAD 290
-#define IDS_DESC_BREAD 291
-#define IDS_DESC_BREWING_STAND 291
-#define IDS_DESC_BREWING_STAND 292
-#define IDS_DESC_BRICK 292
-#define IDS_DESC_BRICK 293
-#define IDS_DESC_BUCKET 293
-#define IDS_DESC_BUCKET 294
-#define IDS_DESC_BUCKET_LAVA 294
-#define IDS_DESC_BUCKET_LAVA 295
-#define IDS_DESC_BUCKET_MILK 295
-#define IDS_DESC_BUCKET_MILK 296
-#define IDS_DESC_BUCKET_WATER 296
-#define IDS_DESC_BUCKET_WATER 297
-#define IDS_DESC_BUTTON 297
-#define IDS_DESC_BUTTON 298
-#define IDS_DESC_CACTUS 298
-#define IDS_DESC_CACTUS 299
-#define IDS_DESC_CAKE 299
-#define IDS_DESC_CAKE 300
-#define IDS_DESC_CARPET 300
-#define IDS_DESC_CARPET 301
-#define IDS_DESC_CARROT_GOLDEN 301
-#define IDS_DESC_CARROT_GOLDEN 302
-#define IDS_DESC_CARROT_ON_A_STICK 302
-#define IDS_DESC_CARROT_ON_A_STICK 303
-#define IDS_DESC_CARROTS 303
-#define IDS_DESC_CARROTS 304
-#define IDS_DESC_CAULDRON 304
-#define IDS_DESC_CAULDRON 305
-#define IDS_DESC_CAVE_SPIDER 305
-#define IDS_DESC_CAVE_SPIDER 306
-#define IDS_DESC_CHEST 306
-#define IDS_DESC_CHEST 307
-#define IDS_DESC_CHEST_TRAP 308
-#define IDS_DESC_CHESTPLATE 307
-#define IDS_DESC_CHESTPLATE 309
-#define IDS_DESC_CHESTPLATE_CHAIN 308
-#define IDS_DESC_CHESTPLATE_CHAIN 310
-#define IDS_DESC_CHESTPLATE_DIAMOND 309
-#define IDS_DESC_CHESTPLATE_DIAMOND 311
-#define IDS_DESC_CHESTPLATE_GOLD 310
-#define IDS_DESC_CHESTPLATE_GOLD 312
-#define IDS_DESC_CHESTPLATE_IRON 311
-#define IDS_DESC_CHESTPLATE_IRON 313
-#define IDS_DESC_CHESTPLATE_LEATHER 312
-#define IDS_DESC_CHESTPLATE_LEATHER 314
-#define IDS_DESC_CHICKEN 313
-#define IDS_DESC_CHICKEN 315
-#define IDS_DESC_CHICKEN_COOKED 314
-#define IDS_DESC_CHICKEN_COOKED 316
-#define IDS_DESC_CHICKEN_RAW 315
-#define IDS_DESC_CHICKEN_RAW 317
-#define IDS_DESC_CLAY 316
-#define IDS_DESC_CLAY 318
-#define IDS_DESC_CLAY_TILE 317
-#define IDS_DESC_CLAY_TILE 319
-#define IDS_DESC_CLOCK 318
-#define IDS_DESC_CLOCK 320
-#define IDS_DESC_COAL 319
-#define IDS_DESC_COAL 321
-#define IDS_DESC_COAL_BLOCK 322
-#define IDS_DESC_COBBLESTONE_WALL 320
-#define IDS_DESC_COBBLESTONE_WALL 323
-#define IDS_DESC_COCOA 321
-#define IDS_DESC_COCOA 324
-#define IDS_DESC_COMMAND_BLOCK 325
-#define IDS_DESC_COMPARATOR 322
-#define IDS_DESC_COMPARATOR 326
-#define IDS_DESC_COMPASS 323
-#define IDS_DESC_COMPASS 327
-#define IDS_DESC_COOKIE 324
-#define IDS_DESC_COOKIE 328
-#define IDS_DESC_COW 325
-#define IDS_DESC_COW 329
-#define IDS_DESC_CRAFTINGTABLE 326
-#define IDS_DESC_CRAFTINGTABLE 330
-#define IDS_DESC_CREEPER 327
-#define IDS_DESC_CREEPER 331
-#define IDS_DESC_CROPS 328
-#define IDS_DESC_CROPS 332
-#define IDS_DESC_DAYLIGHT_DETECTOR 329
-#define IDS_DESC_DAYLIGHT_DETECTOR 333
-#define IDS_DESC_DEAD_BUSH 330
-#define IDS_DESC_DEAD_BUSH 334
-#define IDS_DESC_DETECTORRAIL 331
-#define IDS_DESC_DETECTORRAIL 335
-#define IDS_DESC_DIAMOND_HORSE_ARMOR 332
-#define IDS_DESC_DIAMOND_HORSE_ARMOR 336
-#define IDS_DESC_DIAMONDS 333
-#define IDS_DESC_DIAMONDS 337
-#define IDS_DESC_DIRT 334
-#define IDS_DESC_DIRT 338
-#define IDS_DESC_DISPENSER 335
-#define IDS_DESC_DISPENSER 339
-#define IDS_DESC_DONKEY 340
-#define IDS_DESC_DOOR_IRON 336
-#define IDS_DESC_DOOR_IRON 341
-#define IDS_DESC_DOOR_WOOD 337
-#define IDS_DESC_DOOR_WOOD 342
-#define IDS_DESC_DRAGONEGG 338
-#define IDS_DESC_DRAGONEGG 343
-#define IDS_DESC_DROPPER 344
-#define IDS_DESC_DYE_BLACK 339
-#define IDS_DESC_DYE_BLACK 345
-#define IDS_DESC_DYE_BLUE 340
-#define IDS_DESC_DYE_BLUE 346
-#define IDS_DESC_DYE_BROWN 341
-#define IDS_DESC_DYE_BROWN 347
-#define IDS_DESC_DYE_CYAN 342
-#define IDS_DESC_DYE_CYAN 348
-#define IDS_DESC_DYE_GRAY 343
-#define IDS_DESC_DYE_GRAY 349
-#define IDS_DESC_DYE_GREEN 344
-#define IDS_DESC_DYE_GREEN 350
-#define IDS_DESC_DYE_LIGHTBLUE 345
-#define IDS_DESC_DYE_LIGHTBLUE 351
-#define IDS_DESC_DYE_LIGHTGRAY 346
-#define IDS_DESC_DYE_LIGHTGRAY 352
-#define IDS_DESC_DYE_LIME 347
-#define IDS_DESC_DYE_LIME 353
-#define IDS_DESC_DYE_MAGENTA 348
-#define IDS_DESC_DYE_MAGENTA 354
-#define IDS_DESC_DYE_ORANGE 349
-#define IDS_DESC_DYE_ORANGE 355
-#define IDS_DESC_DYE_PINK 350
-#define IDS_DESC_DYE_PINK 356
-#define IDS_DESC_DYE_PURPLE 351
-#define IDS_DESC_DYE_PURPLE 357
-#define IDS_DESC_DYE_RED 352
-#define IDS_DESC_DYE_RED 358
-#define IDS_DESC_DYE_SILVER 353
-#define IDS_DESC_DYE_SILVER 359
-#define IDS_DESC_DYE_WHITE 354
-#define IDS_DESC_DYE_WHITE 360
-#define IDS_DESC_DYE_YELLOW 355
-#define IDS_DESC_DYE_YELLOW 361
-#define IDS_DESC_EGG 356
-#define IDS_DESC_EGG 362
-#define IDS_DESC_EMERALD 357
-#define IDS_DESC_EMERALD 363
-#define IDS_DESC_EMERALDBLOCK 358
-#define IDS_DESC_EMERALDBLOCK 364
-#define IDS_DESC_EMERALDORE 359
-#define IDS_DESC_EMERALDORE 365
-#define IDS_DESC_ENCHANTED_BOOK 360
-#define IDS_DESC_ENCHANTED_BOOK 366
-#define IDS_DESC_ENCHANTED_GOLDENAPPLE 361
-#define IDS_DESC_ENCHANTED_GOLDENAPPLE 367
-#define IDS_DESC_ENCHANTMENTTABLE 362
-#define IDS_DESC_ENCHANTMENTTABLE 368
-#define IDS_DESC_END_PORTAL 363
-#define IDS_DESC_END_PORTAL 369
-#define IDS_DESC_ENDER_PEARL 364
-#define IDS_DESC_ENDER_PEARL 370
-#define IDS_DESC_ENDERCHEST 365
-#define IDS_DESC_ENDERCHEST 371
-#define IDS_DESC_ENDERDRAGON 366
-#define IDS_DESC_ENDERDRAGON 372
-#define IDS_DESC_ENDERMAN 367
-#define IDS_DESC_ENDERMAN 373
-#define IDS_DESC_ENDPORTALFRAME 368
-#define IDS_DESC_ENDPORTALFRAME 374
-#define IDS_DESC_EXP_BOTTLE 369
-#define IDS_DESC_EXP_BOTTLE 375
-#define IDS_DESC_EYE_OF_ENDER 370
-#define IDS_DESC_EYE_OF_ENDER 376
-#define IDS_DESC_FARMLAND 371
-#define IDS_DESC_FARMLAND 377
-#define IDS_DESC_FEATHER 372
-#define IDS_DESC_FEATHER 378
-#define IDS_DESC_FENCE 373
-#define IDS_DESC_FENCE 379
-#define IDS_DESC_FENCE_GATE 374
-#define IDS_DESC_FENCE_GATE 380
-#define IDS_DESC_FERMENTED_SPIDER_EYE 375
-#define IDS_DESC_FERMENTED_SPIDER_EYE 381
-#define IDS_DESC_FIREBALL 376
-#define IDS_DESC_FIREBALL 382
-#define IDS_DESC_FIREWORKS 377
-#define IDS_DESC_FIREWORKS 383
-#define IDS_DESC_FIREWORKS_CHARGE 378
-#define IDS_DESC_FIREWORKS_CHARGE 384
-#define IDS_DESC_FISH_COOKED 379
-#define IDS_DESC_FISH_COOKED 385
-#define IDS_DESC_FISH_RAW 380
-#define IDS_DESC_FISH_RAW 386
-#define IDS_DESC_FISHINGROD 381
-#define IDS_DESC_FISHINGROD 387
-#define IDS_DESC_FLINT 382
-#define IDS_DESC_FLINT 388
-#define IDS_DESC_FLINTANDSTEEL 383
-#define IDS_DESC_FLINTANDSTEEL 389
-#define IDS_DESC_FLOWER 384
-#define IDS_DESC_FLOWER 390
-#define IDS_DESC_FLOWERPOT 385
-#define IDS_DESC_FLOWERPOT 391
-#define IDS_DESC_FURNACE 386
-#define IDS_DESC_FURNACE 392
-#define IDS_DESC_GHAST 387
-#define IDS_DESC_GHAST 393
-#define IDS_DESC_GHAST_TEAR 388
-#define IDS_DESC_GHAST_TEAR 394
-#define IDS_DESC_GLASS 389
-#define IDS_DESC_GLASS 395
-#define IDS_DESC_GLASS_BOTTLE 390
-#define IDS_DESC_GLASS_BOTTLE 396
-#define IDS_DESC_GLOWSTONE 391
-#define IDS_DESC_GLOWSTONE 397
-#define IDS_DESC_GOLD_HORSE_ARMOR 392
-#define IDS_DESC_GOLD_HORSE_ARMOR 398
-#define IDS_DESC_GOLD_NUGGET 393
-#define IDS_DESC_GOLD_NUGGET 399
-#define IDS_DESC_GOLDENAPPLE 394
-#define IDS_DESC_GOLDENAPPLE 400
-#define IDS_DESC_GRASS 395
-#define IDS_DESC_GRASS 401
-#define IDS_DESC_GRAVEL 396
-#define IDS_DESC_GRAVEL 402
-#define IDS_DESC_HALFSLAB 397
-#define IDS_DESC_HALFSLAB 403
-#define IDS_DESC_HARDENED_CLAY 404
-#define IDS_DESC_HATCHET 398
-#define IDS_DESC_HATCHET 405
-#define IDS_DESC_HAY 406
-#define IDS_DESC_HELL_ROCK 399
-#define IDS_DESC_HELL_ROCK 407
-#define IDS_DESC_HELL_SAND 400
-#define IDS_DESC_HELL_SAND 408
-#define IDS_DESC_HELMET 401
-#define IDS_DESC_HELMET 409
-#define IDS_DESC_HELMET_CHAIN 402
-#define IDS_DESC_HELMET_CHAIN 410
-#define IDS_DESC_HELMET_DIAMOND 403
-#define IDS_DESC_HELMET_DIAMOND 411
-#define IDS_DESC_HELMET_GOLD 404
-#define IDS_DESC_HELMET_GOLD 412
-#define IDS_DESC_HELMET_IRON 405
-#define IDS_DESC_HELMET_IRON 413
-#define IDS_DESC_HELMET_LEATHER 406
-#define IDS_DESC_HELMET_LEATHER 414
-#define IDS_DESC_HOE 407
-#define IDS_DESC_HOE 415
-#define IDS_DESC_HOPPER 416
-#define IDS_DESC_HORSE 408
-#define IDS_DESC_HORSE 417
-#define IDS_DESC_ICE 409
-#define IDS_DESC_ICE 418
-#define IDS_DESC_INGOT 410
-#define IDS_DESC_INGOT 419
-#define IDS_DESC_IRON_FENCE 411
-#define IDS_DESC_IRON_FENCE 420
-#define IDS_DESC_IRON_HORSE_ARMOR 412
-#define IDS_DESC_IRON_HORSE_ARMOR 421
-#define IDS_DESC_IRONGOLEM 413
-#define IDS_DESC_IRONGOLEM 422
-#define IDS_DESC_ITEM_NETHERBRICK 414
-#define IDS_DESC_ITEM_NETHERBRICK 423
-#define IDS_DESC_ITEMFRAME 415
-#define IDS_DESC_ITEMFRAME 424
-#define IDS_DESC_JACKOLANTERN 416
-#define IDS_DESC_JACKOLANTERN 425
-#define IDS_DESC_JUKEBOX 417
-#define IDS_DESC_JUKEBOX 426
-#define IDS_DESC_LADDER 418
-#define IDS_DESC_LADDER 427
-#define IDS_DESC_LAVA 419
-#define IDS_DESC_LAVA 428
-#define IDS_DESC_LAVA_SLIME 420
-#define IDS_DESC_LAVA_SLIME 429
-#define IDS_DESC_LEAD 421
-#define IDS_DESC_LEAD 430
-#define IDS_DESC_LEATHER 422
-#define IDS_DESC_LEATHER 431
-#define IDS_DESC_LEAVES 423
-#define IDS_DESC_LEAVES 432
-#define IDS_DESC_LEGGINGS 424
-#define IDS_DESC_LEGGINGS 433
-#define IDS_DESC_LEGGINGS_CHAIN 425
-#define IDS_DESC_LEGGINGS_CHAIN 434
-#define IDS_DESC_LEGGINGS_DIAMOND 426
-#define IDS_DESC_LEGGINGS_DIAMOND 435
-#define IDS_DESC_LEGGINGS_GOLD 427
-#define IDS_DESC_LEGGINGS_GOLD 436
-#define IDS_DESC_LEGGINGS_IRON 428
-#define IDS_DESC_LEGGINGS_IRON 437
-#define IDS_DESC_LEGGINGS_LEATHER 429
-#define IDS_DESC_LEGGINGS_LEATHER 438
-#define IDS_DESC_LEVER 430
-#define IDS_DESC_LEVER 439
-#define IDS_DESC_LOG 431
-#define IDS_DESC_LOG 440
-#define IDS_DESC_MAGMA_CREAM 432
-#define IDS_DESC_MAGMA_CREAM 441
-#define IDS_DESC_MAP 433
-#define IDS_DESC_MAP 442
-#define IDS_DESC_MAP_EMPTY 434
-#define IDS_DESC_MAP_EMPTY 443
-#define IDS_DESC_MELON_BLOCK 435
-#define IDS_DESC_MELON_BLOCK 444
-#define IDS_DESC_MELON_SEEDS 436
-#define IDS_DESC_MELON_SEEDS 445
-#define IDS_DESC_MELON_SLICE 437
-#define IDS_DESC_MELON_SLICE 446
-#define IDS_DESC_MINECART 438
-#define IDS_DESC_MINECART 447
-#define IDS_DESC_MINECART_HOPPER 441
-#define IDS_DESC_MINECART_HOPPER 448
-#define IDS_DESC_MINECART_TNT 442
-#define IDS_DESC_MINECART_TNT 449
-#define IDS_DESC_MINECARTWITHCHEST 439
-#define IDS_DESC_MINECARTWITHCHEST 443
-#define IDS_DESC_MINECARTWITHCHEST 450
-#define IDS_DESC_MINECARTWITHFURNACE 440
-#define IDS_DESC_MINECARTWITHFURNACE 444
-#define IDS_DESC_MINECARTWITHFURNACE 451
-#define IDS_DESC_MOB_SPAWNER 445
-#define IDS_DESC_MOB_SPAWNER 452
-#define IDS_DESC_MONSTER_SPAWNER 446
-#define IDS_DESC_MONSTER_SPAWNER 453
-#define IDS_DESC_MOSS_STONE 447
-#define IDS_DESC_MOSS_STONE 454
-#define IDS_DESC_MULE 455
-#define IDS_DESC_MUSHROOM 448
-#define IDS_DESC_MUSHROOM 456
-#define IDS_DESC_MUSHROOM_COW 449
-#define IDS_DESC_MUSHROOM_COW 457
-#define IDS_DESC_MUSHROOMSTEW 450
-#define IDS_DESC_MUSHROOMSTEW 458
-#define IDS_DESC_MYCEL 451
-#define IDS_DESC_MYCEL 459
-#define IDS_DESC_NAME_TAG 452
-#define IDS_DESC_NAME_TAG 460
-#define IDS_DESC_NETHER_QUARTZ 453
-#define IDS_DESC_NETHER_QUARTZ 461
-#define IDS_DESC_NETHER_QUARTZ_ORE 454
-#define IDS_DESC_NETHER_QUARTZ_ORE 462
-#define IDS_DESC_NETHER_STALK_SEEDS 455
-#define IDS_DESC_NETHER_STALK_SEEDS 463
-#define IDS_DESC_NETHER_STAR 456
-#define IDS_DESC_NETHER_STAR 464
-#define IDS_DESC_NETHERBRICK 457
-#define IDS_DESC_NETHERBRICK 465
-#define IDS_DESC_NETHERFENCE 458
-#define IDS_DESC_NETHERFENCE 466
-#define IDS_DESC_NETHERSTALK 459
-#define IDS_DESC_NETHERSTALK 467
-#define IDS_DESC_NOTEBLOCK 460
-#define IDS_DESC_NOTEBLOCK 468
-#define IDS_DESC_OBSIDIAN 461
-#define IDS_DESC_OBSIDIAN 469
-#define IDS_DESC_ORE_COAL 462
-#define IDS_DESC_ORE_COAL 470
-#define IDS_DESC_ORE_DIAMOND 463
-#define IDS_DESC_ORE_DIAMOND 471
-#define IDS_DESC_ORE_GOLD 464
-#define IDS_DESC_ORE_GOLD 472
-#define IDS_DESC_ORE_IRON 465
-#define IDS_DESC_ORE_IRON 473
-#define IDS_DESC_ORE_LAPIS 466
-#define IDS_DESC_ORE_LAPIS 474
-#define IDS_DESC_ORE_REDSTONE 467
-#define IDS_DESC_ORE_REDSTONE 475
-#define IDS_DESC_OZELOT 468
-#define IDS_DESC_OZELOT 476
-#define IDS_DESC_PAPER 469
-#define IDS_DESC_PAPER 477
-#define IDS_DESC_PICKAXE 470
-#define IDS_DESC_PICKAXE 478
-#define IDS_DESC_PICTURE 471
-#define IDS_DESC_PICTURE 479
-#define IDS_DESC_PIG 472
-#define IDS_DESC_PIG 480
-#define IDS_DESC_PIGZOMBIE 473
-#define IDS_DESC_PIGZOMBIE 481
-#define IDS_DESC_PISTON 474
-#define IDS_DESC_PISTON 482
-#define IDS_DESC_PORKCHOP_COOKED 475
-#define IDS_DESC_PORKCHOP_COOKED 483
-#define IDS_DESC_PORKCHOP_RAW 476
-#define IDS_DESC_PORKCHOP_RAW 484
-#define IDS_DESC_PORTAL 477
-#define IDS_DESC_PORTAL 485
-#define IDS_DESC_POTATO 478
-#define IDS_DESC_POTATO 486
-#define IDS_DESC_POTATO_BAKED 479
-#define IDS_DESC_POTATO_BAKED 487
-#define IDS_DESC_POTATO_POISONOUS 480
-#define IDS_DESC_POTATO_POISONOUS 488
-#define IDS_DESC_POTION 481
-#define IDS_DESC_POTION 489
-#define IDS_DESC_POWEREDRAIL 482
-#define IDS_DESC_POWEREDRAIL 490
-#define IDS_DESC_PRESSUREPLATE 483
-#define IDS_DESC_PRESSUREPLATE 491
-#define IDS_DESC_PUMPKIN 484
-#define IDS_DESC_PUMPKIN 492
-#define IDS_DESC_PUMPKIN_PIE 485
-#define IDS_DESC_PUMPKIN_PIE 493
-#define IDS_DESC_PUMPKIN_SEEDS 486
-#define IDS_DESC_PUMPKIN_SEEDS 494
-#define IDS_DESC_QUARTZ_BLOCK 487
-#define IDS_DESC_QUARTZ_BLOCK 495
-#define IDS_DESC_RAIL 488
-#define IDS_DESC_RAIL 496
-#define IDS_DESC_RECORD 489
-#define IDS_DESC_RECORD 497
-#define IDS_DESC_REDSTONE_BLOCK 498
-#define IDS_DESC_REDSTONE_DUST 490
-#define IDS_DESC_REDSTONE_DUST 499
-#define IDS_DESC_REDSTONE_LIGHT 491
-#define IDS_DESC_REDSTONE_LIGHT 500
-#define IDS_DESC_REDSTONEREPEATER 492
-#define IDS_DESC_REDSTONEREPEATER 501
-#define IDS_DESC_REDSTONETORCH 493
-#define IDS_DESC_REDSTONETORCH 502
-#define IDS_DESC_REEDS 494
-#define IDS_DESC_REEDS 503
-#define IDS_DESC_ROTTEN_FLESH 495
-#define IDS_DESC_ROTTEN_FLESH 504
-#define IDS_DESC_SADDLE 496
-#define IDS_DESC_SADDLE 505
-#define IDS_DESC_SAND 497
-#define IDS_DESC_SAND 506
-#define IDS_DESC_SANDSTONE 498
-#define IDS_DESC_SANDSTONE 507
-#define IDS_DESC_SAPLING 499
-#define IDS_DESC_SAPLING 508
-#define IDS_DESC_SHEARS 500
-#define IDS_DESC_SHEARS 509
-#define IDS_DESC_SHEEP 501
-#define IDS_DESC_SHEEP 510
-#define IDS_DESC_SHOVEL 502
-#define IDS_DESC_SHOVEL 511
-#define IDS_DESC_SIGN 503
-#define IDS_DESC_SIGN 512
-#define IDS_DESC_SILVERFISH 504
-#define IDS_DESC_SILVERFISH 513
-#define IDS_DESC_SKELETON 505
-#define IDS_DESC_SKELETON 514
-#define IDS_DESC_SKULL 506
-#define IDS_DESC_SKULL 515
-#define IDS_DESC_SLAB 507
-#define IDS_DESC_SLAB 516
-#define IDS_DESC_SLIME 508
-#define IDS_DESC_SLIME 517
-#define IDS_DESC_SLIMEBALL 509
-#define IDS_DESC_SLIMEBALL 518
-#define IDS_DESC_SNOW 510
-#define IDS_DESC_SNOW 519
-#define IDS_DESC_SNOWBALL 511
-#define IDS_DESC_SNOWBALL 520
-#define IDS_DESC_SNOWMAN 512
-#define IDS_DESC_SNOWMAN 521
-#define IDS_DESC_SPECKLED_MELON 513
-#define IDS_DESC_SPECKLED_MELON 522
-#define IDS_DESC_SPIDER 514
-#define IDS_DESC_SPIDER 523
-#define IDS_DESC_SPIDER_EYE 515
-#define IDS_DESC_SPIDER_EYE 524
-#define IDS_DESC_SPONGE 516
-#define IDS_DESC_SPONGE 525
-#define IDS_DESC_SQUID 517
-#define IDS_DESC_SQUID 526
-#define IDS_DESC_STAINED_CLAY 527
-#define IDS_DESC_STAINED_GLASS 528
-#define IDS_DESC_STAINED_GLASS_PANE 529
-#define IDS_DESC_STAIRS 518
-#define IDS_DESC_STAIRS 530
-#define IDS_DESC_STICK 519
-#define IDS_DESC_STICK 531
-#define IDS_DESC_STICKY_PISTON 520
-#define IDS_DESC_STICKY_PISTON 532
-#define IDS_DESC_STONE 521
-#define IDS_DESC_STONE 533
-#define IDS_DESC_STONE_BRICK 522
-#define IDS_DESC_STONE_BRICK 534
-#define IDS_DESC_STONE_BRICK_SMOOTH 523
-#define IDS_DESC_STONE_BRICK_SMOOTH 535
-#define IDS_DESC_STONE_SILVERFISH 524
-#define IDS_DESC_STONE_SILVERFISH 536
-#define IDS_DESC_STONESLAB 525
-#define IDS_DESC_STONESLAB 537
-#define IDS_DESC_STRING 526
-#define IDS_DESC_STRING 538
-#define IDS_DESC_STRUCTBLOCK 527
-#define IDS_DESC_STRUCTBLOCK 539
-#define IDS_DESC_SUGAR 528
-#define IDS_DESC_SUGAR 540
-#define IDS_DESC_SULPHUR 529
-#define IDS_DESC_SULPHUR 541
-#define IDS_DESC_SWORD 530
-#define IDS_DESC_SWORD 542
-#define IDS_DESC_TALL_GRASS 531
-#define IDS_DESC_TALL_GRASS 543
-#define IDS_DESC_THIN_GLASS 532
-#define IDS_DESC_THIN_GLASS 544
-#define IDS_DESC_TNT 533
-#define IDS_DESC_TNT 545
-#define IDS_DESC_TOP_SNOW 534
-#define IDS_DESC_TOP_SNOW 546
-#define IDS_DESC_TORCH 535
-#define IDS_DESC_TORCH 547
-#define IDS_DESC_TRAPDOOR 536
-#define IDS_DESC_TRAPDOOR 548
-#define IDS_DESC_TRIPWIRE 537
-#define IDS_DESC_TRIPWIRE 549
-#define IDS_DESC_TRIPWIRE_SOURCE 538
-#define IDS_DESC_TRIPWIRE_SOURCE 550
-#define IDS_DESC_VILLAGER 539
-#define IDS_DESC_VILLAGER 551
-#define IDS_DESC_VINE 540
-#define IDS_DESC_VINE 552
-#define IDS_DESC_WATER 541
-#define IDS_DESC_WATER 553
-#define IDS_DESC_WATERLILY 542
-#define IDS_DESC_WATERLILY 554
-#define IDS_DESC_WEB 543
-#define IDS_DESC_WEB 555
-#define IDS_DESC_WEIGHTED_PLATE_HEAVY 556
-#define IDS_DESC_WEIGHTED_PLATE_LIGHT 557
-#define IDS_DESC_WHEAT 544
-#define IDS_DESC_WHEAT 558
-#define IDS_DESC_WHEAT_SEEDS 545
-#define IDS_DESC_WHEAT_SEEDS 559
-#define IDS_DESC_WHITESTONE 546
-#define IDS_DESC_WHITESTONE 560
-#define IDS_DESC_WITCH 547
-#define IDS_DESC_WITCH 561
-#define IDS_DESC_WITHER 548
-#define IDS_DESC_WITHER 562
-#define IDS_DESC_WOLF 549
-#define IDS_DESC_WOLF 563
-#define IDS_DESC_WOODENPLANKS 550
-#define IDS_DESC_WOODENPLANKS 564
-#define IDS_DESC_WOODSLAB 551
-#define IDS_DESC_WOODSLAB 565
-#define IDS_DESC_WOOL 552
-#define IDS_DESC_WOOL 566
-#define IDS_DESC_WOOLSTRING 553
-#define IDS_DESC_WOOLSTRING 567
-#define IDS_DESC_YELLOW_DUST 554
-#define IDS_DESC_YELLOW_DUST 568
-#define IDS_DESC_ZOMBIE 555
-#define IDS_DESC_ZOMBIE 569
-#define IDS_DEVICEGONE_TITLE 556
-#define IDS_DEVICEGONE_TITLE 570
-#define IDS_DIFFICULTY_EASY 557
-#define IDS_DIFFICULTY_EASY 571
-#define IDS_DIFFICULTY_HARD 558
-#define IDS_DIFFICULTY_HARD 572
-#define IDS_DIFFICULTY_NORMAL 559
-#define IDS_DIFFICULTY_NORMAL 573
-#define IDS_DIFFICULTY_PEACEFUL 560
-#define IDS_DIFFICULTY_PEACEFUL 574
-#define IDS_DIFFICULTY_TITLE_EASY 561
-#define IDS_DIFFICULTY_TITLE_EASY 575
-#define IDS_DIFFICULTY_TITLE_HARD 562
-#define IDS_DIFFICULTY_TITLE_HARD 576
-#define IDS_DIFFICULTY_TITLE_NORMAL 563
-#define IDS_DIFFICULTY_TITLE_NORMAL 577
-#define IDS_DIFFICULTY_TITLE_PEACEFUL 564
-#define IDS_DIFFICULTY_TITLE_PEACEFUL 578
-#define IDS_DISABLE_AUTOSAVE 565
-#define IDS_DISABLE_EXHAUSTION 566
-#define IDS_DISABLE_EXHAUSTION 579
-#define IDS_DISABLE_SAVING 567
-#define IDS_DISCONNECTED 568
-#define IDS_DISCONNECTED 580
-#define IDS_DISCONNECTED_BANNED 569
-#define IDS_DISCONNECTED_BANNED 581
-#define IDS_DISCONNECTED_CLIENT_OLD 570
-#define IDS_DISCONNECTED_CLIENT_OLD 582
-#define IDS_DISCONNECTED_FLYING 571
-#define IDS_DISCONNECTED_FLYING 583
-#define IDS_DISCONNECTED_KICKED 572
-#define IDS_DISCONNECTED_KICKED 584
-#define IDS_DISCONNECTED_LOGIN_TOO_LONG 573
-#define IDS_DISCONNECTED_LOGIN_TOO_LONG 585
-#define IDS_DISCONNECTED_NAT_TYPE_MISMATCH 574
-#define IDS_DISCONNECTED_NAT_TYPE_MISMATCH 586
-#define IDS_DISCONNECTED_NO_FRIENDS_IN_GAME 575
-#define IDS_DISCONNECTED_NO_FRIENDS_IN_GAME 587
-#define IDS_DISCONNECTED_SERVER_FULL 576
-#define IDS_DISCONNECTED_SERVER_FULL 588
-#define IDS_DISCONNECTED_SERVER_OLD 577
-#define IDS_DISCONNECTED_SERVER_OLD 589
-#define IDS_DISCONNECTED_SERVER_QUIT 578
-#define IDS_DISCONNECTED_SERVER_QUIT 590
-#define IDS_DISPENSER 579
-#define IDS_DISPENSER 591
-#define IDS_DLC_COST 580
-#define IDS_DLC_COST 592
-#define IDS_DLC_MENU_AVATARITEMS 581
-#define IDS_DLC_MENU_AVATARITEMS 593
-#define IDS_DLC_MENU_GAMERPICS 582
-#define IDS_DLC_MENU_GAMERPICS 594
-#define IDS_DLC_MENU_MASHUPPACKS 583
-#define IDS_DLC_MENU_MASHUPPACKS 595
-#define IDS_DLC_MENU_SKINPACKS 584
-#define IDS_DLC_MENU_SKINPACKS 596
-#define IDS_DLC_MENU_TEXTUREPACKS 585
-#define IDS_DLC_MENU_TEXTUREPACKS 597
-#define IDS_DLC_MENU_THEMES 586
-#define IDS_DLC_MENU_THEMES 598
-#define IDS_DLC_PRICE_FREE 587
-#define IDS_DLC_PRICE_FREE 599
-#define IDS_DLC_TEXTUREPACK_GET_FULL_TITLE 588
-#define IDS_DLC_TEXTUREPACK_GET_FULL_TITLE 600
-#define IDS_DLC_TEXTUREPACK_GET_TRIAL_TITLE 589
-#define IDS_DLC_TEXTUREPACK_GET_TRIAL_TITLE 601
-#define IDS_DLC_TEXTUREPACK_NOT_PRESENT 590
-#define IDS_DLC_TEXTUREPACK_NOT_PRESENT 602
-#define IDS_DLC_TEXTUREPACK_NOT_PRESENT_TITLE 591
-#define IDS_DLC_TEXTUREPACK_NOT_PRESENT_TITLE 603
-#define IDS_DLC_TEXTUREPACK_UNLOCK_TITLE 592
-#define IDS_DLC_TEXTUREPACK_UNLOCK_TITLE 604
-#define IDS_DONE 593
-#define IDS_DONE 605
-#define IDS_DONKEY 594
-#define IDS_DONKEY 606
-#define IDS_DONT_RESET_NETHER 595
-#define IDS_DONT_RESET_NETHER 607
-#define IDS_DOWNLOADABLE_CONTENT_OFFERS 596
-#define IDS_DOWNLOADABLE_CONTENT_OFFERS 608
-#define IDS_DOWNLOADABLECONTENT 597
-#define IDS_DOWNLOADABLECONTENT 609
-#define IDS_DYNAFONT 598
-#define IDS_DYNAFONT 610
-#define IDS_EDIT_SIGN_MESSAGE 599
-#define IDS_EDIT_SIGN_MESSAGE 611
-#define IDS_ENABLE_TELEPORT 600
-#define IDS_ENABLE_TELEPORT 612
-#define IDS_ENCHANT 601
-#define IDS_ENCHANT 613
-#define IDS_ENCHANTMENT_ARROW_DAMAGE 602
-#define IDS_ENCHANTMENT_ARROW_DAMAGE 614
-#define IDS_ENCHANTMENT_ARROW_FIRE 603
-#define IDS_ENCHANTMENT_ARROW_FIRE 615
-#define IDS_ENCHANTMENT_ARROW_INFINITE 604
-#define IDS_ENCHANTMENT_ARROW_INFINITE 616
-#define IDS_ENCHANTMENT_ARROW_KNOCKBACK 605
-#define IDS_ENCHANTMENT_ARROW_KNOCKBACK 617
-#define IDS_ENCHANTMENT_DAMAGE_ALL 606
-#define IDS_ENCHANTMENT_DAMAGE_ALL 618
-#define IDS_ENCHANTMENT_DAMAGE_ARTHROPODS 607
-#define IDS_ENCHANTMENT_DAMAGE_ARTHROPODS 619
-#define IDS_ENCHANTMENT_DAMAGE_UNDEAD 608
-#define IDS_ENCHANTMENT_DAMAGE_UNDEAD 620
-#define IDS_ENCHANTMENT_DIGGING 609
-#define IDS_ENCHANTMENT_DIGGING 621
-#define IDS_ENCHANTMENT_DURABILITY 610
-#define IDS_ENCHANTMENT_DURABILITY 622
-#define IDS_ENCHANTMENT_FIRE 611
-#define IDS_ENCHANTMENT_FIRE 623
-#define IDS_ENCHANTMENT_KNOCKBACK 612
-#define IDS_ENCHANTMENT_KNOCKBACK 624
-#define IDS_ENCHANTMENT_LEVEL_1 613
-#define IDS_ENCHANTMENT_LEVEL_1 625
-#define IDS_ENCHANTMENT_LEVEL_10 614
-#define IDS_ENCHANTMENT_LEVEL_10 626
-#define IDS_ENCHANTMENT_LEVEL_2 615
-#define IDS_ENCHANTMENT_LEVEL_2 627
-#define IDS_ENCHANTMENT_LEVEL_3 616
-#define IDS_ENCHANTMENT_LEVEL_3 628
-#define IDS_ENCHANTMENT_LEVEL_4 617
-#define IDS_ENCHANTMENT_LEVEL_4 629
-#define IDS_ENCHANTMENT_LEVEL_5 618
-#define IDS_ENCHANTMENT_LEVEL_5 630
-#define IDS_ENCHANTMENT_LEVEL_6 619
-#define IDS_ENCHANTMENT_LEVEL_6 631
-#define IDS_ENCHANTMENT_LEVEL_7 620
-#define IDS_ENCHANTMENT_LEVEL_7 632
-#define IDS_ENCHANTMENT_LEVEL_8 621
-#define IDS_ENCHANTMENT_LEVEL_8 633
-#define IDS_ENCHANTMENT_LEVEL_9 622
-#define IDS_ENCHANTMENT_LEVEL_9 634
-#define IDS_ENCHANTMENT_LOOT_BONUS 623
-#define IDS_ENCHANTMENT_LOOT_BONUS 635
-#define IDS_ENCHANTMENT_LOOT_BONUS_DIGGER 624
-#define IDS_ENCHANTMENT_LOOT_BONUS_DIGGER 636
-#define IDS_ENCHANTMENT_OXYGEN 625
-#define IDS_ENCHANTMENT_OXYGEN 637
-#define IDS_ENCHANTMENT_PROTECT_ALL 626
-#define IDS_ENCHANTMENT_PROTECT_ALL 638
-#define IDS_ENCHANTMENT_PROTECT_EXPLOSION 627
-#define IDS_ENCHANTMENT_PROTECT_EXPLOSION 639
-#define IDS_ENCHANTMENT_PROTECT_FALL 628
-#define IDS_ENCHANTMENT_PROTECT_FALL 640
-#define IDS_ENCHANTMENT_PROTECT_FIRE 629
-#define IDS_ENCHANTMENT_PROTECT_FIRE 641
-#define IDS_ENCHANTMENT_PROTECT_PROJECTILE 630
-#define IDS_ENCHANTMENT_PROTECT_PROJECTILE 642
-#define IDS_ENCHANTMENT_THORNS 631
-#define IDS_ENCHANTMENT_THORNS 643
-#define IDS_ENCHANTMENT_UNTOUCHING 632
-#define IDS_ENCHANTMENT_UNTOUCHING 644
-#define IDS_ENCHANTMENT_WATER_WORKER 633
-#define IDS_ENCHANTMENT_WATER_WORKER 645
-#define IDS_ENDERDRAGON 634
-#define IDS_ENDERDRAGON 646
-#define IDS_ENDERMAN 635
-#define IDS_ENDERMAN 647
-#define IDS_ERROR_NETWORK 636
-#define IDS_ERROR_NETWORK 648
-#define IDS_ERROR_NETWORK_EXIT 637
-#define IDS_ERROR_NETWORK_EXIT 649
-#define IDS_ERROR_NETWORK_TITLE 638
-#define IDS_ERROR_NETWORK_TITLE 650
-#define IDS_ERROR_PSN_SIGN_OUT 639
-#define IDS_ERROR_PSN_SIGN_OUT 651
-#define IDS_ERROR_PSN_SIGN_OUT_EXIT 640
-#define IDS_ERROR_PSN_SIGN_OUT_EXIT 652
-#define IDS_EULA 641
-#define IDS_EULA 653
-#define IDS_EULA_SCEA 642
-#define IDS_EULA_SCEA 654
-#define IDS_EULA_SCEE 643
-#define IDS_EULA_SCEE 655
-#define IDS_EULA_SCEE_BD 644
-#define IDS_EULA_SCEE_BD 656
-#define IDS_EXIT_GAME 645
-#define IDS_EXIT_GAME 657
-#define IDS_EXIT_GAME_NO_SAVE 646
-#define IDS_EXIT_GAME_NO_SAVE 658
-#define IDS_EXIT_GAME_SAVE 647
-#define IDS_EXIT_GAME_SAVE 659
-#define IDS_EXITING_GAME 648
-#define IDS_EXITING_GAME 660
-#define IDS_FAILED_TO_CREATE_GAME_TITLE 649
-#define IDS_FAILED_TO_CREATE_GAME_TITLE 661
-#define IDS_FAILED_TO_SAVE_TITLE 650
-#define IDS_FAILED_TO_SAVE_TITLE 662
-#define IDS_FATAL_ERROR_TEXT 651
-#define IDS_FATAL_ERROR_TEXT 663
-#define IDS_FATAL_ERROR_TITLE 652
-#define IDS_FATAL_ERROR_TITLE 664
-#define IDS_FATAL_TROPHY_ERROR 653
-#define IDS_FATAL_TROPHY_ERROR 665
-#define IDS_FAVORITES_SKIN_PACK 654
-#define IDS_FAVORITES_SKIN_PACK 666
-#define IDS_FIRE_SPREADS 655
-#define IDS_FIRE_SPREADS 667
-#define IDS_FIREWORKS 656
-#define IDS_FIREWORKS 668
-#define IDS_FIREWORKS_CHARGE 657
-#define IDS_FIREWORKS_CHARGE 669
-#define IDS_FIREWORKS_CHARGE_BLACK 658
-#define IDS_FIREWORKS_CHARGE_BLACK 670
-#define IDS_FIREWORKS_CHARGE_BLUE 659
-#define IDS_FIREWORKS_CHARGE_BLUE 671
-#define IDS_FIREWORKS_CHARGE_BROWN 660
-#define IDS_FIREWORKS_CHARGE_BROWN 672
-#define IDS_FIREWORKS_CHARGE_CUSTOM 661
-#define IDS_FIREWORKS_CHARGE_CUSTOM 673
-#define IDS_FIREWORKS_CHARGE_CYAN 662
-#define IDS_FIREWORKS_CHARGE_CYAN 674
-#define IDS_FIREWORKS_CHARGE_FADE_TO 663
-#define IDS_FIREWORKS_CHARGE_FADE_TO 675
-#define IDS_FIREWORKS_CHARGE_FLICKER 664
-#define IDS_FIREWORKS_CHARGE_FLICKER 676
-#define IDS_FIREWORKS_CHARGE_GRAY 665
-#define IDS_FIREWORKS_CHARGE_GRAY 677
-#define IDS_FIREWORKS_CHARGE_GREEN 666
-#define IDS_FIREWORKS_CHARGE_GREEN 678
-#define IDS_FIREWORKS_CHARGE_LIGHT_BLUE 667
-#define IDS_FIREWORKS_CHARGE_LIGHT_BLUE 679
-#define IDS_FIREWORKS_CHARGE_LIME 668
-#define IDS_FIREWORKS_CHARGE_LIME 680
-#define IDS_FIREWORKS_CHARGE_MAGENTA 669
-#define IDS_FIREWORKS_CHARGE_MAGENTA 681
-#define IDS_FIREWORKS_CHARGE_ORANGE 670
-#define IDS_FIREWORKS_CHARGE_ORANGE 682
-#define IDS_FIREWORKS_CHARGE_PINK 671
-#define IDS_FIREWORKS_CHARGE_PINK 683
-#define IDS_FIREWORKS_CHARGE_PURPLE 672
-#define IDS_FIREWORKS_CHARGE_PURPLE 684
-#define IDS_FIREWORKS_CHARGE_RED 673
-#define IDS_FIREWORKS_CHARGE_RED 685
-#define IDS_FIREWORKS_CHARGE_SILVER 674
-#define IDS_FIREWORKS_CHARGE_SILVER 686
-#define IDS_FIREWORKS_CHARGE_TRAIL 675
-#define IDS_FIREWORKS_CHARGE_TRAIL 687
-#define IDS_FIREWORKS_CHARGE_TYPE 676
-#define IDS_FIREWORKS_CHARGE_TYPE 688
-#define IDS_FIREWORKS_CHARGE_TYPE_0 677
-#define IDS_FIREWORKS_CHARGE_TYPE_0 689
-#define IDS_FIREWORKS_CHARGE_TYPE_1 678
-#define IDS_FIREWORKS_CHARGE_TYPE_1 690
-#define IDS_FIREWORKS_CHARGE_TYPE_2 679
-#define IDS_FIREWORKS_CHARGE_TYPE_2 691
-#define IDS_FIREWORKS_CHARGE_TYPE_3 680
-#define IDS_FIREWORKS_CHARGE_TYPE_3 692
-#define IDS_FIREWORKS_CHARGE_TYPE_4 681
-#define IDS_FIREWORKS_CHARGE_TYPE_4 693
-#define IDS_FIREWORKS_CHARGE_WHITE 682
-#define IDS_FIREWORKS_CHARGE_WHITE 694
-#define IDS_FIREWORKS_CHARGE_YELLOW 683
-#define IDS_FIREWORKS_CHARGE_YELLOW 695
-#define IDS_FLOWERPOT 684
-#define IDS_FLOWERPOT 696
-#define IDS_FUEL 685
-#define IDS_FUEL 697
-#define IDS_FURNACE 686
-#define IDS_FURNACE 698
-#define IDS_GAME_HOST_NAME 687
-#define IDS_GAME_HOST_NAME 699
-#define IDS_GAME_HOST_NAME_UNKNOWN 688
-#define IDS_GAME_HOST_NAME_UNKNOWN 700
-#define IDS_GAME_MODE_CHANGED 689
-#define IDS_GAME_MODE_CHANGED 701
-#define IDS_GAME_OPTIONS 690
-#define IDS_GAME_OPTIONS 702
-#define IDS_GAMEMODE_ADVENTURE 703
-#define IDS_GAMEMODE_CREATIVE 691
-#define IDS_GAMEMODE_CREATIVE 704
-#define IDS_GAMEMODE_SURVIVAL 692
-#define IDS_GAMEMODE_SURVIVAL 705
-#define IDS_GAMENAME 693
-#define IDS_GAMENAME 706
-#define IDS_GAMEOPTION_ALLOWFOF 694
-#define IDS_GAMEOPTION_ALLOWFOF 707
-#define IDS_GAMEOPTION_BONUS_CHEST 695
-#define IDS_GAMEOPTION_BONUS_CHEST 708
-#define IDS_GAMEOPTION_DAYLIGHT_CYCLE 696
-#define IDS_GAMEOPTION_DAYLIGHT_CYCLE 709
-#define IDS_GAMEOPTION_DISABLE_SAVING 697
-#define IDS_GAMEOPTION_FIRE_SPREADS 698
-#define IDS_GAMEOPTION_FIRE_SPREADS 710
-#define IDS_GAMEOPTION_HOST_PRIVILEGES 699
-#define IDS_GAMEOPTION_HOST_PRIVILEGES 711
-#define IDS_GAMEOPTION_INVITEONLY 705
-#define IDS_GAMEOPTION_INVITEONLY 712
-#define IDS_GAMEOPTION_KEEP_INVENTORY 700
-#define IDS_GAMEOPTION_KEEP_INVENTORY 713
-#define IDS_GAMEOPTION_MOB_GRIEFING 701
-#define IDS_GAMEOPTION_MOB_GRIEFING 714
-#define IDS_GAMEOPTION_MOB_LOOT 702
-#define IDS_GAMEOPTION_MOB_LOOT 715
-#define IDS_GAMEOPTION_MOB_SPAWNING 703
-#define IDS_GAMEOPTION_MOB_SPAWNING 716
-#define IDS_GAMEOPTION_NATURAL_REGEN 704
-#define IDS_GAMEOPTION_NATURAL_REGEN 717
-#define IDS_GAMEOPTION_ONLINE 706
-#define IDS_GAMEOPTION_ONLINE 718
-#define IDS_GAMEOPTION_PVP 707
-#define IDS_GAMEOPTION_PVP 719
-#define IDS_GAMEOPTION_RESET_NETHER 708
-#define IDS_GAMEOPTION_RESET_NETHER 720
-#define IDS_GAMEOPTION_SEED 709
-#define IDS_GAMEOPTION_SEED 721
-#define IDS_GAMEOPTION_STRUCTURES 710
-#define IDS_GAMEOPTION_STRUCTURES 722
-#define IDS_GAMEOPTION_SUPERFLAT 711
-#define IDS_GAMEOPTION_SUPERFLAT 723
-#define IDS_GAMEOPTION_TILE_DROPS 724
-#define IDS_GAMEOPTION_TNT_EXPLODES 712
-#define IDS_GAMEOPTION_TNT_EXPLODES 725
-#define IDS_GAMEOPTION_TRUST 713
-#define IDS_GAMEOPTION_TRUST 726
-#define IDS_GAMEOPTION_WORLD_SIZE 714
-#define IDS_GAMERPICS 715
-#define IDS_GAMERPICS 727
-#define IDS_GENERATE_STRUCTURES 716
-#define IDS_GENERATE_STRUCTURES 728
-#define IDS_GENERIC_ERROR 717
-#define IDS_GENERIC_ERROR 729
-#define IDS_GHAST 718
-#define IDS_GHAST 730
-#define IDS_GRAPHICS 719
-#define IDS_GRAPHICS 731
-#define IDS_GROUPNAME_ARMOUR 720
-#define IDS_GROUPNAME_ARMOUR 732
-#define IDS_GROUPNAME_BUILDING_BLOCKS 721
-#define IDS_GROUPNAME_BUILDING_BLOCKS 733
-#define IDS_GROUPNAME_DECORATIONS 722
-#define IDS_GROUPNAME_DECORATIONS 734
-#define IDS_GROUPNAME_FOOD 723
-#define IDS_GROUPNAME_FOOD 735
-#define IDS_GROUPNAME_MATERIALS 724
-#define IDS_GROUPNAME_MATERIALS 736
-#define IDS_GROUPNAME_MECHANISMS 725
-#define IDS_GROUPNAME_MECHANISMS 737
-#define IDS_GROUPNAME_MISCELLANEOUS 726
-#define IDS_GROUPNAME_MISCELLANEOUS 738
-#define IDS_GROUPNAME_POTIONS 727
-#define IDS_GROUPNAME_POTIONS 739
-#define IDS_GROUPNAME_POTIONS_480 728
-#define IDS_GROUPNAME_POTIONS_480 740
-#define IDS_GROUPNAME_REDSTONE_AND_TRANSPORT 729
-#define IDS_GROUPNAME_REDSTONE_AND_TRANSPORT 741
-#define IDS_GROUPNAME_STRUCTURES 730
-#define IDS_GROUPNAME_STRUCTURES 742
-#define IDS_GROUPNAME_TOOLS 731
-#define IDS_GROUPNAME_TOOLS 743
-#define IDS_GROUPNAME_TOOLS_WEAPONS_ARMOR 732
-#define IDS_GROUPNAME_TOOLS_WEAPONS_ARMOR 744
-#define IDS_GROUPNAME_TRANSPORT 733
-#define IDS_GROUPNAME_TRANSPORT 745
-#define IDS_GROUPNAME_WEAPONS 734
-#define IDS_GROUPNAME_WEAPONS 746
-#define IDS_GUEST_ORDER_CHANGED_TEXT 735
-#define IDS_GUEST_ORDER_CHANGED_TEXT 747
-#define IDS_GUEST_ORDER_CHANGED_TITLE 736
-#define IDS_GUEST_ORDER_CHANGED_TITLE 748
-#define IDS_HELP_AND_OPTIONS 737
-#define IDS_HELP_AND_OPTIONS 749
-#define IDS_HINTS 738
-#define IDS_HINTS 750
-#define IDS_HORSE 739
-#define IDS_HORSE 751
-#define IDS_HOST_OPTION_DISABLES_ACHIEVEMENTS 740
-#define IDS_HOST_OPTION_DISABLES_ACHIEVEMENTS 752
-#define IDS_HOST_OPTIONS 741
-#define IDS_HOST_OPTIONS 753
-#define IDS_HOST_PRIVILEGES 742
-#define IDS_HOST_PRIVILEGES 754
-#define IDS_HOW_TO_PLAY 743
-#define IDS_HOW_TO_PLAY 755
-#define IDS_HOW_TO_PLAY_ANVIL 744
-#define IDS_HOW_TO_PLAY_ANVIL 756
-#define IDS_HOW_TO_PLAY_BANLIST 745
-#define IDS_HOW_TO_PLAY_BANLIST 757
-#define IDS_HOW_TO_PLAY_BASICS 746
-#define IDS_HOW_TO_PLAY_BASICS 758
-#define IDS_HOW_TO_PLAY_BEACONS 747
-#define IDS_HOW_TO_PLAY_BEACONS 759
-#define IDS_HOW_TO_PLAY_BREEDANIMALS 748
-#define IDS_HOW_TO_PLAY_BREEDANIMALS 760
-#define IDS_HOW_TO_PLAY_BREWING 749
-#define IDS_HOW_TO_PLAY_BREWING 761
-#define IDS_HOW_TO_PLAY_CHEST 750
-#define IDS_HOW_TO_PLAY_CHEST 762
-#define IDS_HOW_TO_PLAY_CRAFT_TABLE 751
-#define IDS_HOW_TO_PLAY_CRAFT_TABLE 763
-#define IDS_HOW_TO_PLAY_CRAFTING 752
-#define IDS_HOW_TO_PLAY_CRAFTING 764
-#define IDS_HOW_TO_PLAY_CREATIVE 753
-#define IDS_HOW_TO_PLAY_CREATIVE 765
-#define IDS_HOW_TO_PLAY_DISPENSER 754
-#define IDS_HOW_TO_PLAY_DISPENSER 766
-#define IDS_HOW_TO_PLAY_DROPPERS 755
-#define IDS_HOW_TO_PLAY_DROPPERS 767
-#define IDS_HOW_TO_PLAY_ENCHANTMENT 756
-#define IDS_HOW_TO_PLAY_ENCHANTMENT 768
-#define IDS_HOW_TO_PLAY_ENDERCHEST 757
-#define IDS_HOW_TO_PLAY_ENDERCHEST 769
-#define IDS_HOW_TO_PLAY_FARMANIMALS 758
-#define IDS_HOW_TO_PLAY_FARMANIMALS 770
-#define IDS_HOW_TO_PLAY_FIREWORKS 759
-#define IDS_HOW_TO_PLAY_FIREWORKS 771
-#define IDS_HOW_TO_PLAY_FURNACE 760
-#define IDS_HOW_TO_PLAY_FURNACE 772
-#define IDS_HOW_TO_PLAY_HOPPERS 761
-#define IDS_HOW_TO_PLAY_HOPPERS 773
-#define IDS_HOW_TO_PLAY_HORSES 762
-#define IDS_HOW_TO_PLAY_HORSES 774
-#define IDS_HOW_TO_PLAY_HOSTOPTIONS 763
-#define IDS_HOW_TO_PLAY_HOSTOPTIONS 775
-#define IDS_HOW_TO_PLAY_HUD 764
-#define IDS_HOW_TO_PLAY_HUD 776
-#define IDS_HOW_TO_PLAY_INVENTORY 765
-#define IDS_HOW_TO_PLAY_INVENTORY 777
-#define IDS_HOW_TO_PLAY_LARGECHEST 766
-#define IDS_HOW_TO_PLAY_LARGECHEST 778
-#define IDS_HOW_TO_PLAY_MENU_ANVIL 767
-#define IDS_HOW_TO_PLAY_MENU_ANVIL 779
-#define IDS_HOW_TO_PLAY_MENU_BANLIST 768
-#define IDS_HOW_TO_PLAY_MENU_BANLIST 780
-#define IDS_HOW_TO_PLAY_MENU_BASICS 769
-#define IDS_HOW_TO_PLAY_MENU_BASICS 781
-#define IDS_HOW_TO_PLAY_MENU_BEACONS 770
-#define IDS_HOW_TO_PLAY_MENU_BEACONS 782
-#define IDS_HOW_TO_PLAY_MENU_BREEDANIMALS 771
-#define IDS_HOW_TO_PLAY_MENU_BREEDANIMALS 783
-#define IDS_HOW_TO_PLAY_MENU_BREWING 772
-#define IDS_HOW_TO_PLAY_MENU_BREWING 784
-#define IDS_HOW_TO_PLAY_MENU_CHESTS 773
-#define IDS_HOW_TO_PLAY_MENU_CHESTS 785
-#define IDS_HOW_TO_PLAY_MENU_CRAFTING 774
-#define IDS_HOW_TO_PLAY_MENU_CRAFTING 786
-#define IDS_HOW_TO_PLAY_MENU_CREATIVE 775
-#define IDS_HOW_TO_PLAY_MENU_CREATIVE 787
-#define IDS_HOW_TO_PLAY_MENU_DISPENSER 776
-#define IDS_HOW_TO_PLAY_MENU_DISPENSER 788
-#define IDS_HOW_TO_PLAY_MENU_DROPPERS 777
-#define IDS_HOW_TO_PLAY_MENU_DROPPERS 789
-#define IDS_HOW_TO_PLAY_MENU_ENCHANTMENT 778
-#define IDS_HOW_TO_PLAY_MENU_ENCHANTMENT 790
-#define IDS_HOW_TO_PLAY_MENU_FARMANIMALS 779
-#define IDS_HOW_TO_PLAY_MENU_FARMANIMALS 791
-#define IDS_HOW_TO_PLAY_MENU_FIREWORKS 780
-#define IDS_HOW_TO_PLAY_MENU_FIREWORKS 792
-#define IDS_HOW_TO_PLAY_MENU_FURNACE 781
-#define IDS_HOW_TO_PLAY_MENU_FURNACE 793
-#define IDS_HOW_TO_PLAY_MENU_HOPPERS 782
-#define IDS_HOW_TO_PLAY_MENU_HOPPERS 794
-#define IDS_HOW_TO_PLAY_MENU_HORSES 783
-#define IDS_HOW_TO_PLAY_MENU_HORSES 795
-#define IDS_HOW_TO_PLAY_MENU_HOSTOPTIONS 784
-#define IDS_HOW_TO_PLAY_MENU_HOSTOPTIONS 796
-#define IDS_HOW_TO_PLAY_MENU_HUD 785
-#define IDS_HOW_TO_PLAY_MENU_HUD 797
-#define IDS_HOW_TO_PLAY_MENU_INVENTORY 786
-#define IDS_HOW_TO_PLAY_MENU_INVENTORY 798
-#define IDS_HOW_TO_PLAY_MENU_MULTIPLAYER 787
-#define IDS_HOW_TO_PLAY_MENU_MULTIPLAYER 799
-#define IDS_HOW_TO_PLAY_MENU_NETHERPORTAL 788
-#define IDS_HOW_TO_PLAY_MENU_NETHERPORTAL 800
-#define IDS_HOW_TO_PLAY_MENU_SOCIALMEDIA 789
-#define IDS_HOW_TO_PLAY_MENU_SOCIALMEDIA 801
-#define IDS_HOW_TO_PLAY_MENU_SPRINT 790
-#define IDS_HOW_TO_PLAY_MENU_SPRINT 802
-#define IDS_HOW_TO_PLAY_MENU_THEEND 791
-#define IDS_HOW_TO_PLAY_MENU_THEEND 803
-#define IDS_HOW_TO_PLAY_MENU_TRADING 792
-#define IDS_HOW_TO_PLAY_MENU_TRADING 804
-#define IDS_HOW_TO_PLAY_MENU_WHATSNEW 793
-#define IDS_HOW_TO_PLAY_MENU_WHATSNEW 805
-#define IDS_HOW_TO_PLAY_MULTIPLAYER 794
-#define IDS_HOW_TO_PLAY_MULTIPLAYER 806
-#define IDS_HOW_TO_PLAY_NETHERPORTAL 795
-#define IDS_HOW_TO_PLAY_NETHERPORTAL 807
-#define IDS_HOW_TO_PLAY_NEXT 796
-#define IDS_HOW_TO_PLAY_NEXT 808
-#define IDS_HOW_TO_PLAY_PREV 797
-#define IDS_HOW_TO_PLAY_PREV 809
-#define IDS_HOW_TO_PLAY_SOCIALMEDIA 798
-#define IDS_HOW_TO_PLAY_SOCIALMEDIA 810
-#define IDS_HOW_TO_PLAY_THEEND 799
-#define IDS_HOW_TO_PLAY_THEEND 811
-#define IDS_HOW_TO_PLAY_TRADING 800
-#define IDS_HOW_TO_PLAY_TRADING 812
-#define IDS_HOW_TO_PLAY_WHATSNEW 801
-#define IDS_HOW_TO_PLAY_WHATSNEW 813
-#define IDS_ICON_SHANK_01 802
-#define IDS_ICON_SHANK_01 814
-#define IDS_ICON_SHANK_03 803
-#define IDS_ICON_SHANK_03 815
-#define IDS_IN_GAME_GAMERTAGS 804
-#define IDS_IN_GAME_GAMERTAGS 816
-#define IDS_IN_GAME_TOOLTIPS 805
-#define IDS_IN_GAME_TOOLTIPS 817
-#define IDS_INGREDIENT 806
-#define IDS_INGREDIENT 818
-#define IDS_INGREDIENTS 807
-#define IDS_INGREDIENTS 819
-#define IDS_INVENTORY 808
-#define IDS_INVENTORY 820
-#define IDS_INVERT_LOOK 809
-#define IDS_INVERT_LOOK 821
-#define IDS_INVISIBLE 810
-#define IDS_INVISIBLE 822
-#define IDS_INVITATION_BODY 811
-#define IDS_INVITATION_BODY 823
-#define IDS_INVITATION_SUBJECT_MAX_18_CHARS 812
-#define IDS_INVITATION_SUBJECT_MAX_18_CHARS 824
-#define IDS_INVITE_ONLY 813
-#define IDS_INVITE_ONLY 825
-#define IDS_IRONGOLEM 814
-#define IDS_IRONGOLEM 826
-#define IDS_ITEM_APPLE 815
-#define IDS_ITEM_APPLE 827
-#define IDS_ITEM_APPLE_GOLD 816
-#define IDS_ITEM_APPLE_GOLD 828
-#define IDS_ITEM_ARROW 817
-#define IDS_ITEM_ARROW 829
-#define IDS_ITEM_BED 818
-#define IDS_ITEM_BED 830
-#define IDS_ITEM_BEEF_COOKED 819
-#define IDS_ITEM_BEEF_COOKED 831
-#define IDS_ITEM_BEEF_RAW 820
-#define IDS_ITEM_BEEF_RAW 832
-#define IDS_ITEM_BLAZE_POWDER 821
-#define IDS_ITEM_BLAZE_POWDER 833
-#define IDS_ITEM_BLAZE_ROD 822
-#define IDS_ITEM_BLAZE_ROD 834
-#define IDS_ITEM_BOAT 823
-#define IDS_ITEM_BOAT 835
-#define IDS_ITEM_BONE 824
-#define IDS_ITEM_BONE 836
-#define IDS_ITEM_BOOK 825
-#define IDS_ITEM_BOOK 837
-#define IDS_ITEM_BOOTS_CHAIN 826
-#define IDS_ITEM_BOOTS_CHAIN 838
-#define IDS_ITEM_BOOTS_CLOTH 827
-#define IDS_ITEM_BOOTS_CLOTH 839
-#define IDS_ITEM_BOOTS_DIAMOND 828
-#define IDS_ITEM_BOOTS_DIAMOND 840
-#define IDS_ITEM_BOOTS_GOLD 829
-#define IDS_ITEM_BOOTS_GOLD 841
-#define IDS_ITEM_BOOTS_IRON 830
-#define IDS_ITEM_BOOTS_IRON 842
-#define IDS_ITEM_BOW 831
-#define IDS_ITEM_BOW 843
-#define IDS_ITEM_BOWL 832
-#define IDS_ITEM_BOWL 844
-#define IDS_ITEM_BREAD 833
-#define IDS_ITEM_BREAD 845
-#define IDS_ITEM_BREWING_STAND 834
-#define IDS_ITEM_BREWING_STAND 846
-#define IDS_ITEM_BRICK 835
-#define IDS_ITEM_BRICK 847
-#define IDS_ITEM_BUCKET 836
-#define IDS_ITEM_BUCKET 848
-#define IDS_ITEM_BUCKET_LAVA 837
-#define IDS_ITEM_BUCKET_LAVA 849
-#define IDS_ITEM_BUCKET_MILK 838
-#define IDS_ITEM_BUCKET_MILK 850
-#define IDS_ITEM_BUCKET_WATER 839
-#define IDS_ITEM_BUCKET_WATER 851
-#define IDS_ITEM_CAKE 840
-#define IDS_ITEM_CAKE 852
-#define IDS_ITEM_CARROT_GOLDEN 841
-#define IDS_ITEM_CARROT_GOLDEN 853
-#define IDS_ITEM_CARROT_ON_A_STICK 842
-#define IDS_ITEM_CARROT_ON_A_STICK 854
-#define IDS_ITEM_CAULDRON 843
-#define IDS_ITEM_CAULDRON 855
-#define IDS_ITEM_CHARCOAL 844
-#define IDS_ITEM_CHARCOAL 856
-#define IDS_ITEM_CHESTPLATE_CHAIN 845
-#define IDS_ITEM_CHESTPLATE_CHAIN 857
-#define IDS_ITEM_CHESTPLATE_CLOTH 846
-#define IDS_ITEM_CHESTPLATE_CLOTH 858
-#define IDS_ITEM_CHESTPLATE_DIAMOND 847
-#define IDS_ITEM_CHESTPLATE_DIAMOND 859
-#define IDS_ITEM_CHESTPLATE_GOLD 848
-#define IDS_ITEM_CHESTPLATE_GOLD 860
-#define IDS_ITEM_CHESTPLATE_IRON 849
-#define IDS_ITEM_CHESTPLATE_IRON 861
-#define IDS_ITEM_CHICKEN_COOKED 850
-#define IDS_ITEM_CHICKEN_COOKED 862
-#define IDS_ITEM_CHICKEN_RAW 851
-#define IDS_ITEM_CHICKEN_RAW 863
-#define IDS_ITEM_CLAY 852
-#define IDS_ITEM_CLAY 864
-#define IDS_ITEM_CLOCK 853
-#define IDS_ITEM_CLOCK 865
-#define IDS_ITEM_COAL 854
-#define IDS_ITEM_COAL 866
-#define IDS_ITEM_COMPARATOR 855
-#define IDS_ITEM_COMPARATOR 867
-#define IDS_ITEM_COMPASS 856
-#define IDS_ITEM_COMPASS 868
-#define IDS_ITEM_COOKIE 857
-#define IDS_ITEM_COOKIE 869
-#define IDS_ITEM_DIAMOND 858
-#define IDS_ITEM_DIAMOND 870
-#define IDS_ITEM_DIAMOND_HORSE_ARMOR 859
-#define IDS_ITEM_DIAMOND_HORSE_ARMOR 871
-#define IDS_ITEM_DIODE 860
-#define IDS_ITEM_DIODE 872
-#define IDS_ITEM_DOOR_IRON 861
-#define IDS_ITEM_DOOR_IRON 873
-#define IDS_ITEM_DOOR_WOOD 862
-#define IDS_ITEM_DOOR_WOOD 874
-#define IDS_ITEM_DYE_POWDER 863
-#define IDS_ITEM_DYE_POWDER 875
-#define IDS_ITEM_DYE_POWDER_BLACK 864
-#define IDS_ITEM_DYE_POWDER_BLACK 876
-#define IDS_ITEM_DYE_POWDER_BLUE 865
-#define IDS_ITEM_DYE_POWDER_BLUE 877
-#define IDS_ITEM_DYE_POWDER_BROWN 866
-#define IDS_ITEM_DYE_POWDER_BROWN 878
-#define IDS_ITEM_DYE_POWDER_CYAN 867
-#define IDS_ITEM_DYE_POWDER_CYAN 879
-#define IDS_ITEM_DYE_POWDER_GRAY 868
-#define IDS_ITEM_DYE_POWDER_GRAY 880
-#define IDS_ITEM_DYE_POWDER_GREEN 869
-#define IDS_ITEM_DYE_POWDER_GREEN 881
-#define IDS_ITEM_DYE_POWDER_LIGHT_BLUE 870
-#define IDS_ITEM_DYE_POWDER_LIGHT_BLUE 882
-#define IDS_ITEM_DYE_POWDER_LIME 871
-#define IDS_ITEM_DYE_POWDER_LIME 883
-#define IDS_ITEM_DYE_POWDER_MAGENTA 872
-#define IDS_ITEM_DYE_POWDER_MAGENTA 884
-#define IDS_ITEM_DYE_POWDER_ORANGE 873
-#define IDS_ITEM_DYE_POWDER_ORANGE 885
-#define IDS_ITEM_DYE_POWDER_PINK 874
-#define IDS_ITEM_DYE_POWDER_PINK 886
-#define IDS_ITEM_DYE_POWDER_PURPLE 875
-#define IDS_ITEM_DYE_POWDER_PURPLE 887
-#define IDS_ITEM_DYE_POWDER_RED 876
-#define IDS_ITEM_DYE_POWDER_RED 888
-#define IDS_ITEM_DYE_POWDER_SILVER 877
-#define IDS_ITEM_DYE_POWDER_SILVER 889
-#define IDS_ITEM_DYE_POWDER_WHITE 878
-#define IDS_ITEM_DYE_POWDER_WHITE 890
-#define IDS_ITEM_DYE_POWDER_YELLOW 879
-#define IDS_ITEM_DYE_POWDER_YELLOW 891
-#define IDS_ITEM_EGG 880
-#define IDS_ITEM_EGG 892
-#define IDS_ITEM_EMERALD 881
-#define IDS_ITEM_EMERALD 893
-#define IDS_ITEM_ENCHANTED_BOOK 882
-#define IDS_ITEM_ENCHANTED_BOOK 894
-#define IDS_ITEM_ENDER_PEARL 883
-#define IDS_ITEM_ENDER_PEARL 895
-#define IDS_ITEM_EXP_BOTTLE 884
-#define IDS_ITEM_EXP_BOTTLE 896
-#define IDS_ITEM_EYE_OF_ENDER 885
-#define IDS_ITEM_EYE_OF_ENDER 897
-#define IDS_ITEM_FEATHER 886
-#define IDS_ITEM_FEATHER 898
-#define IDS_ITEM_FERMENTED_SPIDER_EYE 887
-#define IDS_ITEM_FERMENTED_SPIDER_EYE 899
-#define IDS_ITEM_FIREBALL 888
-#define IDS_ITEM_FIREBALL 900
-#define IDS_ITEM_FIREBALLCHARCOAL 889
-#define IDS_ITEM_FIREBALLCHARCOAL 901
-#define IDS_ITEM_FIREBALLCOAL 890
-#define IDS_ITEM_FIREBALLCOAL 902
-#define IDS_ITEM_FIREWORKS_FLIGHT 891
-#define IDS_ITEM_FIREWORKS_FLIGHT 903
-#define IDS_ITEM_FISH_COOKED 892
-#define IDS_ITEM_FISH_COOKED 904
-#define IDS_ITEM_FISH_RAW 893
-#define IDS_ITEM_FISH_RAW 905
-#define IDS_ITEM_FISHING_ROD 894
-#define IDS_ITEM_FISHING_ROD 906
-#define IDS_ITEM_FLINT 895
-#define IDS_ITEM_FLINT 907
-#define IDS_ITEM_FLINT_AND_STEEL 896
-#define IDS_ITEM_FLINT_AND_STEEL 908
-#define IDS_ITEM_GHAST_TEAR 897
-#define IDS_ITEM_GHAST_TEAR 909
-#define IDS_ITEM_GLASS_BOTTLE 898
-#define IDS_ITEM_GLASS_BOTTLE 910
-#define IDS_ITEM_GOLD_HORSE_ARMOR 899
-#define IDS_ITEM_GOLD_HORSE_ARMOR 911
-#define IDS_ITEM_GOLD_NUGGET 900
-#define IDS_ITEM_GOLD_NUGGET 912
-#define IDS_ITEM_HATCHET_DIAMOND 901
-#define IDS_ITEM_HATCHET_DIAMOND 913
-#define IDS_ITEM_HATCHET_GOLD 902
-#define IDS_ITEM_HATCHET_GOLD 914
-#define IDS_ITEM_HATCHET_IRON 903
-#define IDS_ITEM_HATCHET_IRON 915
-#define IDS_ITEM_HATCHET_STONE 904
-#define IDS_ITEM_HATCHET_STONE 916
-#define IDS_ITEM_HATCHET_WOOD 905
-#define IDS_ITEM_HATCHET_WOOD 917
-#define IDS_ITEM_HELMET_CHAIN 906
-#define IDS_ITEM_HELMET_CHAIN 918
-#define IDS_ITEM_HELMET_CLOTH 907
-#define IDS_ITEM_HELMET_CLOTH 919
-#define IDS_ITEM_HELMET_DIAMOND 908
-#define IDS_ITEM_HELMET_DIAMOND 920
-#define IDS_ITEM_HELMET_GOLD 909
-#define IDS_ITEM_HELMET_GOLD 921
-#define IDS_ITEM_HELMET_IRON 910
-#define IDS_ITEM_HELMET_IRON 922
-#define IDS_ITEM_HOE_DIAMOND 911
-#define IDS_ITEM_HOE_DIAMOND 923
-#define IDS_ITEM_HOE_GOLD 912
-#define IDS_ITEM_HOE_GOLD 924
-#define IDS_ITEM_HOE_IRON 913
-#define IDS_ITEM_HOE_IRON 925
-#define IDS_ITEM_HOE_STONE 914
-#define IDS_ITEM_HOE_STONE 926
-#define IDS_ITEM_HOE_WOOD 915
-#define IDS_ITEM_HOE_WOOD 927
-#define IDS_ITEM_INGOT_GOLD 916
-#define IDS_ITEM_INGOT_GOLD 928
-#define IDS_ITEM_INGOT_IRON 918
-#define IDS_ITEM_INGOT_IRON 929
-#define IDS_ITEM_IRON_HORSE_ARMOR 917
-#define IDS_ITEM_IRON_HORSE_ARMOR 930
-#define IDS_ITEM_ITEMFRAME 919
-#define IDS_ITEM_ITEMFRAME 931
-#define IDS_ITEM_LEAD 920
-#define IDS_ITEM_LEAD 932
-#define IDS_ITEM_LEATHER 921
-#define IDS_ITEM_LEATHER 933
-#define IDS_ITEM_LEGGINGS_CHAIN 922
-#define IDS_ITEM_LEGGINGS_CHAIN 934
-#define IDS_ITEM_LEGGINGS_CLOTH 923
-#define IDS_ITEM_LEGGINGS_CLOTH 935
-#define IDS_ITEM_LEGGINGS_DIAMOND 924
-#define IDS_ITEM_LEGGINGS_DIAMOND 936
-#define IDS_ITEM_LEGGINGS_GOLD 925
-#define IDS_ITEM_LEGGINGS_GOLD 937
-#define IDS_ITEM_LEGGINGS_IRON 926
-#define IDS_ITEM_LEGGINGS_IRON 938
-#define IDS_ITEM_MAGMA_CREAM 927
-#define IDS_ITEM_MAGMA_CREAM 939
-#define IDS_ITEM_MAP 928
-#define IDS_ITEM_MAP 940
-#define IDS_ITEM_MAP_EMPTY 929
-#define IDS_ITEM_MAP_EMPTY 941
-#define IDS_ITEM_MELON_SEEDS 930
-#define IDS_ITEM_MELON_SEEDS 942
-#define IDS_ITEM_MELON_SLICE 931
-#define IDS_ITEM_MELON_SLICE 943
-#define IDS_ITEM_MINECART 932
-#define IDS_ITEM_MINECART 944
-#define IDS_ITEM_MINECART_CHEST 933
-#define IDS_ITEM_MINECART_CHEST 945
-#define IDS_ITEM_MINECART_FURNACE 934
-#define IDS_ITEM_MINECART_FURNACE 946
-#define IDS_ITEM_MINECART_HOPPER 935
-#define IDS_ITEM_MINECART_HOPPER 947
-#define IDS_ITEM_MINECART_TNT 936
-#define IDS_ITEM_MINECART_TNT 948
-#define IDS_ITEM_MONSTER_SPAWNER 937
-#define IDS_ITEM_MONSTER_SPAWNER 949
-#define IDS_ITEM_MUSHROOM_STEW 938
-#define IDS_ITEM_MUSHROOM_STEW 950
-#define IDS_ITEM_NAME_TAG 939
-#define IDS_ITEM_NAME_TAG 951
-#define IDS_ITEM_NETHER_QUARTZ 940
-#define IDS_ITEM_NETHER_QUARTZ 952
-#define IDS_ITEM_NETHER_STALK_SEEDS 941
-#define IDS_ITEM_NETHER_STALK_SEEDS 953
-#define IDS_ITEM_NETHERBRICK 942
-#define IDS_ITEM_NETHERBRICK 954
-#define IDS_ITEM_PAINTING 943
-#define IDS_ITEM_PAINTING 955
-#define IDS_ITEM_PAPER 944
-#define IDS_ITEM_PAPER 956
-#define IDS_ITEM_PICKAXE_DIAMOND 945
-#define IDS_ITEM_PICKAXE_DIAMOND 957
-#define IDS_ITEM_PICKAXE_GOLD 946
-#define IDS_ITEM_PICKAXE_GOLD 958
-#define IDS_ITEM_PICKAXE_IRON 947
-#define IDS_ITEM_PICKAXE_IRON 959
-#define IDS_ITEM_PICKAXE_STONE 948
-#define IDS_ITEM_PICKAXE_STONE 960
-#define IDS_ITEM_PICKAXE_WOOD 949
-#define IDS_ITEM_PICKAXE_WOOD 961
-#define IDS_ITEM_PORKCHOP_COOKED 950
-#define IDS_ITEM_PORKCHOP_COOKED 962
-#define IDS_ITEM_PORKCHOP_RAW 951
-#define IDS_ITEM_PORKCHOP_RAW 963
-#define IDS_ITEM_POTATO_BAKED 952
-#define IDS_ITEM_POTATO_BAKED 964
-#define IDS_ITEM_POTATO_POISONOUS 953
-#define IDS_ITEM_POTATO_POISONOUS 965
-#define IDS_ITEM_POTION 954
-#define IDS_ITEM_POTION 966
-#define IDS_ITEM_PUMPKIN_PIE 955
-#define IDS_ITEM_PUMPKIN_PIE 967
-#define IDS_ITEM_PUMPKIN_SEEDS 956
-#define IDS_ITEM_PUMPKIN_SEEDS 968
-#define IDS_ITEM_RECORD_01 957
-#define IDS_ITEM_RECORD_01 969
-#define IDS_ITEM_RECORD_02 958
-#define IDS_ITEM_RECORD_02 970
-#define IDS_ITEM_RECORD_03 959
-#define IDS_ITEM_RECORD_03 971
-#define IDS_ITEM_RECORD_04 960
-#define IDS_ITEM_RECORD_04 972
-#define IDS_ITEM_RECORD_05 961
-#define IDS_ITEM_RECORD_05 973
-#define IDS_ITEM_RECORD_06 962
-#define IDS_ITEM_RECORD_06 974
-#define IDS_ITEM_RECORD_07 963
-#define IDS_ITEM_RECORD_07 975
-#define IDS_ITEM_RECORD_08 964
-#define IDS_ITEM_RECORD_08 976
-#define IDS_ITEM_RECORD_09 965
-#define IDS_ITEM_RECORD_09 977
-#define IDS_ITEM_RECORD_10 966
-#define IDS_ITEM_RECORD_10 978
-#define IDS_ITEM_RECORD_11 967
-#define IDS_ITEM_RECORD_11 979
-#define IDS_ITEM_RECORD_12 968
-#define IDS_ITEM_RECORD_12 980
-#define IDS_ITEM_REDSTONE 969
-#define IDS_ITEM_REDSTONE 981
-#define IDS_ITEM_REEDS 970
-#define IDS_ITEM_REEDS 982
-#define IDS_ITEM_ROTTEN_FLESH 971
-#define IDS_ITEM_ROTTEN_FLESH 983
-#define IDS_ITEM_SADDLE 972
-#define IDS_ITEM_SADDLE 984
-#define IDS_ITEM_SHEARS 973
-#define IDS_ITEM_SHEARS 985
-#define IDS_ITEM_SHOVEL_DIAMOND 974
-#define IDS_ITEM_SHOVEL_DIAMOND 986
-#define IDS_ITEM_SHOVEL_GOLD 975
-#define IDS_ITEM_SHOVEL_GOLD 987
-#define IDS_ITEM_SHOVEL_IRON 976
-#define IDS_ITEM_SHOVEL_IRON 988
-#define IDS_ITEM_SHOVEL_STONE 977
-#define IDS_ITEM_SHOVEL_STONE 989
-#define IDS_ITEM_SHOVEL_WOOD 978
-#define IDS_ITEM_SHOVEL_WOOD 990
-#define IDS_ITEM_SIGN 979
-#define IDS_ITEM_SIGN 991
-#define IDS_ITEM_SKULL 980
-#define IDS_ITEM_SKULL 992
-#define IDS_ITEM_SKULL_CHARACTER 981
-#define IDS_ITEM_SKULL_CHARACTER 993
-#define IDS_ITEM_SKULL_CREEPER 982
-#define IDS_ITEM_SKULL_CREEPER 994
-#define IDS_ITEM_SKULL_PLAYER 983
-#define IDS_ITEM_SKULL_PLAYER 995
-#define IDS_ITEM_SKULL_SKELETON 984
-#define IDS_ITEM_SKULL_SKELETON 996
-#define IDS_ITEM_SKULL_WITHER 985
-#define IDS_ITEM_SKULL_WITHER 997
-#define IDS_ITEM_SKULL_ZOMBIE 986
-#define IDS_ITEM_SKULL_ZOMBIE 998
-#define IDS_ITEM_SLIMEBALL 987
-#define IDS_ITEM_SLIMEBALL 999
-#define IDS_ITEM_SNOWBALL 1000
-#define IDS_ITEM_SNOWBALL 988
-#define IDS_ITEM_SPECKLED_MELON 1001
-#define IDS_ITEM_SPECKLED_MELON 989
-#define IDS_ITEM_SPIDER_EYE 1002
-#define IDS_ITEM_SPIDER_EYE 990
-#define IDS_ITEM_STICK 1003
-#define IDS_ITEM_STICK 991
-#define IDS_ITEM_STRING 1004
-#define IDS_ITEM_STRING 992
-#define IDS_ITEM_SUGAR 1005
-#define IDS_ITEM_SUGAR 993
-#define IDS_ITEM_SULPHUR 1006
-#define IDS_ITEM_SULPHUR 994
-#define IDS_ITEM_SWORD_DIAMOND 1007
-#define IDS_ITEM_SWORD_DIAMOND 995
-#define IDS_ITEM_SWORD_GOLD 1008
-#define IDS_ITEM_SWORD_GOLD 996
-#define IDS_ITEM_SWORD_IRON 1009
-#define IDS_ITEM_SWORD_IRON 997
-#define IDS_ITEM_SWORD_STONE 1010
-#define IDS_ITEM_SWORD_STONE 998
-#define IDS_ITEM_SWORD_WOOD 1011
-#define IDS_ITEM_SWORD_WOOD 999
-#define IDS_ITEM_WATER_BOTTLE 1000
-#define IDS_ITEM_WATER_BOTTLE 1012
-#define IDS_ITEM_WHEAT 1001
-#define IDS_ITEM_WHEAT 1013
-#define IDS_ITEM_WHEAT_SEEDS 1002
-#define IDS_ITEM_WHEAT_SEEDS 1014
-#define IDS_ITEM_YELLOW_DUST 1003
-#define IDS_ITEM_YELLOW_DUST 1015
-#define IDS_JOIN_GAME 1004
-#define IDS_JOIN_GAME 1016
-#define IDS_KEEP_INVENTORY 1017
-#define IDS_KEYBOARDUI_SAVEGAME_TEXT 1005
-#define IDS_KEYBOARDUI_SAVEGAME_TEXT 1018
-#define IDS_KEYBOARDUI_SAVEGAME_TITLE 1006
-#define IDS_KEYBOARDUI_SAVEGAME_TITLE 1019
-#define IDS_KICK_PLAYER 1007
-#define IDS_KICK_PLAYER 1020
-#define IDS_KICK_PLAYER_DESCRIPTION 1008
-#define IDS_KICK_PLAYER_DESCRIPTION 1021
-#define IDS_LABEL_DIFFICULTY 1009
-#define IDS_LABEL_DIFFICULTY 1022
-#define IDS_LABEL_FIRE_SPREADS 1010
-#define IDS_LABEL_FIRE_SPREADS 1023
-#define IDS_LABEL_GAME_TYPE 1011
-#define IDS_LABEL_GAME_TYPE 1024
-#define IDS_LABEL_GAMERTAGS 1012
-#define IDS_LABEL_GAMERTAGS 1025
-#define IDS_LABEL_LEVEL_TYPE 1013
-#define IDS_LABEL_LEVEL_TYPE 1026
-#define IDS_LABEL_PvP 1014
-#define IDS_LABEL_PvP 1027
-#define IDS_LABEL_STRUCTURES 1015
-#define IDS_LABEL_STRUCTURES 1028
-#define IDS_LABEL_TNT 1016
-#define IDS_LABEL_TNT 1029
-#define IDS_LABEL_TRUST 1017
-#define IDS_LABEL_TRUST 1030
-#define IDS_LANG_CHINESE_SIMPLIFIED 1031
-#define IDS_LANG_CHINESE_TRADITIONAL 1032
-#define IDS_LANG_DANISH 1033
-#define IDS_LANG_DUTCH 1034
-#define IDS_LANG_ENGLISH 1035
-#define IDS_LANG_FINISH 1036
-#define IDS_LANG_FRENCH 1037
-#define IDS_LANG_GERMAN 1038
-#define IDS_LANG_GREEK 1039
-#define IDS_LANG_ITALIAN 1040
-#define IDS_LANG_JAPANESE 1041
-#define IDS_LANG_KOREAN 1042
-#define IDS_LANG_NORWEGIAN 1043
-#define IDS_LANG_POLISH 1044
-#define IDS_LANG_PORTUGUESE 1045
-#define IDS_LANG_PORTUGUESE_BRAZIL 1046
-#define IDS_LANG_PORTUGUESE_PORTUGAL 1047
-#define IDS_LANG_RUSSIAN 1048
-#define IDS_LANG_SPANISH 1049
-#define IDS_LANG_SPANISH_LATIN_AMERICA 1050
-#define IDS_LANG_SPANISH_SPAIN 1051
-#define IDS_LANG_SWEDISH 1052
-#define IDS_LANG_SYSTEM 1053
-#define IDS_LANG_TURKISH 1054
-#define IDS_LANGUAGE_SELECTOR 1055
-#define IDS_LAVA_SLIME 1018
-#define IDS_LAVA_SLIME 1056
-#define IDS_LEADERBOARD_ENTRIES 1019
-#define IDS_LEADERBOARD_ENTRIES 1057
-#define IDS_LEADERBOARD_FARMING_EASY 1020
-#define IDS_LEADERBOARD_FARMING_EASY 1058
-#define IDS_LEADERBOARD_FARMING_HARD 1021
-#define IDS_LEADERBOARD_FARMING_HARD 1059
-#define IDS_LEADERBOARD_FARMING_NORMAL 1022
-#define IDS_LEADERBOARD_FARMING_NORMAL 1060
-#define IDS_LEADERBOARD_FARMING_PEACEFUL 1023
-#define IDS_LEADERBOARD_FARMING_PEACEFUL 1061
-#define IDS_LEADERBOARD_FILTER 1024
-#define IDS_LEADERBOARD_FILTER 1062
-#define IDS_LEADERBOARD_FILTER_FRIENDS 1025
-#define IDS_LEADERBOARD_FILTER_FRIENDS 1063
-#define IDS_LEADERBOARD_FILTER_MYSCORE 1026
-#define IDS_LEADERBOARD_FILTER_MYSCORE 1064
-#define IDS_LEADERBOARD_FILTER_OVERALL 1027
-#define IDS_LEADERBOARD_FILTER_OVERALL 1065
-#define IDS_LEADERBOARD_GAMERTAG 1028
-#define IDS_LEADERBOARD_GAMERTAG 1066
-#define IDS_LEADERBOARD_KILLS_EASY 1029
-#define IDS_LEADERBOARD_KILLS_EASY 1067
-#define IDS_LEADERBOARD_KILLS_HARD 1030
-#define IDS_LEADERBOARD_KILLS_HARD 1068
-#define IDS_LEADERBOARD_KILLS_NORMAL 1031
-#define IDS_LEADERBOARD_KILLS_NORMAL 1069
-#define IDS_LEADERBOARD_LOADING 1032
-#define IDS_LEADERBOARD_LOADING 1070
-#define IDS_LEADERBOARD_MINING_BLOCKS_EASY 1033
-#define IDS_LEADERBOARD_MINING_BLOCKS_EASY 1071
-#define IDS_LEADERBOARD_MINING_BLOCKS_HARD 1034
-#define IDS_LEADERBOARD_MINING_BLOCKS_HARD 1072
-#define IDS_LEADERBOARD_MINING_BLOCKS_NORMAL 1035
-#define IDS_LEADERBOARD_MINING_BLOCKS_NORMAL 1073
-#define IDS_LEADERBOARD_MINING_BLOCKS_PEACEFUL 1036
-#define IDS_LEADERBOARD_MINING_BLOCKS_PEACEFUL 1074
-#define IDS_LEADERBOARD_NORESULTS 1037
-#define IDS_LEADERBOARD_NORESULTS 1075
-#define IDS_LEADERBOARD_RANK 1038
-#define IDS_LEADERBOARD_RANK 1076
-#define IDS_LEADERBOARD_TRAVELLING_EASY 1039
-#define IDS_LEADERBOARD_TRAVELLING_EASY 1077
-#define IDS_LEADERBOARD_TRAVELLING_HARD 1040
-#define IDS_LEADERBOARD_TRAVELLING_HARD 1078
-#define IDS_LEADERBOARD_TRAVELLING_NORMAL 1041
-#define IDS_LEADERBOARD_TRAVELLING_NORMAL 1079
-#define IDS_LEADERBOARD_TRAVELLING_PEACEFUL 1042
-#define IDS_LEADERBOARD_TRAVELLING_PEACEFUL 1080
-#define IDS_LEADERBOARDS 1043
-#define IDS_LEADERBOARDS 1081
-#define IDS_LEVELTYPE_NORMAL 1044
-#define IDS_LEVELTYPE_NORMAL 1082
-#define IDS_LEVELTYPE_SUPERFLAT 1045
-#define IDS_LEVELTYPE_SUPERFLAT 1083
-#define IDS_LOAD 1046
-#define IDS_LOAD 1084
-#define IDS_LOAD_SAVED_WORLD 1047
-#define IDS_LOAD_SAVED_WORLD 1085
-#define IDS_MAX_BATS_SPAWNED 1048
-#define IDS_MAX_BATS_SPAWNED 1086
-#define IDS_MAX_BOATS 1049
-#define IDS_MAX_BOATS 1087
-#define IDS_MAX_CHICKENS_BRED 1050
-#define IDS_MAX_CHICKENS_BRED 1088
-#define IDS_MAX_CHICKENS_SPAWNED 1051
-#define IDS_MAX_CHICKENS_SPAWNED 1089
-#define IDS_MAX_ENEMIES_SPAWNED 1052
-#define IDS_MAX_ENEMIES_SPAWNED 1090
-#define IDS_MAX_HANGINGENTITIES 1053
-#define IDS_MAX_HANGINGENTITIES 1091
-#define IDS_MAX_HORSES_BRED 1092
-#define IDS_MAX_MOOSHROOMS_SPAWNED 1054
-#define IDS_MAX_MOOSHROOMS_SPAWNED 1093
-#define IDS_MAX_MUSHROOMCOWS_BRED 1055
-#define IDS_MAX_MUSHROOMCOWS_BRED 1094
-#define IDS_MAX_PIGS_SHEEP_COWS_CATS_BRED 1056
-#define IDS_MAX_PIGS_SHEEP_COWS_CATS_BRED 1095
-#define IDS_MAX_PIGS_SHEEP_COWS_CATS_SPAWNED 1057
-#define IDS_MAX_PIGS_SHEEP_COWS_CATS_SPAWNED 1096
-#define IDS_MAX_SKULL_TILES 1058
-#define IDS_MAX_SKULL_TILES 1097
-#define IDS_MAX_SQUID_SPAWNED 1059
-#define IDS_MAX_SQUID_SPAWNED 1098
-#define IDS_MAX_VILLAGERS_SPAWNED 1060
-#define IDS_MAX_VILLAGERS_SPAWNED 1099
-#define IDS_MAX_WOLVES_BRED 1061
-#define IDS_MAX_WOLVES_BRED 1100
-#define IDS_MAX_WOLVES_SPAWNED 1062
-#define IDS_MAX_WOLVES_SPAWNED 1101
-#define IDS_MINUTES 1063
-#define IDS_MINUTES 1102
-#define IDS_MOB_GRIEFING 1103
-#define IDS_MOB_LOOT 1104
-#define IDS_MOB_SPAWNING 1105
-#define IDS_MODERATOR 1064
-#define IDS_MODERATOR 1106
-#define IDS_MORE_OPTIONS 1065
-#define IDS_MORE_OPTIONS 1107
-#define IDS_MULE 1066
-#define IDS_MULE 1108
-#define IDS_MULTIPLAYER_FULL_TEXT 1067
-#define IDS_MULTIPLAYER_FULL_TEXT 1109
-#define IDS_MULTIPLAYER_FULL_TITLE 1068
-#define IDS_MULTIPLAYER_FULL_TITLE 1110
-#define IDS_MUSHROOM_COW 1069
-#define IDS_MUSHROOM_COW 1111
-#define IDS_MUST_SIGN_IN_TEXT 1070
-#define IDS_MUST_SIGN_IN_TEXT 1112
-#define IDS_MUST_SIGN_IN_TITLE 1071
-#define IDS_MUST_SIGN_IN_TITLE 1113
-#define IDS_NAME_CAPTION 1072
-#define IDS_NAME_CAPTION 1114
-#define IDS_NAME_CAPTION_TEXT 1073
-#define IDS_NAME_CAPTION_TEXT 1115
-#define IDS_NAME_DESC 1074
-#define IDS_NAME_DESC 1116
-#define IDS_NAME_DESC_TEXT 1075
-#define IDS_NAME_DESC_TEXT 1117
-#define IDS_NAME_TITLE 1076
-#define IDS_NAME_TITLE 1118
-#define IDS_NAME_TITLE_TEXT 1077
-#define IDS_NAME_TITLE_TEXT 1119
-#define IDS_NAME_WORLD 1078
-#define IDS_NAME_WORLD 1120
-#define IDS_NAME_WORLD_TEXT 1079
-#define IDS_NAME_WORLD_TEXT 1121
-#define IDS_NATURAL_REGEN 1080
-#define IDS_NATURAL_REGEN 1122
-#define IDS_NETHER_STAR 1081
-#define IDS_NETHER_STAR 1123
-#define IDS_NETWORK_ADHOC 1124
-#define IDS_NO 1082
-#define IDS_NO 1125
-#define IDS_NO_DLCCATEGORIES 1083
-#define IDS_NO_DLCCATEGORIES 1126
-#define IDS_NO_DLCOFFERS 1084
-#define IDS_NO_DLCOFFERS 1127
-#define IDS_NO_GAMES_FOUND 1085
-#define IDS_NO_GAMES_FOUND 1128
-#define IDS_NO_MULTIPLAYER_PRIVILEGE_HOST_TEXT 1086
-#define IDS_NO_MULTIPLAYER_PRIVILEGE_HOST_TEXT 1129
-#define IDS_NO_MULTIPLAYER_PRIVILEGE_JOIN_TEXT 1087
-#define IDS_NO_MULTIPLAYER_PRIVILEGE_JOIN_TEXT 1130
-#define IDS_NO_MULTIPLAYER_PRIVILEGE_TITLE 1088
-#define IDS_NO_MULTIPLAYER_PRIVILEGE_TITLE 1131
-#define IDS_NO_PLAYSTATIONPLUS 1089
-#define IDS_NO_SKIN_PACK 1090
-#define IDS_NO_SKIN_PACK 1132
-#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_ALL_LOCAL 1091
-#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_ALL_LOCAL 1133
-#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_CREATE 1092
-#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_CREATE 1134
-#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_SINGLE_LOCAL 1093
-#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_SINGLE_LOCAL 1135
-#define IDS_NODEVICE_DECLINE 1094
-#define IDS_NODEVICE_DECLINE 1136
-#define IDS_NOFREESPACE_TEXT 1095
-#define IDS_NOFREESPACE_TEXT 1137
-#define IDS_NOFREESPACE_TITLE 1096
-#define IDS_NOFREESPACE_TITLE 1138
-#define IDS_NOTALLOWED_FRIENDSOFFRIENDS 1097
-#define IDS_NOTALLOWED_FRIENDSOFFRIENDS 1139
-#define IDS_NOWPLAYING 1098
-#define IDS_NOWPLAYING 1140
-#define IDS_OFF 1099
-#define IDS_OFF 1141
-#define IDS_OK 1100
-#define IDS_OK 1142
-#define IDS_ON 1101
-#define IDS_ON 1143
-#define IDS_ONLINE_GAME 1102
-#define IDS_ONLINE_GAME 1144
-#define IDS_ONLINE_SERVICE_TITLE 1103
-#define IDS_ONLINE_SERVICE_TITLE 1145
-#define IDS_OPTIONS 1104
-#define IDS_OPTIONS 1146
-#define IDS_OPTIONSFILE 1105
-#define IDS_OPTIONSFILE 1147
-#define IDS_OVERWRITESAVE_NO 1106
-#define IDS_OVERWRITESAVE_NO 1148
-#define IDS_OVERWRITESAVE_TITLE 1107
-#define IDS_OVERWRITESAVE_TITLE 1149
-#define IDS_OVERWRITESAVE_YES 1108
-#define IDS_OVERWRITESAVE_YES 1150
-#define IDS_OZELOT 1109
-#define IDS_OZELOT 1151
-#define IDS_PATCH_AVAILABLE_TEXT 1110
-#define IDS_PATCH_AVAILABLE_TITLE 1111
-#define IDS_PIG 1112
-#define IDS_PIG 1152
-#define IDS_PIGZOMBIE 1113
-#define IDS_PIGZOMBIE 1153
-#define IDS_PLATFORM_NAME 1154
-#define IDS_PLAY_GAME 1114
-#define IDS_PLAY_GAME 1155
-#define IDS_PLAY_OFFLINE 1115
-#define IDS_PLAY_TUTORIAL 1116
-#define IDS_PLAY_TUTORIAL 1156
-#define IDS_PLAYER_BANNED_LEVEL 1117
-#define IDS_PLAYER_BANNED_LEVEL 1157
-#define IDS_PLAYER_ENTERED_END 1118
-#define IDS_PLAYER_ENTERED_END 1158
-#define IDS_PLAYER_JOINED 1119
-#define IDS_PLAYER_JOINED 1159
-#define IDS_PLAYER_KICKED 1120
-#define IDS_PLAYER_KICKED 1160
-#define IDS_PLAYER_LEFT 1121
-#define IDS_PLAYER_LEFT 1161
-#define IDS_PLAYER_LEFT_END 1122
-#define IDS_PLAYER_LEFT_END 1162
-#define IDS_PLAYER_LIST_TITLE 1123
-#define IDS_PLAYER_LIST_TITLE 1163
-#define IDS_PLAYER_VS_PLAYER 1124
-#define IDS_PLAYER_VS_PLAYER 1164
-#define IDS_PLAYERS 1125
-#define IDS_PLAYERS 1165
-#define IDS_PLAYERS_INVITE 1126
-#define IDS_PLAYERS_INVITE 1166
-#define IDS_PLAYSTATIONPLUS_SIGNUP 1127
-#define IDS_PLAYWITHOUTSAVING 1128
-#define IDS_PLAYWITHOUTSAVING 1167
-#define IDS_POTATO 1129
-#define IDS_POTATO 1168
-#define IDS_POTION_ABSORPTION 1169
-#define IDS_POTION_ABSORPTION_POSTFIX 1170
-#define IDS_POTION_BLINDNESS 1130
-#define IDS_POTION_BLINDNESS 1171
-#define IDS_POTION_BLINDNESS_POSTFIX 1131
-#define IDS_POTION_BLINDNESS_POSTFIX 1172
-#define IDS_POTION_CONFUSION 1132
-#define IDS_POTION_CONFUSION 1173
-#define IDS_POTION_CONFUSION_POSTFIX 1133
-#define IDS_POTION_CONFUSION_POSTFIX 1174
-#define IDS_POTION_DAMAGEBOOST 1134
-#define IDS_POTION_DAMAGEBOOST 1175
-#define IDS_POTION_DAMAGEBOOST_POSTFIX 1135
-#define IDS_POTION_DAMAGEBOOST_POSTFIX 1176
-#define IDS_POTION_DESC_DAMAGEBOOST 1136
-#define IDS_POTION_DESC_DAMAGEBOOST 1177
-#define IDS_POTION_DESC_EMPTY 1137
-#define IDS_POTION_DESC_EMPTY 1178
-#define IDS_POTION_DESC_FIRERESISTANCE 1138
-#define IDS_POTION_DESC_FIRERESISTANCE 1179
-#define IDS_POTION_DESC_HARM 1139
-#define IDS_POTION_DESC_HARM 1180
-#define IDS_POTION_DESC_HEAL 1140
-#define IDS_POTION_DESC_HEAL 1181
-#define IDS_POTION_DESC_INVISIBILITY 1141
-#define IDS_POTION_DESC_INVISIBILITY 1182
-#define IDS_POTION_DESC_MOVESLOWDOWN 1142
-#define IDS_POTION_DESC_MOVESLOWDOWN 1183
-#define IDS_POTION_DESC_MOVESPEED 1143
-#define IDS_POTION_DESC_MOVESPEED 1184
-#define IDS_POTION_DESC_NIGHTVISION 1144
-#define IDS_POTION_DESC_NIGHTVISION 1185
-#define IDS_POTION_DESC_POISON 1145
-#define IDS_POTION_DESC_POISON 1186
-#define IDS_POTION_DESC_REGENERATION 1146
-#define IDS_POTION_DESC_REGENERATION 1187
-#define IDS_POTION_DESC_WATER_BOTTLE 1147
-#define IDS_POTION_DESC_WATER_BOTTLE 1188
-#define IDS_POTION_DESC_WEAKNESS 1148
-#define IDS_POTION_DESC_WEAKNESS 1189
-#define IDS_POTION_DIGSLOWDOWN 1149
-#define IDS_POTION_DIGSLOWDOWN 1190
-#define IDS_POTION_DIGSLOWDOWN_POSTFIX 1150
-#define IDS_POTION_DIGSLOWDOWN_POSTFIX 1191
-#define IDS_POTION_DIGSPEED 1151
-#define IDS_POTION_DIGSPEED 1192
-#define IDS_POTION_DIGSPEED_POSTFIX 1152
-#define IDS_POTION_DIGSPEED_POSTFIX 1193
-#define IDS_POTION_EFFECTS_WHENDRANK 1194
-#define IDS_POTION_EMPTY 1153
-#define IDS_POTION_EMPTY 1195
-#define IDS_POTION_FIRERESISTANCE 1154
-#define IDS_POTION_FIRERESISTANCE 1196
-#define IDS_POTION_FIRERESISTANCE_POSTFIX 1155
-#define IDS_POTION_FIRERESISTANCE_POSTFIX 1197
-#define IDS_POTION_HARM 1156
-#define IDS_POTION_HARM 1198
-#define IDS_POTION_HARM_POSTFIX 1157
-#define IDS_POTION_HARM_POSTFIX 1199
-#define IDS_POTION_HEAL 1158
-#define IDS_POTION_HEAL 1200
-#define IDS_POTION_HEAL_POSTFIX 1159
-#define IDS_POTION_HEAL_POSTFIX 1201
-#define IDS_POTION_HEALTHBOOST 1202
-#define IDS_POTION_HEALTHBOOST_POSTFIX 1203
-#define IDS_POTION_HUNGER 1160
-#define IDS_POTION_HUNGER 1204
-#define IDS_POTION_HUNGER_POSTFIX 1161
-#define IDS_POTION_HUNGER_POSTFIX 1205
-#define IDS_POTION_INVISIBILITY 1162
-#define IDS_POTION_INVISIBILITY 1206
-#define IDS_POTION_INVISIBILITY_POSTFIX 1163
-#define IDS_POTION_INVISIBILITY_POSTFIX 1207
-#define IDS_POTION_JUMP 1164
-#define IDS_POTION_JUMP 1208
-#define IDS_POTION_JUMP_POSTFIX 1165
-#define IDS_POTION_JUMP_POSTFIX 1209
-#define IDS_POTION_MOVESLOWDOWN 1166
-#define IDS_POTION_MOVESLOWDOWN 1210
-#define IDS_POTION_MOVESLOWDOWN_POSTFIX 1167
-#define IDS_POTION_MOVESLOWDOWN_POSTFIX 1211
-#define IDS_POTION_MOVESPEED 1168
-#define IDS_POTION_MOVESPEED 1212
-#define IDS_POTION_MOVESPEED_POSTFIX 1169
-#define IDS_POTION_MOVESPEED_POSTFIX 1213
-#define IDS_POTION_NIGHTVISION 1170
-#define IDS_POTION_NIGHTVISION 1214
-#define IDS_POTION_NIGHTVISION_POSTFIX 1171
-#define IDS_POTION_NIGHTVISION_POSTFIX 1215
-#define IDS_POTION_POISON 1172
-#define IDS_POTION_POISON 1216
-#define IDS_POTION_POISON_POSTFIX 1173
-#define IDS_POTION_POISON_POSTFIX 1217
-#define IDS_POTION_POTENCY_0 1174
-#define IDS_POTION_POTENCY_0 1218
-#define IDS_POTION_POTENCY_1 1175
-#define IDS_POTION_POTENCY_1 1219
-#define IDS_POTION_POTENCY_2 1176
-#define IDS_POTION_POTENCY_2 1220
-#define IDS_POTION_POTENCY_3 1177
-#define IDS_POTION_POTENCY_3 1221
-#define IDS_POTION_PREFIX_ACRID 1178
-#define IDS_POTION_PREFIX_ACRID 1222
-#define IDS_POTION_PREFIX_ARTLESS 1179
-#define IDS_POTION_PREFIX_ARTLESS 1223
-#define IDS_POTION_PREFIX_AWKWARD 1180
-#define IDS_POTION_PREFIX_AWKWARD 1224
-#define IDS_POTION_PREFIX_BLAND 1181
-#define IDS_POTION_PREFIX_BLAND 1225
-#define IDS_POTION_PREFIX_BULKY 1182
-#define IDS_POTION_PREFIX_BULKY 1226
-#define IDS_POTION_PREFIX_BUNGLING 1183
-#define IDS_POTION_PREFIX_BUNGLING 1227
-#define IDS_POTION_PREFIX_BUTTERED 1184
-#define IDS_POTION_PREFIX_BUTTERED 1228
-#define IDS_POTION_PREFIX_CHARMING 1185
-#define IDS_POTION_PREFIX_CHARMING 1229
-#define IDS_POTION_PREFIX_CLEAR 1186
-#define IDS_POTION_PREFIX_CLEAR 1230
-#define IDS_POTION_PREFIX_CORDIAL 1187
-#define IDS_POTION_PREFIX_CORDIAL 1231
-#define IDS_POTION_PREFIX_DASHING 1188
-#define IDS_POTION_PREFIX_DASHING 1232
-#define IDS_POTION_PREFIX_DEBONAIR 1189
-#define IDS_POTION_PREFIX_DEBONAIR 1233
-#define IDS_POTION_PREFIX_DIFFUSE 1190
-#define IDS_POTION_PREFIX_DIFFUSE 1234
-#define IDS_POTION_PREFIX_ELEGANT 1191
-#define IDS_POTION_PREFIX_ELEGANT 1235
-#define IDS_POTION_PREFIX_FANCY 1192
-#define IDS_POTION_PREFIX_FANCY 1236
-#define IDS_POTION_PREFIX_FLAT 1193
-#define IDS_POTION_PREFIX_FLAT 1237
-#define IDS_POTION_PREFIX_FOUL 1194
-#define IDS_POTION_PREFIX_FOUL 1238
-#define IDS_POTION_PREFIX_GRENADE 1195
-#define IDS_POTION_PREFIX_GRENADE 1239
-#define IDS_POTION_PREFIX_GROSS 1196
-#define IDS_POTION_PREFIX_GROSS 1240
-#define IDS_POTION_PREFIX_HARSH 1197
-#define IDS_POTION_PREFIX_HARSH 1241
-#define IDS_POTION_PREFIX_MILKY 1198
-#define IDS_POTION_PREFIX_MILKY 1242
-#define IDS_POTION_PREFIX_MUNDANE 1199
-#define IDS_POTION_PREFIX_MUNDANE 1243
-#define IDS_POTION_PREFIX_ODORLESS 1200
-#define IDS_POTION_PREFIX_ODORLESS 1244
-#define IDS_POTION_PREFIX_POTENT 1201
-#define IDS_POTION_PREFIX_POTENT 1245
-#define IDS_POTION_PREFIX_RANK 1202
-#define IDS_POTION_PREFIX_RANK 1246
-#define IDS_POTION_PREFIX_REFINED 1203
-#define IDS_POTION_PREFIX_REFINED 1247
-#define IDS_POTION_PREFIX_SMOOTH 1204
-#define IDS_POTION_PREFIX_SMOOTH 1248
-#define IDS_POTION_PREFIX_SPARKLING 1205
-#define IDS_POTION_PREFIX_SPARKLING 1249
-#define IDS_POTION_PREFIX_STINKY 1206
-#define IDS_POTION_PREFIX_STINKY 1250
-#define IDS_POTION_PREFIX_SUAVE 1207
-#define IDS_POTION_PREFIX_SUAVE 1251
-#define IDS_POTION_PREFIX_THICK 1208
-#define IDS_POTION_PREFIX_THICK 1252
-#define IDS_POTION_PREFIX_THIN 1209
-#define IDS_POTION_PREFIX_THIN 1253
-#define IDS_POTION_PREFIX_UNINTERESTING 1210
-#define IDS_POTION_PREFIX_UNINTERESTING 1254
-#define IDS_POTION_REGENERATION 1211
-#define IDS_POTION_REGENERATION 1255
-#define IDS_POTION_REGENERATION_POSTFIX 1212
-#define IDS_POTION_REGENERATION_POSTFIX 1256
-#define IDS_POTION_RESISTANCE 1213
-#define IDS_POTION_RESISTANCE 1257
-#define IDS_POTION_RESISTANCE_POSTFIX 1214
-#define IDS_POTION_RESISTANCE_POSTFIX 1258
-#define IDS_POTION_SATURATION 1259
-#define IDS_POTION_SATURATION_POSTFIX 1260
-#define IDS_POTION_WATERBREATHING 1215
-#define IDS_POTION_WATERBREATHING 1261
-#define IDS_POTION_WATERBREATHING_POSTFIX 1216
-#define IDS_POTION_WATERBREATHING_POSTFIX 1262
-#define IDS_POTION_WEAKNESS 1217
-#define IDS_POTION_WEAKNESS 1263
-#define IDS_POTION_WEAKNESS_POSTFIX 1218
-#define IDS_POTION_WEAKNESS_POSTFIX 1264
-#define IDS_POTION_WITHER 1265
-#define IDS_POTION_WITHER_POSTFIX 1266
-#define IDS_PRESS_START_TO_JOIN 1219
-#define IDS_PRESS_START_TO_JOIN 1267
-#define IDS_PRESS_X_TO_JOIN 1220
-#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_OFF 1221
-#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_OFF 1268
-#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_ON 1222
-#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_ON 1269
-#define IDS_PRIV_ATTACK_MOB_TOGGLE_OFF 1223
-#define IDS_PRIV_ATTACK_MOB_TOGGLE_OFF 1270
-#define IDS_PRIV_ATTACK_MOB_TOGGLE_ON 1224
-#define IDS_PRIV_ATTACK_MOB_TOGGLE_ON 1271
-#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_OFF 1225
-#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_OFF 1272
-#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_ON 1226
-#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_ON 1273
-#define IDS_PRIV_BUILD_TOGGLE_OFF 1227
-#define IDS_PRIV_BUILD_TOGGLE_OFF 1274
-#define IDS_PRIV_BUILD_TOGGLE_ON 1228
-#define IDS_PRIV_BUILD_TOGGLE_ON 1275
-#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_OFF 1229
-#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_OFF 1276
-#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_ON 1230
-#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_ON 1277
-#define IDS_PRIV_CAN_FLY_TOGGLE_OFF 1231
-#define IDS_PRIV_CAN_FLY_TOGGLE_OFF 1278
-#define IDS_PRIV_CAN_FLY_TOGGLE_ON 1232
-#define IDS_PRIV_CAN_FLY_TOGGLE_ON 1279
-#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_OFF 1233
-#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_OFF 1280
-#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_ON 1234
-#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_ON 1281
-#define IDS_PRIV_CAN_TELEPORT_TOGGLE_OFF 1235
-#define IDS_PRIV_CAN_TELEPORT_TOGGLE_OFF 1282
-#define IDS_PRIV_CAN_TELEPORT_TOGGLE_ON 1236
-#define IDS_PRIV_CAN_TELEPORT_TOGGLE_ON 1283
-#define IDS_PRIV_EXHAUSTION_TOGGLE_OFF 1237
-#define IDS_PRIV_EXHAUSTION_TOGGLE_OFF 1284
-#define IDS_PRIV_EXHAUSTION_TOGGLE_ON 1238
-#define IDS_PRIV_EXHAUSTION_TOGGLE_ON 1285
-#define IDS_PRIV_FLY_TOGGLE_OFF 1239
-#define IDS_PRIV_FLY_TOGGLE_OFF 1286
-#define IDS_PRIV_FLY_TOGGLE_ON 1240
-#define IDS_PRIV_FLY_TOGGLE_ON 1287
-#define IDS_PRIV_INVISIBLE_TOGGLE_OFF 1241
-#define IDS_PRIV_INVISIBLE_TOGGLE_OFF 1288
-#define IDS_PRIV_INVISIBLE_TOGGLE_ON 1242
-#define IDS_PRIV_INVISIBLE_TOGGLE_ON 1289
-#define IDS_PRIV_INVULNERABLE_TOGGLE_OFF 1243
-#define IDS_PRIV_INVULNERABLE_TOGGLE_OFF 1290
-#define IDS_PRIV_INVULNERABLE_TOGGLE_ON 1244
-#define IDS_PRIV_INVULNERABLE_TOGGLE_ON 1291
-#define IDS_PRIV_MINE_TOGGLE_OFF 1245
-#define IDS_PRIV_MINE_TOGGLE_OFF 1292
-#define IDS_PRIV_MINE_TOGGLE_ON 1246
-#define IDS_PRIV_MINE_TOGGLE_ON 1293
-#define IDS_PRIV_MODERATOR_TOGGLE_OFF 1247
-#define IDS_PRIV_MODERATOR_TOGGLE_OFF 1294
-#define IDS_PRIV_MODERATOR_TOGGLE_ON 1248
-#define IDS_PRIV_MODERATOR_TOGGLE_ON 1295
-#define IDS_PRIV_USE_CONTAINERS_TOGGLE_OFF 1249
-#define IDS_PRIV_USE_CONTAINERS_TOGGLE_OFF 1296
-#define IDS_PRIV_USE_CONTAINERS_TOGGLE_ON 1250
-#define IDS_PRIV_USE_CONTAINERS_TOGGLE_ON 1297
-#define IDS_PRIV_USE_DOORS_TOGGLE_OFF 1251
-#define IDS_PRIV_USE_DOORS_TOGGLE_OFF 1298
-#define IDS_PRIV_USE_DOORS_TOGGLE_ON 1252
-#define IDS_PRIV_USE_DOORS_TOGGLE_ON 1299
-#define IDS_PRO_ACHIEVEMENTPROBLEM_TEXT 1253
-#define IDS_PRO_ACHIEVEMENTPROBLEM_TEXT 1300
-#define IDS_PRO_ACHIEVEMENTPROBLEM_TITLE 1254
-#define IDS_PRO_ACHIEVEMENTPROBLEM_TITLE 1301
-#define IDS_PRO_GUESTPROFILE_TEXT 1255
-#define IDS_PRO_GUESTPROFILE_TEXT 1302
-#define IDS_PRO_GUESTPROFILE_TITLE 1256
-#define IDS_PRO_GUESTPROFILE_TITLE 1303
-#define IDS_PRO_NOPROFILE_TITLE 1257
-#define IDS_PRO_NOPROFILE_TITLE 1304
-#define IDS_PRO_NOPROFILEOPTIONS_TEXT 1258
-#define IDS_PRO_NOPROFILEOPTIONS_TEXT 1305
-#define IDS_PRO_NOTADHOCONLINE_ACCEPT 1306
-#define IDS_PRO_NOTADHOCONLINE_TEXT 1307
-#define IDS_PRO_NOTADHOCONLINE_TITLE 1308
-#define IDS_PRO_NOTONLINE_ACCEPT 1259
-#define IDS_PRO_NOTONLINE_ACCEPT 1309
-#define IDS_PRO_NOTONLINE_DECLINE 1260
-#define IDS_PRO_NOTONLINE_DECLINE 1310
-#define IDS_PRO_NOTONLINE_TEXT 1261
-#define IDS_PRO_NOTONLINE_TEXT 1311
-#define IDS_PRO_NOTONLINE_TITLE 1262
-#define IDS_PRO_NOTONLINE_TITLE 1312
-#define IDS_PRO_RETURNEDTOMENU_ACCEPT 1263
-#define IDS_PRO_RETURNEDTOMENU_ACCEPT 1313
-#define IDS_PRO_RETURNEDTOMENU_TEXT 1264
-#define IDS_PRO_RETURNEDTOMENU_TEXT 1314
-#define IDS_PRO_RETURNEDTOMENU_TITLE 1265
-#define IDS_PRO_RETURNEDTOMENU_TITLE 1315
-#define IDS_PRO_RETURNEDTOTITLESCREEN_TEXT 1266
-#define IDS_PRO_RETURNEDTOTITLESCREEN_TEXT 1316
-#define IDS_PRO_UNLOCKGAME_TEXT 1267
-#define IDS_PRO_UNLOCKGAME_TEXT 1317
-#define IDS_PRO_UNLOCKGAME_TITLE 1268
-#define IDS_PRO_UNLOCKGAME_TITLE 1318
-#define IDS_PRO_XBOXLIVE_NOTIFICATION 1269
-#define IDS_PRO_XBOXLIVE_NOTIFICATION 1319
-#define IDS_PROGRESS_AUTOSAVING_LEVEL 1270
-#define IDS_PROGRESS_AUTOSAVING_LEVEL 1320
-#define IDS_PROGRESS_BUILDING_TERRAIN 1271
-#define IDS_PROGRESS_BUILDING_TERRAIN 1321
-#define IDS_PROGRESS_CONNECTING 1272
-#define IDS_PROGRESS_CONNECTING 1322
-#define IDS_PROGRESS_CONVERTING_TO_OFFLINE_GAME 1273
-#define IDS_PROGRESS_CONVERTING_TO_OFFLINE_GAME 1323
-#define IDS_PROGRESS_COPYING_SAVE 1274
-#define IDS_PROGRESS_DOWNLOADING_TERRAIN 1275
-#define IDS_PROGRESS_DOWNLOADING_TERRAIN 1324
-#define IDS_PROGRESS_ENTERING_END 1276
-#define IDS_PROGRESS_ENTERING_END 1325
-#define IDS_PROGRESS_ENTERING_NETHER 1277
-#define IDS_PROGRESS_ENTERING_NETHER 1326
-#define IDS_PROGRESS_GENERATING_LEVEL 1278
-#define IDS_PROGRESS_GENERATING_LEVEL 1327
-#define IDS_PROGRESS_GENERATING_SPAWN_AREA 1279
-#define IDS_PROGRESS_GENERATING_SPAWN_AREA 1328
-#define IDS_PROGRESS_HOST_SAVING 1280
-#define IDS_PROGRESS_HOST_SAVING 1329
-#define IDS_PROGRESS_INITIALISING_SERVER 1281
-#define IDS_PROGRESS_INITIALISING_SERVER 1330
-#define IDS_PROGRESS_LEAVING_END 1282
-#define IDS_PROGRESS_LEAVING_END 1331
-#define IDS_PROGRESS_LEAVING_NETHER 1283
-#define IDS_PROGRESS_LEAVING_NETHER 1332
-#define IDS_PROGRESS_LOADING_LEVEL 1284
-#define IDS_PROGRESS_LOADING_LEVEL 1333
-#define IDS_PROGRESS_LOADING_SPAWN_AREA 1285
-#define IDS_PROGRESS_LOADING_SPAWN_AREA 1334
-#define IDS_PROGRESS_NEW_WORLD_SEED 1286
-#define IDS_PROGRESS_NEW_WORLD_SEED 1335
-#define IDS_PROGRESS_RESPAWNING 1287
-#define IDS_PROGRESS_RESPAWNING 1336
-#define IDS_PROGRESS_SAVING_CHUNKS 1288
-#define IDS_PROGRESS_SAVING_CHUNKS 1337
-#define IDS_PROGRESS_SAVING_LEVEL 1289
-#define IDS_PROGRESS_SAVING_LEVEL 1338
-#define IDS_PROGRESS_SAVING_PLAYERS 1290
-#define IDS_PROGRESS_SAVING_PLAYERS 1339
-#define IDS_PROGRESS_SAVING_TO_DISC 1291
-#define IDS_PROGRESS_SAVING_TO_DISC 1340
-#define IDS_PROGRESS_SIMULATING_WORLD 1292
-#define IDS_PROGRESS_SIMULATING_WORLD 1341
-#define IDS_REINSTALL_AVATAR_ITEM_1 1293
-#define IDS_REINSTALL_AVATAR_ITEM_1 1342
-#define IDS_REINSTALL_AVATAR_ITEM_2 1294
-#define IDS_REINSTALL_AVATAR_ITEM_2 1343
-#define IDS_REINSTALL_AVATAR_ITEM_3 1295
-#define IDS_REINSTALL_AVATAR_ITEM_3 1344
-#define IDS_REINSTALL_CONTENT 1296
-#define IDS_REINSTALL_CONTENT 1345
-#define IDS_REINSTALL_GAMERPIC_1 1297
-#define IDS_REINSTALL_GAMERPIC_1 1346
-#define IDS_REINSTALL_GAMERPIC_2 1298
-#define IDS_REINSTALL_GAMERPIC_2 1347
-#define IDS_REINSTALL_THEME 1299
-#define IDS_REINSTALL_THEME 1348
-#define IDS_RENAME_WORLD_TEXT 1300
-#define IDS_RENAME_WORLD_TEXT 1349
-#define IDS_RENAME_WORLD_TITLE 1301
-#define IDS_RENAME_WORLD_TITLE 1350
-#define IDS_REPAIR_AND_NAME 1302
-#define IDS_REPAIR_AND_NAME 1351
-#define IDS_REPAIR_COST 1303
-#define IDS_REPAIR_COST 1352
-#define IDS_REPAIR_EXPENSIVE 1304
-#define IDS_REPAIR_EXPENSIVE 1353
-#define IDS_REQUIRED_ITEMS_FOR_TRADE 1305
-#define IDS_REQUIRED_ITEMS_FOR_TRADE 1354
-#define IDS_RESET_NETHER 1306
-#define IDS_RESET_NETHER 1355
-#define IDS_RESET_TO_DEFAULTS 1307
-#define IDS_RESET_TO_DEFAULTS 1356
-#define IDS_RESETNETHER_TEXT 1308
-#define IDS_RESETNETHER_TEXT 1357
-#define IDS_RESETNETHER_TITLE 1309
-#define IDS_RESETNETHER_TITLE 1358
-#define IDS_RESPAWN 1310
-#define IDS_RESPAWN 1359
-#define IDS_RESUME_GAME 1311
-#define IDS_RESUME_GAME 1360
-#define IDS_RETURNEDTOMENU_TITLE 1312
-#define IDS_RETURNEDTOMENU_TITLE 1361
-#define IDS_RETURNEDTOTITLESCREEN_TEXT 1313
-#define IDS_RETURNEDTOTITLESCREEN_TEXT 1362
-#define IDS_RICHPRESENCE_GAMESTATE 1314
-#define IDS_RICHPRESENCE_GAMESTATE 1363
-#define IDS_RICHPRESENCE_IDLE 1315
-#define IDS_RICHPRESENCE_IDLE 1364
-#define IDS_RICHPRESENCE_MENUS 1316
-#define IDS_RICHPRESENCE_MENUS 1365
-#define IDS_RICHPRESENCE_MULTIPLAYER 1317
-#define IDS_RICHPRESENCE_MULTIPLAYER 1366
-#define IDS_RICHPRESENCE_MULTIPLAYER_1P 1318
-#define IDS_RICHPRESENCE_MULTIPLAYER_1P 1367
-#define IDS_RICHPRESENCE_MULTIPLAYER_1POFFLINE 1319
-#define IDS_RICHPRESENCE_MULTIPLAYER_1POFFLINE 1368
-#define IDS_RICHPRESENCE_MULTIPLAYEROFFLINE 1320
-#define IDS_RICHPRESENCE_MULTIPLAYEROFFLINE 1369
-#define IDS_RICHPRESENCESTATE_ANVIL 1321
-#define IDS_RICHPRESENCESTATE_ANVIL 1370
-#define IDS_RICHPRESENCESTATE_BLANK 1322
-#define IDS_RICHPRESENCESTATE_BLANK 1371
-#define IDS_RICHPRESENCESTATE_BOATING 1323
-#define IDS_RICHPRESENCESTATE_BOATING 1372
-#define IDS_RICHPRESENCESTATE_BREWING 1324
-#define IDS_RICHPRESENCESTATE_BREWING 1373
-#define IDS_RICHPRESENCESTATE_CD 1325
-#define IDS_RICHPRESENCESTATE_CD 1374
-#define IDS_RICHPRESENCESTATE_CRAFTING 1326
-#define IDS_RICHPRESENCESTATE_CRAFTING 1375
-#define IDS_RICHPRESENCESTATE_ENCHANTING 1327
-#define IDS_RICHPRESENCESTATE_ENCHANTING 1376
-#define IDS_RICHPRESENCESTATE_FISHING 1328
-#define IDS_RICHPRESENCESTATE_FISHING 1377
-#define IDS_RICHPRESENCESTATE_FORGING 1329
-#define IDS_RICHPRESENCESTATE_FORGING 1378
-#define IDS_RICHPRESENCESTATE_MAP 1330
-#define IDS_RICHPRESENCESTATE_MAP 1379
-#define IDS_RICHPRESENCESTATE_NETHER 1331
-#define IDS_RICHPRESENCESTATE_NETHER 1380
-#define IDS_RICHPRESENCESTATE_RIDING_MINECART 1332
-#define IDS_RICHPRESENCESTATE_RIDING_MINECART 1381
-#define IDS_RICHPRESENCESTATE_RIDING_PIG 1333
-#define IDS_RICHPRESENCESTATE_RIDING_PIG 1382
-#define IDS_RICHPRESENCESTATE_TRADING 1334
-#define IDS_RICHPRESENCESTATE_TRADING 1383
-#define IDS_SAVE_GAME 1335
-#define IDS_SAVE_GAME 1384
-#define IDS_SAVE_ICON_MESSAGE 1336
-#define IDS_SAVE_ICON_MESSAGE 1385
-#define IDS_SAVE_INCOMPLETE_DELETE_SAVES 1337
-#define IDS_SAVE_INCOMPLETE_DISABLE_SAVING 1338
-#define IDS_SAVE_INCOMPLETE_EXPLANATION_LOCAL_STORAGE 1339
-#define IDS_SAVE_INCOMPLETE_EXPLANATION_QUOTA 1340
-#define IDS_SAVE_INCOMPLETE_EXPLANATION_QUOTA 1386
-#define IDS_SAVE_INCOMPLETE_RETRY_SAVING 1341
-#define IDS_SAVE_INCOMPLETE_TITLE 1342
-#define IDS_SAVE_INCOMPLETE_TITLE 1387
-#define IDS_SAVE_SUBTITLE_SUFFIX 1343
-#define IDS_SAVE_TRANSFER_DOWNLOADCOMPLETE 1344
-#define IDS_SAVE_TRANSFER_DOWNLOADCOMPLETE 1388
-#define IDS_SAVE_TRANSFER_DOWNLOADFAILED 1345
-#define IDS_SAVE_TRANSFER_DOWNLOADFAILED 1389
-#define IDS_SAVE_TRANSFER_NOT_AVAILABLE_TEXT 1346
-#define IDS_SAVE_TRANSFER_NOT_AVAILABLE_TEXT 1390
-#define IDS_SAVE_TRANSFER_TEXT 1347
-#define IDS_SAVE_TRANSFER_TEXT 1391
-#define IDS_SAVE_TRANSFER_UPLOADCOMPLETE 1392
-#define IDS_SAVE_TRANSFER_UPLOADFAILED 1393
-#define IDS_SAVE_TRANSFER_WRONG_VERSION 1394
-#define IDS_SAVECACHEFILE 1348
-#define IDS_SAVECACHEFILE 1395
-#define IDS_SAVEDATA_COPIED_TEXT 1349
-#define IDS_SAVEDATA_COPIED_TEXT 1396
-#define IDS_SAVEDATA_COPIED_TITLE 1350
-#define IDS_SAVEDATA_COPIED_TITLE 1397
-#define IDS_SAVETRANSFER_STAGE_CONVERTING 1351
-#define IDS_SAVETRANSFER_STAGE_CONVERTING 1398
-#define IDS_SAVETRANSFER_STAGE_GET_DATA 1352
-#define IDS_SAVETRANSFER_STAGE_GET_DATA 1399
-#define IDS_SAVETRANSFER_STAGE_PUT_DATA 1353
-#define IDS_SAVETRANSFER_STAGE_PUT_DATA 1400
-#define IDS_SAVETRANSFER_STAGE_SAVING 1354
-#define IDS_SAVETRANSFER_STAGE_SAVING 1401
-#define IDS_SEED 1355
-#define IDS_SEED 1402
-#define IDS_SELECT_NETWORK_MODE_TEXT 1403
-#define IDS_SELECT_NETWORK_MODE_TITLE 1404
-#define IDS_SELECTAGAIN 1356
-#define IDS_SELECTAGAIN 1405
-#define IDS_SELECTED 1357
-#define IDS_SELECTED 1406
-#define IDS_SELECTED_SKIN 1358
-#define IDS_SELECTED_SKIN 1407
-#define IDS_SETTINGS 1359
-#define IDS_SETTINGS 1408
-#define IDS_SHEEP 1360
-#define IDS_SHEEP 1409
-#define IDS_SIGN_TITLE 1361
-#define IDS_SIGN_TITLE 1410
-#define IDS_SIGN_TITLE_TEXT 1362
-#define IDS_SIGN_TITLE_TEXT 1411
-#define IDS_SIGNIN_PSN 1363
-#define IDS_SIGNIN_PSN 1412
-#define IDS_SILVERFISH 1364
-#define IDS_SILVERFISH 1413
-#define IDS_SKELETON 1365
-#define IDS_SKELETON 1414
-#define IDS_SKELETON_HORSE 1366
-#define IDS_SKELETON_HORSE 1415
-#define IDS_SKINS 1367
-#define IDS_SKINS 1416
-#define IDS_SLIDER_AUTOSAVE 1368
-#define IDS_SLIDER_AUTOSAVE 1417
-#define IDS_SLIDER_AUTOSAVE_OFF 1369
-#define IDS_SLIDER_AUTOSAVE_OFF 1418
-#define IDS_SLIDER_DIFFICULTY 1370
-#define IDS_SLIDER_DIFFICULTY 1419
-#define IDS_SLIDER_GAMMA 1371
-#define IDS_SLIDER_GAMMA 1420
-#define IDS_SLIDER_INTERFACEOPACITY 1372
-#define IDS_SLIDER_INTERFACEOPACITY 1421
-#define IDS_SLIDER_MUSIC 1373
-#define IDS_SLIDER_MUSIC 1422
-#define IDS_SLIDER_SENSITIVITY_INGAME 1374
-#define IDS_SLIDER_SENSITIVITY_INGAME 1423
-#define IDS_SLIDER_SENSITIVITY_INMENU 1375
-#define IDS_SLIDER_SENSITIVITY_INMENU 1424
-#define IDS_SLIDER_SOUND 1376
-#define IDS_SLIDER_SOUND 1425
-#define IDS_SLIDER_UISIZE 1377
-#define IDS_SLIDER_UISIZE 1426
-#define IDS_SLIDER_UISIZESPLITSCREEN 1378
-#define IDS_SLIDER_UISIZESPLITSCREEN 1427
-#define IDS_SLIME 1379
-#define IDS_SLIME 1428
-#define IDS_SNOWMAN 1380
-#define IDS_SNOWMAN 1429
-#define IDS_SOCIAL_DEFAULT_CAPTION 1381
-#define IDS_SOCIAL_DEFAULT_CAPTION 1430
-#define IDS_SOCIAL_DEFAULT_DESCRIPTION 1382
-#define IDS_SOCIAL_DEFAULT_DESCRIPTION 1431
-#define IDS_SOCIAL_LABEL_CAPTION 1383
-#define IDS_SOCIAL_LABEL_CAPTION 1432
-#define IDS_SOCIAL_LABEL_DESCRIPTION 1384
-#define IDS_SOCIAL_LABEL_DESCRIPTION 1433
-#define IDS_SOCIAL_TEXT 1385
-#define IDS_SOCIAL_TEXT 1434
-#define IDS_SOUTHPAW 1386
-#define IDS_SOUTHPAW 1435
-#define IDS_SPIDER 1387
-#define IDS_SPIDER 1436
-#define IDS_SQUID 1388
-#define IDS_SQUID 1437
-#define IDS_START_GAME 1389
-#define IDS_START_GAME 1438
-#define IDS_STO_SAVING_LONG 1390
-#define IDS_STO_SAVING_LONG 1439
-#define IDS_STO_SAVING_SHORT 1391
-#define IDS_STO_SAVING_SHORT 1440
-#define IDS_STRINGVERIFY_AWAITING_APPROVAL 1392
-#define IDS_STRINGVERIFY_AWAITING_APPROVAL 1441
-#define IDS_STRINGVERIFY_CENSORED 1393
-#define IDS_STRINGVERIFY_CENSORED 1442
-#define IDS_SUPERFLAT_WORLD 1394
-#define IDS_SUPERFLAT_WORLD 1443
-#define IDS_SURVIVAL 1395
-#define IDS_SURVIVAL 1444
-#define IDS_TELEPORT 1396
-#define IDS_TELEPORT 1445
-#define IDS_TELEPORT_TO_ME 1397
-#define IDS_TELEPORT_TO_ME 1446
-#define IDS_TELEPORT_TO_PLAYER 1398
-#define IDS_TELEPORT_TO_PLAYER 1447
-#define IDS_TEXT_COPY_SAVE 1399
-#define IDS_TEXT_DELETE_SAVE 1400
-#define IDS_TEXT_DELETE_SAVE 1448
-#define IDS_TEXT_SAVEOPTIONS 1401
-#define IDS_TEXT_SAVEOPTIONS 1449
-#define IDS_TEXTURE_PACK_TRIALVERSION 1402
-#define IDS_TEXTURE_PACK_TRIALVERSION 1450
-#define IDS_TEXTUREPACK_FULLVERSION 1403
-#define IDS_TEXTUREPACK_FULLVERSION 1451
-#define IDS_THEMES 1404
-#define IDS_THEMES 1452
-#define IDS_TILE_ACTIVATOR_RAIL 1453
-#define IDS_TILE_ANVIL 1405
-#define IDS_TILE_ANVIL 1454
-#define IDS_TILE_ANVIL_INTACT 1406
-#define IDS_TILE_ANVIL_INTACT 1455
-#define IDS_TILE_ANVIL_SLIGHTLYDAMAGED 1407
-#define IDS_TILE_ANVIL_SLIGHTLYDAMAGED 1456
-#define IDS_TILE_ANVIL_VERYDAMAGED 1408
-#define IDS_TILE_ANVIL_VERYDAMAGED 1457
-#define IDS_TILE_BEACON 1458
-#define IDS_TILE_BED 1409
-#define IDS_TILE_BED 1459
-#define IDS_TILE_BED_MESLEEP 1410
-#define IDS_TILE_BED_MESLEEP 1460
-#define IDS_TILE_BED_NO_SLEEP 1411
-#define IDS_TILE_BED_NO_SLEEP 1461
-#define IDS_TILE_BED_NOT_VALID 1412
-#define IDS_TILE_BED_NOT_VALID 1462
-#define IDS_TILE_BED_NOTSAFE 1413
-#define IDS_TILE_BED_NOTSAFE 1463
-#define IDS_TILE_BED_OCCUPIED 1414
-#define IDS_TILE_BED_OCCUPIED 1464
-#define IDS_TILE_BED_PLAYERSLEEP 1415
-#define IDS_TILE_BED_PLAYERSLEEP 1465
-#define IDS_TILE_BEDROCK 1416
-#define IDS_TILE_BEDROCK 1466
-#define IDS_TILE_BIRCH 1417
-#define IDS_TILE_BIRCH 1467
-#define IDS_TILE_BIRCHWOOD_PLANKS 1418
-#define IDS_TILE_BIRCHWOOD_PLANKS 1468
-#define IDS_TILE_BLOCK_DIAMOND 1419
-#define IDS_TILE_BLOCK_DIAMOND 1469
-#define IDS_TILE_BLOCK_GOLD 1420
-#define IDS_TILE_BLOCK_GOLD 1470
-#define IDS_TILE_BLOCK_IRON 1421
-#define IDS_TILE_BLOCK_IRON 1471
-#define IDS_TILE_BLOCK_LAPIS 1422
-#define IDS_TILE_BLOCK_LAPIS 1472
-#define IDS_TILE_BOOKSHELF 1423
-#define IDS_TILE_BOOKSHELF 1473
-#define IDS_TILE_BREWINGSTAND 1424
-#define IDS_TILE_BREWINGSTAND 1474
-#define IDS_TILE_BRICK 1425
-#define IDS_TILE_BRICK 1475
-#define IDS_TILE_BUTTON 1426
-#define IDS_TILE_BUTTON 1476
-#define IDS_TILE_CACTUS 1427
-#define IDS_TILE_CACTUS 1477
-#define IDS_TILE_CAKE 1428
-#define IDS_TILE_CAKE 1478
-#define IDS_TILE_CARPET 1429
-#define IDS_TILE_CARPET 1479
-#define IDS_TILE_CARPET_BLACK 1430
-#define IDS_TILE_CARPET_BLACK 1480
-#define IDS_TILE_CARPET_BLUE 1431
-#define IDS_TILE_CARPET_BLUE 1481
-#define IDS_TILE_CARPET_BROWN 1432
-#define IDS_TILE_CARPET_BROWN 1482
-#define IDS_TILE_CARPET_CYAN 1433
-#define IDS_TILE_CARPET_CYAN 1483
-#define IDS_TILE_CARPET_GRAY 1434
-#define IDS_TILE_CARPET_GRAY 1484
-#define IDS_TILE_CARPET_GREEN 1435
-#define IDS_TILE_CARPET_GREEN 1485
-#define IDS_TILE_CARPET_LIGHT_BLUE 1436
-#define IDS_TILE_CARPET_LIGHT_BLUE 1486
-#define IDS_TILE_CARPET_LIME 1437
-#define IDS_TILE_CARPET_LIME 1487
-#define IDS_TILE_CARPET_MAGENTA 1438
-#define IDS_TILE_CARPET_MAGENTA 1488
-#define IDS_TILE_CARPET_ORANGE 1439
-#define IDS_TILE_CARPET_ORANGE 1489
-#define IDS_TILE_CARPET_PINK 1440
-#define IDS_TILE_CARPET_PINK 1490
-#define IDS_TILE_CARPET_PURPLE 1441
-#define IDS_TILE_CARPET_PURPLE 1491
-#define IDS_TILE_CARPET_RED 1442
-#define IDS_TILE_CARPET_RED 1492
-#define IDS_TILE_CARPET_SILVER 1443
-#define IDS_TILE_CARPET_SILVER 1493
-#define IDS_TILE_CARPET_WHITE 1444
-#define IDS_TILE_CARPET_WHITE 1494
-#define IDS_TILE_CARPET_YELLOW 1445
-#define IDS_TILE_CARPET_YELLOW 1495
-#define IDS_TILE_CARROTS 1446
-#define IDS_TILE_CARROTS 1496
-#define IDS_TILE_CAULDRON 1447
-#define IDS_TILE_CAULDRON 1497
-#define IDS_TILE_CHEST 1448
-#define IDS_TILE_CHEST 1498
-#define IDS_TILE_CHEST_TRAP 1499
-#define IDS_TILE_CLAY 1449
-#define IDS_TILE_CLAY 1500
-#define IDS_TILE_CLOTH 1450
-#define IDS_TILE_CLOTH 1501
-#define IDS_TILE_CLOTH_BLACK 1451
-#define IDS_TILE_CLOTH_BLACK 1502
-#define IDS_TILE_CLOTH_BLUE 1452
-#define IDS_TILE_CLOTH_BLUE 1503
-#define IDS_TILE_CLOTH_BROWN 1453
-#define IDS_TILE_CLOTH_BROWN 1504
-#define IDS_TILE_CLOTH_CYAN 1454
-#define IDS_TILE_CLOTH_CYAN 1505
-#define IDS_TILE_CLOTH_GRAY 1455
-#define IDS_TILE_CLOTH_GRAY 1506
-#define IDS_TILE_CLOTH_GREEN 1456
-#define IDS_TILE_CLOTH_GREEN 1507
-#define IDS_TILE_CLOTH_LIGHT_BLUE 1457
-#define IDS_TILE_CLOTH_LIGHT_BLUE 1508
-#define IDS_TILE_CLOTH_LIME 1458
-#define IDS_TILE_CLOTH_LIME 1509
-#define IDS_TILE_CLOTH_MAGENTA 1459
-#define IDS_TILE_CLOTH_MAGENTA 1510
-#define IDS_TILE_CLOTH_ORANGE 1460
-#define IDS_TILE_CLOTH_ORANGE 1511
-#define IDS_TILE_CLOTH_PINK 1461
-#define IDS_TILE_CLOTH_PINK 1512
-#define IDS_TILE_CLOTH_PURPLE 1462
-#define IDS_TILE_CLOTH_PURPLE 1513
-#define IDS_TILE_CLOTH_RED 1463
-#define IDS_TILE_CLOTH_RED 1514
-#define IDS_TILE_CLOTH_SILVER 1464
-#define IDS_TILE_CLOTH_SILVER 1515
-#define IDS_TILE_CLOTH_WHITE 1465
-#define IDS_TILE_CLOTH_WHITE 1516
-#define IDS_TILE_CLOTH_YELLOW 1466
-#define IDS_TILE_CLOTH_YELLOW 1517
-#define IDS_TILE_COAL 1518
-#define IDS_TILE_COBBLESTONE_WALL 1467
-#define IDS_TILE_COBBLESTONE_WALL 1519
-#define IDS_TILE_COBBLESTONE_WALL_MOSSY 1468
-#define IDS_TILE_COBBLESTONE_WALL_MOSSY 1520
-#define IDS_TILE_COCOA 1469
-#define IDS_TILE_COCOA 1521
-#define IDS_TILE_COMMAND_BLOCK 1522
-#define IDS_TILE_COMPARATOR 1523
-#define IDS_TILE_CROPS 1470
-#define IDS_TILE_CROPS 1524
-#define IDS_TILE_DAYLIGHT_DETECTOR 1525
-#define IDS_TILE_DEAD_BUSH 1471
-#define IDS_TILE_DEAD_BUSH 1526
-#define IDS_TILE_DETECTOR_RAIL 1472
-#define IDS_TILE_DETECTOR_RAIL 1527
-#define IDS_TILE_DIODE 1473
-#define IDS_TILE_DIODE 1528
-#define IDS_TILE_DIRT 1474
-#define IDS_TILE_DIRT 1529
-#define IDS_TILE_DISPENSER 1475
-#define IDS_TILE_DISPENSER 1530
-#define IDS_TILE_DOOR_IRON 1476
-#define IDS_TILE_DOOR_IRON 1531
-#define IDS_TILE_DOOR_WOOD 1477
-#define IDS_TILE_DOOR_WOOD 1532
-#define IDS_TILE_DRAGONEGG 1478
-#define IDS_TILE_DRAGONEGG 1533
-#define IDS_TILE_DROPPER 1534
-#define IDS_TILE_DROPS 1535
-#define IDS_TILE_EMERALDBLOCK 1479
-#define IDS_TILE_EMERALDBLOCK 1536
-#define IDS_TILE_EMERALDORE 1480
-#define IDS_TILE_EMERALDORE 1537
-#define IDS_TILE_ENCHANTMENTTABLE 1481
-#define IDS_TILE_ENCHANTMENTTABLE 1538
-#define IDS_TILE_END_PORTAL 1482
-#define IDS_TILE_END_PORTAL 1539
-#define IDS_TILE_ENDERCHEST 1483
-#define IDS_TILE_ENDERCHEST 1540
-#define IDS_TILE_ENDPORTALFRAME 1484
-#define IDS_TILE_ENDPORTALFRAME 1541
-#define IDS_TILE_FARMLAND 1485
-#define IDS_TILE_FARMLAND 1542
-#define IDS_TILE_FENCE 1486
-#define IDS_TILE_FENCE 1543
-#define IDS_TILE_FENCE_GATE 1487
-#define IDS_TILE_FENCE_GATE 1544
-#define IDS_TILE_FERN 1488
-#define IDS_TILE_FERN 1545
-#define IDS_TILE_FIRE 1489
-#define IDS_TILE_FIRE 1546
-#define IDS_TILE_FLOWER 1490
-#define IDS_TILE_FLOWER 1547
-#define IDS_TILE_FLOWERPOT 1491
-#define IDS_TILE_FLOWERPOT 1548
-#define IDS_TILE_FURNACE 1492
-#define IDS_TILE_FURNACE 1549
-#define IDS_TILE_GLASS 1493
-#define IDS_TILE_GLASS 1550
-#define IDS_TILE_GOLDEN_RAIL 1494
-#define IDS_TILE_GOLDEN_RAIL 1551
-#define IDS_TILE_GRASS 1495
-#define IDS_TILE_GRASS 1552
-#define IDS_TILE_GRAVEL 1496
-#define IDS_TILE_GRAVEL 1553
-#define IDS_TILE_HARDENED_CLAY 1554
-#define IDS_TILE_HAY 1555
-#define IDS_TILE_HELL_ROCK 1497
-#define IDS_TILE_HELL_ROCK 1556
-#define IDS_TILE_HELL_SAND 1498
-#define IDS_TILE_HELL_SAND 1557
-#define IDS_TILE_HOPPER 1558
-#define IDS_TILE_HUGE_MUSHROOM_1 1499
-#define IDS_TILE_HUGE_MUSHROOM_1 1559
-#define IDS_TILE_HUGE_MUSHROOM_2 1500
-#define IDS_TILE_HUGE_MUSHROOM_2 1560
-#define IDS_TILE_ICE 1501
-#define IDS_TILE_ICE 1561
-#define IDS_TILE_IRON_FENCE 1502
-#define IDS_TILE_IRON_FENCE 1562
-#define IDS_TILE_JUKEBOX 1503
-#define IDS_TILE_JUKEBOX 1563
-#define IDS_TILE_JUNGLE_PLANKS 1504
-#define IDS_TILE_JUNGLE_PLANKS 1564
-#define IDS_TILE_LADDER 1505
-#define IDS_TILE_LADDER 1565
-#define IDS_TILE_LAVA 1506
-#define IDS_TILE_LAVA 1566
-#define IDS_TILE_LEAVES 1507
-#define IDS_TILE_LEAVES 1567
-#define IDS_TILE_LEAVES_BIRCH 1508
-#define IDS_TILE_LEAVES_BIRCH 1568
-#define IDS_TILE_LEAVES_JUNGLE 1509
-#define IDS_TILE_LEAVES_JUNGLE 1569
-#define IDS_TILE_LEAVES_OAK 1510
-#define IDS_TILE_LEAVES_OAK 1570
-#define IDS_TILE_LEAVES_SPRUCE 1511
-#define IDS_TILE_LEAVES_SPRUCE 1571
-#define IDS_TILE_LEVER 1512
-#define IDS_TILE_LEVER 1572
-#define IDS_TILE_LIGHT_GEM 1513
-#define IDS_TILE_LIGHT_GEM 1573
-#define IDS_TILE_LIT_PUMPKIN 1514
-#define IDS_TILE_LIT_PUMPKIN 1574
-#define IDS_TILE_LOCKED_CHEST 1515
-#define IDS_TILE_LOCKED_CHEST 1575
-#define IDS_TILE_LOG 1516
-#define IDS_TILE_LOG 1576
-#define IDS_TILE_LOG_BIRCH 1517
-#define IDS_TILE_LOG_BIRCH 1577
-#define IDS_TILE_LOG_JUNGLE 1518
-#define IDS_TILE_LOG_JUNGLE 1578
-#define IDS_TILE_LOG_OAK 1519
-#define IDS_TILE_LOG_OAK 1579
-#define IDS_TILE_LOG_SPRUCE 1520
-#define IDS_TILE_LOG_SPRUCE 1580
-#define IDS_TILE_MELON 1521
-#define IDS_TILE_MELON 1581
-#define IDS_TILE_MELON_STEM 1522
-#define IDS_TILE_MELON_STEM 1582
-#define IDS_TILE_MOB_SPAWNER 1523
-#define IDS_TILE_MOB_SPAWNER 1583
-#define IDS_TILE_MONSTER_STONE_EGG 1524
-#define IDS_TILE_MONSTER_STONE_EGG 1584
-#define IDS_TILE_MUSHROOM 1525
-#define IDS_TILE_MUSHROOM 1585
-#define IDS_TILE_MUSIC_BLOCK 1526
-#define IDS_TILE_MUSIC_BLOCK 1586
-#define IDS_TILE_MYCEL 1527
-#define IDS_TILE_MYCEL 1587
-#define IDS_TILE_NETHER_QUARTZ 1528
-#define IDS_TILE_NETHER_QUARTZ 1588
-#define IDS_TILE_NETHERBRICK 1529
-#define IDS_TILE_NETHERBRICK 1589
-#define IDS_TILE_NETHERFENCE 1530
-#define IDS_TILE_NETHERFENCE 1590
-#define IDS_TILE_NETHERSTALK 1531
-#define IDS_TILE_NETHERSTALK 1591
-#define IDS_TILE_NOT_GATE 1532
-#define IDS_TILE_NOT_GATE 1592
-#define IDS_TILE_OAK 1533
-#define IDS_TILE_OAK 1593
-#define IDS_TILE_OAKWOOD_PLANKS 1534
-#define IDS_TILE_OAKWOOD_PLANKS 1594
-#define IDS_TILE_OBSIDIAN 1535
-#define IDS_TILE_OBSIDIAN 1595
-#define IDS_TILE_ORE_COAL 1536
-#define IDS_TILE_ORE_COAL 1596
-#define IDS_TILE_ORE_DIAMOND 1537
-#define IDS_TILE_ORE_DIAMOND 1597
-#define IDS_TILE_ORE_GOLD 1538
-#define IDS_TILE_ORE_GOLD 1598
-#define IDS_TILE_ORE_IRON 1539
-#define IDS_TILE_ORE_IRON 1599
-#define IDS_TILE_ORE_LAPIS 1540
-#define IDS_TILE_ORE_LAPIS 1600
-#define IDS_TILE_ORE_REDSTONE 1541
-#define IDS_TILE_ORE_REDSTONE 1601
-#define IDS_TILE_PISTON_BASE 1542
-#define IDS_TILE_PISTON_BASE 1602
-#define IDS_TILE_PISTON_STICK_BASE 1543
-#define IDS_TILE_PISTON_STICK_BASE 1603
-#define IDS_TILE_PLANKS 1604
-#define IDS_TILE_PORTAL 1544
-#define IDS_TILE_PORTAL 1605
-#define IDS_TILE_POTATOES 1545
-#define IDS_TILE_POTATOES 1606
-#define IDS_TILE_PRESSURE_PLATE 1546
-#define IDS_TILE_PRESSURE_PLATE 1607
-#define IDS_TILE_PUMPKIN 1547
-#define IDS_TILE_PUMPKIN 1608
-#define IDS_TILE_PUMPKIN_STEM 1548
-#define IDS_TILE_PUMPKIN_STEM 1609
-#define IDS_TILE_QUARTZ_BLOCK 1549
-#define IDS_TILE_QUARTZ_BLOCK 1610
-#define IDS_TILE_QUARTZ_BLOCK_CHISELED 1550
-#define IDS_TILE_QUARTZ_BLOCK_CHISELED 1611
-#define IDS_TILE_QUARTZ_BLOCK_LINES 1551
-#define IDS_TILE_QUARTZ_BLOCK_LINES 1612
-#define IDS_TILE_RAIL 1552
-#define IDS_TILE_RAIL 1613
-#define IDS_TILE_REDSTONE_BLOCK 1614
-#define IDS_TILE_REDSTONE_DUST 1553
-#define IDS_TILE_REDSTONE_DUST 1615
-#define IDS_TILE_REDSTONE_LIGHT 1554
-#define IDS_TILE_REDSTONE_LIGHT 1616
-#define IDS_TILE_REEDS 1555
-#define IDS_TILE_REEDS 1617
-#define IDS_TILE_ROSE 1556
-#define IDS_TILE_ROSE 1618
-#define IDS_TILE_SAND 1557
-#define IDS_TILE_SAND 1619
-#define IDS_TILE_SANDSTONE 1558
-#define IDS_TILE_SANDSTONE 1620
-#define IDS_TILE_SANDSTONE_CHISELED 1559
-#define IDS_TILE_SANDSTONE_CHISELED 1621
-#define IDS_TILE_SANDSTONE_SMOOTH 1560
-#define IDS_TILE_SANDSTONE_SMOOTH 1622
-#define IDS_TILE_SAPLING 1561
-#define IDS_TILE_SAPLING 1623
-#define IDS_TILE_SAPLING_BIRCH 1562
-#define IDS_TILE_SAPLING_BIRCH 1624
-#define IDS_TILE_SAPLING_JUNGLE 1563
-#define IDS_TILE_SAPLING_JUNGLE 1625
-#define IDS_TILE_SAPLING_OAK 1564
-#define IDS_TILE_SAPLING_OAK 1626
-#define IDS_TILE_SAPLING_SPRUCE 1565
-#define IDS_TILE_SAPLING_SPRUCE 1627
-#define IDS_TILE_SHRUB 1566
-#define IDS_TILE_SHRUB 1628
-#define IDS_TILE_SIGN 1567
-#define IDS_TILE_SIGN 1629
-#define IDS_TILE_SKULL 1568
-#define IDS_TILE_SKULL 1630
-#define IDS_TILE_SNOW 1569
-#define IDS_TILE_SNOW 1631
-#define IDS_TILE_SPONGE 1570
-#define IDS_TILE_SPONGE 1632
-#define IDS_TILE_SPRUCE 1571
-#define IDS_TILE_SPRUCE 1633
-#define IDS_TILE_SPRUCEWOOD_PLANKS 1572
-#define IDS_TILE_SPRUCEWOOD_PLANKS 1634
-#define IDS_TILE_STAINED_CLAY 1635
-#define IDS_TILE_STAINED_CLAY_BLACK 1636
-#define IDS_TILE_STAINED_CLAY_BLUE 1637
-#define IDS_TILE_STAINED_CLAY_BROWN 1638
-#define IDS_TILE_STAINED_CLAY_CYAN 1639
-#define IDS_TILE_STAINED_CLAY_GRAY 1640
-#define IDS_TILE_STAINED_CLAY_GREEN 1641
-#define IDS_TILE_STAINED_CLAY_LIGHT_BLUE 1642
-#define IDS_TILE_STAINED_CLAY_LIME 1643
-#define IDS_TILE_STAINED_CLAY_MAGENTA 1644
-#define IDS_TILE_STAINED_CLAY_ORANGE 1645
-#define IDS_TILE_STAINED_CLAY_PINK 1646
-#define IDS_TILE_STAINED_CLAY_PURPLE 1647
-#define IDS_TILE_STAINED_CLAY_RED 1648
-#define IDS_TILE_STAINED_CLAY_SILVER 1649
-#define IDS_TILE_STAINED_CLAY_WHITE 1650
-#define IDS_TILE_STAINED_CLAY_YELLOW 1651
-#define IDS_TILE_STAINED_GLASS 1652
-#define IDS_TILE_STAINED_GLASS_BLACK 1653
-#define IDS_TILE_STAINED_GLASS_BLUE 1654
-#define IDS_TILE_STAINED_GLASS_BROWN 1655
-#define IDS_TILE_STAINED_GLASS_CYAN 1656
-#define IDS_TILE_STAINED_GLASS_GRAY 1657
-#define IDS_TILE_STAINED_GLASS_GREEN 1658
-#define IDS_TILE_STAINED_GLASS_LIGHT_BLUE 1659
-#define IDS_TILE_STAINED_GLASS_LIME 1660
-#define IDS_TILE_STAINED_GLASS_MAGENTA 1661
-#define IDS_TILE_STAINED_GLASS_ORANGE 1662
-#define IDS_TILE_STAINED_GLASS_PANE 1663
-#define IDS_TILE_STAINED_GLASS_PANE_BLACK 1664
-#define IDS_TILE_STAINED_GLASS_PANE_BLUE 1665
-#define IDS_TILE_STAINED_GLASS_PANE_BROWN 1666
-#define IDS_TILE_STAINED_GLASS_PANE_CYAN 1667
-#define IDS_TILE_STAINED_GLASS_PANE_GRAY 1668
-#define IDS_TILE_STAINED_GLASS_PANE_GREEN 1669
-#define IDS_TILE_STAINED_GLASS_PANE_LIGHT_BLUE 1670
-#define IDS_TILE_STAINED_GLASS_PANE_LIME 1671
-#define IDS_TILE_STAINED_GLASS_PANE_MAGENTA 1672
-#define IDS_TILE_STAINED_GLASS_PANE_ORANGE 1673
-#define IDS_TILE_STAINED_GLASS_PANE_PINK 1674
-#define IDS_TILE_STAINED_GLASS_PANE_PURPLE 1675
-#define IDS_TILE_STAINED_GLASS_PANE_RED 1676
-#define IDS_TILE_STAINED_GLASS_PANE_SILVER 1677
-#define IDS_TILE_STAINED_GLASS_PANE_WHITE 1678
-#define IDS_TILE_STAINED_GLASS_PANE_YELLOW 1679
-#define IDS_TILE_STAINED_GLASS_PINK 1680
-#define IDS_TILE_STAINED_GLASS_PURPLE 1681
-#define IDS_TILE_STAINED_GLASS_RED 1682
-#define IDS_TILE_STAINED_GLASS_SILVER 1683
-#define IDS_TILE_STAINED_GLASS_WHITE 1684
-#define IDS_TILE_STAINED_GLASS_YELLOW 1685
-#define IDS_TILE_STAIRS_BIRCHWOOD 1573
-#define IDS_TILE_STAIRS_BIRCHWOOD 1686
-#define IDS_TILE_STAIRS_BRICKS 1574
-#define IDS_TILE_STAIRS_BRICKS 1687
-#define IDS_TILE_STAIRS_JUNGLEWOOD 1575
-#define IDS_TILE_STAIRS_JUNGLEWOOD 1688
-#define IDS_TILE_STAIRS_NETHERBRICK 1576
-#define IDS_TILE_STAIRS_NETHERBRICK 1689
-#define IDS_TILE_STAIRS_QUARTZ 1577
-#define IDS_TILE_STAIRS_QUARTZ 1690
-#define IDS_TILE_STAIRS_SANDSTONE 1578
-#define IDS_TILE_STAIRS_SANDSTONE 1691
-#define IDS_TILE_STAIRS_SPRUCEWOOD 1579
-#define IDS_TILE_STAIRS_SPRUCEWOOD 1692
-#define IDS_TILE_STAIRS_STONE 1580
-#define IDS_TILE_STAIRS_STONE 1693
-#define IDS_TILE_STAIRS_STONE_BRICKS_SMOOTH 1581
-#define IDS_TILE_STAIRS_STONE_BRICKS_SMOOTH 1694
-#define IDS_TILE_STAIRS_WOOD 1582
-#define IDS_TILE_STAIRS_WOOD 1695
-#define IDS_TILE_STONE 1583
-#define IDS_TILE_STONE 1696
-#define IDS_TILE_STONE_BRICK 1584
-#define IDS_TILE_STONE_BRICK 1697
-#define IDS_TILE_STONE_BRICK_SMOOTH 1585
-#define IDS_TILE_STONE_BRICK_SMOOTH 1698
-#define IDS_TILE_STONE_BRICK_SMOOTH_CHISELED 1586
-#define IDS_TILE_STONE_BRICK_SMOOTH_CHISELED 1699
-#define IDS_TILE_STONE_BRICK_SMOOTH_CRACKED 1587
-#define IDS_TILE_STONE_BRICK_SMOOTH_CRACKED 1700
-#define IDS_TILE_STONE_BRICK_SMOOTH_MOSSY 1588
-#define IDS_TILE_STONE_BRICK_SMOOTH_MOSSY 1701
-#define IDS_TILE_STONE_MOSS 1589
-#define IDS_TILE_STONE_MOSS 1702
-#define IDS_TILE_STONE_SILVERFISH 1590
-#define IDS_TILE_STONE_SILVERFISH 1703
-#define IDS_TILE_STONE_SILVERFISH_COBBLESTONE 1591
-#define IDS_TILE_STONE_SILVERFISH_COBBLESTONE 1704
-#define IDS_TILE_STONE_SILVERFISH_STONE_BRICK 1592
-#define IDS_TILE_STONE_SILVERFISH_STONE_BRICK 1705
-#define IDS_TILE_STONESLAB 1593
-#define IDS_TILE_STONESLAB 1706
-#define IDS_TILE_STONESLAB_BIRCH 1594
-#define IDS_TILE_STONESLAB_BIRCH 1707
-#define IDS_TILE_STONESLAB_BRICK 1595
-#define IDS_TILE_STONESLAB_BRICK 1708
-#define IDS_TILE_STONESLAB_COBBLE 1596
-#define IDS_TILE_STONESLAB_COBBLE 1709
-#define IDS_TILE_STONESLAB_JUNGLE 1597
-#define IDS_TILE_STONESLAB_JUNGLE 1710
-#define IDS_TILE_STONESLAB_NETHERBRICK 1598
-#define IDS_TILE_STONESLAB_NETHERBRICK 1711
-#define IDS_TILE_STONESLAB_OAK 1599
-#define IDS_TILE_STONESLAB_OAK 1712
-#define IDS_TILE_STONESLAB_QUARTZ 1600
-#define IDS_TILE_STONESLAB_QUARTZ 1713
-#define IDS_TILE_STONESLAB_SAND 1601
-#define IDS_TILE_STONESLAB_SAND 1714
-#define IDS_TILE_STONESLAB_SMOOTHBRICK 1602
-#define IDS_TILE_STONESLAB_SMOOTHBRICK 1715
-#define IDS_TILE_STONESLAB_SPRUCE 1603
-#define IDS_TILE_STONESLAB_SPRUCE 1716
-#define IDS_TILE_STONESLAB_STONE 1604
-#define IDS_TILE_STONESLAB_STONE 1717
-#define IDS_TILE_STONESLAB_WOOD 1605
-#define IDS_TILE_STONESLAB_WOOD 1718
-#define IDS_TILE_TALL_GRASS 1606
-#define IDS_TILE_TALL_GRASS 1719
-#define IDS_TILE_THIN_GLASS 1607
-#define IDS_TILE_THIN_GLASS 1720
-#define IDS_TILE_TNT 1608
-#define IDS_TILE_TNT 1721
-#define IDS_TILE_TORCH 1609
-#define IDS_TILE_TORCH 1722
-#define IDS_TILE_TORCHCHARCOAL 1610
-#define IDS_TILE_TORCHCHARCOAL 1723
-#define IDS_TILE_TORCHCOAL 1611
-#define IDS_TILE_TORCHCOAL 1724
-#define IDS_TILE_TRAPDOOR 1612
-#define IDS_TILE_TRAPDOOR 1725
-#define IDS_TILE_TRIPWIRE 1613
-#define IDS_TILE_TRIPWIRE 1726
-#define IDS_TILE_TRIPWIRE_SOURCE 1614
-#define IDS_TILE_TRIPWIRE_SOURCE 1727
-#define IDS_TILE_VINE 1615
-#define IDS_TILE_VINE 1728
-#define IDS_TILE_WATER 1616
-#define IDS_TILE_WATER 1729
-#define IDS_TILE_WATERLILY 1617
-#define IDS_TILE_WATERLILY 1730
-#define IDS_TILE_WEB 1618
-#define IDS_TILE_WEB 1731
-#define IDS_TILE_WEIGHTED_PLATE_HEAVY 1732
-#define IDS_TILE_WEIGHTED_PLATE_LIGHT 1733
-#define IDS_TILE_WHITESTONE 1619
-#define IDS_TILE_WHITESTONE 1734
-#define IDS_TILE_WORKBENCH 1620
-#define IDS_TILE_WORKBENCH 1735
-#define IDS_TIPS_GAMETIP_0 1621
-#define IDS_TIPS_GAMETIP_0 1736
-#define IDS_TIPS_GAMETIP_1 1622
-#define IDS_TIPS_GAMETIP_1 1737
-#define IDS_TIPS_GAMETIP_10 1623
-#define IDS_TIPS_GAMETIP_10 1738
-#define IDS_TIPS_GAMETIP_11 1624
-#define IDS_TIPS_GAMETIP_11 1739
-#define IDS_TIPS_GAMETIP_12 1625
-#define IDS_TIPS_GAMETIP_12 1740
-#define IDS_TIPS_GAMETIP_13 1626
-#define IDS_TIPS_GAMETIP_13 1741
-#define IDS_TIPS_GAMETIP_14 1627
-#define IDS_TIPS_GAMETIP_14 1742
-#define IDS_TIPS_GAMETIP_15 1628
-#define IDS_TIPS_GAMETIP_15 1743
-#define IDS_TIPS_GAMETIP_16 1629
-#define IDS_TIPS_GAMETIP_16 1744
-#define IDS_TIPS_GAMETIP_17 1630
-#define IDS_TIPS_GAMETIP_17 1745
-#define IDS_TIPS_GAMETIP_18 1631
-#define IDS_TIPS_GAMETIP_18 1746
-#define IDS_TIPS_GAMETIP_19 1632
-#define IDS_TIPS_GAMETIP_19 1747
-#define IDS_TIPS_GAMETIP_2 1633
-#define IDS_TIPS_GAMETIP_2 1748
-#define IDS_TIPS_GAMETIP_20 1634
-#define IDS_TIPS_GAMETIP_20 1749
-#define IDS_TIPS_GAMETIP_21 1635
-#define IDS_TIPS_GAMETIP_21 1750
-#define IDS_TIPS_GAMETIP_22 1636
-#define IDS_TIPS_GAMETIP_22 1751
-#define IDS_TIPS_GAMETIP_23 1637
-#define IDS_TIPS_GAMETIP_23 1752
-#define IDS_TIPS_GAMETIP_24 1638
-#define IDS_TIPS_GAMETIP_24 1753
-#define IDS_TIPS_GAMETIP_25 1639
-#define IDS_TIPS_GAMETIP_25 1754
-#define IDS_TIPS_GAMETIP_26 1640
-#define IDS_TIPS_GAMETIP_26 1755
-#define IDS_TIPS_GAMETIP_27 1641
-#define IDS_TIPS_GAMETIP_27 1756
-#define IDS_TIPS_GAMETIP_28 1642
-#define IDS_TIPS_GAMETIP_28 1757
-#define IDS_TIPS_GAMETIP_29 1643
-#define IDS_TIPS_GAMETIP_29 1758
-#define IDS_TIPS_GAMETIP_3 1644
-#define IDS_TIPS_GAMETIP_3 1759
-#define IDS_TIPS_GAMETIP_30 1645
-#define IDS_TIPS_GAMETIP_30 1760
-#define IDS_TIPS_GAMETIP_31 1646
-#define IDS_TIPS_GAMETIP_31 1761
-#define IDS_TIPS_GAMETIP_32 1647
-#define IDS_TIPS_GAMETIP_32 1762
-#define IDS_TIPS_GAMETIP_33 1648
-#define IDS_TIPS_GAMETIP_33 1763
-#define IDS_TIPS_GAMETIP_34 1649
-#define IDS_TIPS_GAMETIP_34 1764
-#define IDS_TIPS_GAMETIP_35 1650
-#define IDS_TIPS_GAMETIP_35 1765
-#define IDS_TIPS_GAMETIP_36 1651
-#define IDS_TIPS_GAMETIP_36 1766
-#define IDS_TIPS_GAMETIP_37 1652
-#define IDS_TIPS_GAMETIP_37 1767
-#define IDS_TIPS_GAMETIP_38 1653
-#define IDS_TIPS_GAMETIP_38 1768
-#define IDS_TIPS_GAMETIP_39 1654
-#define IDS_TIPS_GAMETIP_39 1769
-#define IDS_TIPS_GAMETIP_4 1655
-#define IDS_TIPS_GAMETIP_4 1770
-#define IDS_TIPS_GAMETIP_40 1656
-#define IDS_TIPS_GAMETIP_40 1771
-#define IDS_TIPS_GAMETIP_41 1657
-#define IDS_TIPS_GAMETIP_41 1772
-#define IDS_TIPS_GAMETIP_42 1658
-#define IDS_TIPS_GAMETIP_42 1773
-#define IDS_TIPS_GAMETIP_43 1659
-#define IDS_TIPS_GAMETIP_43 1774
-#define IDS_TIPS_GAMETIP_44 1660
-#define IDS_TIPS_GAMETIP_44 1775
-#define IDS_TIPS_GAMETIP_45 1661
-#define IDS_TIPS_GAMETIP_45 1776
-#define IDS_TIPS_GAMETIP_46 1662
-#define IDS_TIPS_GAMETIP_46 1777
-#define IDS_TIPS_GAMETIP_47 1663
-#define IDS_TIPS_GAMETIP_47 1778
-#define IDS_TIPS_GAMETIP_48 1664
-#define IDS_TIPS_GAMETIP_48 1779
-#define IDS_TIPS_GAMETIP_49 1665
-#define IDS_TIPS_GAMETIP_49 1780
-#define IDS_TIPS_GAMETIP_5 1666
-#define IDS_TIPS_GAMETIP_5 1781
-#define IDS_TIPS_GAMETIP_50 1667
-#define IDS_TIPS_GAMETIP_50 1782
-#define IDS_TIPS_GAMETIP_6 1668
-#define IDS_TIPS_GAMETIP_6 1783
-#define IDS_TIPS_GAMETIP_7 1669
-#define IDS_TIPS_GAMETIP_7 1784
-#define IDS_TIPS_GAMETIP_8 1670
-#define IDS_TIPS_GAMETIP_8 1785
-#define IDS_TIPS_GAMETIP_9 1671
-#define IDS_TIPS_GAMETIP_9 1786
-#define IDS_TIPS_GAMETIP_NEWDLC 1672
-#define IDS_TIPS_GAMETIP_NEWDLC 1787
-#define IDS_TIPS_GAMETIP_SKINPACKS 1673
-#define IDS_TIPS_GAMETIP_SKINPACKS 1788
-#define IDS_TIPS_TRIVIA_1 1674
-#define IDS_TIPS_TRIVIA_1 1789
-#define IDS_TIPS_TRIVIA_10 1675
-#define IDS_TIPS_TRIVIA_10 1790
-#define IDS_TIPS_TRIVIA_11 1676
-#define IDS_TIPS_TRIVIA_11 1791
-#define IDS_TIPS_TRIVIA_12 1677
-#define IDS_TIPS_TRIVIA_12 1792
-#define IDS_TIPS_TRIVIA_13 1678
-#define IDS_TIPS_TRIVIA_13 1793
-#define IDS_TIPS_TRIVIA_14 1679
-#define IDS_TIPS_TRIVIA_14 1794
-#define IDS_TIPS_TRIVIA_15 1680
-#define IDS_TIPS_TRIVIA_15 1795
-#define IDS_TIPS_TRIVIA_16 1681
-#define IDS_TIPS_TRIVIA_16 1796
-#define IDS_TIPS_TRIVIA_17 1682
-#define IDS_TIPS_TRIVIA_17 1797
-#define IDS_TIPS_TRIVIA_18 1683
-#define IDS_TIPS_TRIVIA_18 1798
-#define IDS_TIPS_TRIVIA_19 1684
-#define IDS_TIPS_TRIVIA_19 1799
-#define IDS_TIPS_TRIVIA_2 1685
-#define IDS_TIPS_TRIVIA_2 1800
-#define IDS_TIPS_TRIVIA_20 1686
-#define IDS_TIPS_TRIVIA_20 1801
-#define IDS_TIPS_TRIVIA_3 1687
-#define IDS_TIPS_TRIVIA_3 1802
-#define IDS_TIPS_TRIVIA_4 1688
-#define IDS_TIPS_TRIVIA_4 1803
-#define IDS_TIPS_TRIVIA_5 1689
-#define IDS_TIPS_TRIVIA_5 1804
-#define IDS_TIPS_TRIVIA_6 1690
-#define IDS_TIPS_TRIVIA_6 1805
-#define IDS_TIPS_TRIVIA_7 1691
-#define IDS_TIPS_TRIVIA_7 1806
-#define IDS_TIPS_TRIVIA_8 1692
-#define IDS_TIPS_TRIVIA_8 1807
-#define IDS_TIPS_TRIVIA_9 1693
-#define IDS_TIPS_TRIVIA_9 1808
-#define IDS_TITLE_DECLINE_SAVE_GAME 1694
-#define IDS_TITLE_DECLINE_SAVE_GAME 1809
-#define IDS_TITLE_DISABLE_AUTOSAVE 1695
-#define IDS_TITLE_ENABLE_AUTOSAVE 1696
-#define IDS_TITLE_RENAME 1697
-#define IDS_TITLE_RENAME 1810
-#define IDS_TITLE_RENAMESAVE 1698
-#define IDS_TITLE_RENAMESAVE 1811
-#define IDS_TITLE_SAVE_GAME 1699
-#define IDS_TITLE_SAVE_GAME 1812
-#define IDS_TITLE_START_GAME 1700
-#define IDS_TITLE_START_GAME 1813
-#define IDS_TITLE_UPDATE_NAME 1701
-#define IDS_TITLE_UPDATE_NAME 1814
-#define IDS_TITLEUPDATE 1702
-#define IDS_TITLEUPDATE 1815
-#define IDS_TNT_EXPLODES 1703
-#define IDS_TNT_EXPLODES 1816
-#define IDS_TOOLTIP_CHANGE_NETWORK_MODE 1817
-#define IDS_TOOLTIPS_ACCEPT 1704
-#define IDS_TOOLTIPS_ACCEPT 1818
-#define IDS_TOOLTIPS_ALL_GAMES 1705
-#define IDS_TOOLTIPS_ALL_GAMES 1819
-#define IDS_TOOLTIPS_ATTACH 1820
-#define IDS_TOOLTIPS_BACK 1706
-#define IDS_TOOLTIPS_BACK 1821
-#define IDS_TOOLTIPS_BANLEVEL 1707
-#define IDS_TOOLTIPS_BANLEVEL 1822
-#define IDS_TOOLTIPS_BLOCK 1708
-#define IDS_TOOLTIPS_BLOCK 1823
-#define IDS_TOOLTIPS_CANCEL 1709
-#define IDS_TOOLTIPS_CANCEL 1824
-#define IDS_TOOLTIPS_CANCEL_JOIN 1710
-#define IDS_TOOLTIPS_CANCEL_JOIN 1825
-#define IDS_TOOLTIPS_CHANGE_FILTER 1711
-#define IDS_TOOLTIPS_CHANGE_FILTER 1826
-#define IDS_TOOLTIPS_CHANGE_GROUP 1712
-#define IDS_TOOLTIPS_CHANGE_GROUP 1827
-#define IDS_TOOLTIPS_CHANGEDEVICE 1713
-#define IDS_TOOLTIPS_CHANGEDEVICE 1828
-#define IDS_TOOLTIPS_CHANGEPITCH 1714
-#define IDS_TOOLTIPS_CHANGEPITCH 1829
-#define IDS_TOOLTIPS_CLEAR_QUICK_SELECT 1715
-#define IDS_TOOLTIPS_CLEAR_QUICK_SELECT 1830
-#define IDS_TOOLTIPS_CLEARSLOTS 1716
-#define IDS_TOOLTIPS_CLEARSLOTS 1831
-#define IDS_TOOLTIPS_COLLECT 1717
-#define IDS_TOOLTIPS_COLLECT 1832
-#define IDS_TOOLTIPS_CONTINUE 1718
-#define IDS_TOOLTIPS_CONTINUE 1833
-#define IDS_TOOLTIPS_CRAFTING 1719
-#define IDS_TOOLTIPS_CRAFTING 1834
-#define IDS_TOOLTIPS_CREATE 1720
-#define IDS_TOOLTIPS_CREATE 1835
-#define IDS_TOOLTIPS_CREATIVE 1721
-#define IDS_TOOLTIPS_CREATIVE 1836
-#define IDS_TOOLTIPS_CURE 1722
-#define IDS_TOOLTIPS_CURE 1837
-#define IDS_TOOLTIPS_DELETE 1723
-#define IDS_TOOLTIPS_DELETE 1838
-#define IDS_TOOLTIPS_DELETESAVE 1724
-#define IDS_TOOLTIPS_DELETESAVE 1839
-#define IDS_TOOLTIPS_DETONATE 1725
-#define IDS_TOOLTIPS_DETONATE 1840
-#define IDS_TOOLTIPS_DISMOUNT 1841
-#define IDS_TOOLTIPS_DRAW_BOW 1726
-#define IDS_TOOLTIPS_DRAW_BOW 1842
-#define IDS_TOOLTIPS_DRINK 1727
-#define IDS_TOOLTIPS_DRINK 1843
-#define IDS_TOOLTIPS_DROP_ALL 1728
-#define IDS_TOOLTIPS_DROP_ALL 1844
-#define IDS_TOOLTIPS_DROP_GENERIC 1729
-#define IDS_TOOLTIPS_DROP_GENERIC 1845
-#define IDS_TOOLTIPS_DROP_ONE 1730
-#define IDS_TOOLTIPS_DROP_ONE 1846
-#define IDS_TOOLTIPS_DYE 1731
-#define IDS_TOOLTIPS_DYE 1847
-#define IDS_TOOLTIPS_DYECOLLAR 1732
-#define IDS_TOOLTIPS_DYECOLLAR 1848
-#define IDS_TOOLTIPS_EAT 1733
-#define IDS_TOOLTIPS_EAT 1849
-#define IDS_TOOLTIPS_EJECT 1734
-#define IDS_TOOLTIPS_EJECT 1850
-#define IDS_TOOLTIPS_EMPTY 1735
-#define IDS_TOOLTIPS_EMPTY 1851
-#define IDS_TOOLTIPS_EQUIP 1736
-#define IDS_TOOLTIPS_EQUIP 1852
-#define IDS_TOOLTIPS_EXECUTE_COMMAND 1737
-#define IDS_TOOLTIPS_EXECUTE_COMMAND 1853
-#define IDS_TOOLTIPS_EXIT 1738
-#define IDS_TOOLTIPS_EXIT 1854
-#define IDS_TOOLTIPS_FEED 1739
-#define IDS_TOOLTIPS_FEED 1855
-#define IDS_TOOLTIPS_FIREWORK_LAUNCH 1856
-#define IDS_TOOLTIPS_FOLLOWME 1740
-#define IDS_TOOLTIPS_FOLLOWME 1857
-#define IDS_TOOLTIPS_GAME_INVITES 1741
-#define IDS_TOOLTIPS_GAME_INVITES 1858
-#define IDS_TOOLTIPS_GROW 1742
-#define IDS_TOOLTIPS_GROW 1859
-#define IDS_TOOLTIPS_HANG 1743
-#define IDS_TOOLTIPS_HANG 1860
-#define IDS_TOOLTIPS_HARVEST 1744
-#define IDS_TOOLTIPS_HARVEST 1861
-#define IDS_TOOLTIPS_HEAL 1745
-#define IDS_TOOLTIPS_HEAL 1862
-#define IDS_TOOLTIPS_HIDE 1746
-#define IDS_TOOLTIPS_HIDE 1863
-#define IDS_TOOLTIPS_HIT 1747
-#define IDS_TOOLTIPS_HIT 1864
-#define IDS_TOOLTIPS_IGNITE 1748
-#define IDS_TOOLTIPS_IGNITE 1865
-#define IDS_TOOLTIPS_INSTALL 1749
-#define IDS_TOOLTIPS_INSTALL 1866
-#define IDS_TOOLTIPS_INSTALL_FULL 1750
-#define IDS_TOOLTIPS_INSTALL_FULL 1867
-#define IDS_TOOLTIPS_INSTALL_TRIAL 1751
-#define IDS_TOOLTIPS_INSTALL_TRIAL 1868
-#define IDS_TOOLTIPS_INVITE_FRIENDS 1752
-#define IDS_TOOLTIPS_INVITE_FRIENDS 1869
-#define IDS_TOOLTIPS_INVITE_PARTY 1753
-#define IDS_TOOLTIPS_INVITE_PARTY 1870
-#define IDS_TOOLTIPS_KICK 1754
-#define IDS_TOOLTIPS_KICK 1871
-#define IDS_TOOLTIPS_LEASH 1872
-#define IDS_TOOLTIPS_LOVEMODE 1755
-#define IDS_TOOLTIPS_LOVEMODE 1873
-#define IDS_TOOLTIPS_MILK 1756
-#define IDS_TOOLTIPS_MILK 1874
-#define IDS_TOOLTIPS_MINE 1757
-#define IDS_TOOLTIPS_MINE 1875
-#define IDS_TOOLTIPS_MOUNT 1876
-#define IDS_TOOLTIPS_NAME 1877
-#define IDS_TOOLTIPS_NAVIGATE 1758
-#define IDS_TOOLTIPS_NAVIGATE 1878
-#define IDS_TOOLTIPS_NEXT 1759
-#define IDS_TOOLTIPS_NEXT 1879
-#define IDS_TOOLTIPS_OPEN 1760
-#define IDS_TOOLTIPS_OPEN 1880
-#define IDS_TOOLTIPS_OPTIONS 1761
-#define IDS_TOOLTIPS_OPTIONS 1881
-#define IDS_TOOLTIPS_PAGE_DOWN 1762
-#define IDS_TOOLTIPS_PAGE_DOWN 1882
-#define IDS_TOOLTIPS_PAGE_UP 1763
-#define IDS_TOOLTIPS_PAGE_UP 1883
-#define IDS_TOOLTIPS_PAGEDOWN 1764
-#define IDS_TOOLTIPS_PAGEDOWN 1884
-#define IDS_TOOLTIPS_PAGEUP 1765
-#define IDS_TOOLTIPS_PAGEUP 1885
-#define IDS_TOOLTIPS_PARTY_GAMES 1766
-#define IDS_TOOLTIPS_PARTY_GAMES 1886
-#define IDS_TOOLTIPS_PICKUP_ALL 1767
-#define IDS_TOOLTIPS_PICKUP_ALL 1887
-#define IDS_TOOLTIPS_PICKUP_GENERIC 1768
-#define IDS_TOOLTIPS_PICKUP_GENERIC 1888
-#define IDS_TOOLTIPS_PICKUP_HALF 1769
-#define IDS_TOOLTIPS_PICKUP_HALF 1889
-#define IDS_TOOLTIPS_PICKUPPLACE 1770
-#define IDS_TOOLTIPS_PICKUPPLACE 1890
-#define IDS_TOOLTIPS_PLACE 1771
-#define IDS_TOOLTIPS_PLACE 1891
-#define IDS_TOOLTIPS_PLACE_ALL 1772
-#define IDS_TOOLTIPS_PLACE_ALL 1892
-#define IDS_TOOLTIPS_PLACE_GENERIC 1773
-#define IDS_TOOLTIPS_PLACE_GENERIC 1893
-#define IDS_TOOLTIPS_PLACE_ONE 1774
-#define IDS_TOOLTIPS_PLACE_ONE 1894
-#define IDS_TOOLTIPS_PLANT 1775
-#define IDS_TOOLTIPS_PLANT 1895
-#define IDS_TOOLTIPS_PLAY 1776
-#define IDS_TOOLTIPS_PLAY 1896
-#define IDS_TOOLTIPS_PREVIOUS 1777
-#define IDS_TOOLTIPS_PREVIOUS 1897
-#define IDS_TOOLTIPS_PRIVILEGES 1778
-#define IDS_TOOLTIPS_PRIVILEGES 1898
-#define IDS_TOOLTIPS_QUICK_MOVE 1779
-#define IDS_TOOLTIPS_QUICK_MOVE 1899
-#define IDS_TOOLTIPS_QUICK_MOVE_ARMOR 1780
-#define IDS_TOOLTIPS_QUICK_MOVE_ARMOR 1900
-#define IDS_TOOLTIPS_QUICK_MOVE_FUEL 1781
-#define IDS_TOOLTIPS_QUICK_MOVE_FUEL 1901
-#define IDS_TOOLTIPS_QUICK_MOVE_INGREDIENT 1782
-#define IDS_TOOLTIPS_QUICK_MOVE_INGREDIENT 1902
-#define IDS_TOOLTIPS_QUICK_MOVE_TOOL 1783
-#define IDS_TOOLTIPS_QUICK_MOVE_TOOL 1903
-#define IDS_TOOLTIPS_QUICK_MOVE_WEAPON 1784
-#define IDS_TOOLTIPS_QUICK_MOVE_WEAPON 1904
-#define IDS_TOOLTIPS_READ 1785
-#define IDS_TOOLTIPS_READ 1905
-#define IDS_TOOLTIPS_REFRESH 1786
-#define IDS_TOOLTIPS_REFRESH 1906
-#define IDS_TOOLTIPS_REINSTALL 1787
-#define IDS_TOOLTIPS_REINSTALL 1907
-#define IDS_TOOLTIPS_RELEASE_BOW 1788
-#define IDS_TOOLTIPS_RELEASE_BOW 1908
-#define IDS_TOOLTIPS_REPAIR 1789
-#define IDS_TOOLTIPS_REPAIR 1909
-#define IDS_TOOLTIPS_RIDE 1790
-#define IDS_TOOLTIPS_RIDE 1910
-#define IDS_TOOLTIPS_ROTATE 1791
-#define IDS_TOOLTIPS_ROTATE 1911
-#define IDS_TOOLTIPS_SADDLE 1792
-#define IDS_TOOLTIPS_SADDLE 1912
-#define IDS_TOOLTIPS_SADDLEBAGS 1913
-#define IDS_TOOLTIPS_SAIL 1793
-#define IDS_TOOLTIPS_SAIL 1914
-#define IDS_TOOLTIPS_SAVEOPTIONS 1794
-#define IDS_TOOLTIPS_SAVEOPTIONS 1915
-#define IDS_TOOLTIPS_SAVETRANSFER_DOWNLOAD 1795
-#define IDS_TOOLTIPS_SAVETRANSFER_DOWNLOAD 1916
-#define IDS_TOOLTIPS_SAVETRANSFER_UPLOAD 1917
-#define IDS_TOOLTIPS_SELECT 1796
-#define IDS_TOOLTIPS_SELECT 1918
-#define IDS_TOOLTIPS_SELECT_SKIN 1797
-#define IDS_TOOLTIPS_SELECT_SKIN 1919
-#define IDS_TOOLTIPS_SELECTDEVICE 1798
-#define IDS_TOOLTIPS_SELECTDEVICE 1920
-#define IDS_TOOLTIPS_SEND_FRIEND_REQUEST 1799
-#define IDS_TOOLTIPS_SEND_FRIEND_REQUEST 1921
-#define IDS_TOOLTIPS_SHARE 1800
-#define IDS_TOOLTIPS_SHARE 1922
-#define IDS_TOOLTIPS_SHEAR 1801
-#define IDS_TOOLTIPS_SHEAR 1923
-#define IDS_TOOLTIPS_SHOW_DESCRIPTION 1802
-#define IDS_TOOLTIPS_SHOW_DESCRIPTION 1924
-#define IDS_TOOLTIPS_SHOW_INGREDIENTS 1803
-#define IDS_TOOLTIPS_SHOW_INGREDIENTS 1925
-#define IDS_TOOLTIPS_SHOW_INVENTORY 1804
-#define IDS_TOOLTIPS_SHOW_INVENTORY 1926
-#define IDS_TOOLTIPS_SIT 1805
-#define IDS_TOOLTIPS_SIT 1927
-#define IDS_TOOLTIPS_SLEEP 1806
-#define IDS_TOOLTIPS_SLEEP 1928
-#define IDS_TOOLTIPS_SWAP 1807
-#define IDS_TOOLTIPS_SWAP 1929
-#define IDS_TOOLTIPS_SWIMUP 1808
-#define IDS_TOOLTIPS_SWIMUP 1930
-#define IDS_TOOLTIPS_TAME 1809
-#define IDS_TOOLTIPS_TAME 1931
-#define IDS_TOOLTIPS_THROW 1810
-#define IDS_TOOLTIPS_THROW 1932
-#define IDS_TOOLTIPS_TILL 1811
-#define IDS_TOOLTIPS_TILL 1933
-#define IDS_TOOLTIPS_TRADE 1812
-#define IDS_TOOLTIPS_TRADE 1934
-#define IDS_TOOLTIPS_UNLEASH 1935
-#define IDS_TOOLTIPS_UNLOCKFULLVERSION 1813
-#define IDS_TOOLTIPS_UNLOCKFULLVERSION 1936
-#define IDS_TOOLTIPS_USE 1814
-#define IDS_TOOLTIPS_USE 1937
-#define IDS_TOOLTIPS_VIEW_GAMERCARD 1815
-#define IDS_TOOLTIPS_VIEW_GAMERCARD 1938
-#define IDS_TOOLTIPS_VIEW_GAMERPROFILE 1816
-#define IDS_TOOLTIPS_VIEW_GAMERPROFILE 1939
-#define IDS_TOOLTIPS_WAKEUP 1817
-#define IDS_TOOLTIPS_WAKEUP 1940
-#define IDS_TOOLTIPS_WHAT_IS_THIS 1818
-#define IDS_TOOLTIPS_WHAT_IS_THIS 1941
-#define IDS_TRIALOVER_TEXT 1819
-#define IDS_TRIALOVER_TEXT 1942
-#define IDS_TRIALOVER_TITLE 1820
-#define IDS_TRIALOVER_TITLE 1943
-#define IDS_TRUST_PLAYERS 1821
-#define IDS_TRUST_PLAYERS 1944
-#define IDS_TUTORIAL_BREEDING_OVERVIEW 1822
-#define IDS_TUTORIAL_BREEDING_OVERVIEW 1945
-#define IDS_TUTORIAL_COMPLETED 1823
-#define IDS_TUTORIAL_COMPLETED 1946
-#define IDS_TUTORIAL_COMPLETED_EXPLORE 1824
-#define IDS_TUTORIAL_COMPLETED_EXPLORE 1947
-#define IDS_TUTORIAL_CONSTRAINT_TUTORIAL_AREA 1825
-#define IDS_TUTORIAL_CONSTRAINT_TUTORIAL_AREA 1948
-#define IDS_TUTORIAL_CREATIVE_OVERVIEW 1826
-#define IDS_TUTORIAL_CREATIVE_OVERVIEW 1949
-#define IDS_TUTORIAL_FARMING_OVERVIEW 1827
-#define IDS_TUTORIAL_FARMING_OVERVIEW 1950
-#define IDS_TUTORIAL_FEATURES_IN_THIS_AREA 1828
-#define IDS_TUTORIAL_FEATURES_IN_THIS_AREA 1951
-#define IDS_TUTORIAL_FEATURES_OUTSIDE_THIS_AREA 1829
-#define IDS_TUTORIAL_FEATURES_OUTSIDE_THIS_AREA 1952
-#define IDS_TUTORIAL_GOLEM_OVERVIEW 1830
-#define IDS_TUTORIAL_GOLEM_OVERVIEW 1953
-#define IDS_TUTORIAL_HINT_ATTACK_WITH_TOOL 1831
-#define IDS_TUTORIAL_HINT_ATTACK_WITH_TOOL 1954
-#define IDS_TUTORIAL_HINT_BOAT 1832
-#define IDS_TUTORIAL_HINT_BOAT 1955
-#define IDS_TUTORIAL_HINT_CRAFT_NO_INGREDIENTS 1833
-#define IDS_TUTORIAL_HINT_CRAFT_NO_INGREDIENTS 1956
-#define IDS_TUTORIAL_HINT_DIGGER_ITEM_HATCHET 1834
-#define IDS_TUTORIAL_HINT_DIGGER_ITEM_HATCHET 1957
-#define IDS_TUTORIAL_HINT_DIGGER_ITEM_PICKAXE 1835
-#define IDS_TUTORIAL_HINT_DIGGER_ITEM_PICKAXE 1958
-#define IDS_TUTORIAL_HINT_DIGGER_ITEM_SHOVEL 1836
-#define IDS_TUTORIAL_HINT_DIGGER_ITEM_SHOVEL 1959
-#define IDS_TUTORIAL_HINT_FISHING 1837
-#define IDS_TUTORIAL_HINT_FISHING 1960
-#define IDS_TUTORIAL_HINT_HOLD_TO_MINE 1838
-#define IDS_TUTORIAL_HINT_HOLD_TO_MINE 1961
-#define IDS_TUTORIAL_HINT_INV_DROP 1839
-#define IDS_TUTORIAL_HINT_INV_DROP 1962
-#define IDS_TUTORIAL_HINT_MINECART 1840
-#define IDS_TUTORIAL_HINT_MINECART 1963
-#define IDS_TUTORIAL_HINT_PISTON_SELF_REPAIRING_BRIDGE 1841
-#define IDS_TUTORIAL_HINT_PISTON_SELF_REPAIRING_BRIDGE 1964
-#define IDS_TUTORIAL_HINT_SWIM_UP 1842
-#define IDS_TUTORIAL_HINT_SWIM_UP 1965
-#define IDS_TUTORIAL_HINT_TOOL_DAMAGED 1843
-#define IDS_TUTORIAL_HINT_TOOL_DAMAGED 1966
-#define IDS_TUTORIAL_HTML_EXIT_PICTURE 1844
-#define IDS_TUTORIAL_HTML_EXIT_PICTURE 1967
-#define IDS_TUTORIAL_NEW_FEATURES_CHOICE 1845
-#define IDS_TUTORIAL_NEW_FEATURES_CHOICE 1968
-#define IDS_TUTORIAL_PORTAL_OVERVIEW 1846
-#define IDS_TUTORIAL_PORTAL_OVERVIEW 1969
-#define IDS_TUTORIAL_PROMPT_ANVIL_MENU_OVERVIEW 1847
-#define IDS_TUTORIAL_PROMPT_ANVIL_MENU_OVERVIEW 1970
-#define IDS_TUTORIAL_PROMPT_ANVIL_OVERVIEW 1848
-#define IDS_TUTORIAL_PROMPT_ANVIL_OVERVIEW 1971
-#define IDS_TUTORIAL_PROMPT_BASIC_COMPLETE 1849
-#define IDS_TUTORIAL_PROMPT_BASIC_COMPLETE 1972
-#define IDS_TUTORIAL_PROMPT_BEACON_MENU_OVERVIEW 1850
-#define IDS_TUTORIAL_PROMPT_BEACON_MENU_OVERVIEW 1973
-#define IDS_TUTORIAL_PROMPT_BEACON_OVERVIEW 1851
-#define IDS_TUTORIAL_PROMPT_BEACON_OVERVIEW 1974
-#define IDS_TUTORIAL_PROMPT_BED_OVERVIEW 1852
-#define IDS_TUTORIAL_PROMPT_BED_OVERVIEW 1975
-#define IDS_TUTORIAL_PROMPT_BOAT_OVERVIEW 1853
-#define IDS_TUTORIAL_PROMPT_BOAT_OVERVIEW 1976
-#define IDS_TUTORIAL_PROMPT_BREEDING_OVERVIEW 1854
-#define IDS_TUTORIAL_PROMPT_BREEDING_OVERVIEW 1977
-#define IDS_TUTORIAL_PROMPT_BREWING_MENU_OVERVIEW 1855
-#define IDS_TUTORIAL_PROMPT_BREWING_MENU_OVERVIEW 1978
-#define IDS_TUTORIAL_PROMPT_BREWING_OVERVIEW 1856
-#define IDS_TUTORIAL_PROMPT_BREWING_OVERVIEW 1979
-#define IDS_TUTORIAL_PROMPT_CRAFT_OVERVIEW 1857
-#define IDS_TUTORIAL_PROMPT_CRAFT_OVERVIEW 1980
-#define IDS_TUTORIAL_PROMPT_CREATIVE_INV_OVERVIEW 1858
-#define IDS_TUTORIAL_PROMPT_CREATIVE_INV_OVERVIEW 1981
-#define IDS_TUTORIAL_PROMPT_CREATIVE_OVERVIEW 1859
-#define IDS_TUTORIAL_PROMPT_CREATIVE_OVERVIEW 1982
-#define IDS_TUTORIAL_PROMPT_ENCHANTING_MENU_OVERVIEW 1860
-#define IDS_TUTORIAL_PROMPT_ENCHANTING_MENU_OVERVIEW 1983
-#define IDS_TUTORIAL_PROMPT_ENCHANTING_OVERVIEW 1861
-#define IDS_TUTORIAL_PROMPT_ENCHANTING_OVERVIEW 1984
-#define IDS_TUTORIAL_PROMPT_ENDERCHEST_OVERVIEW 1862
-#define IDS_TUTORIAL_PROMPT_ENDERCHEST_OVERVIEW 1985
-#define IDS_TUTORIAL_PROMPT_FARMING_OVERVIEW 1863
-#define IDS_TUTORIAL_PROMPT_FARMING_OVERVIEW 1986
-#define IDS_TUTORIAL_PROMPT_FIREWORK_MENU_OVERVIEW 1864
-#define IDS_TUTORIAL_PROMPT_FIREWORK_MENU_OVERVIEW 1987
-#define IDS_TUTORIAL_PROMPT_FIREWORK_OVERVIEW 1865
-#define IDS_TUTORIAL_PROMPT_FIREWORK_OVERVIEW 1988
-#define IDS_TUTORIAL_PROMPT_FISHING_OVERVIEW 1866
-#define IDS_TUTORIAL_PROMPT_FISHING_OVERVIEW 1989
-#define IDS_TUTORIAL_PROMPT_FOOD_BAR_OVERVIEW 1867
-#define IDS_TUTORIAL_PROMPT_FOOD_BAR_OVERVIEW 1990
-#define IDS_TUTORIAL_PROMPT_FURNACE_OVERVIEW 1868
-#define IDS_TUTORIAL_PROMPT_FURNACE_OVERVIEW 1991
-#define IDS_TUTORIAL_PROMPT_GOLEM_OVERVIEW 1869
-#define IDS_TUTORIAL_PROMPT_GOLEM_OVERVIEW 1992
-#define IDS_TUTORIAL_PROMPT_HOPPER_OVERVIEW 1870
-#define IDS_TUTORIAL_PROMPT_HOPPER_OVERVIEW 1993
-#define IDS_TUTORIAL_PROMPT_HORSE_MENU_OVERVIEW 1871
-#define IDS_TUTORIAL_PROMPT_HORSE_MENU_OVERVIEW 1994
-#define IDS_TUTORIAL_PROMPT_HORSE_OVERVIEW 1872
-#define IDS_TUTORIAL_PROMPT_HORSE_OVERVIEW 1995
-#define IDS_TUTORIAL_PROMPT_INV_OVERVIEW 1873
-#define IDS_TUTORIAL_PROMPT_INV_OVERVIEW 1996
-#define IDS_TUTORIAL_PROMPT_MINECART_OVERVIEW 1874
-#define IDS_TUTORIAL_PROMPT_MINECART_OVERVIEW 1997
-#define IDS_TUTORIAL_PROMPT_NEW_FEATURES_CHOICE 1875
-#define IDS_TUTORIAL_PROMPT_NEW_FEATURES_CHOICE 1998
-#define IDS_TUTORIAL_PROMPT_PORTAL_OVERVIEW 1876
-#define IDS_TUTORIAL_PROMPT_PORTAL_OVERVIEW 1999
-#define IDS_TUTORIAL_PROMPT_PRESS_A_TO_CONTINUE 1877
-#define IDS_TUTORIAL_PROMPT_PRESS_A_TO_CONTINUE 2000
-#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_DESCRIPTION 1878
-#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_DESCRIPTION 2001
-#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INGREDIENTS 1879
-#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INGREDIENTS 2002
-#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INVENTORY 1880
-#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INVENTORY 2003
-#define IDS_TUTORIAL_PROMPT_REDSTONE_OVERVIEW 1881
-#define IDS_TUTORIAL_PROMPT_REDSTONE_OVERVIEW 2004
-#define IDS_TUTORIAL_PROMPT_START_TUTORIAL 1882
-#define IDS_TUTORIAL_PROMPT_START_TUTORIAL 2005
-#define IDS_TUTORIAL_PROMPT_TRADING_MENU_OVERVIEW 1883
-#define IDS_TUTORIAL_PROMPT_TRADING_MENU_OVERVIEW 2006
-#define IDS_TUTORIAL_PROMPT_TRADING_OVERVIEW 1884
-#define IDS_TUTORIAL_PROMPT_TRADING_OVERVIEW 2007
-#define IDS_TUTORIAL_REDSTONE_OVERVIEW 1885
-#define IDS_TUTORIAL_REDSTONE_OVERVIEW 2008
-#define IDS_TUTORIAL_REMINDER 1886
-#define IDS_TUTORIAL_REMINDER 2009
-#define IDS_TUTORIAL_TASK_ACTIVATE_PORTAL 1887
-#define IDS_TUTORIAL_TASK_ACTIVATE_PORTAL 2010
-#define IDS_TUTORIAL_TASK_ANVIL_COST 1888
-#define IDS_TUTORIAL_TASK_ANVIL_COST 2011
-#define IDS_TUTORIAL_TASK_ANVIL_COST2 1889
-#define IDS_TUTORIAL_TASK_ANVIL_COST2 2012
-#define IDS_TUTORIAL_TASK_ANVIL_ENCHANTED_BOOKS 1890
-#define IDS_TUTORIAL_TASK_ANVIL_ENCHANTED_BOOKS 2013
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_COST 1891
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_COST 2014
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_ENCHANT 1892
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_ENCHANT 2015
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_OVERVIEW 1893
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_OVERVIEW 2016
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_RENAMING 1894
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_RENAMING 2017
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_REPAIR 1895
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_REPAIR 2018
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_SACRIFICE 1896
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_SACRIFICE 2019
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_SMITH 1897
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_SMITH 2020
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_START 1898
-#define IDS_TUTORIAL_TASK_ANVIL_MENU_START 2021
-#define IDS_TUTORIAL_TASK_ANVIL_OVERVIEW 1899
-#define IDS_TUTORIAL_TASK_ANVIL_OVERVIEW 2022
-#define IDS_TUTORIAL_TASK_ANVIL_RENAMING 1900
-#define IDS_TUTORIAL_TASK_ANVIL_RENAMING 2023
-#define IDS_TUTORIAL_TASK_ANVIL_SUMMARY 1901
-#define IDS_TUTORIAL_TASK_ANVIL_SUMMARY 2024
-#define IDS_TUTORIAL_TASK_ANVIL_USE_CHESTS 1902
-#define IDS_TUTORIAL_TASK_ANVIL_USE_CHESTS 2025
-#define IDS_TUTORIAL_TASK_BASIC_COMPLETE 1903
-#define IDS_TUTORIAL_TASK_BASIC_COMPLETE 2026
-#define IDS_TUTORIAL_TASK_BEACON_CHOOSING_POWERS 1904
-#define IDS_TUTORIAL_TASK_BEACON_CHOOSING_POWERS 2027
-#define IDS_TUTORIAL_TASK_BEACON_DESIGN 1905
-#define IDS_TUTORIAL_TASK_BEACON_DESIGN 2028
-#define IDS_TUTORIAL_TASK_BEACON_MENU_ACTIVATION 1906
-#define IDS_TUTORIAL_TASK_BEACON_MENU_ACTIVATION 2029
-#define IDS_TUTORIAL_TASK_BEACON_MENU_OVERVIEW 1907
-#define IDS_TUTORIAL_TASK_BEACON_MENU_OVERVIEW 2030
-#define IDS_TUTORIAL_TASK_BEACON_MENU_PRIMARY_POWERS 1908
-#define IDS_TUTORIAL_TASK_BEACON_MENU_PRIMARY_POWERS 2031
-#define IDS_TUTORIAL_TASK_BEACON_MENU_SECONDARY_POWER 1909
-#define IDS_TUTORIAL_TASK_BEACON_MENU_SECONDARY_POWER 2032
-#define IDS_TUTORIAL_TASK_BEACON_OVERVIEW 1910
-#define IDS_TUTORIAL_TASK_BEACON_OVERVIEW 2033
-#define IDS_TUTORIAL_TASK_BEACON_PURPOSE 1911
-#define IDS_TUTORIAL_TASK_BEACON_PURPOSE 2034
-#define IDS_TUTORIAL_TASK_BED_MULTIPLAYER 1912
-#define IDS_TUTORIAL_TASK_BED_MULTIPLAYER 2035
-#define IDS_TUTORIAL_TASK_BED_OVERVIEW 1913
-#define IDS_TUTORIAL_TASK_BED_OVERVIEW 2036
-#define IDS_TUTORIAL_TASK_BED_PLACEMENT 1914
-#define IDS_TUTORIAL_TASK_BED_PLACEMENT 2037
-#define IDS_TUTORIAL_TASK_BOAT_OVERVIEW 1915
-#define IDS_TUTORIAL_TASK_BOAT_OVERVIEW 2038
-#define IDS_TUTORIAL_TASK_BOAT_STEER 1916
-#define IDS_TUTORIAL_TASK_BOAT_STEER 2039
-#define IDS_TUTORIAL_TASK_BREEDING_BABY 1917
-#define IDS_TUTORIAL_TASK_BREEDING_BABY 2040
-#define IDS_TUTORIAL_TASK_BREEDING_COMPLETE 1918
-#define IDS_TUTORIAL_TASK_BREEDING_COMPLETE 2041
-#define IDS_TUTORIAL_TASK_BREEDING_DELAY 1919
-#define IDS_TUTORIAL_TASK_BREEDING_DELAY 2042
-#define IDS_TUTORIAL_TASK_BREEDING_FEED 1920
-#define IDS_TUTORIAL_TASK_BREEDING_FEED 2043
-#define IDS_TUTORIAL_TASK_BREEDING_FEED_FOOD 1921
-#define IDS_TUTORIAL_TASK_BREEDING_FEED_FOOD 2044
-#define IDS_TUTORIAL_TASK_BREEDING_FOLLOW 1922
-#define IDS_TUTORIAL_TASK_BREEDING_FOLLOW 2045
-#define IDS_TUTORIAL_TASK_BREEDING_RIDING_PIGS 1923
-#define IDS_TUTORIAL_TASK_BREEDING_RIDING_PIGS 2046
-#define IDS_TUTORIAL_TASK_BREEDING_WOLF_COLLAR 1924
-#define IDS_TUTORIAL_TASK_BREEDING_WOLF_COLLAR 2047
-#define IDS_TUTORIAL_TASK_BREEDING_WOLF_TAMING 1925
-#define IDS_TUTORIAL_TASK_BREEDING_WOLF_TAMING 2048
-#define IDS_TUTORIAL_TASK_BREWING_CREATE_FIRE_POTION 1926
-#define IDS_TUTORIAL_TASK_BREWING_CREATE_FIRE_POTION 2049
-#define IDS_TUTORIAL_TASK_BREWING_DRINK_FIRE_POTION 1927
-#define IDS_TUTORIAL_TASK_BREWING_DRINK_FIRE_POTION 2050
-#define IDS_TUTORIAL_TASK_BREWING_FILL_CAULDRON 1928
-#define IDS_TUTORIAL_TASK_BREWING_FILL_CAULDRON 2051
-#define IDS_TUTORIAL_TASK_BREWING_FILL_GLASS_BOTTLE 1929
-#define IDS_TUTORIAL_TASK_BREWING_FILL_GLASS_BOTTLE 2052
-#define IDS_TUTORIAL_TASK_BREWING_GET_GLASS_BOTTLE 1930
-#define IDS_TUTORIAL_TASK_BREWING_GET_GLASS_BOTTLE 2053
-#define IDS_TUTORIAL_TASK_BREWING_MENU_BASIC_INGREDIENTS 1931
-#define IDS_TUTORIAL_TASK_BREWING_MENU_BASIC_INGREDIENTS 2054
-#define IDS_TUTORIAL_TASK_BREWING_MENU_CREATE_FIRE_POTION 1932
-#define IDS_TUTORIAL_TASK_BREWING_MENU_CREATE_FIRE_POTION 2055
-#define IDS_TUTORIAL_TASK_BREWING_MENU_EXIT 1933
-#define IDS_TUTORIAL_TASK_BREWING_MENU_EXIT 2056
-#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS 1934
-#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS 2057
-#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS_2 1935
-#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS_2 2058
-#define IDS_TUTORIAL_TASK_BREWING_MENU_METHOD 1936
-#define IDS_TUTORIAL_TASK_BREWING_MENU_METHOD 2059
-#define IDS_TUTORIAL_TASK_BREWING_MENU_OVERVIEW 1937
-#define IDS_TUTORIAL_TASK_BREWING_MENU_OVERVIEW 2060
-#define IDS_TUTORIAL_TASK_BREWING_OVERVIEW 1938
-#define IDS_TUTORIAL_TASK_BREWING_OVERVIEW 2061
-#define IDS_TUTORIAL_TASK_BREWING_USE_EFFECTS 1939
-#define IDS_TUTORIAL_TASK_BREWING_USE_EFFECTS 2062
-#define IDS_TUTORIAL_TASK_BREWING_USE_POTION 1940
-#define IDS_TUTORIAL_TASK_BREWING_USE_POTION 2063
-#define IDS_TUTORIAL_TASK_BUILD_PORTAL 1941
-#define IDS_TUTORIAL_TASK_BUILD_PORTAL 2064
-#define IDS_TUTORIAL_TASK_CHOP_WOOD 1942
-#define IDS_TUTORIAL_TASK_CHOP_WOOD 2065
-#define IDS_TUTORIAL_TASK_COLLECT_RESOURCES 1943
-#define IDS_TUTORIAL_TASK_COLLECT_RESOURCES 2066
-#define IDS_TUTORIAL_TASK_CRAFT_CRAFT_TABLE 1944
-#define IDS_TUTORIAL_TASK_CRAFT_CRAFT_TABLE 2067
-#define IDS_TUTORIAL_TASK_CRAFT_CREATE 1945
-#define IDS_TUTORIAL_TASK_CRAFT_CREATE 2068
-#define IDS_TUTORIAL_TASK_CRAFT_CREATE_FURNACE 1946
-#define IDS_TUTORIAL_TASK_CRAFT_CREATE_FURNACE 2069
-#define IDS_TUTORIAL_TASK_CRAFT_CREATE_PLANKS 1947
-#define IDS_TUTORIAL_TASK_CRAFT_CREATE_PLANKS 2070
-#define IDS_TUTORIAL_TASK_CRAFT_DESCRIPTION 1948
-#define IDS_TUTORIAL_TASK_CRAFT_DESCRIPTION 2071
-#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_FURNACE 1949
-#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_FURNACE 2072
-#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_TABLE 1950
-#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_TABLE 2073
-#define IDS_TUTORIAL_TASK_CRAFT_INGREDIENTS 1951
-#define IDS_TUTORIAL_TASK_CRAFT_INGREDIENTS 2074
-#define IDS_TUTORIAL_TASK_CRAFT_INVENTORY 1952
-#define IDS_TUTORIAL_TASK_CRAFT_INVENTORY 2075
-#define IDS_TUTORIAL_TASK_CRAFT_NAV 1953
-#define IDS_TUTORIAL_TASK_CRAFT_NAV 2076
-#define IDS_TUTORIAL_TASK_CRAFT_OVERVIEW 1954
-#define IDS_TUTORIAL_TASK_CRAFT_OVERVIEW 2077
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_CRAFTING_TABLE 1955
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_CRAFTING_TABLE 2078
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_STRUCTURES 1956
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_STRUCTURES 2079
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_TOOLS 1957
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_TOOLS 2080
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_WOODEN_SHOVEL 1958
-#define IDS_TUTORIAL_TASK_CRAFT_SELECT_WOODEN_SHOVEL 2081
-#define IDS_TUTORIAL_TASK_CRAFT_TOOLS_BUILT 1959
-#define IDS_TUTORIAL_TASK_CRAFT_TOOLS_BUILT 2082
-#define IDS_TUTORIAL_TASK_CRAFTING 1960
-#define IDS_TUTORIAL_TASK_CRAFTING 2083
-#define IDS_TUTORIAL_TASK_CREATE_CHARCOAL 1961
-#define IDS_TUTORIAL_TASK_CREATE_CHARCOAL 2084
-#define IDS_TUTORIAL_TASK_CREATE_CRAFTING_TABLE 1962
-#define IDS_TUTORIAL_TASK_CREATE_CRAFTING_TABLE 2085
-#define IDS_TUTORIAL_TASK_CREATE_FURNACE 1963
-#define IDS_TUTORIAL_TASK_CREATE_FURNACE 2086
-#define IDS_TUTORIAL_TASK_CREATE_GLASS 1964
-#define IDS_TUTORIAL_TASK_CREATE_GLASS 2087
-#define IDS_TUTORIAL_TASK_CREATE_PLANKS 1965
-#define IDS_TUTORIAL_TASK_CREATE_PLANKS 2088
-#define IDS_TUTORIAL_TASK_CREATE_STICKS 1966
-#define IDS_TUTORIAL_TASK_CREATE_STICKS 2089
-#define IDS_TUTORIAL_TASK_CREATE_TORCH 1967
-#define IDS_TUTORIAL_TASK_CREATE_TORCH 2090
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_DOOR 1968
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_DOOR 2091
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_HATCHET 1969
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_HATCHET 2092
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_PICKAXE 1970
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_PICKAXE 2093
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_SHOVEL 1971
-#define IDS_TUTORIAL_TASK_CREATE_WOODEN_SHOVEL 2094
-#define IDS_TUTORIAL_TASK_CREATIVE_COMPLETE 1972
-#define IDS_TUTORIAL_TASK_CREATIVE_COMPLETE 2095
-#define IDS_TUTORIAL_TASK_CREATIVE_EXIT 1973
-#define IDS_TUTORIAL_TASK_CREATIVE_EXIT 2096
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_DROP 1974
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_DROP 2097
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_EXIT 1975
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_EXIT 2098
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_INFO 1976
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_INFO 2099
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_MOVE 1977
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_MOVE 2100
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_NAV 1978
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_NAV 2101
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_OVERVIEW 1979
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_OVERVIEW 2102
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_PICK_UP 1980
-#define IDS_TUTORIAL_TASK_CREATIVE_INV_PICK_UP 2103
-#define IDS_TUTORIAL_TASK_CREATIVE_MODE 1981
-#define IDS_TUTORIAL_TASK_CREATIVE_MODE 2104
-#define IDS_TUTORIAL_TASK_DONKEY_OVERVIEW 1982
-#define IDS_TUTORIAL_TASK_DONKEY_OVERVIEW 2105
-#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKCASES 1983
-#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKCASES 2106
-#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKS 1984
-#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKS 2107
-#define IDS_TUTORIAL_TASK_ENCHANTING_BOTTLE_O_ENCHANTING 1985
-#define IDS_TUTORIAL_TASK_ENCHANTING_BOTTLE_O_ENCHANTING 2108
-#define IDS_TUTORIAL_TASK_ENCHANTING_EXPERIENCE 1986
-#define IDS_TUTORIAL_TASK_ENCHANTING_EXPERIENCE 2109
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_BETTER_ENCHANTMENTS 1987
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_BETTER_ENCHANTMENTS 2110
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_COST 1988
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_COST 2111
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANT 1989
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANT 2112
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANTMENTS 1990
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANTMENTS 2113
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_OVERVIEW 1991
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_OVERVIEW 2114
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_START 1992
-#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_START 2115
-#define IDS_TUTORIAL_TASK_ENCHANTING_OVERVIEW 1993
-#define IDS_TUTORIAL_TASK_ENCHANTING_OVERVIEW 2116
-#define IDS_TUTORIAL_TASK_ENCHANTING_SUMMARY 1994
-#define IDS_TUTORIAL_TASK_ENCHANTING_SUMMARY 2117
-#define IDS_TUTORIAL_TASK_ENCHANTING_USE_CHESTS 1995
-#define IDS_TUTORIAL_TASK_ENCHANTING_USE_CHESTS 2118
-#define IDS_TUTORIAL_TASK_ENDERCHEST_FUNCTION 1996
-#define IDS_TUTORIAL_TASK_ENDERCHEST_FUNCTION 2119
-#define IDS_TUTORIAL_TASK_ENDERCHEST_OVERVIEW 1997
-#define IDS_TUTORIAL_TASK_ENDERCHEST_OVERVIEW 2120
-#define IDS_TUTORIAL_TASK_ENDERCHEST_PLAYERS 1998
-#define IDS_TUTORIAL_TASK_ENDERCHEST_PLAYERS 2121
-#define IDS_TUTORIAL_TASK_ENDERCHEST_SUMMARY 1999
-#define IDS_TUTORIAL_TASK_ENDERCHEST_SUMMARY 2122
-#define IDS_TUTORIAL_TASK_FARMING_BONEMEAL 2000
-#define IDS_TUTORIAL_TASK_FARMING_BONEMEAL 2123
-#define IDS_TUTORIAL_TASK_FARMING_CACTUS 2001
-#define IDS_TUTORIAL_TASK_FARMING_CACTUS 2124
-#define IDS_TUTORIAL_TASK_FARMING_CARROTS_AND_POTATOES 2002
-#define IDS_TUTORIAL_TASK_FARMING_CARROTS_AND_POTATOES 2125
-#define IDS_TUTORIAL_TASK_FARMING_COMPLETE 2003
-#define IDS_TUTORIAL_TASK_FARMING_COMPLETE 2126
-#define IDS_TUTORIAL_TASK_FARMING_FARMLAND 2004
-#define IDS_TUTORIAL_TASK_FARMING_FARMLAND 2127
-#define IDS_TUTORIAL_TASK_FARMING_MUSHROOM 2005
-#define IDS_TUTORIAL_TASK_FARMING_MUSHROOM 2128
-#define IDS_TUTORIAL_TASK_FARMING_PUMPKIN_AND_MELON 2006
-#define IDS_TUTORIAL_TASK_FARMING_PUMPKIN_AND_MELON 2129
-#define IDS_TUTORIAL_TASK_FARMING_SEEDS 2007
-#define IDS_TUTORIAL_TASK_FARMING_SEEDS 2130
-#define IDS_TUTORIAL_TASK_FARMING_SUGARCANE 2008
-#define IDS_TUTORIAL_TASK_FARMING_SUGARCANE 2131
-#define IDS_TUTORIAL_TASK_FARMING_WHEAT 2009
-#define IDS_TUTORIAL_TASK_FARMING_WHEAT 2132
-#define IDS_TUTORIAL_TASK_FIREWORK_CRAFTING 2010
-#define IDS_TUTORIAL_TASK_FIREWORK_CRAFTING 2133
-#define IDS_TUTORIAL_TASK_FIREWORK_CUSTOMISE 2011
-#define IDS_TUTORIAL_TASK_FIREWORK_CUSTOMISE 2134
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_COLOUR 2012
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_COLOUR 2135
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_EFFECT 2013
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_EFFECT 2136
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_FADE 2014
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_FADE 2137
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_SHAPE 2015
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_SHAPE 2138
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_START 2016
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_START 2139
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_CRAFT 2017
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_CRAFT 2140
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_HEIGHT 2018
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_HEIGHT 2141
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_STARS 2019
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_STARS 2142
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_START 2020
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_START 2143
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_OVERVIEW 2021
-#define IDS_TUTORIAL_TASK_FIREWORK_MENU_OVERVIEW 2144
-#define IDS_TUTORIAL_TASK_FIREWORK_OVERVIEW 2022
-#define IDS_TUTORIAL_TASK_FIREWORK_OVERVIEW 2145
-#define IDS_TUTORIAL_TASK_FIREWORK_PURPOSE 2023
-#define IDS_TUTORIAL_TASK_FIREWORK_PURPOSE 2146
-#define IDS_TUTORIAL_TASK_FISHING_CAST 2024
-#define IDS_TUTORIAL_TASK_FISHING_CAST 2147
-#define IDS_TUTORIAL_TASK_FISHING_FISH 2025
-#define IDS_TUTORIAL_TASK_FISHING_FISH 2148
-#define IDS_TUTORIAL_TASK_FISHING_OVERVIEW 2026
-#define IDS_TUTORIAL_TASK_FISHING_OVERVIEW 2149
-#define IDS_TUTORIAL_TASK_FISHING_USES 2027
-#define IDS_TUTORIAL_TASK_FISHING_USES 2150
-#define IDS_TUTORIAL_TASK_FLY 2028
-#define IDS_TUTORIAL_TASK_FLY 2151
-#define IDS_TUTORIAL_TASK_FOOD_BAR_DEPLETE 2029
-#define IDS_TUTORIAL_TASK_FOOD_BAR_DEPLETE 2152
-#define IDS_TUTORIAL_TASK_FOOD_BAR_EAT_STEAK 2030
-#define IDS_TUTORIAL_TASK_FOOD_BAR_EAT_STEAK 2153
-#define IDS_TUTORIAL_TASK_FOOD_BAR_FEED 2031
-#define IDS_TUTORIAL_TASK_FOOD_BAR_FEED 2154
-#define IDS_TUTORIAL_TASK_FOOD_BAR_HEAL 2032
-#define IDS_TUTORIAL_TASK_FOOD_BAR_HEAL 2155
-#define IDS_TUTORIAL_TASK_FOOD_BAR_OVERVIEW 2033
-#define IDS_TUTORIAL_TASK_FOOD_BAR_OVERVIEW 2156
-#define IDS_TUTORIAL_TASK_FURNACE_CHARCOAL_USES 2034
-#define IDS_TUTORIAL_TASK_FURNACE_CHARCOAL_USES 2157
-#define IDS_TUTORIAL_TASK_FURNACE_CREATE_CHARCOAL 2035
-#define IDS_TUTORIAL_TASK_FURNACE_CREATE_CHARCOAL 2158
-#define IDS_TUTORIAL_TASK_FURNACE_CREATE_GLASS 2036
-#define IDS_TUTORIAL_TASK_FURNACE_CREATE_GLASS 2159
-#define IDS_TUTORIAL_TASK_FURNACE_FUELS 2037
-#define IDS_TUTORIAL_TASK_FURNACE_FUELS 2160
-#define IDS_TUTORIAL_TASK_FURNACE_INGREDIENTS 2038
-#define IDS_TUTORIAL_TASK_FURNACE_INGREDIENTS 2161
-#define IDS_TUTORIAL_TASK_FURNACE_METHOD 2039
-#define IDS_TUTORIAL_TASK_FURNACE_METHOD 2162
-#define IDS_TUTORIAL_TASK_FURNACE_OVERVIEW 2040
-#define IDS_TUTORIAL_TASK_FURNACE_OVERVIEW 2163
-#define IDS_TUTORIAL_TASK_GOLEM_IRON 2041
-#define IDS_TUTORIAL_TASK_GOLEM_IRON 2164
-#define IDS_TUTORIAL_TASK_GOLEM_IRON_VILLAGE 2042
-#define IDS_TUTORIAL_TASK_GOLEM_IRON_VILLAGE 2165
-#define IDS_TUTORIAL_TASK_GOLEM_PUMPKIN 2043
-#define IDS_TUTORIAL_TASK_GOLEM_PUMPKIN 2166
-#define IDS_TUTORIAL_TASK_GOLEM_SNOW 2044
-#define IDS_TUTORIAL_TASK_GOLEM_SNOW 2167
-#define IDS_TUTORIAL_TASK_HOPPER_AREA 2045
-#define IDS_TUTORIAL_TASK_HOPPER_AREA 2168
-#define IDS_TUTORIAL_TASK_HOPPER_CONTAINERS 2046
-#define IDS_TUTORIAL_TASK_HOPPER_CONTAINERS 2169
-#define IDS_TUTORIAL_TASK_HOPPER_MECHANICS 2047
-#define IDS_TUTORIAL_TASK_HOPPER_MECHANICS 2170
-#define IDS_TUTORIAL_TASK_HOPPER_OUTPUT 2048
-#define IDS_TUTORIAL_TASK_HOPPER_OUTPUT 2171
-#define IDS_TUTORIAL_TASK_HOPPER_OVERVIEW 2049
-#define IDS_TUTORIAL_TASK_HOPPER_OVERVIEW 2172
-#define IDS_TUTORIAL_TASK_HOPPER_PURPOSE 2050
-#define IDS_TUTORIAL_TASK_HOPPER_PURPOSE 2173
-#define IDS_TUTORIAL_TASK_HOPPER_REDSTONE 2051
-#define IDS_TUTORIAL_TASK_HOPPER_REDSTONE 2174
-#define IDS_TUTORIAL_TASK_HORSE_AREA 2052
-#define IDS_TUTORIAL_TASK_HORSE_AREA 2175
-#define IDS_TUTORIAL_TASK_HORSE_BREEDING 2053
-#define IDS_TUTORIAL_TASK_HORSE_BREEDING 2176
-#define IDS_TUTORIAL_TASK_HORSE_INTRO 2054
-#define IDS_TUTORIAL_TASK_HORSE_INTRO 2177
-#define IDS_TUTORIAL_TASK_HORSE_MENU_EQUIPMENT 2055
-#define IDS_TUTORIAL_TASK_HORSE_MENU_EQUIPMENT 2178
-#define IDS_TUTORIAL_TASK_HORSE_MENU_LAYOUT 2056
-#define IDS_TUTORIAL_TASK_HORSE_MENU_LAYOUT 2179
-#define IDS_TUTORIAL_TASK_HORSE_MENU_OVERVIEW 2057
-#define IDS_TUTORIAL_TASK_HORSE_MENU_OVERVIEW 2180
-#define IDS_TUTORIAL_TASK_HORSE_MENU_SADDLEBAGS 2058
-#define IDS_TUTORIAL_TASK_HORSE_MENU_SADDLEBAGS 2181
-#define IDS_TUTORIAL_TASK_HORSE_OVERVIEW 2059
-#define IDS_TUTORIAL_TASK_HORSE_OVERVIEW 2182
-#define IDS_TUTORIAL_TASK_HORSE_PURPOSE 2060
-#define IDS_TUTORIAL_TASK_HORSE_PURPOSE 2183
-#define IDS_TUTORIAL_TASK_HORSE_RIDE 2061
-#define IDS_TUTORIAL_TASK_HORSE_RIDE 2184
-#define IDS_TUTORIAL_TASK_HORSE_SADDLEBAGS 2062
-#define IDS_TUTORIAL_TASK_HORSE_SADDLEBAGS 2185
-#define IDS_TUTORIAL_TASK_HORSE_SADDLES 2063
-#define IDS_TUTORIAL_TASK_HORSE_SADDLES 2186
-#define IDS_TUTORIAL_TASK_HORSE_TAMING 2064
-#define IDS_TUTORIAL_TASK_HORSE_TAMING 2187
-#define IDS_TUTORIAL_TASK_HORSE_TAMING2 2065
-#define IDS_TUTORIAL_TASK_HORSE_TAMING2 2188
-#define IDS_TUTORIAL_TASK_INV_DROP 2066
-#define IDS_TUTORIAL_TASK_INV_DROP 2189
-#define IDS_TUTORIAL_TASK_INV_EXIT 2067
-#define IDS_TUTORIAL_TASK_INV_EXIT 2190
-#define IDS_TUTORIAL_TASK_INV_INFO 2068
-#define IDS_TUTORIAL_TASK_INV_INFO 2191
-#define IDS_TUTORIAL_TASK_INV_MOVE 2069
-#define IDS_TUTORIAL_TASK_INV_MOVE 2192
-#define IDS_TUTORIAL_TASK_INV_OVERVIEW 2070
-#define IDS_TUTORIAL_TASK_INV_OVERVIEW 2193
-#define IDS_TUTORIAL_TASK_INV_PICK_UP 2071
-#define IDS_TUTORIAL_TASK_INV_PICK_UP 2194
-#define IDS_TUTORIAL_TASK_INVENTORY 2072
-#define IDS_TUTORIAL_TASK_INVENTORY 2195
-#define IDS_TUTORIAL_TASK_JUMP 2073
-#define IDS_TUTORIAL_TASK_JUMP 2196
-#define IDS_TUTORIAL_TASK_LOOK 2074
-#define IDS_TUTORIAL_TASK_LOOK 2197
-#define IDS_TUTORIAL_TASK_MINE 2075
-#define IDS_TUTORIAL_TASK_MINE 2198
-#define IDS_TUTORIAL_TASK_MINE_STONE 2076
-#define IDS_TUTORIAL_TASK_MINE_STONE 2199
-#define IDS_TUTORIAL_TASK_MINECART_OVERVIEW 2077
-#define IDS_TUTORIAL_TASK_MINECART_OVERVIEW 2200
-#define IDS_TUTORIAL_TASK_MINECART_POWERED_RAILS 2078
-#define IDS_TUTORIAL_TASK_MINECART_POWERED_RAILS 2201
-#define IDS_TUTORIAL_TASK_MINECART_PUSHING 2079
-#define IDS_TUTORIAL_TASK_MINECART_PUSHING 2202
-#define IDS_TUTORIAL_TASK_MINECART_RAILS 2080
-#define IDS_TUTORIAL_TASK_MINECART_RAILS 2203
-#define IDS_TUTORIAL_TASK_MOVE 2081
-#define IDS_TUTORIAL_TASK_MOVE 2204
-#define IDS_TUTORIAL_TASK_MULE_OVERVIEW 2082
-#define IDS_TUTORIAL_TASK_MULE_OVERVIEW 2205
-#define IDS_TUTORIAL_TASK_NEARBY_SHELTER 2083
-#define IDS_TUTORIAL_TASK_NEARBY_SHELTER 2206
-#define IDS_TUTORIAL_TASK_NETHER 2084
-#define IDS_TUTORIAL_TASK_NETHER 2207
-#define IDS_TUTORIAL_TASK_NETHER_FAST_TRAVEL 2085
-#define IDS_TUTORIAL_TASK_NETHER_FAST_TRAVEL 2208
-#define IDS_TUTORIAL_TASK_NIGHT_DANGER 2086
-#define IDS_TUTORIAL_TASK_NIGHT_DANGER 2209
-#define IDS_TUTORIAL_TASK_OPEN_CONTAINER 2087
-#define IDS_TUTORIAL_TASK_OPEN_CONTAINER 2210
-#define IDS_TUTORIAL_TASK_OPEN_CREATIVE_INVENTORY 2088
-#define IDS_TUTORIAL_TASK_OPEN_CREATIVE_INVENTORY 2211
-#define IDS_TUTORIAL_TASK_OPEN_WORKBENCH 2089
-#define IDS_TUTORIAL_TASK_OPEN_WORKBENCH 2212
-#define IDS_TUTORIAL_TASK_OVERVIEW 2090
-#define IDS_TUTORIAL_TASK_OVERVIEW 2213
-#define IDS_TUTORIAL_TASK_PISTONS 2091
-#define IDS_TUTORIAL_TASK_PISTONS 2214
-#define IDS_TUTORIAL_TASK_PLACE_AND_OPEN_FURNACE 2092
-#define IDS_TUTORIAL_TASK_PLACE_AND_OPEN_FURNACE 2215
-#define IDS_TUTORIAL_TASK_PLACE_DOOR 2093
-#define IDS_TUTORIAL_TASK_PLACE_DOOR 2216
-#define IDS_TUTORIAL_TASK_PLACE_WORKBENCH 2094
-#define IDS_TUTORIAL_TASK_PLACE_WORKBENCH 2217
-#define IDS_TUTORIAL_TASK_REDSTONE_DUST 2095
-#define IDS_TUTORIAL_TASK_REDSTONE_DUST 2218
-#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES 2096
-#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES 2219
-#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES_POSITION 2097
-#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES_POSITION 2220
-#define IDS_TUTORIAL_TASK_REDSTONE_REPEATER 2098
-#define IDS_TUTORIAL_TASK_REDSTONE_REPEATER 2221
-#define IDS_TUTORIAL_TASK_REDSTONE_TRIPWIRE 2099
-#define IDS_TUTORIAL_TASK_REDSTONE_TRIPWIRE 2222
-#define IDS_TUTORIAL_TASK_SCROLL 2100
-#define IDS_TUTORIAL_TASK_SCROLL 2223
-#define IDS_TUTORIAL_TASK_SPRINT 2101
-#define IDS_TUTORIAL_TASK_SPRINT 2224
-#define IDS_TUTORIAL_TASK_TRADING_DECREASE_TRADES 2102
-#define IDS_TUTORIAL_TASK_TRADING_DECREASE_TRADES 2225
-#define IDS_TUTORIAL_TASK_TRADING_INCREASE_TRADES 2103
-#define IDS_TUTORIAL_TASK_TRADING_INCREASE_TRADES 2226
-#define IDS_TUTORIAL_TASK_TRADING_MENU_DETAILS 2104
-#define IDS_TUTORIAL_TASK_TRADING_MENU_DETAILS 2227
-#define IDS_TUTORIAL_TASK_TRADING_MENU_INVENTORY 2105
-#define IDS_TUTORIAL_TASK_TRADING_MENU_INVENTORY 2228
-#define IDS_TUTORIAL_TASK_TRADING_MENU_OVERVIEW 2106
-#define IDS_TUTORIAL_TASK_TRADING_MENU_OVERVIEW 2229
-#define IDS_TUTORIAL_TASK_TRADING_MENU_START 2107
-#define IDS_TUTORIAL_TASK_TRADING_MENU_START 2230
-#define IDS_TUTORIAL_TASK_TRADING_MENU_TRADE 2108
-#define IDS_TUTORIAL_TASK_TRADING_MENU_TRADE 2231
-#define IDS_TUTORIAL_TASK_TRADING_MENU_UNAVAILABLE 2109
-#define IDS_TUTORIAL_TASK_TRADING_MENU_UNAVAILABLE 2232
-#define IDS_TUTORIAL_TASK_TRADING_OVERVIEW 2110
-#define IDS_TUTORIAL_TASK_TRADING_OVERVIEW 2233
-#define IDS_TUTORIAL_TASK_TRADING_SUMMARY 2111
-#define IDS_TUTORIAL_TASK_TRADING_SUMMARY 2234
-#define IDS_TUTORIAL_TASK_TRADING_TRADES 2112
-#define IDS_TUTORIAL_TASK_TRADING_TRADES 2235
-#define IDS_TUTORIAL_TASK_TRADING_USE_CHESTS 2113
-#define IDS_TUTORIAL_TASK_TRADING_USE_CHESTS 2236
-#define IDS_TUTORIAL_TASK_TRY_IT 2114
-#define IDS_TUTORIAL_TASK_TRY_IT 2237
-#define IDS_TUTORIAL_TASK_USE 2115
-#define IDS_TUTORIAL_TASK_USE 2238
-#define IDS_TUTORIAL_TASK_USE_PORTAL 2116
-#define IDS_TUTORIAL_TASK_USE_PORTAL 2239
-#define IDS_TUTORIALSAVENAME 2117
-#define IDS_TUTORIALSAVENAME 2240
-#define IDS_UNHIDE_MASHUP_WORLDS 2118
-#define IDS_UNHIDE_MASHUP_WORLDS 2241
-#define IDS_UNLOCK_ACCEPT_INVITE 2119
-#define IDS_UNLOCK_ACCEPT_INVITE 2242
-#define IDS_UNLOCK_ACHIEVEMENT_TEXT 2120
-#define IDS_UNLOCK_ACHIEVEMENT_TEXT 2243
-#define IDS_UNLOCK_DLC_SKIN 2121
-#define IDS_UNLOCK_DLC_SKIN 2244
-#define IDS_UNLOCK_DLC_TEXTUREPACK_TEXT 2122
-#define IDS_UNLOCK_DLC_TEXTUREPACK_TEXT 2245
-#define IDS_UNLOCK_DLC_TEXTUREPACK_TITLE 2123
-#define IDS_UNLOCK_DLC_TEXTUREPACK_TITLE 2246
-#define IDS_UNLOCK_DLC_TITLE 2124
-#define IDS_UNLOCK_DLC_TITLE 2247
-#define IDS_UNLOCK_FULL_GAME 2125
-#define IDS_UNLOCK_FULL_GAME 2248
-#define IDS_UNLOCK_GUEST_TEXT 2126
-#define IDS_UNLOCK_GUEST_TEXT 2249
-#define IDS_UNLOCK_KICK_PLAYER 2127
-#define IDS_UNLOCK_KICK_PLAYER 2250
-#define IDS_UNLOCK_KICK_PLAYER_TITLE 2128
-#define IDS_UNLOCK_KICK_PLAYER_TITLE 2251
-#define IDS_UNLOCK_THEME_TEXT 2129
-#define IDS_UNLOCK_THEME_TEXT 2252
-#define IDS_UNLOCK_TITLE 2130
-#define IDS_UNLOCK_TITLE 2253
-#define IDS_UNLOCK_TOSAVE_TEXT 2131
-#define IDS_UNLOCK_TOSAVE_TEXT 2254
-#define IDS_USER_INTERFACE 2132
-#define IDS_USER_INTERFACE 2255
-#define IDS_USING_TRIAL_TEXUREPACK_WARNING 2133
-#define IDS_USING_TRIAL_TEXUREPACK_WARNING 2256
-#define IDS_VIEW_BOBBING 2134
-#define IDS_VIEW_BOBBING 2257
-#define IDS_VILLAGER 2135
-#define IDS_VILLAGER 2258
-#define IDS_VILLAGER_BUTCHER 2136
-#define IDS_VILLAGER_BUTCHER 2259
-#define IDS_VILLAGER_FARMER 2137
-#define IDS_VILLAGER_FARMER 2260
-#define IDS_VILLAGER_LIBRARIAN 2138
-#define IDS_VILLAGER_LIBRARIAN 2261
-#define IDS_VILLAGER_OFFERS_ITEM 2139
-#define IDS_VILLAGER_OFFERS_ITEM 2262
-#define IDS_VILLAGER_PRIEST 2140
-#define IDS_VILLAGER_PRIEST 2263
-#define IDS_VILLAGER_SMITH 2141
-#define IDS_VILLAGER_SMITH 2264
-#define IDS_WARNING_ARCADE_TEXT 2142
-#define IDS_WARNING_ARCADE_TEXT 2265
-#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TEXT 2143
-#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TEXT 2266
-#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TITLE 2144
-#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TITLE 2267
-#define IDS_WIN_TEXT 2145
-#define IDS_WIN_TEXT 2268
-#define IDS_WIN_TEXT_PART_2 2146
-#define IDS_WIN_TEXT_PART_2 2269
-#define IDS_WIN_TEXT_PART_3 2147
-#define IDS_WIN_TEXT_PART_3 2270
-#define IDS_WITCH 2148
-#define IDS_WITCH 2271
-#define IDS_WITHER 2149
-#define IDS_WITHER 2272
-#define IDS_WOLF 2150
-#define IDS_WOLF 2273
-#define IDS_WORLD_NAME 2151
-#define IDS_WORLD_NAME 2274
-#define IDS_WORLD_OPTIONS 2152
-#define IDS_WORLD_OPTIONS 2275
-#define IDS_WORLD_SIZE 2153
-#define IDS_WORLD_SIZE_TITLE_CLASSIC 2154
-#define IDS_WORLD_SIZE_TITLE_LARGE 2155
-#define IDS_WORLD_SIZE_TITLE_MEDIUM 2156
-#define IDS_WORLD_SIZE_TITLE_SMALL 2157
-#define IDS_YES 2158
-#define IDS_YES 2276
-#define IDS_YOU_DIED 2159
-#define IDS_YOU_DIED 2277
-#define IDS_YOU_HAVE 2160
-#define IDS_YOU_HAVE 2278
-#define IDS_ZOMBIE 2161
-#define IDS_ZOMBIE 2279
-#define IDS_ZOMBIE_HORSE 2162
-#define IDS_ZOMBIE_HORSE 2280
+// Auto-generated by StringTable builder — do not edit manually.
+// Source language: en-US
+// Total strings: 2302
+
+#define IDS_OK 0
+#define IDS_BACK 1
+#define IDS_CANCEL 2
+#define IDS_YES 3
+#define IDS_NO 4
+#define IDS_CORRUPTSAVE_TITLE 5
+#define IDS_CORRUPTSAVE_TEXT 6
+#define IDS_NOFREESPACE_TITLE 7
+#define IDS_SELECTAGAIN 8
+#define IDS_PLAYWITHOUTSAVING 9
+#define IDS_CREATEANEWSAVE 10
+#define IDS_OVERWRITESAVE_TITLE 11
+#define IDS_OVERWRITESAVE_NO 12
+#define IDS_OVERWRITESAVE_YES 13
+#define IDS_FAILED_TO_SAVE_TITLE 14
+#define IDS_NODEVICE_DECLINE 15
+#define IDS_DEVICEGONE_TITLE 16
+#define IDS_KEYBOARDUI_SAVEGAME_TITLE 17
+#define IDS_KEYBOARDUI_SAVEGAME_TEXT 18
+#define IDS_WARNING_ARCADE_TEXT 19
+#define IDS_PRO_RETURNEDTOMENU_TITLE 20
+#define IDS_PRO_RETURNEDTOMENU_ACCEPT 21
+#define IDS_PRO_NOTONLINE_DECLINE 22
+#define IDS_PRO_GUESTPROFILE_TITLE 23
+#define IDS_PRO_GUESTPROFILE_TEXT 24
+#define IDS_STO_SAVING_SHORT 25
+#define IDS_STO_SAVING_LONG 26
+#define IDS_PRO_UNLOCKGAME_TITLE 27
+#define IDS_NOFREESPACE_TEXT 28
+#define IDS_PRO_RETURNEDTOTITLESCREEN_TEXT 29
+#define IDS_PRO_RETURNEDTOMENU_TEXT 30
+#define IDS_PRO_NOTONLINE_TITLE 31
+#define IDS_PRO_NOTONLINE_TEXT 32
+#define IDS_PRO_XBOXLIVE_NOTIFICATION 33
+#define IDS_PRO_NOTONLINE_ACCEPT 34
+#define IDS_PRO_ACHIEVEMENTPROBLEM_TITLE 35
+#define IDS_PRO_ACHIEVEMENTPROBLEM_TEXT 36
+#define IDS_PRO_NOPROFILE_TITLE 37
+#define IDS_PRO_NOPROFILEOPTIONS_TEXT 38
+#define IDS_PRO_UNLOCKGAME_TEXT 39
+#define IDS_UNHIDE_MASHUP_WORLDS 40
+#define IDS_TOOLTIPS_HIDE 41
+#define IDS_GAMENAME 42
+#define IDS_OPTIONSFILE 43
+#define IDS_SAVECACHEFILE 44
+#define IDS_ERROR_NETWORK 45
+#define IDS_ERROR_NETWORK_TITLE 46
+#define IDS_ERROR_NETWORK_EXIT 47
+#define IDS_CHAT_RESTRICTION_UGC 48
+#define IDS_CONTENT_RESTRICTION 49
+#define IDS_ONLINE_SERVICE_TITLE 50
+#define IDS_ERROR_PSN_SIGN_OUT 51
+#define IDS_ERROR_PSN_SIGN_OUT_EXIT 52
+#define IDS_PLAYER_LIST_TITLE 53
+#define IDS_DLC_PRICE_FREE 54
+#define IDS_CORRUPT_OPTIONS 55
+#define IDS_CORRUPT_SAVECACHE 56
+#define IDS_SAVEDATA_COPIED_TITLE 57
+#define IDS_SAVEDATA_COPIED_TEXT 58
+#define IDS_FATAL_TROPHY_ERROR 59
+#define IDS_TOOLTIPS_GAME_INVITES 60
+#define IDS_CORRUPT_FILE 61
+#define IDS_CONTROLER_DISCONNECT_TITLE 62
+#define IDS_CONTROLER_DISCONNECT_TEXT 63
+#define IDS_CONTENT_RESTRICTION_MULTIPLAYER 64
+#define IDS_CONTENT_RESTRICTION_PATCH_AVAILABLE 65
+#define IDS_NO_DLCCATEGORIES 66
+#define IDS_INVITATION_SUBJECT_MAX_18_CHARS 67
+#define IDS_INVITATION_BODY 68
+#define IDS_SAVE_SUBTITLE_SUFFIX 69
+#define IDS_EULA 70
+#define IDS_EULA_SCEE 71
+#define IDS_EULA_SCEA 72
+#define IDS_EULA_SCEE_BD 73
+#define IDS_NO_PLAYSTATIONPLUS 74
+#define IDS_PLAY_OFFLINE 75
+#define IDS_PLAYSTATIONPLUS_SIGNUP 76
+#define IDS_PRESS_X_TO_JOIN 77
+#define IDS_PATCH_AVAILABLE_TITLE 78
+#define IDS_PATCH_AVAILABLE_TEXT 79
+#define IDS_DYNAFONT 80
+#define IDS_TIPS_GAMETIP_NEWDLC 81
+#define IDS_TIPS_GAMETIP_SKINPACKS 82
+#define IDS_TIPS_GAMETIP_2 83
+#define IDS_TIPS_GAMETIP_3 84
+#define IDS_TIPS_GAMETIP_4 85
+#define IDS_TIPS_GAMETIP_5 86
+#define IDS_TIPS_GAMETIP_6 87
+#define IDS_TIPS_GAMETIP_7 88
+#define IDS_TIPS_GAMETIP_8 89
+#define IDS_TIPS_GAMETIP_9 90
+#define IDS_TIPS_GAMETIP_10 91
+#define IDS_TIPS_GAMETIP_11 92
+#define IDS_TIPS_GAMETIP_12 93
+#define IDS_TIPS_GAMETIP_13 94
+#define IDS_TIPS_GAMETIP_14 95
+#define IDS_TIPS_GAMETIP_15 96
+#define IDS_TIPS_GAMETIP_16 97
+#define IDS_TIPS_GAMETIP_17 98
+#define IDS_TIPS_GAMETIP_18 99
+#define IDS_TIPS_GAMETIP_19 100
+#define IDS_TIPS_GAMETIP_20 101
+#define IDS_TIPS_GAMETIP_21 102
+#define IDS_TIPS_GAMETIP_22 103
+#define IDS_TIPS_GAMETIP_23 104
+#define IDS_TIPS_GAMETIP_24 105
+#define IDS_TIPS_GAMETIP_25 106
+#define IDS_TIPS_GAMETIP_26 107
+#define IDS_TIPS_GAMETIP_27 108
+#define IDS_TIPS_GAMETIP_28 109
+#define IDS_TIPS_GAMETIP_29 110
+#define IDS_TIPS_GAMETIP_30 111
+#define IDS_TIPS_GAMETIP_31 112
+#define IDS_TIPS_GAMETIP_32 113
+#define IDS_TIPS_GAMETIP_33 114
+#define IDS_TIPS_GAMETIP_34 115
+#define IDS_TIPS_GAMETIP_35 116
+#define IDS_TIPS_GAMETIP_36 117
+#define IDS_TIPS_GAMETIP_37 118
+#define IDS_TIPS_GAMETIP_38 119
+#define IDS_TIPS_GAMETIP_39 120
+#define IDS_TIPS_GAMETIP_40 121
+#define IDS_TIPS_GAMETIP_41 122
+#define IDS_TIPS_GAMETIP_42 123
+#define IDS_TIPS_GAMETIP_43 124
+#define IDS_TIPS_GAMETIP_46 125
+#define IDS_TIPS_GAMETIP_47 126
+#define IDS_TIPS_GAMETIP_49 127
+#define IDS_TIPS_GAMETIP_50 128
+#define IDS_TIPS_TRIVIA_1 129
+#define IDS_TIPS_TRIVIA_2 130
+#define IDS_TIPS_TRIVIA_3 131
+#define IDS_TIPS_TRIVIA_5 132
+#define IDS_TIPS_TRIVIA_6 133
+#define IDS_TIPS_TRIVIA_7 134
+#define IDS_TIPS_TRIVIA_8 135
+#define IDS_TIPS_TRIVIA_9 136
+#define IDS_TIPS_TRIVIA_10 137
+#define IDS_TIPS_TRIVIA_11 138
+#define IDS_TIPS_TRIVIA_12 139
+#define IDS_TIPS_TRIVIA_13 140
+#define IDS_TIPS_TRIVIA_14 141
+#define IDS_TIPS_TRIVIA_15 142
+#define IDS_TIPS_TRIVIA_16 143
+#define IDS_TIPS_TRIVIA_18 144
+#define IDS_TIPS_TRIVIA_19 145
+#define IDS_TIPS_TRIVIA_20 146
+#define IDS_HOW_TO_PLAY_BASICS 147
+#define IDS_HOW_TO_PLAY_HUD 148
+#define IDS_HOW_TO_PLAY_INVENTORY 149
+#define IDS_HOW_TO_PLAY_CHEST 150
+#define IDS_HOW_TO_PLAY_LARGECHEST 151
+#define IDS_HOW_TO_PLAY_CRAFTING 152
+#define IDS_HOW_TO_PLAY_CRAFT_TABLE 153
+#define IDS_HOW_TO_PLAY_FURNACE 154
+#define IDS_HOW_TO_PLAY_DISPENSER 155
+#define IDS_HOW_TO_PLAY_BREWING 156
+#define IDS_HOW_TO_PLAY_ENCHANTMENT 157
+#define IDS_HOW_TO_PLAY_FARMANIMALS 158
+#define IDS_HOW_TO_PLAY_BREEDANIMALS 159
+#define IDS_HOW_TO_PLAY_NETHERPORTAL 160
+#define IDS_HOW_TO_PLAY_BANLIST 161
+#define IDS_HOW_TO_PLAY_HOSTOPTIONS 162
+#define IDS_HOW_TO_PLAY_NEXT 163
+#define IDS_HOW_TO_PLAY_PREV 164
+#define IDS_HOW_TO_PLAY_MENU_BASICS 165
+#define IDS_HOW_TO_PLAY_MENU_HUD 166
+#define IDS_HOW_TO_PLAY_MENU_INVENTORY 167
+#define IDS_HOW_TO_PLAY_MENU_CHESTS 168
+#define IDS_HOW_TO_PLAY_MENU_CRAFTING 169
+#define IDS_HOW_TO_PLAY_MENU_FURNACE 170
+#define IDS_HOW_TO_PLAY_MENU_DISPENSER 171
+#define IDS_HOW_TO_PLAY_MENU_FARMANIMALS 172
+#define IDS_HOW_TO_PLAY_MENU_BREEDANIMALS 173
+#define IDS_HOW_TO_PLAY_MENU_BREWING 174
+#define IDS_HOW_TO_PLAY_MENU_ENCHANTMENT 175
+#define IDS_HOW_TO_PLAY_MENU_NETHERPORTAL 176
+#define IDS_HOW_TO_PLAY_MENU_MULTIPLAYER 177
+#define IDS_HOW_TO_PLAY_MENU_SOCIALMEDIA 178
+#define IDS_HOW_TO_PLAY_MENU_BANLIST 179
+#define IDS_HOW_TO_PLAY_MENU_CREATIVE 180
+#define IDS_HOW_TO_PLAY_MENU_HOSTOPTIONS 181
+#define IDS_HOW_TO_PLAY_MENU_TRADING 182
+#define IDS_HOW_TO_PLAY_MENU_ANVIL 183
+#define IDS_HOW_TO_PLAY_MENU_THEEND 184
+#define IDS_HOW_TO_PLAY_THEEND 185
+#define IDS_HOW_TO_PLAY_MENU_SPRINT 186
+#define IDS_HOW_TO_PLAY_MENU_WHATSNEW 187
+#define IDS_HOW_TO_PLAY_WHATSNEW 188
+#define IDS_TITLEUPDATE 189
+#define IDS_HOW_TO_PLAY_MENU_HORSES 190
+#define IDS_HOW_TO_PLAY_HORSES 191
+#define IDS_HOW_TO_PLAY_MENU_BEACONS 192
+#define IDS_HOW_TO_PLAY_BEACONS 193
+#define IDS_HOW_TO_PLAY_MENU_FIREWORKS 194
+#define IDS_HOW_TO_PLAY_FIREWORKS 195
+#define IDS_HOW_TO_PLAY_MENU_HOPPERS 196
+#define IDS_HOW_TO_PLAY_HOPPERS 197
+#define IDS_HOW_TO_PLAY_MENU_DROPPERS 198
+#define IDS_HOW_TO_PLAY_DROPPERS 199
+#define IDS_DESC_SWORD 200
+#define IDS_DESC_SHOVEL 201
+#define IDS_DESC_PICKAXE 202
+#define IDS_DESC_HATCHET 203
+#define IDS_DESC_HOE 204
+#define IDS_DESC_DOOR_WOOD 205
+#define IDS_DESC_DOOR_IRON 206
+#define IDS_DESC_HELMET 207
+#define IDS_DESC_CHESTPLATE 208
+#define IDS_DESC_LEGGINGS 209
+#define IDS_DESC_BOOTS 210
+#define IDS_DESC_HELMET_LEATHER 211
+#define IDS_DESC_CHESTPLATE_LEATHER 212
+#define IDS_DESC_LEGGINGS_LEATHER 213
+#define IDS_DESC_BOOTS_LEATHER 214
+#define IDS_DESC_HELMET_CHAIN 215
+#define IDS_DESC_CHESTPLATE_CHAIN 216
+#define IDS_DESC_LEGGINGS_CHAIN 217
+#define IDS_DESC_BOOTS_CHAIN 218
+#define IDS_DESC_HELMET_IRON 219
+#define IDS_DESC_CHESTPLATE_IRON 220
+#define IDS_DESC_LEGGINGS_IRON 221
+#define IDS_DESC_BOOTS_IRON 222
+#define IDS_DESC_HELMET_GOLD 223
+#define IDS_DESC_CHESTPLATE_GOLD 224
+#define IDS_DESC_LEGGINGS_GOLD 225
+#define IDS_DESC_BOOTS_GOLD 226
+#define IDS_DESC_HELMET_DIAMOND 227
+#define IDS_DESC_CHESTPLATE_DIAMOND 228
+#define IDS_DESC_LEGGINGS_DIAMOND 229
+#define IDS_DESC_BOOTS_DIAMOND 230
+#define IDS_DESC_INGOT 231
+#define IDS_DESC_BLOCK 232
+#define IDS_DESC_PRESSUREPLATE 233
+#define IDS_DESC_STAIRS 234
+#define IDS_DESC_SLAB 235
+#define IDS_DESC_HALFSLAB 236
+#define IDS_DESC_TORCH 237
+#define IDS_DESC_WOODENPLANKS 238
+#define IDS_DESC_SANDSTONE 239
+#define IDS_DESC_STRUCTBLOCK 240
+#define IDS_DESC_STICK 241
+#define IDS_DESC_BED 242
+#define IDS_DESC_CRAFTINGTABLE 243
+#define IDS_DESC_FURNACE 244
+#define IDS_DESC_CHEST 245
+#define IDS_DESC_FENCE 246
+#define IDS_DESC_LADDER 247
+#define IDS_DESC_TRAPDOOR 248
+#define IDS_DESC_SIGN 249
+#define IDS_DESC_GLOWSTONE 250
+#define IDS_DESC_TNT 251
+#define IDS_DESC_BOWL 252
+#define IDS_DESC_BUCKET 253
+#define IDS_DESC_BUCKET_WATER 254
+#define IDS_DESC_BUCKET_LAVA 255
+#define IDS_DESC_BUCKET_MILK 256
+#define IDS_DESC_FLINTANDSTEEL 257
+#define IDS_DESC_FISHINGROD 258
+#define IDS_DESC_CLOCK 259
+#define IDS_DESC_COMPASS 260
+#define IDS_DESC_MAP 261
+#define IDS_DESC_MAP_EMPTY 262
+#define IDS_DESC_BOW 263
+#define IDS_DESC_ARROW 264
+#define IDS_DESC_NETHER_STAR 265
+#define IDS_DESC_FIREWORKS 266
+#define IDS_DESC_FIREWORKS_CHARGE 267
+#define IDS_DESC_COMPARATOR 268
+#define IDS_DESC_MINECART_TNT 269
+#define IDS_DESC_DAYLIGHT_DETECTOR 270
+#define IDS_DESC_MINECART_HOPPER 271
+#define IDS_DESC_IRON_HORSE_ARMOR 272
+#define IDS_DESC_GOLD_HORSE_ARMOR 273
+#define IDS_DESC_DIAMOND_HORSE_ARMOR 274
+#define IDS_DESC_LEAD 275
+#define IDS_DESC_NAME_TAG 276
+#define IDS_DESC_BREAD 277
+#define IDS_DESC_CAKE 278
+#define IDS_DESC_COOKIE 279
+#define IDS_DESC_MELON_SLICE 280
+#define IDS_DESC_MUSHROOMSTEW 281
+#define IDS_DESC_CHICKEN_RAW 282
+#define IDS_DESC_CHICKEN_COOKED 283
+#define IDS_DESC_BEEF_RAW 284
+#define IDS_DESC_BEEF_COOKED 285
+#define IDS_DESC_PORKCHOP_RAW 286
+#define IDS_DESC_PORKCHOP_COOKED 287
+#define IDS_DESC_FISH_RAW 288
+#define IDS_DESC_FISH_COOKED 289
+#define IDS_DESC_APPLE 290
+#define IDS_DESC_GOLDENAPPLE 291
+#define IDS_DESC_ROTTEN_FLESH 292
+#define IDS_DESC_SUGAR 293
+#define IDS_DESC_LEVER 294
+#define IDS_DESC_REDSTONETORCH 295
+#define IDS_DESC_REDSTONEREPEATER 296
+#define IDS_DESC_BUTTON 297
+#define IDS_DESC_DISPENSER 298
+#define IDS_DESC_NOTEBLOCK 299
+#define IDS_DESC_RAIL 300
+#define IDS_DESC_POWEREDRAIL 301
+#define IDS_DESC_DETECTORRAIL 302
+#define IDS_DESC_MINECART 303
+#define IDS_DESC_MINECARTWITHCHEST 304
+#define IDS_DESC_MINECARTWITHFURNACE 305
+#define IDS_DESC_BOAT 306
+#define IDS_DESC_WOOL 307
+#define IDS_DESC_WOOLSTRING 308
+#define IDS_DESC_DYE_BLACK 309
+#define IDS_DESC_DYE_GREEN 310
+#define IDS_DESC_DYE_BROWN 311
+#define IDS_DESC_DYE_SILVER 312
+#define IDS_DESC_DYE_YELLOW 313
+#define IDS_DESC_DYE_RED 314
+#define IDS_DESC_DYE_WHITE 315
+#define IDS_DESC_DYE_PINK 316
+#define IDS_DESC_DYE_ORANGE 317
+#define IDS_DESC_DYE_LIME 318
+#define IDS_DESC_DYE_GRAY 319
+#define IDS_DESC_DYE_LIGHTGRAY 320
+#define IDS_DESC_DYE_LIGHTBLUE 321
+#define IDS_DESC_DYE_CYAN 322
+#define IDS_DESC_DYE_PURPLE 323
+#define IDS_DESC_DYE_MAGENTA 324
+#define IDS_DESC_DYE_BLUE 325
+#define IDS_DESC_JUKEBOX 326
+#define IDS_DESC_DIAMONDS 327
+#define IDS_DESC_JACKOLANTERN 328
+#define IDS_DESC_PAPER 329
+#define IDS_DESC_BOOK 330
+#define IDS_DESC_BOOKSHELF 331
+#define IDS_DESC_PICTURE 332
+#define IDS_DESC_ORE_GOLD 333
+#define IDS_DESC_ORE_IRON 334
+#define IDS_DESC_ORE_COAL 335
+#define IDS_DESC_ORE_LAPIS 336
+#define IDS_DESC_ORE_DIAMOND 337
+#define IDS_DESC_ORE_REDSTONE 338
+#define IDS_DESC_STONE 339
+#define IDS_DESC_DIRT 340
+#define IDS_DESC_SAPLING 341
+#define IDS_DESC_BEDROCK 342
+#define IDS_DESC_LAVA 343
+#define IDS_DESC_SAND 344
+#define IDS_DESC_GRAVEL 345
+#define IDS_DESC_LOG 346
+#define IDS_DESC_GLASS 347
+#define IDS_DESC_STONE_BRICK 348
+#define IDS_DESC_BRICK 349
+#define IDS_DESC_CLAY 350
+#define IDS_DESC_CLAY_TILE 351
+#define IDS_DESC_SNOW 352
+#define IDS_DESC_TOP_SNOW 353
+#define IDS_DESC_TALL_GRASS 354
+#define IDS_DESC_FLOWER 355
+#define IDS_DESC_MUSHROOM 356
+#define IDS_DESC_OBSIDIAN 357
+#define IDS_DESC_MOB_SPAWNER 358
+#define IDS_DESC_REDSTONE_DUST 359
+#define IDS_DESC_CROPS 360
+#define IDS_DESC_FARMLAND 361
+#define IDS_DESC_CACTUS 362
+#define IDS_DESC_REEDS 363
+#define IDS_DESC_PUMPKIN 364
+#define IDS_DESC_HELL_ROCK 365
+#define IDS_DESC_HELL_SAND 366
+#define IDS_DESC_PORTAL 367
+#define IDS_DESC_COAL 368
+#define IDS_DESC_STRING 369
+#define IDS_DESC_FEATHER 370
+#define IDS_DESC_SULPHUR 371
+#define IDS_DESC_WHEAT_SEEDS 372
+#define IDS_DESC_WHEAT 373
+#define IDS_DESC_FLINT 374
+#define IDS_DESC_SADDLE 375
+#define IDS_DESC_SNOWBALL 376
+#define IDS_DESC_LEATHER 377
+#define IDS_DESC_SLIMEBALL 378
+#define IDS_DESC_EGG 379
+#define IDS_DESC_YELLOW_DUST 380
+#define IDS_DESC_BONE 381
+#define IDS_DESC_RECORD 382
+#define IDS_DESC_WATER 383
+#define IDS_DESC_LEAVES 384
+#define IDS_DESC_MOSS_STONE 385
+#define IDS_DESC_SHEARS 386
+#define IDS_DESC_PISTON 387
+#define IDS_DESC_STICKY_PISTON 388
+#define IDS_DESC_STONE_BRICK_SMOOTH 389
+#define IDS_DESC_IRON_FENCE 390
+#define IDS_DESC_FENCE_GATE 391
+#define IDS_DESC_MELON_BLOCK 392
+#define IDS_DESC_THIN_GLASS 393
+#define IDS_DESC_PUMPKIN_SEEDS 394
+#define IDS_DESC_MELON_SEEDS 395
+#define IDS_DESC_ENDER_PEARL 396
+#define IDS_DESC_GRASS 397
+#define IDS_DESC_SPONGE 398
+#define IDS_DESC_WEB 399
+#define IDS_DESC_STONE_SILVERFISH 400
+#define IDS_DESC_VINE 401
+#define IDS_DESC_ICE 402
+#define IDS_DESC_DEAD_BUSH 403
+#define IDS_DESC_BLAZE_ROD 404
+#define IDS_DESC_GHAST_TEAR 405
+#define IDS_DESC_GOLD_NUGGET 406
+#define IDS_DESC_NETHER_STALK_SEEDS 407
+#define IDS_DESC_POTION 408
+#define IDS_DESC_GLASS_BOTTLE 409
+#define IDS_DESC_SPIDER_EYE 410
+#define IDS_DESC_FERMENTED_SPIDER_EYE 411
+#define IDS_DESC_BLAZE_POWDER 412
+#define IDS_DESC_MAGMA_CREAM 413
+#define IDS_DESC_BREWING_STAND 414
+#define IDS_DESC_CAULDRON 415
+#define IDS_DESC_EYE_OF_ENDER 416
+#define IDS_DESC_SPECKLED_MELON 417
+#define IDS_DESC_MYCEL 418
+#define IDS_DESC_WATERLILY 419
+#define IDS_DESC_NETHERBRICK 420
+#define IDS_DESC_NETHERFENCE 421
+#define IDS_DESC_NETHERSTALK 422
+#define IDS_DESC_ENCHANTMENTTABLE 423
+#define IDS_DESC_END_PORTAL 424
+#define IDS_DESC_ENDPORTALFRAME 425
+#define IDS_DESC_WHITESTONE 426
+#define IDS_DESC_DRAGONEGG 427
+#define IDS_DESC_EXP_BOTTLE 428
+#define IDS_DESC_FIREBALL 429
+#define IDS_DESC_ITEMFRAME 430
+#define IDS_DESC_MONSTER_SPAWNER 431
+#define IDS_DESC_WOODSLAB 432
+#define IDS_DESC_STONESLAB 433
+#define IDS_DESC_ITEM_NETHERBRICK 434
+#define IDS_DESC_REDSTONE_LIGHT 435
+#define IDS_DESC_COCOA 436
+#define IDS_DESC_SKULL 437
+#define IDS_DESC_COMMAND_BLOCK 438
+#define IDS_DESC_BEACON 439
+#define IDS_DESC_CHEST_TRAP 440
+#define IDS_DESC_WEIGHTED_PLATE_LIGHT 441
+#define IDS_DESC_WEIGHTED_PLATE_HEAVY 442
+#define IDS_DESC_REDSTONE_BLOCK 443
+#define IDS_DESC_HOPPER 444
+#define IDS_DESC_ACTIVATOR_RAIL 445
+#define IDS_DESC_DROPPER 446
+#define IDS_DESC_STAINED_CLAY 447
+#define IDS_DESC_HAY 448
+#define IDS_DESC_HARDENED_CLAY 449
+#define IDS_DESC_STAINED_GLASS 450
+#define IDS_DESC_STAINED_GLASS_PANE 451
+#define IDS_DESC_COAL_BLOCK 452
+#define IDS_SQUID 453
+#define IDS_DESC_SQUID 454
+#define IDS_COW 455
+#define IDS_DESC_COW 456
+#define IDS_SHEEP 457
+#define IDS_DESC_SHEEP 458
+#define IDS_CHICKEN 459
+#define IDS_DESC_CHICKEN 460
+#define IDS_PIG 461
+#define IDS_DESC_PIG 462
+#define IDS_WOLF 463
+#define IDS_DESC_WOLF 464
+#define IDS_CREEPER 465
+#define IDS_DESC_CREEPER 466
+#define IDS_SKELETON 467
+#define IDS_DESC_SKELETON 468
+#define IDS_SPIDER 469
+#define IDS_DESC_SPIDER 470
+#define IDS_ZOMBIE 471
+#define IDS_DESC_ZOMBIE 472
+#define IDS_PIGZOMBIE 473
+#define IDS_DESC_PIGZOMBIE 474
+#define IDS_GHAST 475
+#define IDS_DESC_GHAST 476
+#define IDS_SLIME 477
+#define IDS_DESC_SLIME 478
+#define IDS_ENDERMAN 479
+#define IDS_DESC_ENDERMAN 480
+#define IDS_SILVERFISH 481
+#define IDS_DESC_SILVERFISH 482
+#define IDS_CAVE_SPIDER 483
+#define IDS_DESC_CAVE_SPIDER 484
+#define IDS_MUSHROOM_COW 485
+#define IDS_DESC_MUSHROOM_COW 486
+#define IDS_SNOWMAN 487
+#define IDS_DESC_SNOWMAN 488
+#define IDS_ENDERDRAGON 489
+#define IDS_DESC_ENDERDRAGON 490
+#define IDS_BLAZE 491
+#define IDS_DESC_BLAZE 492
+#define IDS_LAVA_SLIME 493
+#define IDS_DESC_LAVA_SLIME 494
+#define IDS_VILLAGER 495
+#define IDS_OZELOT 496
+#define IDS_DESC_OZELOT 497
+#define IDS_IRONGOLEM 498
+#define IDS_BAT 499
+#define IDS_DESC_BAT 500
+#define IDS_WITCH 501
+#define IDS_DESC_WITCH 502
+#define IDS_HORSE 503
+#define IDS_DESC_HORSE 504
+#define IDS_DONKEY 505
+#define IDS_DESC_DONKEY 506
+#define IDS_MULE 507
+#define IDS_DESC_MULE 508
+#define IDS_ZOMBIE_HORSE 509
+#define IDS_SKELETON_HORSE 510
+#define IDS_WITHER 511
+#define IDS_DESC_WITHER 512
+#define IDS_DESC_IRONGOLEM 513
+#define IDS_CREDITS_EXPLODANIM 514
+#define IDS_CREDITS_CONCEPTART 515
+#define IDS_CREDITS_CRUNCHER 516
+#define IDS_CREDITS_BULLYCOORD 517
+#define IDS_CREDITS_ORIGINALDESIGN 518
+#define IDS_CREDITS_PMPROD 519
+#define IDS_CREDITS_RESTOFMOJANG 520
+#define IDS_CREDITS_LEADPC 521
+#define IDS_CREDITS_CODENINJA 522
+#define IDS_CREDITS_CEO 523
+#define IDS_CREDITS_WCW 524
+#define IDS_CREDITS_CUSTOMERSUPPORT 525
+#define IDS_CREDITS_OFFICEDJ 526
+#define IDS_CREDITS_DESPROG 527
+#define IDS_CREDITS_DEVELOPER 528
+#define IDS_CREDITS_CHIEFARCHITECT 529
+#define IDS_CREDITS_ARTDEVELOPER 530
+#define IDS_CREDITS_GAMECRAFTER 531
+#define IDS_CREDITS_DOF 532
+#define IDS_CREDITS_MUSICANDSOUNDS 533
+#define IDS_CREDITS_PROGRAMMING 534
+#define IDS_CREDITS_ART 535
+#define IDS_CREDITS_QA 536
+#define IDS_CREDITS_EXECPRODUCER 537
+#define IDS_CREDITS_LEADPRODUCER 538
+#define IDS_CREDITS_PRODUCER 539
+#define IDS_CREDITS_TESTLEAD 540
+#define IDS_CREDITS_LEADTESTER 541
+#define IDS_CREDITS_DESIGNTEAM 542
+#define IDS_CREDITS_DEVELOPMENTTEAM 543
+#define IDS_CREDITS_RELEASEMANAGEMENT 544
+#define IDS_CREDITS_XBLADIRECTOR 545
+#define IDS_CREDITS_BIZDEV 546
+#define IDS_CREDITS_PORTFOLIODIRECTOR 547
+#define IDS_CREDITS_PRODUCTMANAGER 548
+#define IDS_CREDITS_MARKETING 549
+#define IDS_CREDITS_COMMUNITYMANAGER 550
+#define IDS_CREDITS_EUROPELOC 551
+#define IDS_CREDITS_REDMONDLOC 552
+#define IDS_CREDITS_ASIALOC 553
+#define IDS_CREDITS_USERRESEARCH 554
+#define IDS_CREDITS_MGSCENTRAL 555
+#define IDS_CREDITS_MILESTONEACCEPT 556
+#define IDS_CREDITS_SPECIALTHANKS 557
+#define IDS_CREDITS_TESTMANAGER 558
+#define IDS_CREDITS_SRTESTLEAD 559
+#define IDS_CREDITS_SDET 560
+#define IDS_CREDITS_PROJECT 561
+#define IDS_CREDITS_ADDITIONALSTE 562
+#define IDS_CREDITS_TESTASSOCIATES 563
+#define IDS_CREDITS_JON_KAGSTROM 564
+#define IDS_CREDITS_TOBIAS_MOLLSTAM 565
+#define IDS_CREDITS_RISE_LUGO 566
+#define IDS_ITEM_SWORD_WOOD 567
+#define IDS_ITEM_SWORD_STONE 568
+#define IDS_ITEM_SWORD_IRON 569
+#define IDS_ITEM_SWORD_DIAMOND 570
+#define IDS_ITEM_SWORD_GOLD 571
+#define IDS_ITEM_SHOVEL_WOOD 572
+#define IDS_ITEM_SHOVEL_STONE 573
+#define IDS_ITEM_SHOVEL_IRON 574
+#define IDS_ITEM_SHOVEL_DIAMOND 575
+#define IDS_ITEM_SHOVEL_GOLD 576
+#define IDS_ITEM_PICKAXE_WOOD 577
+#define IDS_ITEM_PICKAXE_STONE 578
+#define IDS_ITEM_PICKAXE_IRON 579
+#define IDS_ITEM_PICKAXE_DIAMOND 580
+#define IDS_ITEM_PICKAXE_GOLD 581
+#define IDS_ITEM_HATCHET_WOOD 582
+#define IDS_ITEM_HATCHET_STONE 583
+#define IDS_ITEM_HATCHET_IRON 584
+#define IDS_ITEM_HATCHET_DIAMOND 585
+#define IDS_ITEM_HATCHET_GOLD 586
+#define IDS_ITEM_HOE_WOOD 587
+#define IDS_ITEM_HOE_STONE 588
+#define IDS_ITEM_HOE_IRON 589
+#define IDS_ITEM_HOE_DIAMOND 590
+#define IDS_ITEM_HOE_GOLD 591
+#define IDS_ITEM_DOOR_WOOD 592
+#define IDS_ITEM_DOOR_IRON 593
+#define IDS_ITEM_HELMET_CHAIN 594
+#define IDS_ITEM_CHESTPLATE_CHAIN 595
+#define IDS_ITEM_LEGGINGS_CHAIN 596
+#define IDS_ITEM_BOOTS_CHAIN 597
+#define IDS_ITEM_HELMET_CLOTH 598
+#define IDS_ITEM_HELMET_IRON 599
+#define IDS_ITEM_HELMET_DIAMOND 600
+#define IDS_ITEM_HELMET_GOLD 601
+#define IDS_ITEM_CHESTPLATE_CLOTH 602
+#define IDS_ITEM_CHESTPLATE_IRON 603
+#define IDS_ITEM_CHESTPLATE_DIAMOND 604
+#define IDS_ITEM_CHESTPLATE_GOLD 605
+#define IDS_ITEM_LEGGINGS_CLOTH 606
+#define IDS_ITEM_LEGGINGS_IRON 607
+#define IDS_ITEM_LEGGINGS_DIAMOND 608
+#define IDS_ITEM_LEGGINGS_GOLD 609
+#define IDS_ITEM_BOOTS_CLOTH 610
+#define IDS_ITEM_BOOTS_IRON 611
+#define IDS_ITEM_BOOTS_DIAMOND 612
+#define IDS_ITEM_BOOTS_GOLD 613
+#define IDS_ITEM_INGOT_IRON 614
+#define IDS_ITEM_INGOT_GOLD 615
+#define IDS_ITEM_BUCKET 616
+#define IDS_ITEM_BUCKET_WATER 617
+#define IDS_ITEM_BUCKET_LAVA 618
+#define IDS_ITEM_FLINT_AND_STEEL 619
+#define IDS_ITEM_APPLE 620
+#define IDS_ITEM_BOW 621
+#define IDS_ITEM_ARROW 622
+#define IDS_ITEM_COAL 623
+#define IDS_ITEM_CHARCOAL 624
+#define IDS_ITEM_DIAMOND 625
+#define IDS_ITEM_STICK 626
+#define IDS_ITEM_BOWL 627
+#define IDS_ITEM_MUSHROOM_STEW 628
+#define IDS_ITEM_STRING 629
+#define IDS_ITEM_FEATHER 630
+#define IDS_ITEM_SULPHUR 631
+#define IDS_ITEM_WHEAT_SEEDS 632
+#define IDS_ITEM_WHEAT 633
+#define IDS_ITEM_BREAD 634
+#define IDS_ITEM_FLINT 635
+#define IDS_ITEM_PORKCHOP_RAW 636
+#define IDS_ITEM_PORKCHOP_COOKED 637
+#define IDS_ITEM_PAINTING 638
+#define IDS_ITEM_APPLE_GOLD 639
+#define IDS_ITEM_SIGN 640
+#define IDS_ITEM_MINECART 641
+#define IDS_ITEM_SADDLE 642
+#define IDS_ITEM_REDSTONE 643
+#define IDS_ITEM_SNOWBALL 644
+#define IDS_ITEM_BOAT 645
+#define IDS_ITEM_LEATHER 646
+#define IDS_ITEM_BUCKET_MILK 647
+#define IDS_ITEM_BRICK 648
+#define IDS_ITEM_CLAY 649
+#define IDS_ITEM_REEDS 650
+#define IDS_ITEM_PAPER 651
+#define IDS_ITEM_BOOK 652
+#define IDS_ITEM_SLIMEBALL 653
+#define IDS_ITEM_MINECART_CHEST 654
+#define IDS_ITEM_MINECART_FURNACE 655
+#define IDS_ITEM_EGG 656
+#define IDS_ITEM_COMPASS 657
+#define IDS_ITEM_FISHING_ROD 658
+#define IDS_ITEM_CLOCK 659
+#define IDS_ITEM_YELLOW_DUST 660
+#define IDS_ITEM_FISH_RAW 661
+#define IDS_ITEM_FISH_COOKED 662
+#define IDS_ITEM_DYE_POWDER 663
+#define IDS_ITEM_DYE_POWDER_BLACK 664
+#define IDS_ITEM_DYE_POWDER_RED 665
+#define IDS_ITEM_DYE_POWDER_GREEN 666
+#define IDS_ITEM_DYE_POWDER_BROWN 667
+#define IDS_ITEM_DYE_POWDER_BLUE 668
+#define IDS_ITEM_DYE_POWDER_PURPLE 669
+#define IDS_ITEM_DYE_POWDER_CYAN 670
+#define IDS_ITEM_DYE_POWDER_SILVER 671
+#define IDS_ITEM_DYE_POWDER_GRAY 672
+#define IDS_ITEM_DYE_POWDER_PINK 673
+#define IDS_ITEM_DYE_POWDER_LIME 674
+#define IDS_ITEM_DYE_POWDER_YELLOW 675
+#define IDS_ITEM_DYE_POWDER_LIGHT_BLUE 676
+#define IDS_ITEM_DYE_POWDER_MAGENTA 677
+#define IDS_ITEM_DYE_POWDER_ORANGE 678
+#define IDS_ITEM_DYE_POWDER_WHITE 679
+#define IDS_ITEM_BONE 680
+#define IDS_ITEM_SUGAR 681
+#define IDS_ITEM_CAKE 682
+#define IDS_ITEM_BED 683
+#define IDS_ITEM_DIODE 684
+#define IDS_ITEM_COOKIE 685
+#define IDS_ITEM_MAP 686
+#define IDS_ITEM_MAP_EMPTY 687
+#define IDS_ITEM_RECORD_01 688
+#define IDS_ITEM_RECORD_02 689
+#define IDS_ITEM_RECORD_03 690
+#define IDS_ITEM_RECORD_04 691
+#define IDS_ITEM_RECORD_05 692
+#define IDS_ITEM_RECORD_06 693
+#define IDS_ITEM_RECORD_07 694
+#define IDS_ITEM_RECORD_08 695
+#define IDS_ITEM_RECORD_09 696
+#define IDS_ITEM_RECORD_10 697
+#define IDS_ITEM_RECORD_11 698
+#define IDS_ITEM_RECORD_12 699
+#define IDS_ITEM_SHEARS 700
+#define IDS_ITEM_PUMPKIN_SEEDS 701
+#define IDS_ITEM_MELON_SEEDS 702
+#define IDS_ITEM_CHICKEN_RAW 703
+#define IDS_ITEM_CHICKEN_COOKED 704
+#define IDS_ITEM_BEEF_RAW 705
+#define IDS_ITEM_BEEF_COOKED 706
+#define IDS_ITEM_ROTTEN_FLESH 707
+#define IDS_ITEM_ENDER_PEARL 708
+#define IDS_ITEM_MELON_SLICE 709
+#define IDS_ITEM_BLAZE_ROD 710
+#define IDS_ITEM_GHAST_TEAR 711
+#define IDS_ITEM_GOLD_NUGGET 712
+#define IDS_ITEM_NETHER_STALK_SEEDS 713
+#define IDS_ITEM_POTION 714
+#define IDS_ITEM_GLASS_BOTTLE 715
+#define IDS_ITEM_WATER_BOTTLE 716
+#define IDS_ITEM_SPIDER_EYE 717
+#define IDS_ITEM_FERMENTED_SPIDER_EYE 718
+#define IDS_ITEM_BLAZE_POWDER 719
+#define IDS_ITEM_MAGMA_CREAM 720
+#define IDS_ITEM_BREWING_STAND 721
+#define IDS_ITEM_CAULDRON 722
+#define IDS_ITEM_EYE_OF_ENDER 723
+#define IDS_ITEM_SPECKLED_MELON 724
+#define IDS_ITEM_EXP_BOTTLE 725
+#define IDS_ITEM_FIREBALL 726
+#define IDS_ITEM_FIREBALLCHARCOAL 727
+#define IDS_ITEM_FIREBALLCOAL 728
+#define IDS_ITEM_ITEMFRAME 729
+#define IDS_ITEM_MONSTER_SPAWNER 730
+#define IDS_ITEM_NETHERBRICK 731
+#define IDS_ITEM_SKULL 732
+#define IDS_ITEM_SKULL_SKELETON 733
+#define IDS_ITEM_SKULL_WITHER 734
+#define IDS_ITEM_SKULL_ZOMBIE 735
+#define IDS_ITEM_SKULL_CHARACTER 736
+#define IDS_ITEM_SKULL_PLAYER 737
+#define IDS_ITEM_SKULL_CREEPER 738
+#define IDS_NETHER_STAR 739
+#define IDS_FIREWORKS 740
+#define IDS_FIREWORKS_CHARGE 741
+#define IDS_ITEM_COMPARATOR 742
+#define IDS_ITEM_MINECART_TNT 743
+#define IDS_ITEM_MINECART_HOPPER 744
+#define IDS_ITEM_IRON_HORSE_ARMOR 745
+#define IDS_ITEM_GOLD_HORSE_ARMOR 746
+#define IDS_ITEM_DIAMOND_HORSE_ARMOR 747
+#define IDS_ITEM_LEAD 748
+#define IDS_ITEM_NAME_TAG 749
+#define IDS_TILE_STONE 750
+#define IDS_TILE_GRASS 751
+#define IDS_TILE_DIRT 752
+#define IDS_TILE_STONE_BRICK 753
+#define IDS_TILE_OAKWOOD_PLANKS 754
+#define IDS_TILE_SPRUCEWOOD_PLANKS 755
+#define IDS_TILE_BIRCHWOOD_PLANKS 756
+#define IDS_TILE_JUNGLE_PLANKS 757
+#define IDS_TILE_PLANKS 758
+#define IDS_TILE_SAPLING 759
+#define IDS_TILE_SAPLING_OAK 760
+#define IDS_TILE_SAPLING_SPRUCE 761
+#define IDS_TILE_SAPLING_BIRCH 762
+#define IDS_TILE_SAPLING_JUNGLE 763
+#define IDS_TILE_BEDROCK 764
+#define IDS_TILE_WATER 765
+#define IDS_TILE_LAVA 766
+#define IDS_TILE_SAND 767
+#define IDS_TILE_SANDSTONE 768
+#define IDS_TILE_GRAVEL 769
+#define IDS_TILE_ORE_GOLD 770
+#define IDS_TILE_ORE_IRON 771
+#define IDS_TILE_ORE_COAL 772
+#define IDS_TILE_LOG 773
+#define IDS_TILE_LOG_OAK 774
+#define IDS_TILE_LOG_SPRUCE 775
+#define IDS_TILE_LOG_BIRCH 776
+#define IDS_TILE_LOG_JUNGLE 777
+#define IDS_TILE_OAK 778
+#define IDS_TILE_SPRUCE 779
+#define IDS_TILE_BIRCH 780
+#define IDS_TILE_LEAVES 781
+#define IDS_TILE_LEAVES_OAK 782
+#define IDS_TILE_LEAVES_SPRUCE 783
+#define IDS_TILE_LEAVES_BIRCH 784
+#define IDS_TILE_LEAVES_JUNGLE 785
+#define IDS_TILE_SPONGE 786
+#define IDS_TILE_GLASS 787
+#define IDS_TILE_CLOTH 788
+#define IDS_TILE_CLOTH_BLACK 789
+#define IDS_TILE_CLOTH_RED 790
+#define IDS_TILE_CLOTH_GREEN 791
+#define IDS_TILE_CLOTH_BROWN 792
+#define IDS_TILE_CLOTH_BLUE 793
+#define IDS_TILE_CLOTH_PURPLE 794
+#define IDS_TILE_CLOTH_CYAN 795
+#define IDS_TILE_CLOTH_SILVER 796
+#define IDS_TILE_CLOTH_GRAY 797
+#define IDS_TILE_CLOTH_PINK 798
+#define IDS_TILE_CLOTH_LIME 799
+#define IDS_TILE_CLOTH_YELLOW 800
+#define IDS_TILE_CLOTH_LIGHT_BLUE 801
+#define IDS_TILE_CLOTH_MAGENTA 802
+#define IDS_TILE_CLOTH_ORANGE 803
+#define IDS_TILE_CLOTH_WHITE 804
+#define IDS_TILE_FLOWER 805
+#define IDS_TILE_ROSE 806
+#define IDS_TILE_MUSHROOM 807
+#define IDS_TILE_BLOCK_GOLD 808
+#define IDS_DESC_BLOCK_GOLD 809
+#define IDS_TILE_BLOCK_IRON 810
+#define IDS_DESC_BLOCK_IRON 811
+#define IDS_TILE_STONESLAB 812
+#define IDS_TILE_STONESLAB_STONE 813
+#define IDS_TILE_STONESLAB_SAND 814
+#define IDS_TILE_STONESLAB_WOOD 815
+#define IDS_TILE_STONESLAB_COBBLE 816
+#define IDS_TILE_STONESLAB_BRICK 817
+#define IDS_TILE_STONESLAB_SMOOTHBRICK 818
+#define IDS_TILE_STONESLAB_OAK 819
+#define IDS_TILE_STONESLAB_SPRUCE 820
+#define IDS_TILE_STONESLAB_BIRCH 821
+#define IDS_TILE_STONESLAB_JUNGLE 822
+#define IDS_TILE_STONESLAB_NETHERBRICK 823
+#define IDS_TILE_BRICK 824
+#define IDS_TILE_TNT 825
+#define IDS_TILE_BOOKSHELF 826
+#define IDS_TILE_STONE_MOSS 827
+#define IDS_TILE_OBSIDIAN 828
+#define IDS_TILE_TORCH 829
+#define IDS_TILE_TORCHCOAL 830
+#define IDS_TILE_TORCHCHARCOAL 831
+#define IDS_TILE_FIRE 832
+#define IDS_TILE_MOB_SPAWNER 833
+#define IDS_TILE_STAIRS_WOOD 834
+#define IDS_TILE_CHEST 835
+#define IDS_TILE_REDSTONE_DUST 836
+#define IDS_TILE_ORE_DIAMOND 837
+#define IDS_TILE_BLOCK_DIAMOND 838
+#define IDS_DESC_BLOCK_DIAMOND 839
+#define IDS_TILE_WORKBENCH 840
+#define IDS_TILE_CROPS 841
+#define IDS_TILE_FARMLAND 842
+#define IDS_TILE_FURNACE 843
+#define IDS_TILE_SIGN 844
+#define IDS_TILE_DOOR_WOOD 845
+#define IDS_TILE_LADDER 846
+#define IDS_TILE_RAIL 847
+#define IDS_TILE_GOLDEN_RAIL 848
+#define IDS_TILE_DETECTOR_RAIL 849
+#define IDS_TILE_STAIRS_STONE 850
+#define IDS_TILE_LEVER 851
+#define IDS_TILE_PRESSURE_PLATE 852
+#define IDS_TILE_DOOR_IRON 853
+#define IDS_TILE_ORE_REDSTONE 854
+#define IDS_TILE_NOT_GATE 855
+#define IDS_TILE_BUTTON 856
+#define IDS_TILE_SNOW 857
+#define IDS_TILE_ICE 858
+#define IDS_TILE_CACTUS 859
+#define IDS_TILE_CLAY 860
+#define IDS_TILE_REEDS 861
+#define IDS_TILE_JUKEBOX 862
+#define IDS_TILE_FENCE 863
+#define IDS_TILE_PUMPKIN 864
+#define IDS_TILE_LIT_PUMPKIN 865
+#define IDS_TILE_HELL_ROCK 866
+#define IDS_TILE_HELL_SAND 867
+#define IDS_TILE_LIGHT_GEM 868
+#define IDS_TILE_PORTAL 869
+#define IDS_TILE_ORE_LAPIS 870
+#define IDS_TILE_BLOCK_LAPIS 871
+#define IDS_DESC_BLOCK_LAPIS 872
+#define IDS_TILE_DISPENSER 873
+#define IDS_TILE_MUSIC_BLOCK 874
+#define IDS_TILE_CAKE 875
+#define IDS_TILE_BED 876
+#define IDS_TILE_WEB 877
+#define IDS_TILE_TALL_GRASS 878
+#define IDS_TILE_DEAD_BUSH 879
+#define IDS_TILE_DIODE 880
+#define IDS_TILE_LOCKED_CHEST 881
+#define IDS_TILE_TRAPDOOR 882
+#define IDS_ANY_WOOL 883
+#define IDS_TILE_PISTON_BASE 884
+#define IDS_TILE_PISTON_STICK_BASE 885
+#define IDS_TILE_MONSTER_STONE_EGG 886
+#define IDS_TILE_STONE_BRICK_SMOOTH 887
+#define IDS_TILE_STONE_BRICK_SMOOTH_MOSSY 888
+#define IDS_TILE_STONE_BRICK_SMOOTH_CRACKED 889
+#define IDS_TILE_STONE_BRICK_SMOOTH_CHISELED 890
+#define IDS_TILE_HUGE_MUSHROOM_1 891
+#define IDS_TILE_HUGE_MUSHROOM_2 892
+#define IDS_TILE_IRON_FENCE 893
+#define IDS_TILE_THIN_GLASS 894
+#define IDS_TILE_MELON 895
+#define IDS_TILE_PUMPKIN_STEM 896
+#define IDS_TILE_MELON_STEM 897
+#define IDS_TILE_VINE 898
+#define IDS_TILE_FENCE_GATE 899
+#define IDS_TILE_STAIRS_BRICKS 900
+#define IDS_TILE_STAIRS_STONE_BRICKS_SMOOTH 901
+#define IDS_TILE_STONE_SILVERFISH 902
+#define IDS_TILE_STONE_SILVERFISH_COBBLESTONE 903
+#define IDS_TILE_STONE_SILVERFISH_STONE_BRICK 904
+#define IDS_TILE_MYCEL 905
+#define IDS_TILE_WATERLILY 906
+#define IDS_TILE_NETHERBRICK 907
+#define IDS_TILE_NETHERFENCE 908
+#define IDS_TILE_STAIRS_NETHERBRICK 909
+#define IDS_TILE_NETHERSTALK 910
+#define IDS_TILE_ENCHANTMENTTABLE 911
+#define IDS_TILE_BREWINGSTAND 912
+#define IDS_TILE_CAULDRON 913
+#define IDS_TILE_END_PORTAL 914
+#define IDS_TILE_ENDPORTALFRAME 915
+#define IDS_TILE_WHITESTONE 916
+#define IDS_TILE_DRAGONEGG 917
+#define IDS_TILE_SHRUB 918
+#define IDS_TILE_FERN 919
+#define IDS_TILE_STAIRS_SANDSTONE 920
+#define IDS_TILE_STAIRS_SPRUCEWOOD 921
+#define IDS_TILE_STAIRS_BIRCHWOOD 922
+#define IDS_TILE_STAIRS_JUNGLEWOOD 923
+#define IDS_TILE_REDSTONE_LIGHT 924
+#define IDS_TILE_COCOA 925
+#define IDS_TILE_SKULL 926
+#define IDS_TILE_COMMAND_BLOCK 927
+#define IDS_TILE_BEACON 928
+#define IDS_TILE_CHEST_TRAP 929
+#define IDS_TILE_WEIGHTED_PLATE_LIGHT 930
+#define IDS_TILE_WEIGHTED_PLATE_HEAVY 931
+#define IDS_TILE_COMPARATOR 932
+#define IDS_TILE_DAYLIGHT_DETECTOR 933
+#define IDS_TILE_REDSTONE_BLOCK 934
+#define IDS_TILE_HOPPER 935
+#define IDS_TILE_ACTIVATOR_RAIL 936
+#define IDS_TILE_DROPPER 937
+#define IDS_TILE_STAINED_CLAY 938
+#define IDS_TILE_HAY 939
+#define IDS_TILE_HARDENED_CLAY 940
+#define IDS_TILE_COAL 941
+#define IDS_TILE_STAINED_CLAY_BLACK 942
+#define IDS_TILE_STAINED_CLAY_RED 943
+#define IDS_TILE_STAINED_CLAY_GREEN 944
+#define IDS_TILE_STAINED_CLAY_BROWN 945
+#define IDS_TILE_STAINED_CLAY_BLUE 946
+#define IDS_TILE_STAINED_CLAY_PURPLE 947
+#define IDS_TILE_STAINED_CLAY_CYAN 948
+#define IDS_TILE_STAINED_CLAY_SILVER 949
+#define IDS_TILE_STAINED_CLAY_GRAY 950
+#define IDS_TILE_STAINED_CLAY_PINK 951
+#define IDS_TILE_STAINED_CLAY_LIME 952
+#define IDS_TILE_STAINED_CLAY_YELLOW 953
+#define IDS_TILE_STAINED_CLAY_LIGHT_BLUE 954
+#define IDS_TILE_STAINED_CLAY_MAGENTA 955
+#define IDS_TILE_STAINED_CLAY_ORANGE 956
+#define IDS_TILE_STAINED_CLAY_WHITE 957
+#define IDS_TILE_STAINED_GLASS 958
+#define IDS_TILE_STAINED_GLASS_BLACK 959
+#define IDS_TILE_STAINED_GLASS_RED 960
+#define IDS_TILE_STAINED_GLASS_GREEN 961
+#define IDS_TILE_STAINED_GLASS_BROWN 962
+#define IDS_TILE_STAINED_GLASS_BLUE 963
+#define IDS_TILE_STAINED_GLASS_PURPLE 964
+#define IDS_TILE_STAINED_GLASS_CYAN 965
+#define IDS_TILE_STAINED_GLASS_SILVER 966
+#define IDS_TILE_STAINED_GLASS_GRAY 967
+#define IDS_TILE_STAINED_GLASS_PINK 968
+#define IDS_TILE_STAINED_GLASS_LIME 969
+#define IDS_TILE_STAINED_GLASS_YELLOW 970
+#define IDS_TILE_STAINED_GLASS_LIGHT_BLUE 971
+#define IDS_TILE_STAINED_GLASS_MAGENTA 972
+#define IDS_TILE_STAINED_GLASS_ORANGE 973
+#define IDS_TILE_STAINED_GLASS_WHITE 974
+#define IDS_TILE_STAINED_GLASS_PANE 975
+#define IDS_TILE_STAINED_GLASS_PANE_BLACK 976
+#define IDS_TILE_STAINED_GLASS_PANE_RED 977
+#define IDS_TILE_STAINED_GLASS_PANE_GREEN 978
+#define IDS_TILE_STAINED_GLASS_PANE_BROWN 979
+#define IDS_TILE_STAINED_GLASS_PANE_BLUE 980
+#define IDS_TILE_STAINED_GLASS_PANE_PURPLE 981
+#define IDS_TILE_STAINED_GLASS_PANE_CYAN 982
+#define IDS_TILE_STAINED_GLASS_PANE_SILVER 983
+#define IDS_TILE_STAINED_GLASS_PANE_GRAY 984
+#define IDS_TILE_STAINED_GLASS_PANE_PINK 985
+#define IDS_TILE_STAINED_GLASS_PANE_LIME 986
+#define IDS_TILE_STAINED_GLASS_PANE_YELLOW 987
+#define IDS_TILE_STAINED_GLASS_PANE_LIGHT_BLUE 988
+#define IDS_TILE_STAINED_GLASS_PANE_MAGENTA 989
+#define IDS_TILE_STAINED_GLASS_PANE_ORANGE 990
+#define IDS_TILE_STAINED_GLASS_PANE_WHITE 991
+#define IDS_FIREWORKS_CHARGE_TYPE_0 992
+#define IDS_FIREWORKS_CHARGE_TYPE_1 993
+#define IDS_FIREWORKS_CHARGE_TYPE_2 994
+#define IDS_FIREWORKS_CHARGE_TYPE_3 995
+#define IDS_FIREWORKS_CHARGE_TYPE_4 996
+#define IDS_FIREWORKS_CHARGE_TYPE 997
+#define IDS_FIREWORKS_CHARGE_BLACK 998
+#define IDS_FIREWORKS_CHARGE_RED 999
+#define IDS_FIREWORKS_CHARGE_GREEN 1000
+#define IDS_FIREWORKS_CHARGE_BROWN 1001
+#define IDS_FIREWORKS_CHARGE_BLUE 1002
+#define IDS_FIREWORKS_CHARGE_PURPLE 1003
+#define IDS_FIREWORKS_CHARGE_CYAN 1004
+#define IDS_FIREWORKS_CHARGE_SILVER 1005
+#define IDS_FIREWORKS_CHARGE_GRAY 1006
+#define IDS_FIREWORKS_CHARGE_PINK 1007
+#define IDS_FIREWORKS_CHARGE_LIME 1008
+#define IDS_FIREWORKS_CHARGE_YELLOW 1009
+#define IDS_FIREWORKS_CHARGE_LIGHT_BLUE 1010
+#define IDS_FIREWORKS_CHARGE_MAGENTA 1011
+#define IDS_FIREWORKS_CHARGE_ORANGE 1012
+#define IDS_FIREWORKS_CHARGE_WHITE 1013
+#define IDS_FIREWORKS_CHARGE_CUSTOM 1014
+#define IDS_FIREWORKS_CHARGE_FADE_TO 1015
+#define IDS_FIREWORKS_CHARGE_FLICKER 1016
+#define IDS_FIREWORKS_CHARGE_TRAIL 1017
+#define IDS_ITEM_FIREWORKS_FLIGHT 1018
+#define IDS_CURRENT_LAYOUT 1019
+#define IDS_CONTROLS_LAYOUT 1020
+#define IDS_CONTROLS_MOVE 1021
+#define IDS_CONTROLS_LOOK 1022
+#define IDS_CONTROLS_PAUSE 1023
+#define IDS_CONTROLS_JUMP 1024
+#define IDS_CONTROLS_JUMPFLY 1025
+#define IDS_CONTROLS_INVENTORY 1026
+#define IDS_CONTROLS_HELDITEM 1027
+#define IDS_CONTROLS_ACTION 1028
+#define IDS_CONTROLS_USE 1029
+#define IDS_CONTROLS_CRAFTING 1030
+#define IDS_CONTROLS_DROP 1031
+#define IDS_CONTROLS_SNEAK 1032
+#define IDS_CONTROLS_SNEAKFLY 1033
+#define IDS_CONTROLS_THIRDPERSON 1034
+#define IDS_CONTROLS_PLAYERS 1035
+#define IDS_CONTROLS_DPAD 1036
+#define IDS_CONTROLS_SCHEME0 1037
+#define IDS_CONTROLS_SCHEME1 1038
+#define IDS_CONTROLS_SCHEME2 1039
+#define IDS_CONTROLLER_A 1040
+#define IDS_CONTROLLER_B 1041
+#define IDS_CONTROLLER_X 1042
+#define IDS_CONTROLLER_Y 1043
+#define IDS_CONTROLLER_LEFT_STICK 1044
+#define IDS_CONTROLLER_RIGHT_STICK 1045
+#define IDS_CONTROLLER_LEFT_TRIGGER 1046
+#define IDS_CONTROLLER_RIGHT_TRIGGER 1047
+#define IDS_CONTROLLER_LEFT_BUMPER 1048
+#define IDS_CONTROLLER_RIGHT_BUMPER 1049
+#define IDS_CONTROLLER_BACK 1050
+#define IDS_CONTROLLER_START 1051
+#define IDS_CONTROLLER_RIGHT_THUMBSTICK 1052
+#define IDS_CONTROLLER_LEFT_THUMBSTICK 1053
+#define IDS_CONTROLLER_DPAD_R 1054
+#define IDS_CONTROLLER_DPAD_L 1055
+#define IDS_CONTROLLER_DPAD_U 1056
+#define IDS_CONTROLLER_DPAD_D 1057
+#define IDS_ICON_SHANK_01 1058
+#define IDS_ICON_SHANK_03 1059
+#define IDS_TUTORIAL_PROMPT_PRESS_A_TO_CONTINUE 1060
+#define IDS_TUTORIAL_PROMPT_START_TUTORIAL 1061
+#define IDS_TUTORIAL_TASK_OVERVIEW 1062
+#define IDS_TUTORIAL_TASK_LOOK 1063
+#define IDS_TUTORIAL_TASK_MOVE 1064
+#define IDS_TUTORIAL_TASK_SPRINT 1065
+#define IDS_TUTORIAL_TASK_JUMP 1066
+#define IDS_TUTORIAL_TASK_MINE 1067
+#define IDS_TUTORIAL_TASK_CHOP_WOOD 1068
+#define IDS_TUTORIAL_TASK_CRAFTING 1069
+#define IDS_TUTORIAL_TASK_INVENTORY 1070
+#define IDS_TUTORIAL_TASK_FOOD_BAR_DEPLETE 1071
+#define IDS_TUTORIAL_TASK_FOOD_BAR_HEAL 1072
+#define IDS_TUTORIAL_TASK_FOOD_BAR_FEED 1073
+#define IDS_TUTORIAL_TASK_FOOD_BAR_EAT_STEAK 1074
+#define IDS_TUTORIAL_TASK_CREATE_PLANKS 1075
+#define IDS_TUTORIAL_TASK_CREATE_CRAFTING_TABLE 1076
+#define IDS_TUTORIAL_TASK_CREATE_STICKS 1077
+#define IDS_TUTORIAL_TASK_SCROLL 1078
+#define IDS_TUTORIAL_TASK_USE 1079
+#define IDS_TUTORIAL_TASK_PLACE_WORKBENCH 1080
+#define IDS_TUTORIAL_TASK_OPEN_WORKBENCH 1081
+#define IDS_TUTORIAL_TASK_CREATE_WOODEN_SHOVEL 1082
+#define IDS_TUTORIAL_TASK_CREATE_WOODEN_HATCHET 1083
+#define IDS_TUTORIAL_TASK_CREATE_WOODEN_PICKAXE 1084
+#define IDS_TUTORIAL_TASK_OPEN_CONTAINER 1085
+#define IDS_TUTORIAL_TASK_NIGHT_DANGER 1086
+#define IDS_TUTORIAL_TASK_NEARBY_SHELTER 1087
+#define IDS_TUTORIAL_TASK_COLLECT_RESOURCES 1088
+#define IDS_TUTORIAL_TASK_MINE_STONE 1089
+#define IDS_TUTORIAL_TASK_CREATE_FURNACE 1090
+#define IDS_TUTORIAL_TASK_PLACE_AND_OPEN_FURNACE 1091
+#define IDS_TUTORIAL_TASK_CREATE_CHARCOAL 1092
+#define IDS_TUTORIAL_TASK_CREATE_GLASS 1093
+#define IDS_TUTORIAL_TASK_CREATE_WOODEN_DOOR 1094
+#define IDS_TUTORIAL_TASK_PLACE_DOOR 1095
+#define IDS_TUTORIAL_TASK_CREATE_TORCH 1096
+#define IDS_TUTORIAL_TASK_BASIC_COMPLETE 1097
+#define IDS_TUTORIAL_PROMPT_BASIC_COMPLETE 1098
+#define IDS_TUTORIAL_TASK_INV_OVERVIEW 1099
+#define IDS_TUTORIAL_PROMPT_INV_OVERVIEW 1100
+#define IDS_TUTORIAL_TASK_INV_PICK_UP 1101
+#define IDS_TUTORIAL_TASK_INV_MOVE 1102
+#define IDS_TUTORIAL_TASK_INV_DROP 1103
+#define IDS_TUTORIAL_TASK_INV_INFO 1104
+#define IDS_TUTORIAL_TASK_INV_EXIT 1105
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_OVERVIEW 1106
+#define IDS_TUTORIAL_PROMPT_CREATIVE_INV_OVERVIEW 1107
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_PICK_UP 1108
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_MOVE 1109
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_DROP 1110
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_NAV 1111
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_INFO 1112
+#define IDS_TUTORIAL_TASK_CREATIVE_INV_EXIT 1113
+#define IDS_TUTORIAL_TASK_CRAFT_OVERVIEW 1114
+#define IDS_TUTORIAL_PROMPT_CRAFT_OVERVIEW 1115
+#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_DESCRIPTION 1116
+#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INGREDIENTS 1117
+#define IDS_TUTORIAL_PROMPT_PRESS_X_TO_TOGGLE_INVENTORY 1118
+#define IDS_TUTORIAL_TASK_CRAFT_NAV 1119
+#define IDS_TUTORIAL_TASK_CRAFT_CREATE 1120
+#define IDS_TUTORIAL_TASK_CRAFT_CRAFT_TABLE 1121
+#define IDS_TUTORIAL_TASK_CRAFT_INVENTORY 1122
+#define IDS_TUTORIAL_TASK_CRAFT_DESCRIPTION 1123
+#define IDS_TUTORIAL_TASK_CRAFT_INGREDIENTS 1124
+#define IDS_TUTORIAL_TASK_CRAFT_CREATE_PLANKS 1125
+#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_TABLE 1126
+#define IDS_TUTORIAL_TASK_CRAFT_SELECT_TOOLS 1127
+#define IDS_TUTORIAL_TASK_CRAFT_SELECT_STRUCTURES 1128
+#define IDS_TUTORIAL_TASK_CRAFT_SELECT_WOODEN_SHOVEL 1129
+#define IDS_TUTORIAL_TASK_CRAFT_SELECT_CRAFTING_TABLE 1130
+#define IDS_TUTORIAL_TASK_CRAFT_TOOLS_BUILT 1131
+#define IDS_TUTORIAL_TASK_CRAFT_CREATE_FURNACE 1132
+#define IDS_TUTORIAL_TASK_CRAFT_EXIT_AND_PLACE_FURNACE 1133
+#define IDS_TUTORIAL_TASK_FURNACE_OVERVIEW 1134
+#define IDS_TUTORIAL_PROMPT_FURNACE_OVERVIEW 1135
+#define IDS_TUTORIAL_TASK_FURNACE_METHOD 1136
+#define IDS_TUTORIAL_TASK_FURNACE_FUELS 1137
+#define IDS_TUTORIAL_TASK_FURNACE_INGREDIENTS 1138
+#define IDS_TUTORIAL_TASK_FURNACE_CREATE_CHARCOAL 1139
+#define IDS_TUTORIAL_TASK_FURNACE_CHARCOAL_USES 1140
+#define IDS_TUTORIAL_TASK_FURNACE_CREATE_GLASS 1141
+#define IDS_TUTORIAL_TASK_BREWING_MENU_OVERVIEW 1142
+#define IDS_TUTORIAL_PROMPT_BREWING_MENU_OVERVIEW 1143
+#define IDS_TUTORIAL_TASK_BREWING_MENU_METHOD 1144
+#define IDS_TUTORIAL_TASK_BREWING_MENU_BASIC_INGREDIENTS 1145
+#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS 1146
+#define IDS_TUTORIAL_TASK_BREWING_MENU_EXTENDED_INGREDIENTS_2 1147
+#define IDS_TUTORIAL_TASK_BREWING_MENU_CREATE_FIRE_POTION 1148
+#define IDS_TUTORIAL_TASK_BREWING_MENU_EXIT 1149
+#define IDS_TUTORIAL_TASK_BREWING_OVERVIEW 1150
+#define IDS_TUTORIAL_PROMPT_BREWING_OVERVIEW 1151
+#define IDS_TUTORIAL_TASK_BREWING_GET_GLASS_BOTTLE 1152
+#define IDS_TUTORIAL_TASK_BREWING_FILL_GLASS_BOTTLE 1153
+#define IDS_TUTORIAL_TASK_BREWING_FILL_CAULDRON 1154
+#define IDS_TUTORIAL_TASK_BREWING_CREATE_FIRE_POTION 1155
+#define IDS_TUTORIAL_TASK_BREWING_USE_POTION 1156
+#define IDS_TUTORIAL_TASK_BREWING_DRINK_FIRE_POTION 1157
+#define IDS_TUTORIAL_TASK_BREWING_USE_EFFECTS 1158
+#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_OVERVIEW 1159
+#define IDS_TUTORIAL_PROMPT_ENCHANTING_MENU_OVERVIEW 1160
+#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_START 1161
+#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANTMENTS 1162
+#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_COST 1163
+#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_ENCHANT 1164
+#define IDS_TUTORIAL_TASK_ENCHANTING_MENU_BETTER_ENCHANTMENTS 1165
+#define IDS_TUTORIAL_TASK_ENCHANTING_OVERVIEW 1166
+#define IDS_TUTORIAL_PROMPT_ENCHANTING_OVERVIEW 1167
+#define IDS_TUTORIAL_TASK_ENCHANTING_SUMMARY 1168
+#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKCASES 1169
+#define IDS_TUTORIAL_TASK_ENCHANTING_EXPERIENCE 1170
+#define IDS_TUTORIAL_TASK_ENCHANTING_BOTTLE_O_ENCHANTING 1171
+#define IDS_TUTORIAL_TASK_ENCHANTING_USE_CHESTS 1172
+#define IDS_TUTORIAL_TASK_MINECART_OVERVIEW 1173
+#define IDS_TUTORIAL_PROMPT_MINECART_OVERVIEW 1174
+#define IDS_TUTORIAL_TASK_MINECART_RAILS 1175
+#define IDS_TUTORIAL_TASK_MINECART_POWERED_RAILS 1176
+#define IDS_TUTORIAL_TASK_BOAT_OVERVIEW 1177
+#define IDS_TUTORIAL_PROMPT_BOAT_OVERVIEW 1178
+#define IDS_TUTORIAL_TASK_BOAT_STEER 1179
+#define IDS_TUTORIAL_TASK_FISHING_OVERVIEW 1180
+#define IDS_TUTORIAL_PROMPT_FISHING_OVERVIEW 1181
+#define IDS_TUTORIAL_TASK_FISHING_CAST 1182
+#define IDS_TUTORIAL_TASK_FISHING_FISH 1183
+#define IDS_TUTORIAL_TASK_FISHING_USES 1184
+#define IDS_TUTORIAL_TASK_BED_OVERVIEW 1185
+#define IDS_TUTORIAL_PROMPT_BED_OVERVIEW 1186
+#define IDS_TUTORIAL_TASK_BED_PLACEMENT 1187
+#define IDS_TUTORIAL_TASK_BED_MULTIPLAYER 1188
+#define IDS_TUTORIAL_REDSTONE_OVERVIEW 1189
+#define IDS_TUTORIAL_PROMPT_REDSTONE_OVERVIEW 1190
+#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES 1191
+#define IDS_TUTORIAL_TASK_REDSTONE_POWER_SOURCES_POSITION 1192
+#define IDS_TUTORIAL_TASK_REDSTONE_DUST 1193
+#define IDS_TUTORIAL_TASK_REDSTONE_REPEATER 1194
+#define IDS_TUTORIAL_TASK_PISTONS 1195
+#define IDS_TUTORIAL_TASK_TRY_IT 1196
+#define IDS_TUTORIAL_PORTAL_OVERVIEW 1197
+#define IDS_TUTORIAL_PROMPT_PORTAL_OVERVIEW 1198
+#define IDS_TUTORIAL_TASK_BUILD_PORTAL 1199
+#define IDS_TUTORIAL_TASK_ACTIVATE_PORTAL 1200
+#define IDS_TUTORIAL_TASK_USE_PORTAL 1201
+#define IDS_TUTORIAL_TASK_NETHER 1202
+#define IDS_TUTORIAL_TASK_NETHER_FAST_TRAVEL 1203
+#define IDS_TUTORIAL_CREATIVE_OVERVIEW 1204
+#define IDS_TUTORIAL_PROMPT_CREATIVE_OVERVIEW 1205
+#define IDS_TUTORIAL_TASK_CREATIVE_MODE 1206
+#define IDS_TUTORIAL_TASK_OPEN_CREATIVE_INVENTORY 1207
+#define IDS_TUTORIAL_TASK_CREATIVE_EXIT 1208
+#define IDS_TUTORIAL_TASK_CREATIVE_COMPLETE 1209
+#define IDS_TUTORIAL_FARMING_OVERVIEW 1210
+#define IDS_TUTORIAL_PROMPT_FARMING_OVERVIEW 1211
+#define IDS_TUTORIAL_TASK_FARMING_SEEDS 1212
+#define IDS_TUTORIAL_TASK_FARMING_FARMLAND 1213
+#define IDS_TUTORIAL_TASK_FARMING_WHEAT 1214
+#define IDS_TUTORIAL_TASK_FARMING_PUMPKIN_AND_MELON 1215
+#define IDS_TUTORIAL_TASK_FARMING_SUGARCANE 1216
+#define IDS_TUTORIAL_TASK_FARMING_CACTUS 1217
+#define IDS_TUTORIAL_TASK_FARMING_MUSHROOM 1218
+#define IDS_TUTORIAL_TASK_FARMING_BONEMEAL 1219
+#define IDS_TUTORIAL_TASK_FARMING_COMPLETE 1220
+#define IDS_TUTORIAL_BREEDING_OVERVIEW 1221
+#define IDS_TUTORIAL_PROMPT_BREEDING_OVERVIEW 1222
+#define IDS_TUTORIAL_TASK_BREEDING_FEED 1223
+#define IDS_TUTORIAL_TASK_BREEDING_FEED_FOOD 1224
+#define IDS_TUTORIAL_TASK_BREEDING_BABY 1225
+#define IDS_TUTORIAL_TASK_BREEDING_DELAY 1226
+#define IDS_TUTORIAL_TASK_BREEDING_FOLLOW 1227
+#define IDS_TUTORIAL_TASK_BREEDING_WOLF_TAMING 1228
+#define IDS_TUTORIAL_TASK_BREEDING_COMPLETE 1229
+#define IDS_TUTORIAL_GOLEM_OVERVIEW 1230
+#define IDS_TUTORIAL_PROMPT_GOLEM_OVERVIEW 1231
+#define IDS_TUTORIAL_TASK_GOLEM_PUMPKIN 1232
+#define IDS_TUTORIAL_TASK_GOLEM_SNOW 1233
+#define IDS_TUTORIAL_TASK_GOLEM_IRON 1234
+#define IDS_TUTORIAL_TASK_GOLEM_IRON_VILLAGE 1235
+#define IDS_TUTORIAL_CONSTRAINT_TUTORIAL_AREA 1236
+#define IDS_TUTORIAL_HINT_DIGGER_ITEM_SHOVEL 1237
+#define IDS_TUTORIAL_HINT_DIGGER_ITEM_HATCHET 1238
+#define IDS_TUTORIAL_HINT_DIGGER_ITEM_PICKAXE 1239
+#define IDS_TUTORIAL_HINT_ATTACK_WITH_TOOL 1240
+#define IDS_TUTORIAL_HINT_HOLD_TO_MINE 1241
+#define IDS_TUTORIAL_HINT_TOOL_DAMAGED 1242
+#define IDS_TUTORIAL_HINT_SWIM_UP 1243
+#define IDS_TUTORIAL_HINT_MINECART 1244
+#define IDS_TUTORIAL_HINT_BOAT 1245
+#define IDS_TUTORIAL_HINT_FISHING 1246
+#define IDS_TUTORIAL_HINT_PISTON_SELF_REPAIRING_BRIDGE 1247
+#define IDS_TUTORIAL_HINT_INV_DROP 1248
+#define IDS_TUTORIAL_HINT_CRAFT_NO_INGREDIENTS 1249
+#define IDS_TUTORIAL_COMPLETED 1250
+#define IDS_TUTORIAL_COMPLETED_EXPLORE 1251
+#define IDS_TUTORIAL_REMINDER 1252
+#define IDS_TUTORIAL_HTML_EXIT_PICTURE 1253
+#define IDS_TUTORIAL_NEW_FEATURES_CHOICE 1254
+#define IDS_TUTORIAL_PROMPT_NEW_FEATURES_CHOICE 1255
+#define IDS_TUTORIAL_FEATURES_IN_THIS_AREA 1256
+#define IDS_TUTORIAL_FEATURES_OUTSIDE_THIS_AREA 1257
+#define IDS_TUTORIAL_TASK_FOOD_BAR_OVERVIEW 1258
+#define IDS_TUTORIAL_PROMPT_FOOD_BAR_OVERVIEW 1259
+#define IDS_TUTORIAL_TASK_HORSE_MENU_OVERVIEW 1260
+#define IDS_TUTORIAL_PROMPT_HORSE_MENU_OVERVIEW 1261
+#define IDS_TUTORIAL_TASK_HORSE_MENU_LAYOUT 1262
+#define IDS_TUTORIAL_TASK_HORSE_MENU_EQUIPMENT 1263
+#define IDS_TUTORIAL_TASK_HORSE_MENU_SADDLEBAGS 1264
+#define IDS_TUTORIAL_TASK_HORSE_OVERVIEW 1265
+#define IDS_TUTORIAL_TASK_DONKEY_OVERVIEW 1266
+#define IDS_TUTORIAL_TASK_MULE_OVERVIEW 1267
+#define IDS_TUTORIAL_PROMPT_HORSE_OVERVIEW 1268
+#define IDS_TUTORIAL_TASK_HORSE_INTRO 1269
+#define IDS_TUTORIAL_TASK_HORSE_PURPOSE 1270
+#define IDS_TUTORIAL_TASK_HORSE_TAMING 1271
+#define IDS_TUTORIAL_TASK_HORSE_TAMING2 1272
+#define IDS_TUTORIAL_TASK_HORSE_RIDE 1273
+#define IDS_TUTORIAL_TASK_HORSE_SADDLES 1274
+#define IDS_TUTORIAL_TASK_HORSE_SADDLEBAGS 1275
+#define IDS_TUTORIAL_TASK_HORSE_BREEDING 1276
+#define IDS_TUTORIAL_TASK_HORSE_AREA 1277
+#define IDS_TUTORIAL_TASK_BEACON_MENU_OVERVIEW 1278
+#define IDS_TUTORIAL_PROMPT_BEACON_MENU_OVERVIEW 1279
+#define IDS_TUTORIAL_TASK_BEACON_MENU_PRIMARY_POWERS 1280
+#define IDS_TUTORIAL_TASK_BEACON_MENU_SECONDARY_POWER 1281
+#define IDS_TUTORIAL_TASK_BEACON_MENU_ACTIVATION 1282
+#define IDS_TUTORIAL_TASK_BEACON_OVERVIEW 1283
+#define IDS_TUTORIAL_PROMPT_BEACON_OVERVIEW 1284
+#define IDS_TUTORIAL_TASK_BEACON_PURPOSE 1285
+#define IDS_TUTORIAL_TASK_BEACON_DESIGN 1286
+#define IDS_TUTORIAL_TASK_BEACON_CHOOSING_POWERS 1287
+#define IDS_TUTORIAL_TASK_HOPPER_OVERVIEW 1288
+#define IDS_TUTORIAL_PROMPT_HOPPER_OVERVIEW 1289
+#define IDS_TUTORIAL_TASK_HOPPER_PURPOSE 1290
+#define IDS_TUTORIAL_TASK_HOPPER_CONTAINERS 1291
+#define IDS_TUTORIAL_TASK_HOPPER_MECHANICS 1292
+#define IDS_TUTORIAL_TASK_HOPPER_REDSTONE 1293
+#define IDS_TUTORIAL_TASK_HOPPER_OUTPUT 1294
+#define IDS_TUTORIAL_TASK_HOPPER_AREA 1295
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_OVERVIEW 1296
+#define IDS_TUTORIAL_PROMPT_FIREWORK_MENU_OVERVIEW 1297
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_START 1298
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_STARS 1299
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_HEIGHT 1300
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_CRAFT 1301
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_START 1302
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_COLOUR 1303
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_SHAPE 1304
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_EFFECT 1305
+#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_FADE 1306
+#define IDS_TUTORIAL_TASK_FIREWORK_OVERVIEW 1307
+#define IDS_TUTORIAL_PROMPT_FIREWORK_OVERVIEW 1308
+#define IDS_TUTORIAL_TASK_FIREWORK_PURPOSE 1309
+#define IDS_TUTORIAL_TASK_FIREWORK_CUSTOMISE 1310
+#define IDS_TUTORIAL_TASK_FIREWORK_CRAFTING 1311
+#define IDS_TOOLTIPS_SELECT 1312
+#define IDS_TOOLTIPS_USE 1313
+#define IDS_TOOLTIPS_BACK 1314
+#define IDS_TOOLTIPS_EXIT 1315
+#define IDS_TOOLTIPS_CANCEL 1316
+#define IDS_TOOLTIPS_CANCEL_JOIN 1317
+#define IDS_TOOLTIPS_REFRESH 1318
+#define IDS_TOOLTIPS_PARTY_GAMES 1319
+#define IDS_TOOLTIPS_ALL_GAMES 1320
+#define IDS_TOOLTIPS_CHANGE_GROUP 1321
+#define IDS_TOOLTIPS_SHOW_INVENTORY 1322
+#define IDS_TOOLTIPS_SHOW_DESCRIPTION 1323
+#define IDS_TOOLTIPS_SHOW_INGREDIENTS 1324
+#define IDS_TOOLTIPS_CRAFTING 1325
+#define IDS_TOOLTIPS_CREATE 1326
+#define IDS_TOOLTIPS_PICKUPPLACE 1327
+#define IDS_TOOLTIPS_PICKUP_GENERIC 1328
+#define IDS_TOOLTIPS_PICKUP_ALL 1329
+#define IDS_TOOLTIPS_PICKUP_HALF 1330
+#define IDS_TOOLTIPS_PLACE_GENERIC 1331
+#define IDS_TOOLTIPS_PLACE_ALL 1332
+#define IDS_TOOLTIPS_PLACE_ONE 1333
+#define IDS_TOOLTIPS_DROP_GENERIC 1334
+#define IDS_TOOLTIPS_DROP_ALL 1335
+#define IDS_TOOLTIPS_DROP_ONE 1336
+#define IDS_TOOLTIPS_SWAP 1337
+#define IDS_TOOLTIPS_QUICK_MOVE 1338
+#define IDS_TOOLTIPS_CLEAR_QUICK_SELECT 1339
+#define IDS_TOOLTIPS_WHAT_IS_THIS 1340
+#define IDS_TOOLTIPS_SHARE 1341
+#define IDS_TOOLTIPS_CHANGE_FILTER 1342
+#define IDS_TOOLTIPS_SEND_FRIEND_REQUEST 1343
+#define IDS_TOOLTIPS_PAGE_DOWN 1344
+#define IDS_TOOLTIPS_PAGE_UP 1345
+#define IDS_TOOLTIPS_NEXT 1346
+#define IDS_TOOLTIPS_PREVIOUS 1347
+#define IDS_TOOLTIPS_KICK 1348
+#define IDS_TOOLTIPS_DYE 1349
+#define IDS_TOOLTIPS_MINE 1350
+#define IDS_TOOLTIPS_FEED 1351
+#define IDS_TOOLTIPS_TAME 1352
+#define IDS_TOOLTIPS_HEAL 1353
+#define IDS_TOOLTIPS_SIT 1354
+#define IDS_TOOLTIPS_FOLLOWME 1355
+#define IDS_TOOLTIPS_EJECT 1356
+#define IDS_TOOLTIPS_EMPTY 1357
+#define IDS_TOOLTIPS_SADDLE 1358
+#define IDS_TOOLTIPS_PLACE 1359
+#define IDS_TOOLTIPS_HIT 1360
+#define IDS_TOOLTIPS_MILK 1361
+#define IDS_TOOLTIPS_COLLECT 1362
+#define IDS_TOOLTIPS_EAT 1363
+#define IDS_TOOLTIPS_SLEEP 1364
+#define IDS_TOOLTIPS_WAKEUP 1365
+#define IDS_TOOLTIPS_PLAY 1366
+#define IDS_TOOLTIPS_RIDE 1367
+#define IDS_TOOLTIPS_SAIL 1368
+#define IDS_TOOLTIPS_GROW 1369
+#define IDS_TOOLTIPS_SWIMUP 1370
+#define IDS_TOOLTIPS_OPEN 1371
+#define IDS_TOOLTIPS_CHANGEPITCH 1372
+#define IDS_TOOLTIPS_DETONATE 1373
+#define IDS_TOOLTIPS_READ 1374
+#define IDS_TOOLTIPS_HANG 1375
+#define IDS_TOOLTIPS_THROW 1376
+#define IDS_TOOLTIPS_PLANT 1377
+#define IDS_TOOLTIPS_TILL 1378
+#define IDS_TOOLTIPS_HARVEST 1379
+#define IDS_TOOLTIPS_CONTINUE 1380
+#define IDS_TOOLTIPS_UNLOCKFULLVERSION 1381
+#define IDS_TOOLTIPS_DELETESAVE 1382
+#define IDS_TOOLTIPS_DELETE 1383
+#define IDS_TOOLTIPS_OPTIONS 1384
+#define IDS_TOOLTIPS_INVITE_FRIENDS 1385
+#define IDS_TOOLTIPS_ACCEPT 1386
+#define IDS_TOOLTIPS_SHEAR 1387
+#define IDS_TOOLTIPS_BANLEVEL 1388
+#define IDS_TOOLTIPS_SELECT_SKIN 1389
+#define IDS_TOOLTIPS_IGNITE 1390
+#define IDS_TOOLTIPS_NAVIGATE 1391
+#define IDS_TOOLTIPS_INSTALL_FULL 1392
+#define IDS_TOOLTIPS_INSTALL_TRIAL 1393
+#define IDS_TOOLTIPS_INSTALL 1394
+#define IDS_TOOLTIPS_REINSTALL 1395
+#define IDS_TOOLTIPS_SAVEOPTIONS 1396
+#define IDS_TOOLTIPS_EXECUTE_COMMAND 1397
+#define IDS_TOOLTIPS_CREATIVE 1398
+#define IDS_TOOLTIPS_QUICK_MOVE_INGREDIENT 1399
+#define IDS_TOOLTIPS_QUICK_MOVE_FUEL 1400
+#define IDS_TOOLTIPS_QUICK_MOVE_TOOL 1401
+#define IDS_TOOLTIPS_QUICK_MOVE_ARMOR 1402
+#define IDS_TOOLTIPS_QUICK_MOVE_WEAPON 1403
+#define IDS_TOOLTIPS_EQUIP 1404
+#define IDS_TOOLTIPS_DRAW_BOW 1405
+#define IDS_TOOLTIPS_RELEASE_BOW 1406
+#define IDS_TOOLTIPS_PRIVILEGES 1407
+#define IDS_TOOLTIPS_BLOCK 1408
+#define IDS_TOOLTIPS_PAGEUP 1409
+#define IDS_TOOLTIPS_PAGEDOWN 1410
+#define IDS_TOOLTIPS_LOVEMODE 1411
+#define IDS_TOOLTIPS_DRINK 1412
+#define IDS_TOOLTIPS_ROTATE 1413
+#define IDS_TOOLTIPS_CLEARSLOTS 1414
+#define IDS_TOOLTIPS_MOUNT 1415
+#define IDS_TOOLTIPS_DISMOUNT 1416
+#define IDS_TOOLTIPS_SADDLEBAGS 1417
+#define IDS_TOOLTIPS_FIREWORK_LAUNCH 1418
+#define IDS_TOOLTIPS_LEASH 1419
+#define IDS_TOOLTIPS_UNLEASH 1420
+#define IDS_TOOLTIPS_ATTACH 1421
+#define IDS_TOOLTIPS_NAME 1422
+#define IDS_CONFIRM_OK 1423
+#define IDS_CONFIRM_CANCEL 1424
+#define IDS_DOWNLOADABLECONTENT 1425
+#define IDS_CONFIRM_LEAVE_VIA_INVITE 1426
+#define IDS_EXIT_GAME 1427
+#define IDS_TITLE_SAVE_GAME 1428
+#define IDS_TITLE_DECLINE_SAVE_GAME 1429
+#define IDS_CONFIRM_SAVE_GAME 1430
+#define IDS_CONFIRM_DECLINE_SAVE_GAME 1431
+#define IDS_TITLE_START_GAME 1432
+#define IDS_CORRUPT_OR_DAMAGED_SAVE_TITLE 1433
+#define IDS_CORRUPT_OR_DAMAGED_SAVE_TEXT 1434
+#define IDS_CORRUPT_OPTIONS_RETRY 1435
+#define IDS_CORRUPT_OPTIONS_DELETE 1436
+#define IDS_CONFIRM_EXIT_GAME_CONFIRM_DISCONNECT_SAVE 1437
+#define IDS_EXIT_GAME_SAVE 1438
+#define IDS_EXIT_GAME_NO_SAVE 1439
+#define IDS_CONFIRM_EXIT_GAME 1440
+#define IDS_CONFIRM_EXIT_GAME_PROGRESS_LOST 1441
+#define IDS_CREATE_NEW_WORLD 1442
+#define IDS_PLAY_TUTORIAL 1443
+#define IDS_TUTORIALSAVENAME 1444
+#define IDS_NAME_WORLD 1445
+#define IDS_NAME_WORLD_TEXT 1446
+#define IDS_CREATE_NEW_WORLD_SEEDTEXT 1447
+#define IDS_LOAD_SAVED_WORLD 1448
+#define IDS_PRESS_START_TO_JOIN 1449
+#define IDS_EXITING_GAME 1450
+#define IDS_GENERIC_ERROR 1451
+#define IDS_CONNECTION_FAILED 1452
+#define IDS_CONNECTION_LOST 1453
+#define IDS_CONNECTION_LOST_SERVER 1454
+#define IDS_DISCONNECTED 1455
+#define IDS_DISCONNECTED_KICKED 1456
+#define IDS_DISCONNECTED_FLYING 1457
+#define IDS_DISCONNECTED_LOGIN_TOO_LONG 1458
+#define IDS_DISCONNECTED_SERVER_FULL 1459
+#define IDS_DISCONNECTED_SERVER_QUIT 1460
+#define IDS_DISCONNECTED_NO_FRIENDS_IN_GAME 1461
+#define IDS_DISCONNECTED_BANNED 1462
+#define IDS_DISCONNECTED_SERVER_OLD 1463
+#define IDS_DISCONNECTED_CLIENT_OLD 1464
+#define IDS_DEFAULT_SAVENAME 1465
+#define IDS_AWARD_TITLE 1466
+#define IDS_AWARD_GAMERPIC1 1467
+#define IDS_AWARD_GAMERPIC2 1468
+#define IDS_UNLOCK_TITLE 1469
+#define IDS_UNLOCK_TOSAVE_TEXT 1470
+#define IDS_LEADERBOARD_LOADING 1471
+#define IDS_LEADERBOARD_NORESULTS 1472
+#define IDS_LEADERBOARD_FILTER 1473
+#define IDS_LEADERBOARD_FILTER_FRIENDS 1474
+#define IDS_LEADERBOARD_FILTER_MYSCORE 1475
+#define IDS_LEADERBOARD_FILTER_OVERALL 1476
+#define IDS_LEADERBOARD_ENTRIES 1477
+#define IDS_LEADERBOARD_RANK 1478
+#define IDS_PROGRESS_SAVING_LEVEL 1479
+#define IDS_PROGRESS_SAVING_CHUNKS 1480
+#define IDS_PROGRESS_SAVING_TO_DISC 1481
+#define IDS_PROGRESS_BUILDING_TERRAIN 1482
+#define IDS_PROGRESS_SIMULATING_WORLD 1483
+#define IDS_PROGRESS_INITIALISING_SERVER 1484
+#define IDS_PROGRESS_GENERATING_SPAWN_AREA 1485
+#define IDS_PROGRESS_LOADING_SPAWN_AREA 1486
+#define IDS_PROGRESS_ENTERING_NETHER 1487
+#define IDS_PROGRESS_LEAVING_NETHER 1488
+#define IDS_PROGRESS_RESPAWNING 1489
+#define IDS_PROGRESS_GENERATING_LEVEL 1490
+#define IDS_PROGRESS_LOADING_LEVEL 1491
+#define IDS_PROGRESS_SAVING_PLAYERS 1492
+#define IDS_PROGRESS_CONNECTING 1493
+#define IDS_PROGRESS_DOWNLOADING_TERRAIN 1494
+#define IDS_PROGRESS_CONVERTING_TO_OFFLINE_GAME 1495
+#define IDS_PROGRESS_HOST_SAVING 1496
+#define IDS_PROGRESS_ENTERING_END 1497
+#define IDS_PROGRESS_LEAVING_END 1498
+#define IDS_TILE_BED_OCCUPIED 1499
+#define IDS_TILE_BED_NO_SLEEP 1500
+#define IDS_TILE_BED_PLAYERSLEEP 1501
+#define IDS_TILE_BED_NOT_VALID 1502
+#define IDS_TILE_BED_NOTSAFE 1503
+#define IDS_TILE_BED_MESLEEP 1504
+#define IDS_GROUPNAME_TOOLS 1505
+#define IDS_GROUPNAME_WEAPONS 1506
+#define IDS_GROUPNAME_FOOD 1507
+#define IDS_GROUPNAME_STRUCTURES 1508
+#define IDS_GROUPNAME_ARMOUR 1509
+#define IDS_GROUPNAME_MECHANISMS 1510
+#define IDS_GROUPNAME_TRANSPORT 1511
+#define IDS_GROUPNAME_DECORATIONS 1512
+#define IDS_GROUPNAME_BUILDING_BLOCKS 1513
+#define IDS_GROUPNAME_REDSTONE_AND_TRANSPORT 1514
+#define IDS_GROUPNAME_MISCELLANEOUS 1515
+#define IDS_GROUPNAME_POTIONS 1516
+#define IDS_GROUPNAME_TOOLS_WEAPONS_ARMOR 1517
+#define IDS_GROUPNAME_MATERIALS 1518
+#define IDS_RETURNEDTOMENU_TITLE 1519
+#define IDS_SLIDER_DIFFICULTY 1520
+#define IDS_SLIDER_MUSIC 1521
+#define IDS_SLIDER_SOUND 1522
+#define IDS_SLIDER_GAMMA 1523
+#define IDS_SLIDER_SENSITIVITY_INGAME 1524
+#define IDS_SLIDER_SENSITIVITY_INMENU 1525
+#define IDS_DIFFICULTY_TITLE_PEACEFUL 1526
+#define IDS_DIFFICULTY_TITLE_EASY 1527
+#define IDS_DIFFICULTY_TITLE_NORMAL 1528
+#define IDS_DIFFICULTY_TITLE_HARD 1529
+#define IDS_DIFFICULTY_PEACEFUL 1530
+#define IDS_DIFFICULTY_EASY 1531
+#define IDS_DIFFICULTY_NORMAL 1532
+#define IDS_DIFFICULTY_HARD 1533
+#define IDS_TRIALOVER_TITLE 1534
+#define IDS_MULTIPLAYER_FULL_TITLE 1535
+#define IDS_MULTIPLAYER_FULL_TEXT 1536
+#define IDS_SIGN_TITLE 1537
+#define IDS_SIGN_TITLE_TEXT 1538
+#define IDS_NAME_TITLE 1539
+#define IDS_NAME_TITLE_TEXT 1540
+#define IDS_NAME_CAPTION 1541
+#define IDS_NAME_CAPTION_TEXT 1542
+#define IDS_NAME_DESC 1543
+#define IDS_NAME_DESC_TEXT 1544
+#define IDS_INVENTORY 1545
+#define IDS_INGREDIENTS 1546
+#define IDS_BREWING_STAND 1547
+#define IDS_CHEST 1548
+#define IDS_ENCHANT 1549
+#define IDS_FURNACE 1550
+#define IDS_INGREDIENT 1551
+#define IDS_FUEL 1552
+#define IDS_DISPENSER 1553
+#define IDS_CONTAINER_ANIMAL 1554
+#define IDS_CONTAINER_DROPPER 1555
+#define IDS_CONTAINER_HOPPER 1556
+#define IDS_CONTAINER_BEACON 1557
+#define IDS_CONTAINER_BEACON_PRIMARY_POWER 1558
+#define IDS_CONTAINER_BEACON_SECONDARY_POWER 1559
+#define IDS_CONTAINER_MINECART 1560
+#define IDS_NO_DLCOFFERS 1561
+#define IDS_PLAYER_JOINED 1562
+#define IDS_PLAYER_LEFT 1563
+#define IDS_PLAYER_KICKED 1564
+#define IDS_TEXT_DELETE_SAVE 1565
+#define IDS_STRINGVERIFY_AWAITING_APPROVAL 1566
+#define IDS_STRINGVERIFY_CENSORED 1567
+#define IDS_NOWPLAYING 1568
+#define IDS_DEFAULTS_TITLE 1569
+#define IDS_DEFAULTS_TEXT 1570
+#define IDS_FATAL_ERROR_TITLE 1571
+#define IDS_GAME_HOST_NAME 1572
+#define IDS_GAME_HOST_NAME_UNKNOWN 1573
+#define IDS_GUEST_ORDER_CHANGED_TITLE 1574
+#define IDS_GUEST_ORDER_CHANGED_TEXT 1575
+#define IDS_MUST_SIGN_IN_TITLE 1576
+#define IDS_MUST_SIGN_IN_TEXT 1577
+#define IDS_NO_MULTIPLAYER_PRIVILEGE_TITLE 1578
+#define IDS_FAILED_TO_CREATE_GAME_TITLE 1579
+#define IDS_DEFAULT_SKINS 1580
+#define IDS_NO_SKIN_PACK 1581
+#define IDS_FAVORITES_SKIN_PACK 1582
+#define IDS_BANNED_LEVEL_TITLE 1583
+#define IDS_PLAYER_BANNED_LEVEL 1584
+#define IDS_ACTION_BAN_LEVEL_TITLE 1585
+#define IDS_ACTION_BAN_LEVEL_DESCRIPTION 1586
+#define IDS_BUTTON_REMOVE_FROM_BAN_LIST 1587
+#define IDS_SLIDER_AUTOSAVE 1588
+#define IDS_SLIDER_AUTOSAVE_OFF 1589
+#define IDS_MINUTES 1590
+#define IDS_CANT_PLACE_NEAR_SPAWN_TITLE 1591
+#define IDS_CANT_PLACE_NEAR_SPAWN_TEXT 1592
+#define IDS_SLIDER_INTERFACEOPACITY 1593
+#define IDS_PROGRESS_AUTOSAVING_LEVEL 1594
+#define IDS_SLIDER_UISIZE 1595
+#define IDS_SLIDER_UISIZESPLITSCREEN 1596
+#define IDS_SEED 1597
+#define IDS_UNLOCK_DLC_TITLE 1598
+#define IDS_UNLOCK_DLC_SKIN 1599
+#define IDS_UNLOCK_DLC_TEXTUREPACK_TITLE 1600
+#define IDS_UNLOCK_DLC_TEXTUREPACK_TEXT 1601
+#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TITLE 1602
+#define IDS_WARNING_DLC_TRIALTEXTUREPACK_TEXT 1603
+#define IDS_DLC_TEXTUREPACK_NOT_PRESENT_TITLE 1604
+#define IDS_DLC_TEXTUREPACK_UNLOCK_TITLE 1605
+#define IDS_DLC_TEXTUREPACK_GET_TRIAL_TITLE 1606
+#define IDS_DLC_TEXTUREPACK_GET_FULL_TITLE 1607
+#define IDS_DLC_TEXTUREPACK_NOT_PRESENT 1608
+#define IDS_TEXTURE_PACK_TRIALVERSION 1609
+#define IDS_TEXTUREPACK_FULLVERSION 1610
+#define IDS_UNLOCK_KICK_PLAYER_TITLE 1611
+#define IDS_UNLOCK_KICK_PLAYER 1612
+#define IDS_GAMERPICS 1613
+#define IDS_THEMES 1614
+#define IDS_SKINS 1615
+#define IDS_ALLOWFRIENDSOFFRIENDS 1616
+#define IDS_NOTALLOWED_FRIENDSOFFRIENDS 1617
+#define IDS_CANTJOIN_TITLE 1618
+#define IDS_SELECTED 1619
+#define IDS_SELECTED_SKIN 1620
+#define IDS_CORRUPT_DLC_TITLE 1621
+#define IDS_CORRUPT_DLC 1622
+#define IDS_CORRUPT_DLC_MULTIPLE 1623
+#define IDS_GAME_MODE_CHANGED 1624
+#define IDS_RENAME_WORLD_TITLE 1625
+#define IDS_RENAME_WORLD_TEXT 1626
+#define IDS_GAMEMODE_SURVIVAL 1627
+#define IDS_GAMEMODE_CREATIVE 1628
+#define IDS_GAMEMODE_ADVENTURE 1629
+#define IDS_SURVIVAL 1630
+#define IDS_CREATIVE 1631
+#define IDS_ADVENTURE 1632
+#define IDS_CREATED_IN_SURVIVAL 1633
+#define IDS_CREATED_IN_CREATIVE 1634
+#define IDS_CHECKBOX_RENDER_CLOUDS 1635
+#define IDS_TEXT_SAVEOPTIONS 1636
+#define IDS_TITLE_RENAMESAVE 1637
+#define IDS_AUTOSAVE_COUNTDOWN 1638
+#define IDS_ON 1639
+#define IDS_OFF 1640
+#define IDS_LEVELTYPE_NORMAL 1641
+#define IDS_LEVELTYPE_SUPERFLAT 1642
+#define IDS_GAMEOPTION_SEED 1643
+#define IDS_GAMEOPTION_ONLINE 1644
+#define IDS_GAMEOPTION_INVITEONLY 1645
+#define IDS_GAMEOPTION_ALLOWFOF 1646
+#define IDS_GAMEOPTION_PVP 1647
+#define IDS_GAMEOPTION_TRUST 1648
+#define IDS_INCREASE_WORLD_SIZE 1649
+#define IDS_INCREASE_WORLD_SIZE_OVERWRITE_EDGES 1650
+#define IDS_GAMEOPTION_FIRE_SPREADS 1651
+#define IDS_GAMEOPTION_INCREASE_WORLD_SIZE 1652
+#define IDS_GAMEOPTION_INCREASE_WORLD_SIZE_OVERWRITE_EDGES 1653
+#define IDS_GAMEOPTION_TNT_EXPLODES 1654
+#define IDS_GAMEOPTION_RESET_NETHER 1655
+#define IDS_GAMEOPTION_STRUCTURES 1656
+#define IDS_GAMEOPTION_SUPERFLAT 1657
+#define IDS_GAMEOPTION_BONUS_CHEST 1658
+#define IDS_GAMEOPTION_MOB_GRIEFING 1659
+#define IDS_GAMEOPTION_KEEP_INVENTORY 1660
+#define IDS_GAMEOPTION_MOB_SPAWNING 1661
+#define IDS_GAMEOPTION_MOB_LOOT 1662
+#define IDS_GAMEOPTION_TILE_DROPS 1663
+#define IDS_GAMEOPTION_NATURAL_REGEN 1664
+#define IDS_GAMEOPTION_DAYLIGHT_CYCLE 1665
+#define IDS_DLC_MENU_SKINPACKS 1666
+#define IDS_DLC_MENU_THEMES 1667
+#define IDS_DLC_MENU_GAMERPICS 1668
+#define IDS_DLC_MENU_AVATARITEMS 1669
+#define IDS_DLC_MENU_TEXTUREPACKS 1670
+#define IDS_DLC_MENU_MASHUPPACKS 1671
+#define IDS_DEATH_INFIRE 1672
+#define IDS_DEATH_ONFIRE 1673
+#define IDS_DEATH_LAVA 1674
+#define IDS_DEATH_INWALL 1675
+#define IDS_DEATH_DROWN 1676
+#define IDS_DEATH_STARVE 1677
+#define IDS_DEATH_CACTUS 1678
+#define IDS_DEATH_FALL 1679
+#define IDS_DEATH_OUTOFWORLD 1680
+#define IDS_DEATH_GENERIC 1681
+#define IDS_DEATH_EXPLOSION 1682
+#define IDS_DEATH_MAGIC 1683
+#define IDS_DEATH_DRAGON_BREATH 1684
+#define IDS_DEATH_MOB 1685
+#define IDS_DEATH_PLAYER 1686
+#define IDS_DEATH_ARROW 1687
+#define IDS_DEATH_FIREBALL 1688
+#define IDS_DEATH_THROWN 1689
+#define IDS_DEATH_INDIRECT_MAGIC 1690
+#define IDS_DEATH_FELL_ACCIDENT_LADDER 1691
+#define IDS_DEATH_FELL_ACCIDENT_VINES 1692
+#define IDS_DEATH_FELL_ACCIDENT_WATER 1693
+#define IDS_DEATH_FELL_ACCIDENT_GENERIC 1694
+#define IDS_DEATH_FELL_KILLER 1695
+#define IDS_DEATH_FELL_ASSIST 1696
+#define IDS_DEATH_FELL_ASSIST_ITEM 1697
+#define IDS_DEATH_FELL_FINISH 1698
+#define IDS_DEATH_FELL_FINISH_ITEM 1699
+#define IDS_DEATH_INFIRE_PLAYER 1700
+#define IDS_DEATH_ONFIRE_PLAYER 1701
+#define IDS_DEATH_LAVA_PLAYER 1702
+#define IDS_DEATH_DROWN_PLAYER 1703
+#define IDS_DEATH_CACTUS_PLAYER 1704
+#define IDS_DEATH_EXPLOSION_PLAYER 1705
+#define IDS_DEATH_WITHER 1706
+#define IDS_DEATH_PLAYER_ITEM 1707
+#define IDS_DEATH_ARROW_ITEM 1708
+#define IDS_DEATH_FIREBALL_ITEM 1709
+#define IDS_DEATH_THROWN_ITEM 1710
+#define IDS_DEATH_INDIRECT_MAGIC_ITEM 1711
+#define IDS_CHECKBOX_RENDER_BEDROCKFOG 1712
+#define IDS_CHECKBOX_DISPLAY_HUD 1713
+#define IDS_CHECKBOX_DISPLAY_HAND 1714
+#define IDS_CHECKBOX_DEATH_MESSAGES 1715
+#define IDS_CHECKBOX_ANIMATED_CHARACTER 1716
+#define IDS_CHECKBOX_CUSTOM_SKIN_ANIM 1717
+#define IDS_PRIV_MINE_TOGGLE_ON 1718
+#define IDS_PRIV_MINE_TOGGLE_OFF 1719
+#define IDS_PRIV_BUILD_TOGGLE_ON 1720
+#define IDS_PRIV_BUILD_TOGGLE_OFF 1721
+#define IDS_PRIV_USE_DOORS_TOGGLE_ON 1722
+#define IDS_PRIV_USE_DOORS_TOGGLE_OFF 1723
+#define IDS_PRIV_USE_CONTAINERS_TOGGLE_ON 1724
+#define IDS_PRIV_USE_CONTAINERS_TOGGLE_OFF 1725
+#define IDS_PRIV_ATTACK_MOB_TOGGLE_ON 1726
+#define IDS_PRIV_ATTACK_MOB_TOGGLE_OFF 1727
+#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_ON 1728
+#define IDS_PRIV_ATTACK_PLAYER_TOGGLE_OFF 1729
+#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_ON 1730
+#define IDS_PRIV_ATTACK_ANIMAL_TOGGLE_OFF 1731
+#define IDS_PRIV_MODERATOR_TOGGLE_ON 1732
+#define IDS_PRIV_MODERATOR_TOGGLE_OFF 1733
+#define IDS_PRIV_FLY_TOGGLE_ON 1734
+#define IDS_PRIV_FLY_TOGGLE_OFF 1735
+#define IDS_PRIV_EXHAUSTION_TOGGLE_ON 1736
+#define IDS_PRIV_EXHAUSTION_TOGGLE_OFF 1737
+#define IDS_PRIV_INVISIBLE_TOGGLE_ON 1738
+#define IDS_PRIV_INVISIBLE_TOGGLE_OFF 1739
+#define IDS_PRIV_INVULNERABLE_TOGGLE_ON 1740
+#define IDS_PRIV_INVULNERABLE_TOGGLE_OFF 1741
+#define IDS_DLC_COST 1742
+#define IDS_BOSS_ENDERDRAGON_HEALTH 1743
+#define IDS_PLAYER_ENTERED_END 1744
+#define IDS_PLAYER_LEFT_END 1745
+#define IDS_WIN_TEXT 1746
+#define IDS_WIN_TEXT_PART_2 1747
+#define IDS_WIN_TEXT_PART_3 1748
+#define IDS_RESETNETHER_TITLE 1749
+#define IDS_RESETNETHER_TEXT 1750
+#define IDS_RESET_NETHER 1751
+#define IDS_DONT_RESET_NETHER 1752
+#define IDS_CANT_SHEAR_MOOSHROOM 1753
+#define IDS_MAX_PIGS_SHEEP_COWS_CATS_SPAWNED 1754
+#define IDS_MAX_MOOSHROOMS_SPAWNED 1755
+#define IDS_MAX_WOLVES_SPAWNED 1756
+#define IDS_MAX_CHICKENS_SPAWNED 1757
+#define IDS_MAX_SQUID_SPAWNED 1758
+#define IDS_MAX_BATS_SPAWNED 1759
+#define IDS_MAX_ENEMIES_SPAWNED 1760
+#define IDS_MAX_VILLAGERS_SPAWNED 1761
+#define IDS_MAX_HANGINGENTITIES 1762
+#define IDS_CANT_SPAWN_IN_PEACEFUL 1763
+#define IDS_MAX_PIGS_SHEEP_COWS_CATS_BRED 1764
+#define IDS_MAX_WOLVES_BRED 1765
+#define IDS_MAX_CHICKENS_BRED 1766
+#define IDS_MAX_HORSES_BRED 1767
+#define IDS_MAX_MUSHROOMCOWS_BRED 1768
+#define IDS_MAX_BOATS 1769
+#define IDS_MAX_SKULL_TILES 1770
+#define IDS_INVERT_LOOK 1771
+#define IDS_SOUTHPAW 1772
+#define IDS_YOU_DIED 1773
+#define IDS_RESPAWN 1774
+#define IDS_DOWNLOADABLE_CONTENT_OFFERS 1775
+#define IDS_CHANGE_SKIN 1776
+#define IDS_HOW_TO_PLAY 1777
+#define IDS_CONTROLS 1778
+#define IDS_SETTINGS 1779
+#define IDS_CREDITS 1780
+#define IDS_LANGUAGE_SELECTOR 1781
+#define IDS_REINSTALL_CONTENT 1782
+#define IDS_DEBUG_SETTINGS 1783
+#define IDS_FIRE_SPREADS 1784
+#define IDS_TNT_EXPLODES 1785
+#define IDS_PLAYER_VS_PLAYER 1786
+#define IDS_TRUST_PLAYERS 1787
+#define IDS_HOST_PRIVILEGES 1788
+#define IDS_GENERATE_STRUCTURES 1789
+#define IDS_SUPERFLAT_WORLD 1790
+#define IDS_BONUS_CHEST 1791
+#define IDS_WORLD_OPTIONS 1792
+#define IDS_GAME_OPTIONS 1793
+#define IDS_MOB_GRIEFING 1794
+#define IDS_KEEP_INVENTORY 1795
+#define IDS_MOB_SPAWNING 1796
+#define IDS_MOB_LOOT 1797
+#define IDS_TILE_DROPS 1798
+#define IDS_NATURAL_REGEN 1799
+#define IDS_DAYLIGHT_CYCLE 1800
+#define IDS_CAN_BUILD_AND_MINE 1801
+#define IDS_CAN_USE_DOORS_AND_SWITCHES 1802
+#define IDS_CAN_OPEN_CONTAINERS 1803
+#define IDS_CAN_ATTACK_PLAYERS 1804
+#define IDS_CAN_ATTACK_ANIMALS 1805
+#define IDS_MODERATOR 1806
+#define IDS_KICK_PLAYER 1807
+#define IDS_CAN_FLY 1808
+#define IDS_DISABLE_EXHAUSTION 1809
+#define IDS_INVISIBLE 1810
+#define IDS_HOST_OPTIONS 1811
+#define IDS_PLAYERS_INVITE 1812
+#define IDS_ONLINE_GAME 1813
+#define IDS_INVITE_ONLY 1814
+#define IDS_MORE_OPTIONS 1815
+#define IDS_LOAD 1816
+#define IDS_DEFAULT_WORLD_NAME 1817
+#define IDS_WORLD_NAME 1818
+#define IDS_CREATE_NEW_WORLD_SEED 1819
+#define IDS_CREATE_NEW_WORLD_RANDOM_SEED 1820
+#define IDS_PLAYERS 1821
+#define IDS_JOIN_GAME 1822
+#define IDS_START_GAME 1823
+#define IDS_NO_GAMES_FOUND 1824
+#define IDS_PLAY_GAME 1825
+#define IDS_LEADERBOARDS 1826
+#define IDS_HELP_AND_OPTIONS 1827
+#define IDS_UNLOCK_FULL_GAME 1828
+#define IDS_RESUME_GAME 1829
+#define IDS_SAVE_GAME 1830
+#define IDS_LABEL_DIFFICULTY 1831
+#define IDS_LABEL_GAME_TYPE 1832
+#define IDS_LABEL_STRUCTURES 1833
+#define IDS_LABEL_LEVEL_TYPE 1834
+#define IDS_LABEL_PvP 1835
+#define IDS_LABEL_TRUST 1836
+#define IDS_LABEL_TNT 1837
+#define IDS_LABEL_FIRE_SPREADS 1838
+#define IDS_REINSTALL_THEME 1839
+#define IDS_REINSTALL_GAMERPIC_1 1840
+#define IDS_REINSTALL_GAMERPIC_2 1841
+#define IDS_REINSTALL_AVATAR_ITEM_1 1842
+#define IDS_REINSTALL_AVATAR_ITEM_2 1843
+#define IDS_REINSTALL_AVATAR_ITEM_3 1844
+#define IDS_OPTIONS 1845
+#define IDS_AUDIO 1846
+#define IDS_CONTROL 1847
+#define IDS_GRAPHICS 1848
+#define IDS_USER_INTERFACE 1849
+#define IDS_RESET_TO_DEFAULTS 1850
+#define IDS_VIEW_BOBBING 1851
+#define IDS_HINTS 1852
+#define IDS_IN_GAME_TOOLTIPS 1853
+#define IDS_CHECKBOX_VERTICAL_SPLIT_SCREEN 1854
+#define IDS_DONE 1855
+#define IDS_EDIT_SIGN_MESSAGE 1856
+#define IDS_SOCIAL_TEXT 1857
+#define IDS_SOCIAL_LABEL_CAPTION 1858
+#define IDS_SOCIAL_DEFAULT_CAPTION 1859
+#define IDS_SOCIAL_LABEL_DESCRIPTION 1860
+#define IDS_DEFAULT_TEXTUREPACK 1861
+#define IDS_POTION_EMPTY 1862
+#define IDS_POTION_MOVESPEED 1863
+#define IDS_POTION_MOVESLOWDOWN 1864
+#define IDS_POTION_DIGSPEED 1865
+#define IDS_POTION_DIGSLOWDOWN 1866
+#define IDS_POTION_DAMAGEBOOST 1867
+#define IDS_POTION_WEAKNESS 1868
+#define IDS_POTION_HEAL 1869
+#define IDS_POTION_HARM 1870
+#define IDS_POTION_JUMP 1871
+#define IDS_POTION_CONFUSION 1872
+#define IDS_POTION_REGENERATION 1873
+#define IDS_POTION_RESISTANCE 1874
+#define IDS_POTION_FIRERESISTANCE 1875
+#define IDS_POTION_WATERBREATHING 1876
+#define IDS_POTION_INVISIBILITY 1877
+#define IDS_POTION_BLINDNESS 1878
+#define IDS_POTION_NIGHTVISION 1879
+#define IDS_POTION_HUNGER 1880
+#define IDS_POTION_POISON 1881
+#define IDS_POTION_WITHER 1882
+#define IDS_POTION_HEALTHBOOST 1883
+#define IDS_POTION_ABSORPTION 1884
+#define IDS_POTION_SATURATION 1885
+#define IDS_POTION_MOVESPEED_POSTFIX 1886
+#define IDS_POTION_MOVESLOWDOWN_POSTFIX 1887
+#define IDS_POTION_DIGSPEED_POSTFIX 1888
+#define IDS_POTION_DIGSLOWDOWN_POSTFIX 1889
+#define IDS_POTION_DAMAGEBOOST_POSTFIX 1890
+#define IDS_POTION_WEAKNESS_POSTFIX 1891
+#define IDS_POTION_HEAL_POSTFIX 1892
+#define IDS_POTION_HARM_POSTFIX 1893
+#define IDS_POTION_JUMP_POSTFIX 1894
+#define IDS_POTION_CONFUSION_POSTFIX 1895
+#define IDS_POTION_REGENERATION_POSTFIX 1896
+#define IDS_POTION_RESISTANCE_POSTFIX 1897
+#define IDS_POTION_FIRERESISTANCE_POSTFIX 1898
+#define IDS_POTION_WATERBREATHING_POSTFIX 1899
+#define IDS_POTION_INVISIBILITY_POSTFIX 1900
+#define IDS_POTION_BLINDNESS_POSTFIX 1901
+#define IDS_POTION_NIGHTVISION_POSTFIX 1902
+#define IDS_POTION_HUNGER_POSTFIX 1903
+#define IDS_POTION_POISON_POSTFIX 1904
+#define IDS_POTION_WITHER_POSTFIX 1905
+#define IDS_POTION_HEALTHBOOST_POSTFIX 1906
+#define IDS_POTION_ABSORPTION_POSTFIX 1907
+#define IDS_POTION_SATURATION_POSTFIX 1908
+#define IDS_POTION_POTENCY_0 1909
+#define IDS_POTION_POTENCY_1 1910
+#define IDS_POTION_POTENCY_2 1911
+#define IDS_POTION_POTENCY_3 1912
+#define IDS_POTION_PREFIX_GRENADE 1913
+#define IDS_POTION_PREFIX_MUNDANE 1914
+#define IDS_POTION_PREFIX_UNINTERESTING 1915
+#define IDS_POTION_PREFIX_BLAND 1916
+#define IDS_POTION_PREFIX_CLEAR 1917
+#define IDS_POTION_PREFIX_MILKY 1918
+#define IDS_POTION_PREFIX_DIFFUSE 1919
+#define IDS_POTION_PREFIX_ARTLESS 1920
+#define IDS_POTION_PREFIX_THIN 1921
+#define IDS_POTION_PREFIX_AWKWARD 1922
+#define IDS_POTION_PREFIX_FLAT 1923
+#define IDS_POTION_PREFIX_BULKY 1924
+#define IDS_POTION_PREFIX_BUNGLING 1925
+#define IDS_POTION_PREFIX_BUTTERED 1926
+#define IDS_POTION_PREFIX_SMOOTH 1927
+#define IDS_POTION_PREFIX_SUAVE 1928
+#define IDS_POTION_PREFIX_DEBONAIR 1929
+#define IDS_POTION_PREFIX_THICK 1930
+#define IDS_POTION_PREFIX_ELEGANT 1931
+#define IDS_POTION_PREFIX_FANCY 1932
+#define IDS_POTION_PREFIX_CHARMING 1933
+#define IDS_POTION_PREFIX_DASHING 1934
+#define IDS_POTION_PREFIX_REFINED 1935
+#define IDS_POTION_PREFIX_CORDIAL 1936
+#define IDS_POTION_PREFIX_SPARKLING 1937
+#define IDS_POTION_PREFIX_POTENT 1938
+#define IDS_POTION_PREFIX_FOUL 1939
+#define IDS_POTION_PREFIX_ODORLESS 1940
+#define IDS_POTION_PREFIX_RANK 1941
+#define IDS_POTION_PREFIX_HARSH 1942
+#define IDS_POTION_PREFIX_ACRID 1943
+#define IDS_POTION_PREFIX_GROSS 1944
+#define IDS_POTION_PREFIX_STINKY 1945
+#define IDS_POTION_DESC_WATER_BOTTLE 1946
+#define IDS_POTION_DESC_EMPTY 1947
+#define IDS_POTION_DESC_MOVESPEED 1948
+#define IDS_POTION_DESC_MOVESLOWDOWN 1949
+#define IDS_POTION_DESC_DAMAGEBOOST 1950
+#define IDS_POTION_DESC_WEAKNESS 1951
+#define IDS_POTION_DESC_HEAL 1952
+#define IDS_POTION_DESC_HARM 1953
+#define IDS_POTION_DESC_REGENERATION 1954
+#define IDS_POTION_DESC_FIRERESISTANCE 1955
+#define IDS_POTION_DESC_POISON 1956
+#define IDS_POTION_EFFECTS_WHENDRANK 1957
+#define IDS_ATTRIBUTE_NAME_HORSE_JUMPSTRENGTH 1958
+#define IDS_ATTRIBUTE_NAME_ZOMBIE_SPAWNREINFORCEMENTS 1959
+#define IDS_ATTRIBUTE_NAME_GENERIC_MAXHEALTH 1960
+#define IDS_ATTRIBUTE_NAME_GENERIC_FOLLOWRANGE 1961
+#define IDS_ATTRIBUTE_NAME_GENERIC_KNOCKBACKRESISTANCE 1962
+#define IDS_ATTRIBUTE_NAME_GENERIC_MOVEMENTSPEED 1963
+#define IDS_ATTRIBUTE_NAME_GENERIC_ATTACKDAMAGE 1964
+#define IDS_ENCHANTMENT_DAMAGE_ALL 1965
+#define IDS_ENCHANTMENT_DAMAGE_UNDEAD 1966
+#define IDS_ENCHANTMENT_DAMAGE_ARTHROPODS 1967
+#define IDS_ENCHANTMENT_KNOCKBACK 1968
+#define IDS_ENCHANTMENT_FIRE 1969
+#define IDS_ENCHANTMENT_PROTECT_ALL 1970
+#define IDS_ENCHANTMENT_PROTECT_FIRE 1971
+#define IDS_ENCHANTMENT_PROTECT_FALL 1972
+#define IDS_ENCHANTMENT_PROTECT_EXPLOSION 1973
+#define IDS_ENCHANTMENT_PROTECT_PROJECTILE 1974
+#define IDS_ENCHANTMENT_OXYGEN 1975
+#define IDS_ENCHANTMENT_WATER_WORKER 1976
+#define IDS_ENCHANTMENT_DIGGING 1977
+#define IDS_ENCHANTMENT_UNTOUCHING 1978
+#define IDS_ENCHANTMENT_DURABILITY 1979
+#define IDS_ENCHANTMENT_LOOT_BONUS 1980
+#define IDS_ENCHANTMENT_LOOT_BONUS_DIGGER 1981
+#define IDS_ENCHANTMENT_ARROW_DAMAGE 1982
+#define IDS_ENCHANTMENT_ARROW_FIRE 1983
+#define IDS_ENCHANTMENT_ARROW_KNOCKBACK 1984
+#define IDS_ENCHANTMENT_ARROW_INFINITE 1985
+#define IDS_ENCHANTMENT_LEVEL_1 1986
+#define IDS_ENCHANTMENT_LEVEL_2 1987
+#define IDS_ENCHANTMENT_LEVEL_3 1988
+#define IDS_ENCHANTMENT_LEVEL_4 1989
+#define IDS_ENCHANTMENT_LEVEL_5 1990
+#define IDS_ENCHANTMENT_LEVEL_6 1991
+#define IDS_ENCHANTMENT_LEVEL_7 1992
+#define IDS_ENCHANTMENT_LEVEL_8 1993
+#define IDS_ENCHANTMENT_LEVEL_9 1994
+#define IDS_ENCHANTMENT_LEVEL_10 1995
+#define IDS_DESC_EMERALDORE 1996
+#define IDS_DESC_ENDERCHEST 1997
+#define IDS_DESC_TRIPWIRE_SOURCE 1998
+#define IDS_DESC_TRIPWIRE 1999
+#define IDS_DESC_EMERALDBLOCK 2000
+#define IDS_DESC_COBBLESTONE_WALL 2001
+#define IDS_DESC_ANVIL 2002
+#define IDS_DESC_NETHER_QUARTZ_ORE 2003
+#define IDS_DESC_QUARTZ_BLOCK 2004
+#define IDS_DESC_EMERALD 2005
+#define IDS_DESC_FLOWERPOT 2006
+#define IDS_DESC_CARROTS 2007
+#define IDS_DESC_POTATO 2008
+#define IDS_DESC_POTATO_BAKED 2009
+#define IDS_DESC_POTATO_POISONOUS 2010
+#define IDS_DESC_CARROT_GOLDEN 2011
+#define IDS_DESC_CARROT_ON_A_STICK 2012
+#define IDS_DESC_PUMPKIN_PIE 2013
+#define IDS_DESC_ENCHANTED_BOOK 2014
+#define IDS_DESC_NETHER_QUARTZ 2015
+#define IDS_DESC_CARPET 2016
+#define IDS_ITEM_EMERALD 2017
+#define IDS_FLOWERPOT 2018
+#define IDS_CARROTS 2019
+#define IDS_POTATO 2020
+#define IDS_ITEM_POTATO_BAKED 2021
+#define IDS_ITEM_POTATO_POISONOUS 2022
+#define IDS_ITEM_CARROT_GOLDEN 2023
+#define IDS_ITEM_CARROT_ON_A_STICK 2024
+#define IDS_ITEM_PUMPKIN_PIE 2025
+#define IDS_ITEM_ENCHANTED_BOOK 2026
+#define IDS_ITEM_NETHER_QUARTZ 2027
+#define IDS_TILE_EMERALDORE 2028
+#define IDS_TILE_ENDERCHEST 2029
+#define IDS_TILE_TRIPWIRE_SOURCE 2030
+#define IDS_TILE_TRIPWIRE 2031
+#define IDS_TILE_EMERALDBLOCK 2032
+#define IDS_TILE_COBBLESTONE_WALL 2033
+#define IDS_TILE_COBBLESTONE_WALL_MOSSY 2034
+#define IDS_TILE_FLOWERPOT 2035
+#define IDS_TILE_CARROTS 2036
+#define IDS_TILE_POTATOES 2037
+#define IDS_TILE_ANVIL 2038
+#define IDS_TILE_ANVIL_INTACT 2039
+#define IDS_TILE_ANVIL_SLIGHTLYDAMAGED 2040
+#define IDS_TILE_ANVIL_VERYDAMAGED 2041
+#define IDS_TILE_NETHER_QUARTZ 2042
+#define IDS_TILE_QUARTZ_BLOCK 2043
+#define IDS_TILE_QUARTZ_BLOCK_CHISELED 2044
+#define IDS_TILE_QUARTZ_BLOCK_LINES 2045
+#define IDS_TILE_STAIRS_QUARTZ 2046
+#define IDS_TILE_CARPET 2047
+#define IDS_TILE_CARPET_BLACK 2048
+#define IDS_TILE_CARPET_RED 2049
+#define IDS_TILE_CARPET_GREEN 2050
+#define IDS_TILE_CARPET_BROWN 2051
+#define IDS_TILE_CARPET_BLUE 2052
+#define IDS_TILE_CARPET_PURPLE 2053
+#define IDS_TILE_CARPET_CYAN 2054
+#define IDS_TILE_CARPET_SILVER 2055
+#define IDS_TILE_CARPET_GRAY 2056
+#define IDS_TILE_CARPET_PINK 2057
+#define IDS_TILE_CARPET_LIME 2058
+#define IDS_TILE_CARPET_YELLOW 2059
+#define IDS_TILE_CARPET_LIGHT_BLUE 2060
+#define IDS_TILE_CARPET_MAGENTA 2061
+#define IDS_TILE_CARPET_ORANGE 2062
+#define IDS_TILE_CARPET_WHITE 2063
+#define IDS_TILE_SANDSTONE_CHISELED 2064
+#define IDS_TILE_SANDSTONE_SMOOTH 2065
+#define IDS_DEATH_THORNS 2066
+#define IDS_DEATH_FALLING_ANVIL 2067
+#define IDS_DEATH_FALLING_TILE 2068
+#define IDS_COMMAND_TELEPORT_SUCCESS 2069
+#define IDS_COMMAND_TELEPORT_ME 2070
+#define IDS_COMMAND_TELEPORT_TO_ME 2071
+#define IDS_ENCHANTMENT_THORNS 2072
+#define IDS_TILE_STONESLAB_QUARTZ 2073
+#define IDS_POTION_DESC_NIGHTVISION 2074
+#define IDS_POTION_DESC_INVISIBILITY 2075
+#define IDS_REPAIR_AND_NAME 2076
+#define IDS_REPAIR_COST 2077
+#define IDS_REPAIR_EXPENSIVE 2078
+#define IDS_TITLE_RENAME 2079
+#define IDS_YOU_HAVE 2080
+#define IDS_REQUIRED_ITEMS_FOR_TRADE 2081
+#define IDS_VILLAGER_OFFERS_ITEM 2082
+#define IDS_TOOLTIPS_REPAIR 2083
+#define IDS_TOOLTIPS_TRADE 2084
+#define IDS_TOOLTIPS_DYECOLLAR 2085
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_OVERVIEW 2086
+#define IDS_TUTORIAL_PROMPT_ANVIL_MENU_OVERVIEW 2087
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_START 2088
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_REPAIR 2089
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_SACRIFICE 2090
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_ENCHANT 2091
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_COST 2092
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_RENAMING 2093
+#define IDS_TUTORIAL_TASK_ANVIL_MENU_SMITH 2094
+#define IDS_TUTORIAL_TASK_ANVIL_OVERVIEW 2095
+#define IDS_TUTORIAL_PROMPT_ANVIL_OVERVIEW 2096
+#define IDS_TUTORIAL_TASK_ANVIL_SUMMARY 2097
+#define IDS_TUTORIAL_TASK_ANVIL_ENCHANTED_BOOKS 2098
+#define IDS_TUTORIAL_TASK_ANVIL_COST 2099
+#define IDS_TUTORIAL_TASK_ANVIL_COST2 2100
+#define IDS_TUTORIAL_TASK_ANVIL_RENAMING 2101
+#define IDS_TUTORIAL_TASK_ANVIL_USE_CHESTS 2102
+#define IDS_TUTORIAL_TASK_TRADING_MENU_OVERVIEW 2103
+#define IDS_TUTORIAL_PROMPT_TRADING_MENU_OVERVIEW 2104
+#define IDS_TUTORIAL_TASK_TRADING_MENU_START 2105
+#define IDS_TUTORIAL_TASK_TRADING_MENU_UNAVAILABLE 2106
+#define IDS_TUTORIAL_TASK_TRADING_MENU_DETAILS 2107
+#define IDS_TUTORIAL_TASK_TRADING_MENU_INVENTORY 2108
+#define IDS_TUTORIAL_TASK_TRADING_MENU_TRADE 2109
+#define IDS_TUTORIAL_TASK_TRADING_OVERVIEW 2110
+#define IDS_TUTORIAL_PROMPT_TRADING_OVERVIEW 2111
+#define IDS_TUTORIAL_TASK_TRADING_SUMMARY 2112
+#define IDS_TUTORIAL_TASK_TRADING_TRADES 2113
+#define IDS_TUTORIAL_TASK_TRADING_INCREASE_TRADES 2114
+#define IDS_TUTORIAL_TASK_TRADING_DECREASE_TRADES 2115
+#define IDS_TUTORIAL_TASK_TRADING_USE_CHESTS 2116
+#define IDS_TUTORIAL_TASK_ENDERCHEST_OVERVIEW 2117
+#define IDS_TUTORIAL_PROMPT_ENDERCHEST_OVERVIEW 2118
+#define IDS_TUTORIAL_TASK_ENDERCHEST_SUMMARY 2119
+#define IDS_TUTORIAL_TASK_ENDERCHEST_PLAYERS 2120
+#define IDS_TUTORIAL_TASK_ENDERCHEST_FUNCTION 2121
+#define IDS_DESC_ENCHANTED_GOLDENAPPLE 2122
+#define IDS_ENABLE_TELEPORT 2123
+#define IDS_TELEPORT 2124
+#define IDS_TELEPORT_TO_PLAYER 2125
+#define IDS_TELEPORT_TO_ME 2126
+#define IDS_CAN_DISABLE_EXHAUSTION 2127
+#define IDS_CAN_INVISIBLE 2128
+#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_ON 2129
+#define IDS_PRIV_CAN_INVISIBLE_TOGGLE_OFF 2130
+#define IDS_PRIV_CAN_FLY_TOGGLE_ON 2131
+#define IDS_PRIV_CAN_FLY_TOGGLE_OFF 2132
+#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_ON 2133
+#define IDS_PRIV_CAN_EXHAUSTION_TOGGLE_OFF 2134
+#define IDS_PRIV_CAN_TELEPORT_TOGGLE_ON 2135
+#define IDS_PRIV_CAN_TELEPORT_TOGGLE_OFF 2136
+#define IDS_HOW_TO_PLAY_ANVIL 2137
+#define IDS_HOW_TO_PLAY_TRADING 2138
+#define IDS_HOW_TO_PLAY_ENDERCHEST 2139
+#define IDS_VILLAGER_FARMER 2140
+#define IDS_VILLAGER_LIBRARIAN 2141
+#define IDS_VILLAGER_PRIEST 2142
+#define IDS_VILLAGER_SMITH 2143
+#define IDS_VILLAGER_BUTCHER 2144
+#define IDS_DESC_VILLAGER 2145
+#define IDS_CHEST_LARGE 2146
+#define IDS_TUTORIAL_TASK_ENCHANTING_BOOKS 2147
+#define IDS_TUTORIAL_TASK_REDSTONE_TRIPWIRE 2148
+#define IDS_TUTORIAL_TASK_BREEDING_WOLF_COLLAR 2149
+#define IDS_TUTORIAL_TASK_FARMING_CARROTS_AND_POTATOES 2150
+#define IDS_TUTORIAL_TASK_BREEDING_RIDING_PIGS 2151
+#define IDS_TUTORIAL_TASK_MINECART_PUSHING 2152
+#define IDS_CONNECTION_FAILED_NO_SD_SPLITSCREEN 2153
+#define IDS_TOOLTIPS_CURE 2154
+#define IDS_PROGRESS_NEW_WORLD_SEED 2155
+#define IDS_LANG_SYSTEM 2156
+#define IDS_LANG_ENGLISH 2157
+#define IDS_LANG_GERMAN 2158
+#define IDS_LANG_SPANISH 2159
+#define IDS_LANG_SPANISH_SPAIN 2160
+#define IDS_LANG_SPANISH_LATIN_AMERICA 2161
+#define IDS_LANG_FRENCH 2162
+#define IDS_LANG_ITALIAN 2163
+#define IDS_LANG_PORTUGUESE 2164
+#define IDS_LANG_PORTUGUESE_PORTUGAL 2165
+#define IDS_LANG_PORTUGUESE_BRAZIL 2166
+#define IDS_LANG_JAPANESE 2167
+#define IDS_LANG_KOREAN 2168
+#define IDS_LANG_CHINESE_TRADITIONAL 2169
+#define IDS_LANG_CHINESE_SIMPLIFIED 2170
+#define IDS_LANG_DANISH 2171
+#define IDS_LANG_FINISH 2172
+#define IDS_LANG_DUTCH 2173
+#define IDS_LANG_POLISH 2174
+#define IDS_LANG_RUSSIAN 2175
+#define IDS_LANG_SWEDISH 2176
+#define IDS_LANG_NORWEGIAN 2177
+#define IDS_LANG_GREEK 2178
+#define IDS_LANG_TURKISH 2179
+#define IDS_LEADERBOARD_KILLS_EASY 2180
+#define IDS_LEADERBOARD_KILLS_NORMAL 2181
+#define IDS_LEADERBOARD_KILLS_HARD 2182
+#define IDS_LEADERBOARD_MINING_BLOCKS_PEACEFUL 2183
+#define IDS_LEADERBOARD_MINING_BLOCKS_EASY 2184
+#define IDS_LEADERBOARD_MINING_BLOCKS_NORMAL 2185
+#define IDS_LEADERBOARD_MINING_BLOCKS_HARD 2186
+#define IDS_LEADERBOARD_FARMING_PEACEFUL 2187
+#define IDS_LEADERBOARD_FARMING_EASY 2188
+#define IDS_LEADERBOARD_FARMING_NORMAL 2189
+#define IDS_LEADERBOARD_FARMING_HARD 2190
+#define IDS_LEADERBOARD_TRAVELLING_PEACEFUL 2191
+#define IDS_LEADERBOARD_TRAVELLING_EASY 2192
+#define IDS_LEADERBOARD_TRAVELLING_NORMAL 2193
+#define IDS_LEADERBOARD_TRAVELLING_HARD 2194
+#define IDS_TIPS_GAMETIP_0 2195
+#define IDS_TIPS_GAMETIP_1 2196
+#define IDS_TIPS_GAMETIP_48 2197
+#define IDS_TIPS_GAMETIP_44 2198
+#define IDS_TIPS_GAMETIP_45 2199
+#define IDS_TIPS_TRIVIA_4 2200
+#define IDS_TIPS_TRIVIA_17 2201
+#define IDS_HOW_TO_PLAY_MULTIPLAYER 2202
+#define IDS_HOW_TO_PLAY_SOCIALMEDIA 2203
+#define IDS_HOW_TO_PLAY_CREATIVE 2204
+#define IDS_TUTORIAL_TASK_FLY 2205
+#define IDS_TOOLTIPS_SELECTDEVICE 2206
+#define IDS_TOOLTIPS_CHANGEDEVICE 2207
+#define IDS_TOOLTIPS_VIEW_GAMERCARD 2208
+#define IDS_TOOLTIPS_VIEW_GAMERPROFILE 2209
+#define IDS_TOOLTIPS_INVITE_PARTY 2210
+#define IDS_CONFIRM_START_CREATIVE 2211
+#define IDS_CONFIRM_START_SAVEDINCREATIVE 2212
+#define IDS_CONFIRM_START_SAVEDINCREATIVE_CONTINUE 2213
+#define IDS_CONFIRM_START_HOST_PRIVILEGES 2214
+#define IDS_CONNECTION_LOST_LIVE 2215
+#define IDS_CONNECTION_LOST_LIVE_NO_EXIT 2216
+#define IDS_UNLOCK_ACHIEVEMENT_TEXT 2217
+#define IDS_UNLOCK_THEME_TEXT 2218
+#define IDS_UNLOCK_ACCEPT_INVITE 2219
+#define IDS_UNLOCK_GUEST_TEXT 2220
+#define IDS_LEADERBOARD_GAMERTAG 2221
+#define IDS_GROUPNAME_POTIONS_480 2222
+#define IDS_RETURNEDTOTITLESCREEN_TEXT 2223
+#define IDS_TRIALOVER_TEXT 2224
+#define IDS_FATAL_ERROR_TEXT 2225
+#define IDS_NO_MULTIPLAYER_PRIVILEGE_JOIN_TEXT 2226
+#define IDS_NO_MULTIPLAYER_PRIVILEGE_HOST_TEXT 2227
+#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_SINGLE_LOCAL 2228
+#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_ALL_LOCAL 2229
+#define IDS_NO_USER_CREATED_CONTENT_PRIVILEGE_CREATE 2230
+#define IDS_SAVE_ICON_MESSAGE 2231
+#define IDS_GAMEOPTION_HOST_PRIVILEGES 2232
+#define IDS_CHECKBOX_DISPLAY_SPLITSCREENGAMERTAGS 2233
+#define IDS_ACHIEVEMENTS 2234
+#define IDS_LABEL_GAMERTAGS 2235
+#define IDS_IN_GAME_GAMERTAGS 2236
+#define IDS_SOCIAL_DEFAULT_DESCRIPTION 2237
+#define IDS_USING_TRIAL_TEXUREPACK_WARNING 2238
+#define IDS_TITLE_UPDATE_NAME 2239
+#define IDS_BACK_BUTTON 2240
+#define IDS_HOST_OPTION_DISABLES_ACHIEVEMENTS 2241
+#define IDS_SIGNIN_PSN 2242
+#define IDS_KICK_PLAYER_DESCRIPTION 2243
+#define IDS_WORLD_SIZE_TITLE_SMALL 2244
+#define IDS_WORLD_SIZE_TITLE_MEDIUM 2245
+#define IDS_WORLD_SIZE_TITLE_LARGE 2246
+#define IDS_WORLD_SIZE_TITLE_CLASSIC 2247
+#define IDS_WORLD_SIZE 2248
+#define IDS_GAMEOPTION_WORLD_SIZE 2249
+#define IDS_DISABLE_SAVING 2250
+#define IDS_GAMEOPTION_DISABLE_SAVING 2251
+#define IDS_CONFIRM_EXIT_GAME_CONFIRM_DISCONNECT 2252
+#define IDS_SAVE_INCOMPLETE_TITLE 2253
+#define IDS_SAVE_INCOMPLETE_EXPLANATION_QUOTA 2254
+#define IDS_SAVE_INCOMPLETE_EXPLANATION_LOCAL_STORAGE 2255
+#define IDS_SAVE_INCOMPLETE_RETRY_SAVING 2256
+#define IDS_SAVE_INCOMPLETE_DISABLE_SAVING 2257
+#define IDS_SAVE_INCOMPLETE_DELETE_SAVES 2258
+#define IDS_TITLE_ENABLE_AUTOSAVE 2259
+#define IDS_CONFIRM_ENABLE_AUTOSAVE 2260
+#define IDS_DISABLE_AUTOSAVE 2261
+#define IDS_TITLE_DISABLE_AUTOSAVE 2262
+#define IDS_CONFIRM_DISABLE_AUTOSAVE 2263
+#define IDS_TOOLTIPS_SAVETRANSFER_DOWNLOAD 2264
+#define IDS_SAVETRANSFER_STAGE_PUT_DATA 2265
+#define IDS_SAVETRANSFER_STAGE_GET_DATA 2266
+#define IDS_SAVE_TRANSFER_TEXT 2267
+#define IDS_SAVETRANSFER_STAGE_CONVERTING 2268
+#define IDS_SAVETRANSFER_STAGE_SAVING 2269
+#define IDS_SAVE_TRANSFER_DOWNLOADCOMPLETE 2270
+#define IDS_SAVE_TRANSFER_DOWNLOADFAILED 2271
+#define IDS_SAVE_TRANSFER_WRONG_VERSION 2272
+#define IDS_DISCONNECTED_NAT_TYPE_MISMATCH 2273
+#define IDS_SAVE_TRANSFER_NOT_AVAILABLE_TEXT 2274
+#define IDS_TEXT_COPY_SAVE 2275
+#define IDS_COPYSAVE 2276
+#define IDS_PROGRESS_COPYING_SAVE 2277
+#define IDS_COPYSAVE_FAILED_QUOTA 2278
+#define IDS_COPYSAVE_FAILED_LOCAL 2279
+#define IDS_COPYSAVE_FAILED_TITLE 2280
+#define IDS_RICHPRESENCE_GAMESTATE 2281
+#define IDS_RICHPRESENCE_IDLE 2282
+#define IDS_RICHPRESENCE_MENUS 2283
+#define IDS_RICHPRESENCE_MULTIPLAYER 2284
+#define IDS_RICHPRESENCE_MULTIPLAYEROFFLINE 2285
+#define IDS_RICHPRESENCE_MULTIPLAYER_1P 2286
+#define IDS_RICHPRESENCE_MULTIPLAYER_1POFFLINE 2287
+#define IDS_RICHPRESENCESTATE_BLANK 2288
+#define IDS_RICHPRESENCESTATE_RIDING_PIG 2289
+#define IDS_RICHPRESENCESTATE_RIDING_MINECART 2290
+#define IDS_RICHPRESENCESTATE_BOATING 2291
+#define IDS_RICHPRESENCESTATE_FISHING 2292
+#define IDS_RICHPRESENCESTATE_CRAFTING 2293
+#define IDS_RICHPRESENCESTATE_FORGING 2294
+#define IDS_RICHPRESENCESTATE_NETHER 2295
+#define IDS_RICHPRESENCESTATE_CD 2296
+#define IDS_RICHPRESENCESTATE_MAP 2297
+#define IDS_RICHPRESENCESTATE_ENCHANTING 2298
+#define IDS_RICHPRESENCESTATE_BREWING 2299
+#define IDS_RICHPRESENCESTATE_ANVIL 2300
+#define IDS_RICHPRESENCESTATE_TRADING 2301
\ No newline at end of file