diff options
| author | daoge_cmd <3523206925@qq.com> | 2026-03-01 12:16:08 +0800 |
|---|---|---|
| committer | daoge_cmd <3523206925@qq.com> | 2026-03-01 12:16:08 +0800 |
| commit | b691c43c44ff180d10e7d4a9afc83b98551ff586 (patch) | |
| tree | 3e9849222cbc6ba49f2f1fc6e5fe7179632c7390 /Minecraft.Client/Common/res/TitleUpdate/GameRules | |
| parent | def8cb415354ac390b7e89052a50605285f1aca9 (diff) | |
Initial commit
Diffstat (limited to 'Minecraft.Client/Common/res/TitleUpdate/GameRules')
139 files changed, 3756 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildAll.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildAll.cmd new file mode 100644 index 00000000..06175558 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildAll.cmd @@ -0,0 +1,10 @@ +@ECHO OFF + +call .\BuildGameRule.cmd Tutorial +call .\BuildGameRule_PS3.cmd Tutorial +call .\BuildGameRule_Windows64.cmd Tutorial +call .\BuildGameRule_Durango.cmd Tutorial +call .\BuildGameRule_Orbis.cmd Tutorial +call .\BuildGameRule_PSVita.cmd Tutorial + +pause diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule.cmd new file mode 100644 index 00000000..4594adf2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule.cmd @@ -0,0 +1,19 @@ +ECHO OFF + +set RULENAME=%1 +cd %RULENAME% +rem set TOOLS=..\..\..\..\..\..\Tools + +ECHO "Building Localisation" +%TOOLS%\NewLocalisationPacker.exe --oldFormat Microsoft %CD%\Strings_Xbox360 %CD%\languages.loc + +ECHO "Building Game Rules" +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c lzxrle + +ECHO "Building DLC Pack" +%TOOLS%\DLC_DataCreator2_CL %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%.pck + +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Durango.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Durango.cmd new file mode 100644 index 00000000..bebbbd8e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Durango.cmd @@ -0,0 +1,28 @@ +@ECHO OFF + +set RULENAME=%1 +cd %RULENAME% + +rem set TOOLS=..\..\..\..\..\..\Tools + +echo Durango + +echo Building Localisation... +%TOOLS%\NewLocalisationPacker --oldFormat Microsoft %CD%\Strings_Durango %CD%\languages.loc + +echo Building Game Rules... +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c zlibrle + +echo Building DLC Pack... +%TOOLS%\DLC_DataCreator2_CL --LittleEndian %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%_Durango.pck + +echo Cleaning-up... +rem del %CD%\languages.loc +rem del %CD%\GameRules.grf +rem del %CD%\%RULENAME%.pck + +echo Finished. +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Orbis.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Orbis.cmd new file mode 100644 index 00000000..3f2411a2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Orbis.cmd @@ -0,0 +1,28 @@ +@ECHO OFF + +set RULENAME=%1 +cd %RULENAME% + +rem set TOOLS=..\..\..\..\..\..\Tools + +echo Orbis + +echo Building Localisation... +%TOOLS%\NewLocalisationPacker --oldFormat Sony %CD%\Strings_Orbis %CD%\languages.loc + +echo Building Game Rules... +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c zlibrle + +echo Building DLC Pack... +%TOOLS%\DLC_DataCreator2_CL --LittleEndian %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%_Orbis.pck + +echo Cleaning-up... +rem del %CD%\languages.loc +rem del %CD%\GameRules.grf +rem del %CD%\%RULENAME%.pck + +echo Finished. +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_PS3.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_PS3.cmd new file mode 100644 index 00000000..9cdfd387 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_PS3.cmd @@ -0,0 +1,28 @@ +@ECHO OFF + +set RULENAME=%1 +cd %RULENAME% + +rem set TOOLS=..\..\..\..\..\..\Tools + +echo Play Station 3 + +echo Building Localisation... +%TOOLS%\NewLocalisationPacker --oldFormat Sony %CD%\Strings_PS3 %CD%\languages.loc + +echo Building Game Rules... +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c edgezlibrle + +echo Building DLC Pack... +%TOOLS%\DLC_DataCreator2_CL %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%_PS3.pck + +echo Cleaning-up... +rem del %CD%\languages.loc +rem del %CD%\GameRules.grf +rem del %CD%\%RULENAME%.pck + +echo Finished. +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_PSVita.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_PSVita.cmd new file mode 100644 index 00000000..7891eb20 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_PSVita.cmd @@ -0,0 +1,28 @@ +@ECHO OFF + +set RULENAME=%1 +cd %RULENAME% + +rem set TOOLS=..\..\..\..\..\..\Tools + +echo PSVita + +echo Building Localisation... +%TOOLS%\NewLocalisationPacker --oldFormat Sony %CD%\Strings_PSVita %CD%\languages.loc + +echo Building Game Rules... +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c zlibrle + +echo Building DLC Pack... +%TOOLS%\DLC_DataCreator2_CL --LittleEndian %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%_PSVita.pck + +echo Cleaning-up... +rem del %CD%\languages.loc +rem del %CD%\GameRules.grf +rem del %CD%\%RULENAME%.pck + +echo Finished. +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Windows64.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Windows64.cmd new file mode 100644 index 00000000..8e9b730b --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Windows64.cmd @@ -0,0 +1,28 @@ +@ECHO OFF + +set RULENAME=%1 +cd %RULENAME% + +rem set TOOLS=..\..\..\..\..\..\Tools + +echo Windows 64 + +echo Building Localisation... +%TOOLS%\NewLocalisationPacker --oldFormat Microsoft %CD%\Strings_Win64 %CD%\languages.loc + +echo Building Game Rules... +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c zlibrle + +echo Building DLC Pack... +%TOOLS%\DLC_DataCreator2_CL --LittleEndian %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%_Windows64.pck + +echo Cleaning-up... +rem del %CD%\languages.loc +rem del %CD%\GameRules.grf +rem del %CD%\%RULENAME%.pck + +echo Finished. +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Xbox.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Xbox.cmd new file mode 100644 index 00000000..fde98245 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/BuildGameRule_Xbox.cmd @@ -0,0 +1,28 @@ +@ECHO OFF + +set RULENAME=%1 +cd %RULENAME% + +rem set TOOLS=..\..\..\..\..\..\Tools + +echo Xbox 360 + +echo Building Localisation... +%TOOLS%\NewLocalisationPacker.exe --oldFormat Microsoft %CD%\Strings_Xbox360 %CD%\languages.loc + +echo Building Game Rules... +%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c lzxrle + +echo Building DLC Pack... +%TOOLS%\DLC_DataCreator2_CL %CD%\%RULENAME%.xml + +rem Return the new tutorial. +copy %RULENAME%.pck ..\..\%RULENAME%_Xbox.pck + +echo Cleaning-up... +rem del %CD%\languages.loc +rem del %CD%\GameRules.grf +rem del %CD%\%RULENAME%.pck + +echo Finished. +cd ..
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.sln b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.sln new file mode 100644 index 00000000..31c1bd39 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.sln @@ -0,0 +1,30 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GameRules", "GameRules.vcxproj", "{0DD2FD59-36AC-476F-9201-D687A4CE9E98}" +EndProject +Global + GlobalSection(TeamFoundationVersionControl) = preSolution + SccNumberOfProjects = 2 + SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} + SccTeamFoundationServer = http://tfs_server:8080/tfs/storiespark + SccProjectUniqueName0 = GameRules.vcxproj + SccLocalPath0 = . + SccLocalPath1 = . + EndGlobalSection + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Xbox 360 = Debug|Xbox 360 + Release|Xbox 360 = Release|Xbox 360 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0DD2FD59-36AC-476F-9201-D687A4CE9E98}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360 + {0DD2FD59-36AC-476F-9201-D687A4CE9E98}.Debug|Xbox 360.Build.0 = Debug|Xbox 360 + {0DD2FD59-36AC-476F-9201-D687A4CE9E98}.Debug|Xbox 360.Deploy.0 = Debug|Xbox 360 + {0DD2FD59-36AC-476F-9201-D687A4CE9E98}.Release|Xbox 360.ActiveCfg = Release|Xbox 360 + {0DD2FD59-36AC-476F-9201-D687A4CE9E98}.Release|Xbox 360.Build.0 = Release|Xbox 360 + {0DD2FD59-36AC-476F-9201-D687A4CE9E98}.Release|Xbox 360.Deploy.0 = Release|Xbox 360 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj new file mode 100644 index 00000000..0bcb4e30 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|Xbox 360"> + <Configuration>Debug</Configuration> + <Platform>Xbox 360</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|Xbox 360"> + <Configuration>Release</Configuration> + <Platform>Xbox 360</Platform> + </ProjectConfiguration> + </ItemGroup> + <PropertyGroup Label="Globals"> + <ProjectGuid>{0DD2FD59-36AC-476F-9201-D687A4CE9E98}</ProjectGuid> + <Keyword>MakeFileProj</Keyword> + <SccProjectName>SAK</SccProjectName> + <SccAuxPath>SAK</SccAuxPath> + <SccLocalPath>SAK</SccLocalPath> + <SccProvider>SAK</SccProvider> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Xbox 360'" Label="Configuration"> + <ConfigurationType>Makefile</ConfigurationType> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Xbox 360'" Label="Configuration"> + <ConfigurationType>Makefile</ConfigurationType> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> + <ImportGroup Label="ExtensionSettings"> + </ImportGroup> + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Xbox 360'"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + </ImportGroup> + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Xbox 360'"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + </ImportGroup> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Xbox 360'"> + <NMakeOutput> + </NMakeOutput> + <NMakePreprocessorDefinitions>_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions> + <NMakeBuildCommandLine>BuildGameRule.cmd Tutorial</NMakeBuildCommandLine> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Xbox 360'"> + <NMakeOutput>GameRules.xex</NMakeOutput> + <NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions> + </PropertyGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Xbox 360'"> + <CustomBuild> + <Command> + </Command> + </CustomBuild> + <Deploy> + <DeploymentType>CopyToHardDrive</DeploymentType> + </Deploy> + </ItemDefinitionGroup> + <ItemGroup> + <None Include="..\Tutorial.pck" /> + <None Include="Tutorial\GameRules.xml"> + <SubType>Designer</SubType> + </None> + <None Include="Tutorial\schematics\Boat.sch" /> + <None Include="Tutorial\schematics\CasTes1.sch" /> + <None Include="Tutorial\schematics\CasTes2.sch" /> + <None Include="Tutorial\schematics\CastleBottom.sch" /> + <None Include="Tutorial\schematics\CastleFront.sch" /> + <None Include="Tutorial\schematics\CastleLeft.sch" /> + <None Include="Tutorial\schematics\CastleMain.sch" /> + <None Include="Tutorial\schematics\CastleRight.sch" /> + <None Include="Tutorial\schematics\CastleTop.sch" /> + <None Include="Tutorial\schematics\JungleTemp.sch" /> + <None Include="Tutorial\schematics\Lava.sch" /> + <None Include="Tutorial\schematics\MinecraftSign.sch" /> + <None Include="Tutorial\schematics\Mushroom.sch" /> + <None Include="Tutorial\schematics\Pyramid.sch" /> + <None Include="Tutorial\schematics\Ship.sch" /> + <None Include="Tutorial\schematics\SnowHouse.sch" /> + <None Include="Tutorial\schematics\Spider.sch" /> + <None Include="Tutorial\schematics\Stairs.sch" /> + <None Include="Tutorial\schematics\StoneCircle.sch" /> + <None Include="Tutorial\schematics\Tower.sch" /> + <None Include="Tutorial\schematics\Tutorial.sch" /> + <None Include="Tutorial\Strings\en-EN.lang" /> + <None Include="Tutorial\Strings\Microsoft\de-DE.lang" /> + <None Include="Tutorial\Strings\Microsoft\es-ES.lang" /> + <None Include="Tutorial\Strings\Microsoft\fr-FR.lang" /> + <None Include="Tutorial\Strings\Microsoft\it-IT.lang" /> + <None Include="Tutorial\Strings\Microsoft\ja-JP.lang" /> + <None Include="Tutorial\Strings\Microsoft\ko-KR.lang" /> + <None Include="Tutorial\Strings\Microsoft\pt-BR.lang" /> + <None Include="Tutorial\Strings\Microsoft\pt-PT.lang" /> + <None Include="Tutorial\Strings\Microsoft\zh-CHT.lang" /> + </ItemGroup> + <ItemGroup> + <Xsd Include="GameRulesDefinition.xsd"> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Xbox 360'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Xbox 360'">true</ExcludedFromBuild> + </Xsd> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> + <ImportGroup Label="ExtensionTargets"> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj.filters b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj.filters new file mode 100644 index 00000000..9c46ad82 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj.filters @@ -0,0 +1,114 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <Filter Include="Resource Files"> + <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> + <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> + </Filter> + <Filter Include="Shared"> + <UniqueIdentifier>{ab02d5da-7fb3-494b-a636-03764d9a8acd}</UniqueIdentifier> + </Filter> + <Filter Include="Tutorial"> + <UniqueIdentifier>{e1a87048-bca2-46e6-a234-91d7d64eb983}</UniqueIdentifier> + </Filter> + <Filter Include="Tutorial\schematics"> + <UniqueIdentifier>{da425f4a-cf76-48e8-87cb-d9fda0f42365}</UniqueIdentifier> + </Filter> + <Filter Include="Tutorial\Loc"> + <UniqueIdentifier>{c0ba5f53-4881-495e-8158-5d87f379426d}</UniqueIdentifier> + </Filter> + <Filter Include="Tutorial\Loc\Microsoft"> + <UniqueIdentifier>{61651432-41a1-42f0-a853-c7795d813418}</UniqueIdentifier> + </Filter> + <Filter Include="Packs"> + <UniqueIdentifier>{e194e42b-1c9b-4e35-9a4b-dabd68eab3e0}</UniqueIdentifier> + </Filter> + </ItemGroup> + <ItemGroup> + <None Include="Tutorial\GameRules.xml"> + <Filter>Tutorial</Filter> + </None> + <None Include="Tutorial\Strings\en-EN.lang"> + <Filter>Tutorial\Loc</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\de-DE.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\es-ES.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\fr-FR.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\it-IT.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\ja-JP.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\ko-KR.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\pt-BR.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\pt-PT.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="Tutorial\Strings\Microsoft\zh-CHT.lang"> + <Filter>Tutorial\Loc\Microsoft</Filter> + </None> + <None Include="..\Tutorial.pck"> + <Filter>Packs</Filter> + </None> + <None Include="Tutorial\schematics\JungleTemp.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Lava.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\MinecraftSign.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Mushroom.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Ship.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Spider.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Stairs.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\StoneCircle.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Tower.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Pyramid.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\CasTes1.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\CasTes2.sch"> + <Filter>Tutorial\schematics</Filter> + </None> + <None Include="Tutorial\schematics\Boat.sch" /> + <None Include="Tutorial\schematics\CastleBottom.sch" /> + <None Include="Tutorial\schematics\CastleFront.sch" /> + <None Include="Tutorial\schematics\CastleLeft.sch" /> + <None Include="Tutorial\schematics\CastleMain.sch" /> + <None Include="Tutorial\schematics\CastleRight.sch" /> + <None Include="Tutorial\schematics\CastleTop.sch" /> + <None Include="Tutorial\schematics\Tutorial.sch" /> + </ItemGroup> + <ItemGroup> + <Xsd Include="GameRulesDefinition.xsd"> + <Filter>Shared</Filter> + </Xsd> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj.vspscc b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj.vspscc new file mode 100644 index 00000000..b6d32892 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRules.vcxproj.vspscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" +} diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRulesDefinition.xsd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRulesDefinition.xsd new file mode 100644 index 00000000..a41f6865 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/GameRulesDefinition.xsd @@ -0,0 +1,2848 @@ +<?xml version="1.0" encoding="utf-8"?> +<xs:schema id="GameRulesDefinition" + targetNamespace="GameRulesDefinition.xsd" + elementFormDefault="qualified" + xmlns="GameRulesDefinition.xsd" + xmlns:mstns="GameRulesDefinition.xsd" + xmlns:xs="http://www.w3.org/2001/XMLSchema" +> + <!-- + This document defines all the attributes and members for the various rules. This should be kept up-to-date with the C++ version + of these rules. + --> + <xs:element name="GameRules"> + <xs:complexType> + <xs:sequence minOccurs="1" maxOccurs="1"> + <xs:sequence minOccurs="0" maxOccurs="1"> + <xs:element ref="MapOptions"/> + </xs:sequence> + <xs:sequence minOccurs="0" maxOccurs="1"> + <xs:element ref="LevelRules"/> + </xs:sequence> + </xs:sequence> + </xs:complexType> + </xs:element> + + <xs:element name="LevelRules"> + <xs:complexType> + <xs:sequence minOccurs="1" maxOccurs="1"> + <xs:sequence minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="GameRule"/> + </xs:sequence> + </xs:sequence> + </xs:complexType> + </xs:element> + + <xs:complexType name="GameRuleType"> + <xs:attribute name="descriptionName" type="xs:string" use="optional"/> + <xs:attribute name="promptName" type="xs:string" use="optional"/> + <xs:attribute name="dataTag" type="xs:int" use="optional"/> + </xs:complexType> + + <xs:attributeGroup name="Coordinates"> + <xs:attribute name="x" type="xs:int"/> + <xs:attribute name="y" type="xs:int"/> + <xs:attribute name="z" type="xs:int"/> + </xs:attributeGroup> + + <xs:element name="GameRule" type="GameRuleType"/> + <xs:element name="CompoundGameRule" type="GameRuleType" substitutionGroup="GameRule"/> + + <xs:element name="MapOptions"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:sequence minOccurs="0" maxOccurs="1"> + <xs:sequence minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="MapOption"/> + </xs:sequence> + <xs:sequence minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="GenerateStructure"/> + </xs:sequence> + </xs:sequence> + <xs:attribute name="seed" type="xs:long" use="optional"/> + <xs:attribute name="spawnX" type="xs:int" use="optional"/> + <xs:attribute name="spawnY" type="xs:int" use="optional"/> + <xs:attribute name="spawnZ" type="xs:int" use="optional"/> + <xs:attribute name="flatworld" type="xs:boolean" use="optional"/> + <xs:attribute name="isTutorial" type="xs:boolean" use="optional"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="MapOption"/> + + <xs:element name="ApplySchematic" substitutionGroup="MapOption"> + <xs:complexType> + <xs:attribute name="filename" type="xs:string" use="required"/> + <xs:attribute name="x" type="xs:int" use="required"/> + <xs:attribute name="y" type="xs:int" use="required"/> + <xs:attribute name="z" type="xs:int" use="required"/> + <xs:attribute name="rot" type="RotationType" use="optional"/> + <xs:attribute name="dim" type="DimensionId" use="optional"/> + </xs:complexType> + </xs:element> + + <xs:element name="StartFeature" substitutionGroup="MapOption"> + <xs:complexType> + <xs:attribute name="chunkX" type="xs:int" use="required"/> + <xs:attribute name="chunkZ" type="xs:int" use="required"/> + <xs:attribute name="feature" type="FeatureType" use="required"/> + </xs:complexType> + </xs:element> + + <xs:element name="NamedArea" substitutionGroup="GameRule"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:attribute name="name" type="xs:string" use="required"/> + <xs:attribute name="x0" type="xs:int" use="required"/> + <xs:attribute name="y0" type="xs:int" use="required"/> + <xs:attribute name="z0" type="xs:int" use="required"/> + <xs:attribute name="x1" type="xs:int" use="required"/> + <xs:attribute name="y1" type="xs:int" use="required"/> + <xs:attribute name="z1" type="xs:int" use="required"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="GenerateStructureAction"/> + <xs:element name="GenerateStructure"> + <xs:complexType> + <xs:sequence minOccurs="1" maxOccurs="unbounded"> + <xs:element ref="GenerateStructureAction"/> + </xs:sequence> + <xs:attribute name="x" type="xs:int" use="required"/> + <xs:attribute name="y" type="xs:int" use="required"/> + <xs:attribute name="z" type="xs:int" use="required"/> + <xs:attribute name="orientation" type="Direction" use="optional"/> + <xs:attribute name="dim" type="DimensionId" use="optional"/> + </xs:complexType> + </xs:element> + + <xs:element name="GenerateBox" substitutionGroup="GenerateStructureAction"> + <xs:complexType> + <xs:attribute name="x0" type="xs:int" use="required"/> + <xs:attribute name="y0" type="xs:int" use="required"/> + <xs:attribute name="z0" type="xs:int" use="required"/> + <xs:attribute name="x1" type="xs:int" use="required"/> + <xs:attribute name="y1" type="xs:int" use="required"/> + <xs:attribute name="z1" type="xs:int" use="required"/> + <xs:attribute name="edgeTile" type="TileId" use="required"/> + <xs:attribute name="fillTile" type="TileId" use="required"/> + <xs:attribute name="skipAir" type="xs:boolean" use="optional"/> + </xs:complexType> + </xs:element> + + <xs:element name="AddEnchantment"> + <xs:complexType> + <xs:attribute name="enchantmentId" type="EnchantmentId" use="required"/> + <xs:attribute name="enchantmentLevel" type="xs:int" use="required"/> + </xs:complexType> + </xs:element> + + <xs:element name="AddItem"> + <xs:complexType> + <xs:sequence minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="AddEnchantment"/> + </xs:sequence> + <xs:attribute name="itemId" type="ItemId" use="required"/> + <xs:attribute name="quantity" type="xs:int" use="required"/> + <xs:attribute name="auxValue" type="xs:byte" use="required"/> + <xs:attribute name="dataTag" type="xs:int" use="required"/> + <xs:attribute name="slot" type="xs:int" use="optional"/> + </xs:complexType> + </xs:element> + + <xs:complexType name="PlaceBlockType"> + <xs:attribute name="block" type="TileId"/> + <xs:attribute name="data" type="xs:byte" use="optional"/> + <xs:attribute name="x" type="xs:int" use="required"/> + <xs:attribute name="y" type="xs:int" use="required"/> + <xs:attribute name="z" type="xs:int" use="required"/> + </xs:complexType> + + <xs:element name="PlaceBlock" substitutionGroup="GenerateStructureAction"> + <xs:complexType> + <xs:complexContent> + <xs:restriction base="PlaceBlockType"> + <xs:attribute name="block" type="TileId" use="required"/> + </xs:restriction> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="PlaceContainer" substitutionGroup="GenerateStructureAction"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="PlaceBlockType"> + <xs:sequence minOccurs="1" maxOccurs="36"> + <xs:element ref="AddItem"/> + </xs:sequence> + <xs:attribute name="block" type="TileId" use="required"/> + <xs:attribute name="facing" type="Facing" use="required"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="PlaceSpawner" substitutionGroup="GenerateStructureAction"> + <xs:complexType> + <xs:attribute name="x" type="xs:int" use="required"/> + <xs:attribute name="y" type="xs:int" use="required"/> + <xs:attribute name="z" type="xs:int" use="required"/> + <xs:attribute name="entity" type="SpawnableEntity" use="required"/> + </xs:complexType> + </xs:element> + + <xs:element name="CompleteAll" substitutionGroup="GameRule"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:sequence minOccurs="1" maxOccurs="unbounded"> + <xs:element ref="GameRule"/> + </xs:sequence> + <xs:attribute name="goalType" type="CompleteAllGoalType" use="required"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="UseTile" substitutionGroup="GameRule"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:attribute name="tileId" type="TileId" use="required"/> + <xs:attribute name="useCoords" type="xs:boolean" use="required"/> + <xs:attributeGroup ref="Coordinates"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="OpenContainer" substitutionGroup="GameRule"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:attribute name="containerId" type="ContainerType" use="required"/> + <xs:attribute name="useCoords" type="xs:boolean" use="required"/> + <xs:attributeGroup ref="Coordinates"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="CollectItem" substitutionGroup="GameRule"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:sequence minOccurs="0" maxOccurs="1"> + <xs:element ref="OpenContainer"/> + </xs:sequence> + <xs:attribute name="itemId" type="ItemId" use="required"/> + <xs:attribute name="auxValue" type="xs:byte" use="optional"/> + <xs:attribute name="quantity" type="xs:int" use="required"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:element name="UpdatePlayer" substitutionGroup="GameRule"> + <xs:complexType> + <xs:complexContent> + <xs:extension base="GameRuleType"> + <xs:sequence minOccurs="0" maxOccurs="36"> + <xs:element ref="AddItem"/> + </xs:sequence> + <xs:attribute name="spawnX" type="xs:int" use="optional"/> + <xs:attribute name="spawnY" type="xs:int" use="optional"/> + <xs:attribute name="spawnZ" type="xs:int" use="optional"/> + <xs:attribute name="food" type="FoodType" use="optional"/> + <xs:attribute name="health" type="HealthType" use="optional"/> + <xs:attribute name="yRot" type="FloatRotationType" use="optional"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + + <xs:simpleType name="HealthType"> + <xs:restriction base="xs:integer"> + <xs:minInclusive value="0"/> + <xs:maxInclusive value="20"/> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="FoodType"> + <xs:restriction base="xs:integer"> + <xs:minInclusive value="0"/> + <xs:maxInclusive value="20"/> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="FloatRotationType"> + <xs:restriction base="xs:float"> + <xs:minInclusive value="0.0"/> + <xs:maxExclusive value="360.0"/> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="RotationType"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"/> + <xs:enumeration value="90"/> + <xs:enumeration value="180"/> + <xs:enumeration value="270"/> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="SpawnableEntity"> + <xs:restriction base="xs:string"> + <xs:enumeration value="Creeper"/> + <xs:enumeration value="Skeleton"/> + <xs:enumeration value="Spider"/> + <xs:enumeration value="Giant"/> + <xs:enumeration value="Zombie"/> + <xs:enumeration value="Slime"/> + <xs:enumeration value="Ghast"/> + <xs:enumeration value="PigZombie"/> + <xs:enumeration value="Enderman"/> + <xs:enumeration value="CaveSpider"/> + <xs:enumeration value="Silverfish"/> + <xs:enumeration value="Blaze"/> + <xs:enumeration value="LavaSlime"/> + <xs:enumeration value="EnderDragon"/> + <xs:enumeration value="Pig"/> + <xs:enumeration value="Sheep"/> + <xs:enumeration value="Cow"/> + <xs:enumeration value="Chicken"/> + <xs:enumeration value="Squid"/> + <xs:enumeration value="Wolf"/> + <xs:enumeration value="MushroomCow"/> + <xs:enumeration value="SnowMan"/> + <xs:enumeration value="Villager"/> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="CompleteAllGoalType"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>Count children</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>Accumulate childrens goals</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="ContainerType"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>Crafting Table</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>Furnace</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>Dispenser</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="FeatureType"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>Mineshaft</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>Nether Bridge</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>Temples</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>Stronghold</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="4"> + <xs:annotation> + <xs:documentation>Village</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="Direction"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>SOUTH</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>WEST</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>NORTH</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>EAST</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="Facing"> + <xs:restriction base="xs:int"> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>NORTH</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>SOUTH</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="4"> + <xs:annotation> + <xs:documentation>WEST</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="5"> + <xs:annotation> + <xs:documentation>EAST</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="DimensionId"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>Overworld</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="-1"> + <xs:annotation> + <xs:documentation>Nether</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>The End</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="EnchantmentId"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>Protection</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>Fire Protection</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>Feather Falling</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>Blast Protection</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="4"> + <xs:annotation> + <xs:documentation>Projectile Protection</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="5"> + <xs:annotation> + <xs:documentation>Respiration</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="6"> + <xs:annotation> + <xs:documentation>Aqua Affinity</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="7"> + <xs:annotation> + <xs:documentation>Thorns</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="16"> + <xs:annotation> + <xs:documentation>Sharpness</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="17"> + <xs:annotation> + <xs:documentation>Smite</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="18"> + <xs:annotation> + <xs:documentation>Bane of Arthropods</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="19"> + <xs:annotation> + <xs:documentation>Knockback</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="20"> + <xs:annotation> + <xs:documentation>Fire Aspect</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="21"> + <xs:annotation> + <xs:documentation>Looting</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="32"> + <xs:annotation> + <xs:documentation>Efficiency</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="33"> + <xs:annotation> + <xs:documentation>Silk Touch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="34"> + <xs:annotation> + <xs:documentation>Unbreaking</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="35"> + <xs:annotation> + <xs:documentation>Fortune</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="48"> + <xs:annotation> + <xs:documentation>Power</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="49"> + <xs:annotation> + <xs:documentation>Punch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="50"> + <xs:annotation> + <xs:documentation>Flame</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="51"> + <xs:annotation> + <xs:documentation>Infinity</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="TileId"> + <xs:restriction base="xs:int"> + <xs:enumeration value="0"> + <xs:annotation> + <xs:documentation>Air</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>Grass Block</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>Dirt</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="4"> + <xs:annotation> + <xs:documentation>Cobblestone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="5"> + <xs:annotation> + <xs:documentation>Wooden Planks</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="6"> + <xs:annotation> + <xs:documentation>Sapling</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="7"> + <xs:annotation> + <xs:documentation>Bedrock</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="8"> + <xs:annotation> + <xs:documentation>Water</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="9"> + <xs:annotation> + <xs:documentation>Water</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="10"> + <xs:annotation> + <xs:documentation>Lava</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="11"> + <xs:annotation> + <xs:documentation>Lava</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="12"> + <xs:annotation> + <xs:documentation>Sand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="13"> + <xs:annotation> + <xs:documentation>Gravel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="14"> + <xs:annotation> + <xs:documentation>Gold Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="15"> + <xs:annotation> + <xs:documentation>Iron Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="16"> + <xs:annotation> + <xs:documentation>Coal Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="17"> + <xs:annotation> + <xs:documentation>Wood</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="18"> + <xs:annotation> + <xs:documentation>Leaves</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="19"> + <xs:annotation> + <xs:documentation>Sponge</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="20"> + <xs:annotation> + <xs:documentation>Glass</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="21"> + <xs:annotation> + <xs:documentation>Lapis Lazuli Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="22"> + <xs:annotation> + <xs:documentation>Lapis Lazuli Block</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="23"> + <xs:annotation> + <xs:documentation>Dispenser</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="24"> + <xs:annotation> + <xs:documentation>Sandstone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="25"> + <xs:annotation> + <xs:documentation>Note Block</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="26"> + <xs:annotation> + <xs:documentation>Bed</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="27"> + <xs:annotation> + <xs:documentation>Powered Rail</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="28"> + <xs:annotation> + <xs:documentation>Detector Rail</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="29"> + <xs:annotation> + <xs:documentation>Sticky Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="30"> + <xs:annotation> + <xs:documentation>Web</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="31"> + <xs:annotation> + <xs:documentation>Shrub</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="32"> + <xs:annotation> + <xs:documentation>Dead Bush</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="33"> + <xs:annotation> + <xs:documentation>Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="34"> + <xs:annotation> + <xs:documentation>Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="35"> + <xs:annotation> + <xs:documentation>Wool</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="36"> + <xs:annotation> + <xs:documentation>Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="37"> + <xs:annotation> + <xs:documentation>Flower</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="38"> + <xs:annotation> + <xs:documentation>Rose</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="39"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="40"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="41"> + <xs:annotation> + <xs:documentation>Block of Gold</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="42"> + <xs:annotation> + <xs:documentation>Block of Iron</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="43"> + <xs:annotation> + <xs:documentation>Stone Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="44"> + <xs:annotation> + <xs:documentation>Stone Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="45"> + <xs:annotation> + <xs:documentation>Bricks</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="46"> + <xs:annotation> + <xs:documentation>TNT</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="47"> + <xs:annotation> + <xs:documentation>Bookshelf</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="48"> + <xs:annotation> + <xs:documentation>Moss Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="49"> + <xs:annotation> + <xs:documentation>Obsidian</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="50"> + <xs:annotation> + <xs:documentation>Torch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="51"> + <xs:annotation> + <xs:documentation>Fire</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="52"> + <xs:annotation> + <xs:documentation>Monster Spawner</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="53"> + <xs:annotation> + <xs:documentation>Wooden Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="54"> + <xs:annotation> + <xs:documentation>Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="55"> + <xs:annotation> + <xs:documentation>Redstone Dust</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="56"> + <xs:annotation> + <xs:documentation>Diamond Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="57"> + <xs:annotation> + <xs:documentation>Block of Diamond</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="58"> + <xs:annotation> + <xs:documentation>Crafting Table</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="59"> + <xs:annotation> + <xs:documentation>Crops</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="60"> + <xs:annotation> + <xs:documentation>Farmland</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="61"> + <xs:annotation> + <xs:documentation>Furnace</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="62"> + <xs:annotation> + <xs:documentation>Furnace</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="63"> + <xs:annotation> + <xs:documentation>Sign</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="64"> + <xs:annotation> + <xs:documentation>Wooden Door</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="65"> + <xs:annotation> + <xs:documentation>Ladder</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="66"> + <xs:annotation> + <xs:documentation>Rail</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="67"> + <xs:annotation> + <xs:documentation>Stone Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="68"> + <xs:annotation> + <xs:documentation>Sign</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="69"> + <xs:annotation> + <xs:documentation>Lever</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="70"> + <xs:annotation> + <xs:documentation>Pressure Plate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="71"> + <xs:annotation> + <xs:documentation>Iron Door</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="72"> + <xs:annotation> + <xs:documentation>Pressure Plate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="73"> + <xs:annotation> + <xs:documentation>Redstone Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="74"> + <xs:annotation> + <xs:documentation>Redstone Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="75"> + <xs:annotation> + <xs:documentation>Redstone Torch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="76"> + <xs:annotation> + <xs:documentation>Redstone Torch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="77"> + <xs:annotation> + <xs:documentation>Button</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="78"> + <xs:annotation> + <xs:documentation>Snow</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="79"> + <xs:annotation> + <xs:documentation>Ice</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="80"> + <xs:annotation> + <xs:documentation>Snow</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="81"> + <xs:annotation> + <xs:documentation>Cactus</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="82"> + <xs:annotation> + <xs:documentation>Clay</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="83"> + <xs:annotation> + <xs:documentation>Sugar Cane</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="84"> + <xs:annotation> + <xs:documentation>Jukebox</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="85"> + <xs:annotation> + <xs:documentation>Fence</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="86"> + <xs:annotation> + <xs:documentation>Pumpkin</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="87"> + <xs:annotation> + <xs:documentation>Netherrack</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="88"> + <xs:annotation> + <xs:documentation>Soul Sand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="89"> + <xs:annotation> + <xs:documentation>Glowstone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="90"> + <xs:annotation> + <xs:documentation>Portal</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="91"> + <xs:annotation> + <xs:documentation>Jack-O-Lantern</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="92"> + <xs:annotation> + <xs:documentation>Cake</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="93"> + <xs:annotation> + <xs:documentation>Redstone Repeater</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="94"> + <xs:annotation> + <xs:documentation>Redstone Repeater</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="95"> + <xs:annotation> + <xs:documentation>Locked Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="96"> + <xs:annotation> + <xs:documentation>Trapdoor</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="97"> + <xs:annotation> + <xs:documentation>Silverfish Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="98"> + <xs:annotation> + <xs:documentation>Stone Bricks</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="99"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="100"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="101"> + <xs:annotation> + <xs:documentation>Iron Bars</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="102"> + <xs:annotation> + <xs:documentation>Glass Pane</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="103"> + <xs:annotation> + <xs:documentation>Melon</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="104"> + <xs:annotation> + <xs:documentation>Pumpkin Stem</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="105"> + <xs:annotation> + <xs:documentation>Melon Stem</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="106"> + <xs:annotation> + <xs:documentation>Vines</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="107"> + <xs:annotation> + <xs:documentation>Fence Gate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="108"> + <xs:annotation> + <xs:documentation>Brick Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="109"> + <xs:annotation> + <xs:documentation>Stone Brick Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="110"> + <xs:annotation> + <xs:documentation>Mycelium</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="111"> + <xs:annotation> + <xs:documentation>Lily Pad</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="112"> + <xs:annotation> + <xs:documentation>Nether Brick</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="113"> + <xs:annotation> + <xs:documentation>Nether Brick Fence</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="114"> + <xs:annotation> + <xs:documentation>Nether Brick Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="115"> + <xs:annotation> + <xs:documentation>Nether Wart</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="116"> + <xs:annotation> + <xs:documentation>Enchantment Table</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="117"> + <xs:annotation> + <xs:documentation>Brewing Stand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="118"> + <xs:annotation> + <xs:documentation>Cauldron</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="119"> + <xs:annotation> + <xs:documentation>End Portal</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="120"> + <xs:annotation> + <xs:documentation>End Portal Frame</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="121"> + <xs:annotation> + <xs:documentation>End Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="122"> + <xs:annotation> + <xs:documentation>Dragon Egg</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="123"> + <xs:annotation> + <xs:documentation>Redstone Lamp</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="124"> + <xs:annotation> + <xs:documentation>Redstone Lamp</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="125"> + <xs:annotation> + <xs:documentation>Oak Wood Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="126"> + <xs:annotation> + <xs:documentation>Oak Wood Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="127"> + <xs:annotation> + <xs:documentation>Cocoa</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="128"> + <xs:annotation> + <xs:documentation>Sandstone Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="129"> + <xs:annotation> + <xs:documentation>Emerald Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="130"> + <xs:annotation> + <xs:documentation>Ender Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="131"> + <xs:annotation> + <xs:documentation>Tripwire Hook</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="132"> + <xs:annotation> + <xs:documentation>Tripwire</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="133"> + <xs:annotation> + <xs:documentation>Block of Emerald</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="134"> + <xs:annotation> + <xs:documentation>Spruce Wood Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="135"> + <xs:annotation> + <xs:documentation>Birch Wood Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="136"> + <xs:annotation> + <xs:documentation>Jungle Wood Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="139"> + <xs:annotation> + <xs:documentation>Cobblestone Wall</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="140"> + <xs:annotation> + <xs:documentation>Flower Pot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="141"> + <xs:annotation> + <xs:documentation>Carrots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="142"> + <xs:annotation> + <xs:documentation>Potatoes</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="143"> + <xs:annotation> + <xs:documentation>Button</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="144"> + <xs:annotation> + <xs:documentation>Skull</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="145"> + <xs:annotation> + <xs:documentation>Anvil</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="153"> + <xs:annotation> + <xs:documentation>Nether Quartz Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="155"> + <xs:annotation> + <xs:documentation>Block of Quartz</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="156"> + <xs:annotation> + <xs:documentation>Quartz Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="171"> + <xs:annotation> + <xs:documentation>Carpet</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="ItemId"> + <xs:restriction base="xs:int"> + <xs:enumeration value="1"> + <xs:annotation> + <xs:documentation>Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2"> + <xs:annotation> + <xs:documentation>Grass Block</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="3"> + <xs:annotation> + <xs:documentation>Dirt</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="4"> + <xs:annotation> + <xs:documentation>Cobblestone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="5"> + <xs:annotation> + <xs:documentation>Wooden Planks</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="6"> + <xs:annotation> + <xs:documentation>Sapling</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="7"> + <xs:annotation> + <xs:documentation>Bedrock</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="8"> + <xs:annotation> + <xs:documentation>Water</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="9"> + <xs:annotation> + <xs:documentation>Water</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="10"> + <xs:annotation> + <xs:documentation>Lava</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="11"> + <xs:annotation> + <xs:documentation>Lava</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="12"> + <xs:annotation> + <xs:documentation>Sand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="13"> + <xs:annotation> + <xs:documentation>Gravel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="14"> + <xs:annotation> + <xs:documentation>Gold Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="15"> + <xs:annotation> + <xs:documentation>Iron Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="16"> + <xs:annotation> + <xs:documentation>Coal Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="17"> + <xs:annotation> + <xs:documentation>Wood</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="18"> + <xs:annotation> + <xs:documentation>Leaves</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="19"> + <xs:annotation> + <xs:documentation>Sponge</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="20"> + <xs:annotation> + <xs:documentation>Glass</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="21"> + <xs:annotation> + <xs:documentation>Lapis Lazuli Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="22"> + <xs:annotation> + <xs:documentation>Lapis Lazuli Block</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="23"> + <xs:annotation> + <xs:documentation>Dispenser</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="24"> + <xs:annotation> + <xs:documentation>Sandstone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="25"> + <xs:annotation> + <xs:documentation>Note Block</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="26"> + <xs:annotation> + <xs:documentation>Bed</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="27"> + <xs:annotation> + <xs:documentation>Powered Rail</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="28"> + <xs:annotation> + <xs:documentation>Detector Rail</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="29"> + <xs:annotation> + <xs:documentation>Sticky Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="30"> + <xs:annotation> + <xs:documentation>Web</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="31"> + <xs:annotation> + <xs:documentation>Tall Grass</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="32"> + <xs:annotation> + <xs:documentation>Dead Bush</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="33"> + <xs:annotation> + <xs:documentation>Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="34"> + <xs:annotation> + <xs:documentation>Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="35"> + <xs:annotation> + <xs:documentation>Wool</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="36"> + <xs:annotation> + <xs:documentation>Piston</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="37"> + <xs:annotation> + <xs:documentation>Flower</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="38"> + <xs:annotation> + <xs:documentation>Rose</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="39"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="40"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="41"> + <xs:annotation> + <xs:documentation>Block of Gold</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="42"> + <xs:annotation> + <xs:documentation>Block of Iron</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="43"> + <xs:annotation> + <xs:documentation>Stone Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="44"> + <xs:annotation> + <xs:documentation>Stone Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="45"> + <xs:annotation> + <xs:documentation>Bricks</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="46"> + <xs:annotation> + <xs:documentation>TNT</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="47"> + <xs:annotation> + <xs:documentation>Bookshelf</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="48"> + <xs:annotation> + <xs:documentation>Moss Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="49"> + <xs:annotation> + <xs:documentation>Obsidian</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="50"> + <xs:annotation> + <xs:documentation>Torch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="51"> + <xs:annotation> + <xs:documentation>Fire</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="52"> + <xs:annotation> + <xs:documentation>Monster Spawner</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="53"> + <xs:annotation> + <xs:documentation>Wooden Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="54"> + <xs:annotation> + <xs:documentation>Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="55"> + <xs:annotation> + <xs:documentation>Redstone Dust</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="56"> + <xs:annotation> + <xs:documentation>Diamond Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="57"> + <xs:annotation> + <xs:documentation>Block of Diamond</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="58"> + <xs:annotation> + <xs:documentation>Crafting Table</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="59"> + <xs:annotation> + <xs:documentation>Crops</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="60"> + <xs:annotation> + <xs:documentation>Farmland</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="61"> + <xs:annotation> + <xs:documentation>Furnace</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="62"> + <xs:annotation> + <xs:documentation>Furnace</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="63"> + <xs:annotation> + <xs:documentation>Sign</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="64"> + <xs:annotation> + <xs:documentation>Wooden Door</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="65"> + <xs:annotation> + <xs:documentation>Ladder</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="66"> + <xs:annotation> + <xs:documentation>Rail</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="67"> + <xs:annotation> + <xs:documentation>Stone Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="68"> + <xs:annotation> + <xs:documentation>Sign</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="69"> + <xs:annotation> + <xs:documentation>Lever</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="70"> + <xs:annotation> + <xs:documentation>Pressure Plate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="71"> + <xs:annotation> + <xs:documentation>Iron Door</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="72"> + <xs:annotation> + <xs:documentation>Pressure Plate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="73"> + <xs:annotation> + <xs:documentation>Redstone Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="74"> + <xs:annotation> + <xs:documentation>Redstone Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="75"> + <xs:annotation> + <xs:documentation>Redstone Torch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="76"> + <xs:annotation> + <xs:documentation>Redstone Torch</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="77"> + <xs:annotation> + <xs:documentation>Button</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="78"> + <xs:annotation> + <xs:documentation>Snow</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="79"> + <xs:annotation> + <xs:documentation>Ice</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="80"> + <xs:annotation> + <xs:documentation>Snow</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="81"> + <xs:annotation> + <xs:documentation>Cactus</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="82"> + <xs:annotation> + <xs:documentation>Clay</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="83"> + <xs:annotation> + <xs:documentation>Sugar Cane</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="84"> + <xs:annotation> + <xs:documentation>Jukebox</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="85"> + <xs:annotation> + <xs:documentation>Fence</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="86"> + <xs:annotation> + <xs:documentation>Pumpkin</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="87"> + <xs:annotation> + <xs:documentation>Netherrack</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="88"> + <xs:annotation> + <xs:documentation>Soul Sand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="89"> + <xs:annotation> + <xs:documentation>Glowstone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="90"> + <xs:annotation> + <xs:documentation>Portal</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="91"> + <xs:annotation> + <xs:documentation>Jack-O-Lantern</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="92"> + <xs:annotation> + <xs:documentation>Cake</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="93"> + <xs:annotation> + <xs:documentation>Redstone Repeater</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="94"> + <xs:annotation> + <xs:documentation>Redstone Repeater</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="95"> + <xs:annotation> + <xs:documentation>Locked Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="96"> + <xs:annotation> + <xs:documentation>Trapdoor</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="97"> + <xs:annotation> + <xs:documentation>Silverfish Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="98"> + <xs:annotation> + <xs:documentation>Stone Bricks</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="99"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="100"> + <xs:annotation> + <xs:documentation>Mushroom</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="101"> + <xs:annotation> + <xs:documentation>Iron Bars</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="102"> + <xs:annotation> + <xs:documentation>Glass Pane</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="103"> + <xs:annotation> + <xs:documentation>Melon</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="104"> + <xs:annotation> + <xs:documentation>Pumpkin Stem</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="105"> + <xs:annotation> + <xs:documentation>Melon Stem</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="106"> + <xs:annotation> + <xs:documentation>Vines</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="107"> + <xs:annotation> + <xs:documentation>Fence Gate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="108"> + <xs:annotation> + <xs:documentation>Brick Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="109"> + <xs:annotation> + <xs:documentation>Stone Brick Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="110"> + <xs:annotation> + <xs:documentation>Mycelium</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="111"> + <xs:annotation> + <xs:documentation>Lily Pad</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="112"> + <xs:annotation> + <xs:documentation>Nether Brick</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="113"> + <xs:annotation> + <xs:documentation>Nether Brick Fence</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="114"> + <xs:annotation> + <xs:documentation>Nether Brick Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="115"> + <xs:annotation> + <xs:documentation>Nether Wart</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="116"> + <xs:annotation> + <xs:documentation>Enchantment Table</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="117"> + <xs:annotation> + <xs:documentation>Brewing Stand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="118"> + <xs:annotation> + <xs:documentation>Cauldron</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="119"> + <xs:annotation> + <xs:documentation>End Portal</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="120"> + <xs:annotation> + <xs:documentation>End Portal Frame</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="121"> + <xs:annotation> + <xs:documentation>End Stone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="122"> + <xs:annotation> + <xs:documentation>Dragon Egg</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="123"> + <xs:annotation> + <xs:documentation>Redstone Lamp</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="124"> + <xs:annotation> + <xs:documentation>Redstone Lamp</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="125"> + <xs:annotation> + <xs:documentation>Oak Wood Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="126"> + <xs:annotation> + <xs:documentation>Oak Wood Slab</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="127"> + <xs:annotation> + <xs:documentation>Cocoa</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="128"> + <xs:annotation> + <xs:documentation>Sandstone Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="129"> + <xs:annotation> + <xs:documentation>Emerald Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="130"> + <xs:annotation> + <xs:documentation>Ender Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="131"> + <xs:annotation> + <xs:documentation>Tripwire Hook</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="132"> + <xs:annotation> + <xs:documentation>Tripwire</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="133"> + <xs:annotation> + <xs:documentation>Block of Emerald</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="134"> + <xs:annotation> + <xs:documentation>Spruce Wood Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="135"> + <xs:annotation> + <xs:documentation>Birch Wood Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="136"> + <xs:annotation> + <xs:documentation>Jungle Wood Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="139"> + <xs:annotation> + <xs:documentation>Cobblestone Wall</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="140"> + <xs:annotation> + <xs:documentation>Flower Pot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="141"> + <xs:annotation> + <xs:documentation>Carrots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="142"> + <xs:annotation> + <xs:documentation>Potatoes</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="143"> + <xs:annotation> + <xs:documentation>Button</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="144"> + <xs:annotation> + <xs:documentation>Skull</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="145"> + <xs:annotation> + <xs:documentation>Anvil</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="153"> + <xs:annotation> + <xs:documentation>Nether Quartz Ore</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="155"> + <xs:annotation> + <xs:documentation>Block of Quartz</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="156"> + <xs:annotation> + <xs:documentation>Quartz Stairs</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="171"> + <xs:annotation> + <xs:documentation>Carpet</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="256"> + <xs:annotation> + <xs:documentation>Iron Shovel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="257"> + <xs:annotation> + <xs:documentation>Iron Pickaxe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="258"> + <xs:annotation> + <xs:documentation>Iron Axe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="259"> + <xs:annotation> + <xs:documentation>Flint and Steel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="260"> + <xs:annotation> + <xs:documentation>Apple</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="261"> + <xs:annotation> + <xs:documentation>Bow</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="262"> + <xs:annotation> + <xs:documentation>Arrow</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="263"> + <xs:annotation> + <xs:documentation>Coal</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="264"> + <xs:annotation> + <xs:documentation>Diamond</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="265"> + <xs:annotation> + <xs:documentation>Iron Ingot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="266"> + <xs:annotation> + <xs:documentation>Gold Ingot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="267"> + <xs:annotation> + <xs:documentation>Iron Sword</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="268"> + <xs:annotation> + <xs:documentation>Wooden Sword</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="269"> + <xs:annotation> + <xs:documentation>Wooden Shovel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="270"> + <xs:annotation> + <xs:documentation>Wooden Pickaxe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="271"> + <xs:annotation> + <xs:documentation>Wooden Axe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="272"> + <xs:annotation> + <xs:documentation>Stone Sword</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="273"> + <xs:annotation> + <xs:documentation>Stone Shovel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="274"> + <xs:annotation> + <xs:documentation>Stone Pickaxe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="275"> + <xs:annotation> + <xs:documentation>Stone Axe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="276"> + <xs:annotation> + <xs:documentation>Diamond Sword</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="277"> + <xs:annotation> + <xs:documentation>Diamond Shovel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="278"> + <xs:annotation> + <xs:documentation>Diamond Pickaxe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="279"> + <xs:annotation> + <xs:documentation>Diamond Axe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="280"> + <xs:annotation> + <xs:documentation>Stick</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="281"> + <xs:annotation> + <xs:documentation>Bowl</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="282"> + <xs:annotation> + <xs:documentation>Mushroom Stew</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="283"> + <xs:annotation> + <xs:documentation>Golden Sword</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="284"> + <xs:annotation> + <xs:documentation>Golden Shovel</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="285"> + <xs:annotation> + <xs:documentation>Golden Pickaxe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="286"> + <xs:annotation> + <xs:documentation>Golden Axe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="287"> + <xs:annotation> + <xs:documentation>String</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="288"> + <xs:annotation> + <xs:documentation>Feather</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="289"> + <xs:annotation> + <xs:documentation>Gunpowder</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="290"> + <xs:annotation> + <xs:documentation>Wooden Hoe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="291"> + <xs:annotation> + <xs:documentation>Stone Hoe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="292"> + <xs:annotation> + <xs:documentation>Iron Hoe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="293"> + <xs:annotation> + <xs:documentation>Diamond Hoe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="294"> + <xs:annotation> + <xs:documentation>Golden Hoe</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="295"> + <xs:annotation> + <xs:documentation>Seeds</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="296"> + <xs:annotation> + <xs:documentation>Wheat</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="297"> + <xs:annotation> + <xs:documentation>Bread</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="298"> + <xs:annotation> + <xs:documentation>Leather Cap</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="299"> + <xs:annotation> + <xs:documentation>Leather Tunic</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="300"> + <xs:annotation> + <xs:documentation>Leather Pants</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="301"> + <xs:annotation> + <xs:documentation>Leather Boots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="302"> + <xs:annotation> + <xs:documentation>Chain Helmet</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="303"> + <xs:annotation> + <xs:documentation>Chain Chestplate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="304"> + <xs:annotation> + <xs:documentation>Chain Leggings</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="305"> + <xs:annotation> + <xs:documentation>Chain Boots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="306"> + <xs:annotation> + <xs:documentation>Iron Helmet</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="307"> + <xs:annotation> + <xs:documentation>Iron Chestplate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="308"> + <xs:annotation> + <xs:documentation>Iron Leggings</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="309"> + <xs:annotation> + <xs:documentation>Iron Boots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="310"> + <xs:annotation> + <xs:documentation>Diamond Helmet</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="311"> + <xs:annotation> + <xs:documentation>Diamond Chestplate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="312"> + <xs:annotation> + <xs:documentation>Diamond Leggings</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="313"> + <xs:annotation> + <xs:documentation>Diamond Boots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="314"> + <xs:annotation> + <xs:documentation>Golden Helmet</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="315"> + <xs:annotation> + <xs:documentation>Golden Chestplate</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="316"> + <xs:annotation> + <xs:documentation>Golden Leggings</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="317"> + <xs:annotation> + <xs:documentation>Golden Boots</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="318"> + <xs:annotation> + <xs:documentation>Flint</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="319"> + <xs:annotation> + <xs:documentation>Raw Porkchop</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="320"> + <xs:annotation> + <xs:documentation>Cooked Porkchop</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="321"> + <xs:annotation> + <xs:documentation>Painting</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="322"> + <xs:annotation> + <xs:documentation>Golden Apple</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="323"> + <xs:annotation> + <xs:documentation>Sign</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="324"> + <xs:annotation> + <xs:documentation>Wooden Door</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="325"> + <xs:annotation> + <xs:documentation>Bucket</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="326"> + <xs:annotation> + <xs:documentation>Water Bucket</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="327"> + <xs:annotation> + <xs:documentation>Lava Bucket</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="328"> + <xs:annotation> + <xs:documentation>Minecart</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="329"> + <xs:annotation> + <xs:documentation>Saddle</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="330"> + <xs:annotation> + <xs:documentation>Iron Door</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="331"> + <xs:annotation> + <xs:documentation>Redstone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="332"> + <xs:annotation> + <xs:documentation>Snowball</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="333"> + <xs:annotation> + <xs:documentation>Boat</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="334"> + <xs:annotation> + <xs:documentation>Leather</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="335"> + <xs:annotation> + <xs:documentation>Milk Bucket</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="336"> + <xs:annotation> + <xs:documentation>Brick</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="337"> + <xs:annotation> + <xs:documentation>Clay</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="338"> + <xs:annotation> + <xs:documentation>Sugar Canes</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="339"> + <xs:annotation> + <xs:documentation>Paper</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="340"> + <xs:annotation> + <xs:documentation>Book</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="341"> + <xs:annotation> + <xs:documentation>Slimeball</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="342"> + <xs:annotation> + <xs:documentation>Minecart with Chest</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="343"> + <xs:annotation> + <xs:documentation>Minecart with Furnace</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="344"> + <xs:annotation> + <xs:documentation>Egg</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="345"> + <xs:annotation> + <xs:documentation>Compass</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="346"> + <xs:annotation> + <xs:documentation>Fishing Rod</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="347"> + <xs:annotation> + <xs:documentation>Clock</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="348"> + <xs:annotation> + <xs:documentation>Glowstone Dust</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="349"> + <xs:annotation> + <xs:documentation>Raw Fish</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="350"> + <xs:annotation> + <xs:documentation>Cooked Fish</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="351"> + <xs:annotation> + <xs:documentation>Dye Powder</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="352"> + <xs:annotation> + <xs:documentation>Bone</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="353"> + <xs:annotation> + <xs:documentation>Sugar</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="354"> + <xs:annotation> + <xs:documentation>Cake</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="355"> + <xs:annotation> + <xs:documentation>Bed</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="356"> + <xs:annotation> + <xs:documentation>Redstone Repeater</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="357"> + <xs:annotation> + <xs:documentation>Cookie</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="358"> + <xs:annotation> + <xs:documentation>Map</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="359"> + <xs:annotation> + <xs:documentation>Shears</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="360"> + <xs:annotation> + <xs:documentation>Melon Slice</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="361"> + <xs:annotation> + <xs:documentation>Pumpkin Seeds</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="362"> + <xs:annotation> + <xs:documentation>Melon Seeds</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="363"> + <xs:annotation> + <xs:documentation>Raw Beef</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="364"> + <xs:annotation> + <xs:documentation>Steak</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="365"> + <xs:annotation> + <xs:documentation>Raw Chicken</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="366"> + <xs:annotation> + <xs:documentation>Cooked Chicken</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="367"> + <xs:annotation> + <xs:documentation>Rotten Flesh</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="368"> + <xs:annotation> + <xs:documentation>Ender Pearl</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="369"> + <xs:annotation> + <xs:documentation>Blaze Rod</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="370"> + <xs:annotation> + <xs:documentation>Ghast Tear</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="371"> + <xs:annotation> + <xs:documentation>Gold Nugget</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="372"> + <xs:annotation> + <xs:documentation>Nether Wart</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="373"> + <xs:annotation> + <xs:documentation>{*splash*}{*prefix*}Potion {*postfix*}</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="374"> + <xs:annotation> + <xs:documentation>Glass Bottle</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="375"> + <xs:annotation> + <xs:documentation>Spider Eye</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="376"> + <xs:annotation> + <xs:documentation>Fermented Spider Eye</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="377"> + <xs:annotation> + <xs:documentation>Blaze Powder</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="378"> + <xs:annotation> + <xs:documentation>Magma Cream</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="379"> + <xs:annotation> + <xs:documentation>Brewing Stand</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="380"> + <xs:annotation> + <xs:documentation>Cauldron</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="381"> + <xs:annotation> + <xs:documentation>Eye of Ender</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="382"> + <xs:annotation> + <xs:documentation>Glistering Melon</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="383"> + <xs:annotation> + <xs:documentation>Spawn {*CREATURE*}</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="384"> + <xs:annotation> + <xs:documentation>Bottle o' Enchanting</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="385"> + <xs:annotation> + <xs:documentation>Fire Charge</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="388"> + <xs:annotation> + <xs:documentation>Emerald</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="389"> + <xs:annotation> + <xs:documentation>Item Frame</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="390"> + <xs:annotation> + <xs:documentation>Flower Pot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="391"> + <xs:annotation> + <xs:documentation>Carrot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="392"> + <xs:annotation> + <xs:documentation>Potato</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="393"> + <xs:annotation> + <xs:documentation>Baked Potato</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="394"> + <xs:annotation> + <xs:documentation>Poisonous Potato</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="396"> + <xs:annotation> + <xs:documentation>Golden Carrot</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="397"> + <xs:annotation> + <xs:documentation>Skull</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="398"> + <xs:annotation> + <xs:documentation>Carrot on a Stick</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="400"> + <xs:annotation> + <xs:documentation>Pumpkin Pie</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="403"> + <xs:annotation> + <xs:documentation>Enchanted Book</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="405"> + <xs:annotation> + <xs:documentation>Nether Brick</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="406"> + <xs:annotation> + <xs:documentation>Nether Quartz</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2256"> + <xs:annotation> + <xs:documentation>Music Disc - "13"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2257"> + <xs:annotation> + <xs:documentation>Music Disc - "cat"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2258"> + <xs:annotation> + <xs:documentation>Music Disc - "blocks"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2259"> + <xs:annotation> + <xs:documentation>Music Disc - "chirp"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2260"> + <xs:annotation> + <xs:documentation>Music Disc - "far"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2261"> + <xs:annotation> + <xs:documentation>Music Disc - "mall"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2262"> + <xs:annotation> + <xs:documentation>Music Disc - "mellohi"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2263"> + <xs:annotation> + <xs:documentation>Music Disc - "stal"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2264"> + <xs:annotation> + <xs:documentation>Music Disc - "strad"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2265"> + <xs:annotation> + <xs:documentation>Music Disc - "ward"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2266"> + <xs:annotation> + <xs:documentation>Music Disc - "11"</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="2267"> + <xs:annotation> + <xs:documentation>Music Disc - "where are we now"</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + +</xs:schema> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.grf b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.grf Binary files differnew file mode 100644 index 00000000..3628e09a --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.grf diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.grh b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.grh Binary files differnew file mode 100644 index 00000000..602a525b --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.grh diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.xml b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.xml Binary files differnew file mode 100644 index 00000000..77fcefaa --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/GameRules.xml diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/de-DE.lang new file mode 100644 index 00000000..7311b639 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/es-ES.lang new file mode 100644 index 00000000..df610909 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/fr-FR.lang new file mode 100644 index 00000000..c01e36b4 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/it-IT.lang new file mode 100644 index 00000000..ef0b627c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/ja-JP.lang new file mode 100644 index 00000000..cae65a04 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/ko-KR.lang new file mode 100644 index 00000000..e67d5517 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/pt-BR.lang new file mode 100644 index 00000000..82f11c82 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/pt-PT.lang new file mode 100644 index 00000000..381f4567 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/zh-CHT.lang new file mode 100644 index 00000000..8c04f771 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/Microsoft/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/en-EN.lang new file mode 100644 index 00000000..cfda2eb8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/de-DE.lang new file mode 100644 index 00000000..02775ada --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/es-ES.lang new file mode 100644 index 00000000..2d91f76e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/fr-FR.lang new file mode 100644 index 00000000..eba483f8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/it-IT.lang new file mode 100644 index 00000000..f0883a6c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/ja-JP.lang new file mode 100644 index 00000000..b95f8692 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/ko-KR.lang new file mode 100644 index 00000000..87cb920d --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/pt-BR.lang new file mode 100644 index 00000000..bcfbbe79 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/pt-PT.lang new file mode 100644 index 00000000..917482c6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/zh-CHT.lang new file mode 100644 index 00000000..461ae695 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/Microsoft/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/en-EN.lang new file mode 100644 index 00000000..7d85ded6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Durango/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/da-DA.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/da-DA.lang new file mode 100644 index 00000000..efc321d9 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/da-DA.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har fundet {*progress*} af {*goal*} musikplader!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/de-DE.lang new file mode 100644 index 00000000..02775ada --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/es-ES.lang new file mode 100644 index 00000000..2d91f76e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/fi-FI.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/fi-FI.lang new file mode 100644 index 00000000..229e1e14 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/fi-FI.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Olet löytänyt {*progress*}/{*goal*} musiikkilevyistä!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/fr-FR.lang new file mode 100644 index 00000000..eba483f8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/it-IT.lang new file mode 100644 index 00000000..f0883a6c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ja-JP.lang new file mode 100644 index 00000000..b95f8692 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ko-KR.lang new file mode 100644 index 00000000..87cb920d --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/la-LAS.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/la-LAS.lang new file mode 100644 index 00000000..61f2842b --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/la-LAS.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>¡Has encontrado {*progress*} de {*goal*} discos!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/nl-NL.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/nl-NL.lang new file mode 100644 index 00000000..a1710841 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/nl-NL.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Je hebt {*progress*} van {*goal*} muziekplaten gevonden!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/no-NO.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/no-NO.lang new file mode 100644 index 00000000..a3d244be --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/no-NO.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har funnet {*progress*} av {*goal*} musikkplater!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pl-PL.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pl-PL.lang new file mode 100644 index 00000000..5b5c99d2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pl-PL.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Udało ci się znaleźć {*progress*} z {*goal*} płyt muzycznych!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pt-BR.lang new file mode 100644 index 00000000..bcfbbe79 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pt-PT.lang new file mode 100644 index 00000000..917482c6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ru-RU.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ru-RU.lang new file mode 100644 index 00000000..7a1c49fa --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/ru-RU.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Вы нашли {*progress*} из {*goal*} музыкальных дисков!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/sv-SV.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/sv-SV.lang new file mode 100644 index 00000000..3745f9da --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/sv-SV.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har hittat {*progress*} av {*goal*} musikskivor!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/tr-TR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/tr-TR.lang new file mode 100644 index 00000000..778361fb --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/tr-TR.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>{*goal*} Müzik Plağından {*progress*} tanesini buldun!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/zh-CHT.lang new file mode 100644 index 00000000..461ae695 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/Sony/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/en-EN.lang new file mode 100644 index 00000000..7d85ded6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Orbis/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/da-DA.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/da-DA.lang new file mode 100644 index 00000000..efc321d9 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/da-DA.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har fundet {*progress*} af {*goal*} musikplader!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/de-DE.lang new file mode 100644 index 00000000..02775ada --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/es-ES.lang new file mode 100644 index 00000000..2d91f76e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/fi-FI.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/fi-FI.lang new file mode 100644 index 00000000..229e1e14 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/fi-FI.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Olet löytänyt {*progress*}/{*goal*} musiikkilevyistä!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/fr-FR.lang new file mode 100644 index 00000000..eba483f8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/it-IT.lang new file mode 100644 index 00000000..f0883a6c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ja-JP.lang new file mode 100644 index 00000000..b95f8692 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ko-KR.lang new file mode 100644 index 00000000..87cb920d --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/la-LAS.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/la-LAS.lang new file mode 100644 index 00000000..61f2842b --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/la-LAS.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>¡Has encontrado {*progress*} de {*goal*} discos!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/nl-NL.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/nl-NL.lang new file mode 100644 index 00000000..a1710841 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/nl-NL.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Je hebt {*progress*} van {*goal*} muziekplaten gevonden!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/no-NO.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/no-NO.lang new file mode 100644 index 00000000..a3d244be --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/no-NO.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har funnet {*progress*} av {*goal*} musikkplater!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pl-PL.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pl-PL.lang new file mode 100644 index 00000000..5b5c99d2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pl-PL.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Udało ci się znaleźć {*progress*} z {*goal*} płyt muzycznych!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pt-BR.lang new file mode 100644 index 00000000..bcfbbe79 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pt-PT.lang new file mode 100644 index 00000000..917482c6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ru-RU.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ru-RU.lang new file mode 100644 index 00000000..7a1c49fa --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/ru-RU.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Вы нашли {*progress*} из {*goal*} музыкальных дисков!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/sv-SV.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/sv-SV.lang new file mode 100644 index 00000000..3745f9da --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/sv-SV.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har hittat {*progress*} av {*goal*} musikskivor!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/tr-TR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/tr-TR.lang new file mode 100644 index 00000000..778361fb --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/tr-TR.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>{*goal*} Müzik Plağından {*progress*} tanesini buldun!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/zh-CHT.lang new file mode 100644 index 00000000..461ae695 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/Sony/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/en-EN.lang new file mode 100644 index 00000000..7d85ded6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PS3/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/da-DA.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/da-DA.lang new file mode 100644 index 00000000..efc321d9 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/da-DA.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har fundet {*progress*} af {*goal*} musikplader!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/de-DE.lang new file mode 100644 index 00000000..02775ada --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/es-ES.lang new file mode 100644 index 00000000..2d91f76e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/fi-FI.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/fi-FI.lang new file mode 100644 index 00000000..229e1e14 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/fi-FI.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Olet löytänyt {*progress*}/{*goal*} musiikkilevyistä!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/fr-FR.lang new file mode 100644 index 00000000..eba483f8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/it-IT.lang new file mode 100644 index 00000000..f0883a6c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ja-JP.lang new file mode 100644 index 00000000..b95f8692 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ko-KR.lang new file mode 100644 index 00000000..87cb920d --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/la-LAS.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/la-LAS.lang new file mode 100644 index 00000000..61f2842b --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/la-LAS.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>¡Has encontrado {*progress*} de {*goal*} discos!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/nl-NL.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/nl-NL.lang new file mode 100644 index 00000000..a1710841 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/nl-NL.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Je hebt {*progress*} van {*goal*} muziekplaten gevonden!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/no-NO.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/no-NO.lang new file mode 100644 index 00000000..a3d244be --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/no-NO.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har funnet {*progress*} av {*goal*} musikkplater!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pl-PL.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pl-PL.lang new file mode 100644 index 00000000..5b5c99d2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pl-PL.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Udało ci się znaleźć {*progress*} z {*goal*} płyt muzycznych!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pt-BR.lang new file mode 100644 index 00000000..bcfbbe79 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pt-PT.lang new file mode 100644 index 00000000..917482c6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ru-RU.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ru-RU.lang new file mode 100644 index 00000000..7a1c49fa --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/ru-RU.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Вы нашли {*progress*} из {*goal*} музыкальных дисков!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/sv-SV.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/sv-SV.lang new file mode 100644 index 00000000..3745f9da --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/sv-SV.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>Du har hittat {*progress*} av {*goal*} musikskivor!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/tr-TR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/tr-TR.lang new file mode 100644 index 00000000..778361fb --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/tr-TR.lang @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>{*goal*} Müzik Plağından {*progress*} tanesini buldun!</value> + </data> +</root>
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/zh-CHT.lang new file mode 100644 index 00000000..461ae695 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/Sony/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/en-EN.lang new file mode 100644 index 00000000..7d85ded6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_PSVita/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/de-DE.lang new file mode 100644 index 00000000..02775ada --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/es-ES.lang new file mode 100644 index 00000000..2d91f76e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/fr-FR.lang new file mode 100644 index 00000000..eba483f8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/it-IT.lang new file mode 100644 index 00000000..f0883a6c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/ja-JP.lang new file mode 100644 index 00000000..b95f8692 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/ko-KR.lang new file mode 100644 index 00000000..87cb920d --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/pt-BR.lang new file mode 100644 index 00000000..bcfbbe79 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/pt-PT.lang new file mode 100644 index 00000000..917482c6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/zh-CHT.lang new file mode 100644 index 00000000..461ae695 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/Microsoft/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/en-EN.lang new file mode 100644 index 00000000..7d85ded6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Win64/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/de-DE.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/de-DE.lang new file mode 100644 index 00000000..02775ada --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/de-DE.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Du hast {*progress*} von {*goal*} Schallplatten gefunden!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/es-ES.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/es-ES.lang new file mode 100644 index 00000000..2d91f76e --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/es-ES.lang @@ -0,0 +1,5 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>¡Has encontrado {*progress*} de {*goal*} discos! +</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/fr-FR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/fr-FR.lang new file mode 100644 index 00000000..eba483f8 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/fr-FR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Vous avez trouvé {*progress*} / {*goal*} disques !</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/it-IT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/it-IT.lang new file mode 100644 index 00000000..f0883a6c --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/it-IT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Hai trovato {*progress*} dischi su {*goal*}!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/ja-JP.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/ja-JP.lang new file mode 100644 index 00000000..b95f8692 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/ja-JP.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>音楽ディスクを見つけました ({*progress*}/{*goal*})</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/ko-KR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/ko-KR.lang new file mode 100644 index 00000000..87cb920d --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/ko-KR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>음악 디스크 {*progress*}/{*goal*}장을 찾았습니다!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/pt-BR.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/pt-BR.lang new file mode 100644 index 00000000..bcfbbe79 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/pt-BR.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Você encontrou {*progress*} de {*goal*} discos de música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/pt-PT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/pt-PT.lang new file mode 100644 index 00000000..917482c6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/pt-PT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>Encontraste {*progress*} de {*goal*} Discos de Música!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/zh-CHT.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/zh-CHT.lang new file mode 100644 index 00000000..461ae695 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/Microsoft/zh-CHT.lang @@ -0,0 +1,4 @@ +<root> +<data name="IDS_COLLECTED_MUSIC_DISCS"><value>您已經找到 {*progress*}/{*goal*} 張唱片!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/en-EN.lang b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/en-EN.lang new file mode 100644 index 00000000..7d85ded6 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Strings_Xbox360/en-EN.lang @@ -0,0 +1,5 @@ +<root> + <data name="IDS_COLLECTED_MUSIC_DISCS"> + <value>You have found {*progress*} of {*goal*} Music Discs!</value> + </data> +</root> diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Tutorial.pck b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Tutorial.pck Binary files differnew file mode 100644 index 00000000..fc4b9530 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Tutorial.pck diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Tutorial.xml b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Tutorial.xml Binary files differnew file mode 100644 index 00000000..325eb3fd --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/Tutorial.xml diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/languages.loc b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/languages.loc Binary files differnew file mode 100644 index 00000000..50ef48d4 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/languages.loc diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Boat.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Boat.sch Binary files differnew file mode 100644 index 00000000..323e10d5 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Boat.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/CasTes1.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/CasTes1.sch Binary files differnew file mode 100644 index 00000000..de373732 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/CasTes1.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/CasTes2.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/CasTes2.sch Binary files differnew file mode 100644 index 00000000..a7140c60 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/CasTes2.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/JungleTemp.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/JungleTemp.sch Binary files differnew file mode 100644 index 00000000..9f6003b7 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/JungleTemp.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Lava.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Lava.sch Binary files differnew file mode 100644 index 00000000..1e162408 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Lava.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/MinecraftSign.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/MinecraftSign.sch Binary files differnew file mode 100644 index 00000000..3625264a --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/MinecraftSign.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Mushroom.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Mushroom.sch Binary files differnew file mode 100644 index 00000000..8b012bbe --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Mushroom.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/PillarHouse.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/PillarHouse.sch Binary files differnew file mode 100644 index 00000000..ae95dcc9 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/PillarHouse.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Pyramid.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Pyramid.sch Binary files differnew file mode 100644 index 00000000..5c7ea6b2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Pyramid.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/RuinedHouse.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/RuinedHouse.sch Binary files differnew file mode 100644 index 00000000..c7844400 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/RuinedHouse.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Ship.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Ship.sch Binary files differnew file mode 100644 index 00000000..6aa37242 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Ship.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Smithy.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Smithy.sch Binary files differnew file mode 100644 index 00000000..c1847304 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Smithy.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/SnowHouse.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/SnowHouse.sch Binary files differnew file mode 100644 index 00000000..17a3b250 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/SnowHouse.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Spider.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Spider.sch Binary files differnew file mode 100644 index 00000000..e6049259 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Spider.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Stairs.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Stairs.sch Binary files differnew file mode 100644 index 00000000..33943c2a --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Stairs.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/StoneCircle.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/StoneCircle.sch Binary files differnew file mode 100644 index 00000000..0c06ec53 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/StoneCircle.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/StoneTemp.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/StoneTemp.sch Binary files differnew file mode 100644 index 00000000..f227b0ec --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/StoneTemp.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Tower.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Tower.sch Binary files differnew file mode 100644 index 00000000..102fdff2 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/Tower.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/UWChamber.sch b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/UWChamber.sch Binary files differnew file mode 100644 index 00000000..f1c0e2c7 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/Tutorial/schematics/UWChamber.sch diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/launchCMD.cmd b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/launchCMD.cmd new file mode 100644 index 00000000..d21751d7 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/BuildOnly/launchCMD.cmd @@ -0,0 +1 @@ +cmd &
\ No newline at end of file diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial.pck b/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial.pck Binary files differnew file mode 100644 index 00000000..8f44945b --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial.pck diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial_Durango.pck b/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial_Durango.pck Binary files differnew file mode 100644 index 00000000..d5e1d6b0 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial_Durango.pck diff --git a/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial_Orbis.pck b/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial_Orbis.pck Binary files differnew file mode 100644 index 00000000..fc4b9530 --- /dev/null +++ b/Minecraft.Client/Common/res/TitleUpdate/GameRules/Tutorial_Orbis.pck |
