mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Merge remote-tracking branch 'origin/master' into brigadier-dev
This commit is contained in:
commit
5d2589b10f
185 changed files with 14563 additions and 90684 deletions
2
.github/ISSUE_TEMPLATE/bug_report_form.yaml
vendored
2
.github/ISSUE_TEMPLATE/bug_report_form.yaml
vendored
|
|
@ -9,7 +9,7 @@ body:
|
|||
attributes:
|
||||
label: Prerequisites
|
||||
options:
|
||||
- label: I made sure I am running the latest [development build](https://ci.appveyor.com/project/ORelio/minecraft-console-client/build/artifacts)
|
||||
- label: I made sure I am running the latest [development build](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
required: true
|
||||
- label: I tried to [look for similar issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue) before opening a new one
|
||||
required: true
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@ body:
|
|||
attributes:
|
||||
label: Prerequisites
|
||||
options:
|
||||
- label: I have read and understood the [user manual](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config)
|
||||
- label: I have read and understood the [user manual](https://mccteam.github.io/guide/)
|
||||
required: true
|
||||
- label: I made sure I am running the latest [development build](https://ci.appveyor.com/project/ORelio/Minecraft-Console-Client/build/artifacts)
|
||||
- label: I made sure I am running the latest [development build](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
required: true
|
||||
- label: I tried to [look for similar feature requests](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue) before opening a new one
|
||||
required: true
|
||||
|
|
|
|||
151
.github/workflows/build-MCC-only.yml
vendored
Normal file
151
.github/workflows/build-MCC-only.yml
vendored
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
name: Build MCC
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
PROJECT: "MinecraftClient"
|
||||
target-version: "net6.0"
|
||||
compile-flags: "--self-contained=true -c Release -p:UseAppHost=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=None"
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: 'true'
|
||||
|
||||
- name: Sync translations from crowdin
|
||||
uses: crowdin/github-action@1.5.0
|
||||
with:
|
||||
upload_translations: true
|
||||
download_translations: true
|
||||
|
||||
localization_branch_name: l10n_master
|
||||
create_pull_request: false
|
||||
|
||||
base_path: ${{ github.workspace }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||
|
||||
- name: Setup Project Path
|
||||
run: |
|
||||
echo project-path=${{ github.workspace }}/${{ env.PROJECT }} >> $GITHUB_ENV
|
||||
|
||||
- name: Setup Output Paths
|
||||
run: |
|
||||
echo win-x64-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/win-x64/publish/ >> $GITHUB_ENV
|
||||
echo win-x86-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/win-x86/publish/ >> $GITHUB_ENV
|
||||
echo linux-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/linux-x64/publish/ >> $GITHUB_ENV
|
||||
echo osx-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/osx-x64/publish/ >> $GITHUB_ENV
|
||||
echo linux-arm64-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/linux-arm64/publish/ >> $GITHUB_ENV
|
||||
|
||||
- name: Setup .NET SDK
|
||||
uses: actions/setup-dotnet@v2.1.0
|
||||
|
||||
- name: Get Version DateTime
|
||||
id: date-version
|
||||
uses: nanzm/get-time-action@v1.1
|
||||
with:
|
||||
timeZone: 0
|
||||
format: 'YYYY-MM-DD'
|
||||
|
||||
- name: VersionInfo
|
||||
run: |
|
||||
COMMIT=$(echo ${{ github.sha }} | cut -c 1-7)
|
||||
echo '' >> ${{ env.project-path }}/Properties/AssemblyInfo.cs
|
||||
echo "[assembly: AssemblyConfiguration(\"GitHub build ${{ github.run_number }}, built on ${{ steps.date-version.outputs.time }} from commit $COMMIT\")]" >> ${{ env.project-path }}/Properties/AssemblyInfo.cs
|
||||
|
||||
- name: Build for Windows x64
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r win-x64 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip Windows x64 Build
|
||||
run: zip -qq -r windows-x64.zip *
|
||||
working-directory: ${{ env.win-x64-out-path }}
|
||||
|
||||
- name: Build for Windows x86
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r win-x86 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip Windows x86 Build
|
||||
run: zip -qq -r windows-x86.zip *
|
||||
working-directory: ${{ env.win-x86-out-path }}
|
||||
|
||||
- name: Build for Linux
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r linux-x64 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip Linux Build
|
||||
run: zip -qq -r linux.zip *
|
||||
working-directory: ${{ env.linux-out-path }}
|
||||
|
||||
- name: Build for ARM64 Linux
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r linux-arm64 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip ARM64 Linux Build
|
||||
run: zip -qq -r linux-arm64.zip *
|
||||
working-directory: ${{ env.linux-arm64-out-path }}
|
||||
|
||||
- name: Build for OSX
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r osx-x64 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip OSX Build
|
||||
run: zip -qq -r osx.zip *
|
||||
working-directory: ${{ env.osx-out-path }}
|
||||
|
||||
- name: Get Release DateTime
|
||||
id: date-release
|
||||
uses: nanzm/get-time-action@v1.1
|
||||
with:
|
||||
timeZone: 0
|
||||
format: 'YYYYMMDD'
|
||||
|
||||
- name: Windows x64 Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.win-x64-out-path }}windows-x64.zip
|
||||
assetName: ${{ env.PROJECT }}-windows-x64.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: Windows x86 Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.win-x86-out-path }}windows-x86.zip
|
||||
assetName: ${{ env.PROJECT }}-windows-x86.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: Linux Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.linux-out-path }}linux.zip
|
||||
assetName: ${{ env.PROJECT }}-linux.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: Linux ARM64 Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.linux-arm64-out-path }}linux-arm64.zip
|
||||
assetName: ${{ env.PROJECT }}-linux-arm64.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: OSX Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.osx-out-path }}osx.zip
|
||||
assetName: ${{ env.PROJECT }}-osx.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
87
.github/workflows/build-and-release.yml
vendored
87
.github/workflows/build-and-release.yml
vendored
|
|
@ -1,8 +1,10 @@
|
|||
name: Build
|
||||
name: Build MCC and Documents
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
PROJECT: "MinecraftClient"
|
||||
|
|
@ -10,18 +12,42 @@ env:
|
|||
compile-flags: "--self-contained=true -c Release -p:UseAppHost=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=None"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ !contains(github.event.head_commit.message, 'README') }}
|
||||
if: ${{ !contains(github.event.head_commit.message, 'SKIP_BUILD') }}
|
||||
timeout-minutes: 15
|
||||
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: 'true'
|
||||
|
||||
- name: Download translations from crowdin
|
||||
uses: crowdin/github-action@1.5.0
|
||||
with:
|
||||
upload_translations: true
|
||||
download_translations: true
|
||||
|
||||
localization_branch_name: l10n_master
|
||||
create_pull_request: false
|
||||
|
||||
base_path: ${{ github.workspace }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||
|
||||
- name: Setup Project Path
|
||||
run: |
|
||||
echo project-path=${{ github.workspace }}/${{ env.PROJECT }} >> $GITHUB_ENV
|
||||
|
||||
- name: Setup Output Paths
|
||||
run: |
|
||||
echo win-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/win-x64/publish/ >> $GITHUB_ENV
|
||||
echo win-x64-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/win-x64/publish/ >> $GITHUB_ENV
|
||||
echo win-x86-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/win-x86/publish/ >> $GITHUB_ENV
|
||||
echo linux-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/linux-x64/publish/ >> $GITHUB_ENV
|
||||
echo osx-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/osx-x64/publish/ >> $GITHUB_ENV
|
||||
echo linux-arm64-out-path=${{ env.project-path }}/bin/Release/${{ env.target-version }}/linux-arm64/publish/ >> $GITHUB_ENV
|
||||
|
|
@ -29,15 +55,9 @@ jobs:
|
|||
- name: Setup .NET SDK
|
||||
uses: actions/setup-dotnet@v2.1.0
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: 'true'
|
||||
|
||||
- name: Get Version DateTime
|
||||
id: date-version
|
||||
uses: nanzm/get-time-action@v1.0
|
||||
uses: nanzm/get-time-action@v1.1
|
||||
with:
|
||||
timeZone: 0
|
||||
format: 'YYYY-MM-DD'
|
||||
|
|
@ -48,12 +68,19 @@ jobs:
|
|||
echo '' >> ${{ env.project-path }}/Properties/AssemblyInfo.cs
|
||||
echo "[assembly: AssemblyConfiguration(\"GitHub build ${{ github.run_number }}, built on ${{ steps.date-version.outputs.time }} from commit $COMMIT\")]" >> ${{ env.project-path }}/Properties/AssemblyInfo.cs
|
||||
|
||||
- name: Build for Windows
|
||||
- name: Build for Windows x64
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r win-x64 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip Windows Build
|
||||
run: zip -qq -r windows.zip *
|
||||
working-directory: ${{ env.win-out-path }}
|
||||
- name: Zip Windows x64 Build
|
||||
run: zip -qq -r windows-x64.zip *
|
||||
working-directory: ${{ env.win-x64-out-path }}
|
||||
|
||||
- name: Build for Windows x86
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r win-x86 ${{ env.compile-flags }}
|
||||
|
||||
- name: Zip Windows x86 Build
|
||||
run: zip -qq -r windows-x86.zip *
|
||||
working-directory: ${{ env.win-x86-out-path }}
|
||||
|
||||
- name: Build for Linux
|
||||
run: dotnet publish ${{ env.project-path }}.sln -f ${{ env.target-version }} -r linux-x64 ${{ env.compile-flags }}
|
||||
|
|
@ -78,18 +105,27 @@ jobs:
|
|||
|
||||
- name: Get Release DateTime
|
||||
id: date-release
|
||||
uses: nanzm/get-time-action@v1.0
|
||||
uses: nanzm/get-time-action@v1.1
|
||||
with:
|
||||
timeZone: 0
|
||||
format: 'YYYYMMDD'
|
||||
|
||||
- name: Windows Release
|
||||
- name: Windows x64 Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.win-out-path }}windows.zip
|
||||
assetName: ${{ env.PROJECT }}-windows.zip
|
||||
filePath: ${{ env.win-x64-out-path }}windows-x64.zip
|
||||
assetName: ${{ env.PROJECT }}-windows-x64.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: Windows x86 Release
|
||||
uses: tix-factory/release-manager@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
mode: uploadReleaseAsset
|
||||
filePath: ${{ env.win-x86-out-path }}windows-x86.zip
|
||||
assetName: ${{ env.PROJECT }}-windows-x86.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: Linux Release
|
||||
|
|
@ -118,3 +154,14 @@ jobs:
|
|||
filePath: ${{ env.osx-out-path }}osx.zip
|
||||
assetName: ${{ env.PROJECT }}-osx.zip
|
||||
tag: ${{ format('{0}-{1}', steps.date-release.outputs.time, github.run_number) }}
|
||||
|
||||
- name: Deploy Documentation Site
|
||||
uses: jenkey2011/vuepress-deploy@master
|
||||
env:
|
||||
ACCESS_TOKEN: ${{ secrets.GH_PAGES_TOKEN }}
|
||||
TARGET_REPO: MCCTeam/MCCTeam.github.io
|
||||
TARGET_BRANCH: master
|
||||
BUILD_SCRIPT: yarn --cwd ./docs/ && yarn --cwd ./docs/ docs:build
|
||||
BUILD_DIR: docs/.vuepress/dist
|
||||
COMMIT_MESSAGE: Build from ${{ github.sha }}
|
||||
CNAME: https://mccteam.github.io
|
||||
|
|
|
|||
42
.github/workflows/deploy-doc-only.yml
vendored
Normal file
42
.github/workflows/deploy-doc-only.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
name: Build Documents
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: 'true'
|
||||
|
||||
- name: Sync translations from crowdin
|
||||
uses: crowdin/github-action@1.5.0
|
||||
with:
|
||||
upload_translations: true
|
||||
download_translations: true
|
||||
|
||||
localization_branch_name: l10n_master
|
||||
create_pull_request: false
|
||||
|
||||
base_path: ${{ github.workspace }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||
|
||||
- name: Deploy Documentation Site
|
||||
uses: jenkey2011/vuepress-deploy@master
|
||||
env:
|
||||
ACCESS_TOKEN: ${{ secrets.GH_PAGES_TOKEN }}
|
||||
TARGET_REPO: MCCTeam/MCCTeam.github.io
|
||||
TARGET_BRANCH: master
|
||||
BUILD_SCRIPT: yarn --cwd ./docs/ && yarn --cwd ./docs/ docs:build
|
||||
BUILD_DIR: docs/.vuepress/dist
|
||||
COMMIT_MESSAGE: Build from ${{ github.sha }}
|
||||
CNAME: https://mccteam.github.io
|
||||
31
.github/workflows/sync-translations-only.yml
vendored
Normal file
31
.github/workflows/sync-translations-only.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
name: Sync Translations
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Sync:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: 'true'
|
||||
|
||||
- name: Sync translations from crowdin
|
||||
uses: crowdin/github-action@1.5.0
|
||||
with:
|
||||
upload_translations: true
|
||||
download_translations: true
|
||||
|
||||
localization_branch_name: l10n_master
|
||||
create_pull_request: false
|
||||
|
||||
base_path: ${{ github.workspace }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
|
||||
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -11,7 +11,6 @@ SessionCache.ini
|
|||
.*
|
||||
!/.github
|
||||
/packages
|
||||
/packages
|
||||
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
|
|
@ -402,3 +401,16 @@ FodyWeavers.xsd
|
|||
.idea/
|
||||
*.sln.iml
|
||||
*.sln.iml
|
||||
|
||||
# docs
|
||||
!/docs/.vuepress
|
||||
/docs/.vuepress/dist
|
||||
|
||||
# translations
|
||||
/MinecraftClient/Resources/Translations/Translations.*.resx
|
||||
/MinecraftClient/Resources/AsciiArt/AsciiArt.*.resx
|
||||
|
||||
/docs/.vuepress/translations/*.json
|
||||
!/docs/.vuepress/translations/en.json
|
||||
|
||||
/docs/l10n/
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ namespace MinecraftClient.ChatBots
|
|||
[TomlInlineComment("$config.ChatBot.AutoDig.Mode$")]
|
||||
public ModeType Mode = ModeType.lookat;
|
||||
|
||||
[TomlInlineComment("$config.ChatBot.AutoDig.Locations$")]
|
||||
[TomlPrecedingComment("$config.ChatBot.AutoDig.Locations$")]
|
||||
public Coordination[] Locations = new Coordination[] { new(123.5, 64, 234.5), new(124.5, 63, 235.5) };
|
||||
|
||||
[TomlInlineComment("$config.ChatBot.AutoDig.Location_Order$")]
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ namespace MinecraftClient.Commands
|
|||
|
||||
if (Settings.Config.Main.SetServerIP(new Settings.MainConfigHealper.MainConfig.ServerInfoConfig(args[0]), true))
|
||||
{
|
||||
Program.Restart();
|
||||
Program.Restart(keepAccountAndServerSettings: true);
|
||||
return "";
|
||||
}
|
||||
else return string.Format(Translations.cmd_connect_invalid_ip, args[0]);
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ namespace MinecraftClient.Commands
|
|||
return string.Format(Translations.cmd_connect_unknown, args[0]);
|
||||
}
|
||||
}
|
||||
Program.Restart();
|
||||
Program.Restart(keepAccountAndServerSettings: true);
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -746,7 +746,7 @@ namespace MinecraftClient
|
|||
/// <param name="hard">Marks if bots need to be hard reloaded</param>
|
||||
public void ReloadSettings()
|
||||
{
|
||||
Program.ReloadSettings();
|
||||
Program.ReloadSettings(true);
|
||||
ReloadBots();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -111,6 +111,7 @@ namespace MinecraftClient
|
|||
}
|
||||
|
||||
//Process ini configuration file
|
||||
{
|
||||
bool loadSucceed, needWriteDefaultSetting, newlyGenerated = false;
|
||||
if (args.Length >= 1 && File.Exists(args[0]) && Settings.ToLowerIfNeed(Path.GetExtension(args[0])) == ".ini")
|
||||
{
|
||||
|
|
@ -183,12 +184,6 @@ namespace MinecraftClient
|
|||
ConsoleIO.WriteLine(string.Format(Translations.mcc_help_us_translate, Settings.TranslationProjectUrl));
|
||||
WriteBackSettings(true); // format
|
||||
}
|
||||
|
||||
bool needPromptUpdate = true;
|
||||
if (Settings.CheckUpdate(Config.Head.CurrentVersion, Config.Head.LatestVersion))
|
||||
{
|
||||
needPromptUpdate = false;
|
||||
ConsoleIO.WriteLineFormatted(string.Format(Translations.mcc_has_update, Settings.GithubReleaseUrl));
|
||||
}
|
||||
|
||||
//Other command-line arguments
|
||||
|
|
@ -280,20 +275,22 @@ namespace MinecraftClient
|
|||
Console.WriteLine(string.Format(Translations.mcc_generator_done, dataGenerator, dataPath));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
if (Config.Main.Advanced.ConsoleTitle != "")
|
||||
{
|
||||
Settings.LoadArguments(args);
|
||||
}
|
||||
catch (ArgumentException e)
|
||||
{
|
||||
InternalConfig.InteractiveMode = false;
|
||||
HandleFailure(e.Message);
|
||||
return;
|
||||
}
|
||||
InternalConfig.Username = "New Window";
|
||||
Console.Title = Config.AppVar.ExpandVars(Config.Main.Advanced.ConsoleTitle);
|
||||
}
|
||||
|
||||
// Check for updates
|
||||
{
|
||||
bool needPromptUpdate = true;
|
||||
if (Settings.CheckUpdate(Config.Head.CurrentVersion, Config.Head.LatestVersion))
|
||||
{
|
||||
needPromptUpdate = false;
|
||||
ConsoleIO.WriteLineFormatted(string.Format(Translations.mcc_has_update, Settings.GithubReleaseUrl));
|
||||
}
|
||||
Task.Run(() =>
|
||||
{
|
||||
HttpClientHandler httpClientHandler = new() { AllowAutoRedirect = false };
|
||||
|
|
@ -327,11 +324,21 @@ namespace MinecraftClient
|
|||
httpClient.Dispose();
|
||||
httpClientHandler.Dispose();
|
||||
});
|
||||
}
|
||||
|
||||
if (Config.Main.Advanced.ConsoleTitle != "")
|
||||
// Load command-line arguments
|
||||
if (args.Length >= 1)
|
||||
{
|
||||
InternalConfig.Username = "New Window";
|
||||
Console.Title = Config.AppVar.ExpandVars(Config.Main.Advanced.ConsoleTitle);
|
||||
try
|
||||
{
|
||||
Settings.LoadArguments(args);
|
||||
}
|
||||
catch (ArgumentException e)
|
||||
{
|
||||
InternalConfig.InteractiveMode = false;
|
||||
HandleFailure(e.Message);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
//Test line to troubleshoot invisible colors
|
||||
|
|
@ -382,26 +389,22 @@ namespace MinecraftClient
|
|||
|
||||
//Asking the user to type in missing data such as Username and Password
|
||||
bool useBrowser = Config.Main.General.AccountType == LoginType.microsoft && Config.Main.General.Method == LoginMethod.browser;
|
||||
if (string.IsNullOrEmpty(InternalConfig.Login) && !useBrowser)
|
||||
if (string.IsNullOrWhiteSpace(InternalConfig.Account.Login) && !useBrowser)
|
||||
{
|
||||
ConsoleIO.WriteLine(ConsoleIO.BasicIO ? Translations.mcc_login_basic_io : Translations.mcc_login);
|
||||
InternalConfig.Login = ConsoleIO.ReadLine().Trim();
|
||||
if (string.IsNullOrEmpty(InternalConfig.Login))
|
||||
InternalConfig.Account.Login = ConsoleIO.ReadLine().Trim();
|
||||
if (string.IsNullOrWhiteSpace(InternalConfig.Account.Login))
|
||||
{
|
||||
HandleFailure(Translations.error_login_blocked, false, ChatBot.DisconnectReason.LoginRejected);
|
||||
return;
|
||||
}
|
||||
}
|
||||
InternalConfig.Username = InternalConfig.Login;
|
||||
if (string.IsNullOrEmpty(Config.Main.General.Account.Password) && string.IsNullOrEmpty(InternalConfig.Password) && !useBrowser &&
|
||||
(Config.Main.Advanced.SessionCache == CacheType.none || !SessionCache.Contains(Settings.ToLowerIfNeed(InternalConfig.Login))))
|
||||
InternalConfig.Username = InternalConfig.Account.Login;
|
||||
if (string.IsNullOrWhiteSpace(InternalConfig.Account.Password) && !useBrowser &&
|
||||
(Config.Main.Advanced.SessionCache == CacheType.none || !SessionCache.Contains(ToLowerIfNeed(InternalConfig.Account.Login))))
|
||||
{
|
||||
RequestPassword();
|
||||
}
|
||||
else if (string.IsNullOrEmpty(InternalConfig.Password))
|
||||
{
|
||||
InternalConfig.Password = Config.Main.General.Account.Password;
|
||||
}
|
||||
|
||||
startupargs = args;
|
||||
InitializeClient();
|
||||
|
|
@ -412,10 +415,12 @@ namespace MinecraftClient
|
|||
/// </summary>
|
||||
private static void RequestPassword()
|
||||
{
|
||||
ConsoleIO.WriteLine(ConsoleIO.BasicIO ? string.Format(Translations.mcc_password_basic_io, InternalConfig.Login) + "\n" : Translations.mcc_password);
|
||||
ConsoleIO.WriteLine(ConsoleIO.BasicIO ? string.Format(Translations.mcc_password_basic_io, InternalConfig.Account.Login) + "\n" : Translations.mcc_password);
|
||||
string? password = ConsoleIO.BasicIO ? Console.ReadLine() : ConsoleIO.ReadPassword();
|
||||
if (password == null || password == string.Empty) { password = "-"; }
|
||||
InternalConfig.Password = password;
|
||||
if (string.IsNullOrWhiteSpace(password))
|
||||
InternalConfig.Account.Password = "-";
|
||||
else
|
||||
InternalConfig.Account.Password = password;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -430,8 +435,8 @@ namespace MinecraftClient
|
|||
|
||||
ProtocolHandler.LoginResult result = ProtocolHandler.LoginResult.LoginRequired;
|
||||
|
||||
string loginLower = Settings.ToLowerIfNeed(InternalConfig.Login);
|
||||
if (InternalConfig.Password == "-")
|
||||
string loginLower = ToLowerIfNeed(InternalConfig.Account.Login);
|
||||
if (InternalConfig.Account.Password == "-")
|
||||
{
|
||||
ConsoleIO.WriteLineFormatted(Translations.mcc_offline, acceptnewlines: true);
|
||||
result = ProtocolHandler.LoginResult.Success;
|
||||
|
|
@ -463,8 +468,8 @@ namespace MinecraftClient
|
|||
}
|
||||
|
||||
if (result != ProtocolHandler.LoginResult.Success
|
||||
&& InternalConfig.Password == ""
|
||||
&& Config.Main.General.AccountType == LoginType.mojang)
|
||||
&& string.IsNullOrWhiteSpace(InternalConfig.Account.Password)
|
||||
&& !(Config.Main.General.AccountType == LoginType.microsoft && Config.Main.General.Method == LoginMethod.browser))
|
||||
RequestPassword();
|
||||
}
|
||||
else ConsoleIO.WriteLineFormatted(string.Format(Translations.mcc_session_valid, session.PlayerName));
|
||||
|
|
@ -473,7 +478,7 @@ namespace MinecraftClient
|
|||
if (result != ProtocolHandler.LoginResult.Success)
|
||||
{
|
||||
ConsoleIO.WriteLine(string.Format(Translations.mcc_connecting, Config.Main.General.AccountType == LoginType.mojang ? "Minecraft.net" : "Microsoft"));
|
||||
result = ProtocolHandler.GetLogin(InternalConfig.Login, InternalConfig.Password, Config.Main.General.AccountType, out session);
|
||||
result = ProtocolHandler.GetLogin(InternalConfig.Account.Login, InternalConfig.Account.Password, Config.Main.General.AccountType, out session);
|
||||
}
|
||||
|
||||
if (result == ProtocolHandler.LoginResult.Success && Config.Main.Advanced.SessionCache != CacheType.none)
|
||||
|
|
@ -582,8 +587,10 @@ namespace MinecraftClient
|
|||
}
|
||||
}
|
||||
|
||||
if (Config.Main.General.AccountType == LoginType.microsoft && InternalConfig.Password != "-" &&
|
||||
Config.Signature.LoginWithSecureProfile && protocolversion >= 759 /* 1.19 and above */)
|
||||
if (Config.Main.General.AccountType == LoginType.microsoft
|
||||
&& (InternalConfig.Account.Password != "-" || Config.Main.General.Method == LoginMethod.browser)
|
||||
&& Config.Signature.LoginWithSecureProfile
|
||||
&& protocolversion >= 759 /* 1.19 and above */)
|
||||
{
|
||||
// Load cached profile key from disk if necessary
|
||||
if (Config.Main.Advanced.ProfileKeyCache == CacheType.disk)
|
||||
|
|
@ -674,9 +681,9 @@ namespace MinecraftClient
|
|||
/// <summary>
|
||||
/// Reloads settings
|
||||
/// </summary>
|
||||
public static void ReloadSettings()
|
||||
public static void ReloadSettings(bool keepAccountAndServerSettings = false)
|
||||
{
|
||||
if(Settings.LoadFromFile(settingsIniPath).Item1)
|
||||
if(Settings.LoadFromFile(settingsIniPath, keepAccountAndServerSettings).Item1)
|
||||
ConsoleIO.WriteLine(string.Format(Translations.config_load, settingsIniPath));
|
||||
}
|
||||
|
||||
|
|
@ -692,7 +699,7 @@ namespace MinecraftClient
|
|||
/// Disconnect the current client from the server and restart it
|
||||
/// </summary>
|
||||
/// <param name="delaySeconds">Optional delay, in seconds, before restarting</param>
|
||||
public static void Restart(int delaySeconds = 0)
|
||||
public static void Restart(int delaySeconds = 0, bool keepAccountAndServerSettings = false)
|
||||
{
|
||||
ConsoleInteractive.ConsoleReader.StopReadThread();
|
||||
new Thread(new ThreadStart(delegate
|
||||
|
|
@ -705,7 +712,7 @@ namespace MinecraftClient
|
|||
Thread.Sleep(delaySeconds * 1000);
|
||||
}
|
||||
ConsoleIO.WriteLine(Translations.mcc_restart);
|
||||
ReloadSettings();
|
||||
ReloadSettings(keepAccountAndServerSettings);
|
||||
InitializeClient();
|
||||
})).Start();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -535,7 +535,7 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
{
|
||||
session.ServerIDhash = serverIDhash;
|
||||
session.ServerPublicKey = serverPublicKey;
|
||||
SessionCache.Store(InternalConfig.Login.ToLower(), session);
|
||||
SessionCache.Store(InternalConfig.Account.Login.ToLower(), session);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -749,10 +749,13 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
|
||||
// Teleport confirm packet
|
||||
SendPacket(PacketTypesOut.TeleportConfirm, dataTypes.GetVarInt(teleportID));
|
||||
if (Config.Main.Advanced.TemporaryFixBadpacket)
|
||||
{
|
||||
SendLocationUpdate(location, true, yaw, pitch, true);
|
||||
if (teleportID == 1)
|
||||
SendLocationUpdate(location, true, yaw, pitch, true);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
handler.UpdateLocation(location, yaw, pitch);
|
||||
|
|
@ -2001,7 +2004,7 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
{
|
||||
session.ServerIDhash = serverIDhash;
|
||||
session.ServerPublicKey = serverPublicKey;
|
||||
SessionCache.Store(InternalConfig.Login.ToLower(), session);
|
||||
SessionCache.Store(InternalConfig.Account.Login.ToLower(), session);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -2557,7 +2560,7 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
/// <returns>True if the location update was successfully sent</returns>
|
||||
public bool SendLocationUpdate(Location location, bool onGround, float? yaw, float? pitch)
|
||||
{
|
||||
return SendLocationUpdate(location, onGround, yaw, pitch, false);
|
||||
return SendLocationUpdate(location, onGround, yaw, pitch, true);
|
||||
}
|
||||
|
||||
public bool SendLocationUpdate(Location location, bool onGround, float? yaw = null, float? pitch = null, bool forceUpdate = false)
|
||||
|
|
@ -2567,6 +2570,8 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
byte[] yawpitch = Array.Empty<byte>();
|
||||
PacketTypesOut packetType = PacketTypesOut.PlayerPosition;
|
||||
|
||||
if (Config.Main.Advanced.TemporaryFixBadpacket)
|
||||
{
|
||||
if (yaw.HasValue && pitch.HasValue && (forceUpdate || yaw.Value != LastYaw || pitch.Value != LastPitch))
|
||||
{
|
||||
yawpitch = dataTypes.ConcatBytes(dataTypes.GetFloat(yaw.Value), dataTypes.GetFloat(pitch.Value));
|
||||
|
|
@ -2574,6 +2579,17 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
|
||||
LastYaw = yaw.Value; LastPitch = pitch.Value;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (yaw.HasValue && pitch.HasValue)
|
||||
{
|
||||
yawpitch = dataTypes.ConcatBytes(dataTypes.GetFloat(yaw.Value), dataTypes.GetFloat(pitch.Value));
|
||||
packetType = PacketTypesOut.PlayerPositionAndRotation;
|
||||
|
||||
LastYaw = yaw.Value; LastPitch = pitch.Value;
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
|
|
|
|||
|
|
@ -570,11 +570,12 @@ namespace MinecraftClient.Protocol
|
|||
Microsoft.OpenBrowser(Microsoft.SignInUrl);
|
||||
else
|
||||
Microsoft.OpenBrowser(Microsoft.GetSignInUrlWithHint(loginHint));
|
||||
ConsoleIO.WriteLine("Your browser should open automatically. If not, open the link below in your browser.");
|
||||
ConsoleIO.WriteLine(Translations.mcc_browser_open);
|
||||
ConsoleIO.WriteLine("\n" + Microsoft.SignInUrl + "\n");
|
||||
|
||||
ConsoleIO.WriteLine("Paste your code here");
|
||||
ConsoleIO.WriteLine(Translations.mcc_browser_login_code);
|
||||
string code = ConsoleIO.ReadLine();
|
||||
ConsoleIO.WriteLine(string.Format(Translations.mcc_connecting, "Microsoft"));
|
||||
|
||||
var msaResponse = Microsoft.RequestAccessToken(code);
|
||||
return MicrosoftLogin(msaResponse, out session);
|
||||
|
|
@ -604,7 +605,7 @@ namespace MinecraftClient.Protocol
|
|||
session.PlayerID = profile.UUID;
|
||||
session.ID = accessToken;
|
||||
session.RefreshToken = msaResponse.RefreshToken;
|
||||
InternalConfig.Login = msaResponse.Email;
|
||||
InternalConfig.Account.Login = msaResponse.Email;
|
||||
return LoginResult.Success;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -1,367 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Container.BrewingStand" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Brewing Stand ║
|
||||
║ ╔═══╗ ⡈ ⠄╔═══╗ ║
|
||||
║ ║ 4 ╟───╮ ⢠⡐⢈║ 3 ║ ┃ ║
|
||||
║ ╚═══╝ ╭─╯ ⠂⡠⢂╚╦╦╦╝ ┃ ║
|
||||
║ ╰───■■■■ ║║║ ▼ ║
|
||||
║ ╔═══╦═╝║╚═╦═══╗ ║
|
||||
║ ║ 0 ║╔═╩═╗║ 2 ║ ║
|
||||
║ ╚═══╝║ 1 ║╚═══╝ ║
|
||||
║ Inventory ╚═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Crafting" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Crafting ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 1 ║ 2 ║ 3 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╔═══╗ ║
|
||||
║ ║ 4 ║ 5 ║ 6 ║ ━━▶ ║ 0 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ╚═══╝ ║
|
||||
║ ║ 7 ║ 8 ║ 9 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║45 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.EnchantingTable" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Enchant ║
|
||||
║ ╔════════════════════╗ ║
|
||||
║ ║ Top ║ ║
|
||||
║ ╔═══╦═══╗ ╠════════════════════╣ ║
|
||||
║ ║ 0 ║ 1 ║ ║ Middle ║ ║
|
||||
║ ╚═══╩═══╝ ╠════════════════════╣ ║
|
||||
║ ║ Bottom ║ ║
|
||||
║ ╚════════════════════╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║11 ║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║20 ║21 ║22 ║23 ║24 ║25 ║26 ║27 ║28 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║29 ║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Furnace" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 0 ║ ║
|
||||
║ ╚═══╝ ╔═══╗ ║
|
||||
║ ⠂⡠⢂ ━━▶ ║ 2 ║ ║
|
||||
║ ⠂⡠⢂ ╚═══╝ ║
|
||||
║ ╔═══╗ ║
|
||||
║ ║ 1 ║ ║
|
||||
║ ╚═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_3x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 3 ║ 4 ║ 5 ║ ║
|
||||
║ ╠═══╬═══╬═══╣ ║
|
||||
║ ║ 6 ║ 7 ║ 8 ║ ║
|
||||
║ ╚═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x3" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Generic_9x6" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║45 ║46 ║47 ║48 ║49 ║50 ║51 ║52 ║53 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║54 ║55 ║56 ║57 ║58 ║59 ║60 ║61 ║62 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║63 ║64 ║65 ║66 ║67 ║68 ║69 ║70 ║71 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║72 ║73 ║74 ║75 ║76 ║77 ║78 ║79 ║80 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║81 ║82 ║83 ║84 ║85 ║86 ║87 ║88 ║89 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Grindstone" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Repair & Disenchant ║
|
||||
║ ╔═════════╗ ║
|
||||
║ ║ ╔═══╗ ║ ║
|
||||
║ ╔══║ ║ 0 ║ ║══╗ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ║
|
||||
║ ║ ║ ╔═══╗ ║ ║ ╔═══╗ ║
|
||||
║ ║ ║ ║ 1 ║ ║ ║ ━━▶ ║ 2 ║ ║
|
||||
║ ║ ║ ╚═══╝ ║ ║ ╚═══╝ ║
|
||||
║ ║ ╠═════════╣ ║ ║
|
||||
║ ║ ║ ║ ║ ║
|
||||
║ ╚══╝ ╚══╝ ║
|
||||
║ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 3 ║ 4 ║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║12 ║13 ║14 ║15 ║16 ║17 ║18 ║19 ║20 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║21 ║22 ║23 ║24 ║25 ║26 ║27 ║38 ║29 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║30 ║31 ║32 ║33 ║34 ║35 ║36 ║37 ║38 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container.Hopper" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║ Container ║
|
||||
║ ╔═══╦═══╦═══╦═══╦═══╗ ║
|
||||
║ ║ 0 ║ 1 ║ 2 ║ 3 ║ 4 ║ ║
|
||||
║ ╚═══╩═══╩═══╩═══╩═══╝ ║
|
||||
║ Inventory ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 5 ║ 6 ║ 7 ║ 8 ║ 9 ║10 ║11 ║12 ║13 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║14 ║15 ║16 ║17 ║18 ║19 ║20 ║21 ║22 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║23 ║24 ║25 ║26 ║27 ║28 ║29 ║30 ║31 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║32 ║33 ║34 ║35 ║36 ║37 ║38 ║39 ║40 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
<data name="Container_PlayerInventory" xml:space="preserve">
|
||||
<value>╔═════════════════════════════════════╗
|
||||
║╔═══╦═══════════╗ ║
|
||||
║║ 5 ║ ███ ║ ╔═══╦═══╗ ║
|
||||
║╠═══╣ ███ ║ ║ 1 ║ 2 ║ ╔═══╗║
|
||||
║║ 6 ║ ███████ ║ ╠═══╬═══╣━━▶║ 0 ║║
|
||||
║╠═══╣ ███████ ║ ║ 3 ║ 4 ║ ╚═══╝║
|
||||
║║ 7 ║ ███████ ║ ╚═══╩═══╝ ║
|
||||
║╠═══╣ ███ ╠═══╗ ║
|
||||
║║ 8 ║ ███ ║45 ║ ║
|
||||
║╚═══╩═══════════╩═══╝ ║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║ 9 ║10 ║11 ║12 ║13 ║14 ║15 ║16 ║17 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║18 ║19 ║20 ║21 ║22 ║23 ║24 ║25 ║26 ║║
|
||||
║╠═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╬═══╣║
|
||||
║║27 ║28 ║29 ║30 ║31 ║32 ║33 ║34 ║35 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║╔═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╦═══╗║
|
||||
║║36 ║37 ║38 ║39 ║40 ║41 ║42 ║43 ║44 ║║
|
||||
║╚═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╩═══╝║
|
||||
║ 1 2 3 4 5 6 7 8 9 ║
|
||||
╚═════════════════════════════════════╝</value>
|
||||
</data>
|
||||
</root>
|
||||
|
|
@ -4392,7 +4392,7 @@ namespace MinecraftClient {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to All entity types can be found here: https://bit.ly/3Rg68lp.
|
||||
/// Looks up a localized string similar to All entity types can be found here: https://mccteam.github.io/r/entity/#L15.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_AutoAttack_Entites_List {
|
||||
get {
|
||||
|
|
@ -4438,7 +4438,7 @@ namespace MinecraftClient {
|
|||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Automatically craft items in your inventory
|
||||
///See https://mccteam.github.io/guide/chat-bots.html#auto-craft for how to use
|
||||
///See https://mccteam.github.io/g/bots/#auto-craft for how to use
|
||||
///You need to enable Inventory Handling to use this bot
|
||||
///You should also enable Terrain and Movements if you need to use a crafting table.
|
||||
/// </summary>
|
||||
|
|
@ -4471,8 +4471,7 @@ namespace MinecraftClient {
|
|||
///Recipes.Type: crafting table type: "player" or "table"
|
||||
///Recipes.Result: the resulting item
|
||||
///Recipes.Slots: All slots, counting from left to right, top to bottom. Please fill in "Null" for empty slots.
|
||||
///For the naming of the items, please see:
|
||||
///https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs.
|
||||
///For the naming of the items, please see: https://mccteam.github.io/r/item/#L12.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_AutoCraft_Recipes {
|
||||
get {
|
||||
|
|
@ -4485,7 +4484,7 @@ namespace MinecraftClient {
|
|||
///You need to enable Terrain Handling to use this bot
|
||||
///You can use "/digbot start" and "/digbot stop" to control the start and stop of AutoDig.
|
||||
///Since MCC does not yet support accurate calculation of the collision volume of blocks, all blocks are considered as complete cubes when obtaining the position of the lookahead.
|
||||
///For the naming of the block, please see https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Mapping/Material.cs.
|
||||
///For the naming of the block, please see https://mccteam.github.io/r/block/#L15.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_AutoDig {
|
||||
get {
|
||||
|
|
@ -4586,8 +4585,7 @@ namespace MinecraftClient {
|
|||
/// <summary>
|
||||
/// Looks up a localized string similar to Automatically drop items in inventory
|
||||
///You need to enable Inventory Handling to use this bot
|
||||
///See this file for an up-to-date list of item types you can use with this bot:
|
||||
///https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs.
|
||||
///See this file for an up-to-date list of item types you can use with this bot: https://mccteam.github.io/r/item/#L12.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_AutoDrop {
|
||||
get {
|
||||
|
|
@ -4616,7 +4614,7 @@ namespace MinecraftClient {
|
|||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Automatically catch fish using a fishing rod
|
||||
///Guide: https://mccteam.github.io/guide/chat-bots.html#auto-fishing
|
||||
///Guide: https://mccteam.github.io/g/bots/#auto-fishing
|
||||
///You can use "/fish" to control the bot manually.
|
||||
////!\ Make sure server rules allow automated farming before using this bot.
|
||||
/// </summary>
|
||||
|
|
@ -4821,10 +4819,10 @@ namespace MinecraftClient {
|
|||
/// <summary>
|
||||
/// Looks up a localized string similar to This bot allows you to send and recieve messages and commands via a Discord channel.
|
||||
///For Setup you can either use the documentation or read here (Documentation has images).
|
||||
///Documentation: https://mccteam.github.io/guide/chat-bots.html#discord-bridge
|
||||
///Documentation: https://mccteam.github.io/g/bots/#discord-bridge
|
||||
///Setup:
|
||||
///First you need to create a Bot on the Discord Developers Portal, here is a video tutorial: https://www.youtube.com/watch?v=2FgMnZViNPA .
|
||||
////!\ IMPORTANT /!\: When creating a bot, you MUST ENABLE "Message Content Intent", "Server Members Intent" and "Pr [rest of string was truncated]";.
|
||||
////!\ IMPORTANT /!\: When creating a bot, you MUST ENABLE "Message Content Intent", "Server Members Intent" and "Presence Intent [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_DiscordBridge {
|
||||
get {
|
||||
|
|
@ -4845,7 +4843,7 @@ namespace MinecraftClient {
|
|||
/// Looks up a localized string similar to Message formats
|
||||
///Words wrapped with { and } are going to be replaced during the code execution, do not change them!
|
||||
///For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time.
|
||||
///For Discord message formatting, check the following: https://bit.ly/3F8CUCm.
|
||||
///For Discord message formatting, check the following: https://mccteam.github.io/r/dc-fmt.html.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_DiscordBridge_Formats {
|
||||
get {
|
||||
|
|
@ -5103,7 +5101,7 @@ namespace MinecraftClient {
|
|||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Schedule commands and scripts to launch on various events such as server join, date/time or time interval
|
||||
///See https://mccteam.github.io/guide/chat-bots.html#script-scheduler for more info.
|
||||
///See https://mccteam.github.io/g/bots/#script-scheduler for more info.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_ScriptScheduler {
|
||||
get {
|
||||
|
|
@ -5147,7 +5145,7 @@ namespace MinecraftClient {
|
|||
/// Looks up a localized string similar to Message formats
|
||||
///Words wrapped with { and } are going to be replaced during the code execution, do not change them!
|
||||
///For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time.
|
||||
///For Telegram message formatting, check the following: https://sendpulse.com/blog/telegram-text-formatting.
|
||||
///For Telegram message formatting, check the following: https://mccteam.github.io/r/tg-fmt.html.
|
||||
/// </summary>
|
||||
internal static string config_ChatBot_TelegramBridge_Formats {
|
||||
get {
|
||||
|
|
@ -5175,7 +5173,7 @@ namespace MinecraftClient {
|
|||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to MCC does it best to detect chat messages, but some server have unusual chat formats
|
||||
///When this happens, you'll need to configure chat format below, see https://mccteam.github.io/guide/configuration.html#chat-format.
|
||||
///When this happens, you'll need to configure chat format below, see https://mccteam.github.io/g/conf/#chat-format-section.
|
||||
/// </summary>
|
||||
internal static string config_ChatFormat {
|
||||
get {
|
||||
|
|
@ -5205,7 +5203,7 @@ namespace MinecraftClient {
|
|||
/// Looks up a localized string similar to Startup Config File
|
||||
///Please do not record extraneous data in this file as it will be overwritten by MCC.
|
||||
///
|
||||
///New to Minecraft Console Client? Check out this document: https://mccteam.github.io/guide/configuration.html
|
||||
///New to Minecraft Console Client? Check out this document: https://mccteam.github.io/g/conf.html
|
||||
///Want to upgrade to a newer version? See https://github.com/MCCTeam/Minecraft-Console-Client/#download.
|
||||
/// </summary>
|
||||
internal static string config_Head {
|
||||
|
|
@ -5450,7 +5448,7 @@ namespace MinecraftClient {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Fill in with in-game locale code, check https://github.com/MCCTeam/Minecraft-Console-Client/discussions/2239.
|
||||
/// Looks up a localized string similar to Fill in with in-game locale code, check https://mccteam.github.io/r/l-code.html.
|
||||
/// </summary>
|
||||
internal static string config_Main_Advanced_language {
|
||||
get {
|
||||
|
|
@ -5649,6 +5647,15 @@ namespace MinecraftClient {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Temporary fix for Badpacket issue on some servers..
|
||||
/// </summary>
|
||||
internal static string config_Main_Advanced_temporary_fix_badpacket {
|
||||
get {
|
||||
return ResourceManager.GetString("config.Main.Advanced.temporary_fix_badpacket", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Use "none", "bit_4", "bit_8" or "bit_24". This can be checked by opening the debug log..
|
||||
/// </summary>
|
||||
|
|
@ -6894,6 +6901,24 @@ namespace MinecraftClient {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Paste your code here:.
|
||||
/// </summary>
|
||||
internal static string mcc_browser_login_code {
|
||||
get {
|
||||
return ResourceManager.GetString("mcc.browser_login_code", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Your browser should open automatically. If not, open the link below in your browser..
|
||||
/// </summary>
|
||||
internal static string mcc_browser_open {
|
||||
get {
|
||||
return ResourceManager.GetString("mcc.browser_open", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Connecting to {0}....
|
||||
/// </summary>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -59,7 +59,7 @@
|
|||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
|
|
@ -1572,7 +1572,7 @@ You need to enable Entity Handling to use this bot
|
|||
<value>How long to wait between each attack. Set "Custom = false" to let MCC calculate it.</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.AutoAttack.Entites_List" xml:space="preserve">
|
||||
<value>All entity types can be found here: https://bit.ly/3Rg68lp</value>
|
||||
<value>All entity types can be found here: https://mccteam.github.io/r/entity/#L15</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.AutoAttack.Interaction" xml:space="preserve">
|
||||
<value>Possible values: "Interact", "Attack" (default), "InteractAt" (Interact and Attack).</value>
|
||||
|
|
@ -1588,7 +1588,7 @@ You need to enable Entity Handling to use this bot
|
|||
</data>
|
||||
<data name="config.ChatBot.AutoCraft" xml:space="preserve">
|
||||
<value>Automatically craft items in your inventory
|
||||
See https://mccteam.github.io/guide/chat-bots.html#auto-craft for how to use
|
||||
See https://mccteam.github.io/g/bots/#auto-craft for how to use
|
||||
You need to enable Inventory Handling to use this bot
|
||||
You should also enable Terrain and Movements if you need to use a crafting table</value>
|
||||
</data>
|
||||
|
|
@ -1603,15 +1603,14 @@ You should also enable Terrain and Movements if you need to use a crafting table
|
|||
Recipes.Type: crafting table type: "player" or "table"
|
||||
Recipes.Result: the resulting item
|
||||
Recipes.Slots: All slots, counting from left to right, top to bottom. Please fill in "Null" for empty slots.
|
||||
For the naming of the items, please see:
|
||||
https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs</value>
|
||||
For the naming of the items, please see: https://mccteam.github.io/r/item/#L12</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.AutoDig" xml:space="preserve">
|
||||
<value>Auto-digging blocks.
|
||||
You need to enable Terrain Handling to use this bot
|
||||
You can use "/digbot start" and "/digbot stop" to control the start and stop of AutoDig.
|
||||
Since MCC does not yet support accurate calculation of the collision volume of blocks, all blocks are considered as complete cubes when obtaining the position of the lookahead.
|
||||
For the naming of the block, please see https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Mapping/Material.cs</value>
|
||||
For the naming of the block, please see https://mccteam.github.io/r/block/#L15</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.AutoDig.Auto_Start_Delay" xml:space="preserve">
|
||||
<value>How many seconds to wait after entering the game to start digging automatically, set to -1 to disable automatic start.</value>
|
||||
|
|
@ -1646,8 +1645,7 @@ For the naming of the block, please see https://github.com/MCCTeam/Minecraft-Con
|
|||
<data name="config.ChatBot.AutoDrop" xml:space="preserve">
|
||||
<value>Automatically drop items in inventory
|
||||
You need to enable Inventory Handling to use this bot
|
||||
See this file for an up-to-date list of item types you can use with this bot:
|
||||
https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/Inventory/ItemType.cs</value>
|
||||
See this file for an up-to-date list of item types you can use with this bot: https://mccteam.github.io/r/item/#L12</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.AutoDrop.Mode" xml:space="preserve">
|
||||
<value>"include", "exclude" or "everything". Include: drop item IN the list. Exclude: drop item NOT IN the list</value>
|
||||
|
|
@ -1658,7 +1656,7 @@ You need to enable Inventory Handling to use this bot</value>
|
|||
</data>
|
||||
<data name="config.ChatBot.AutoFishing" xml:space="preserve">
|
||||
<value>Automatically catch fish using a fishing rod
|
||||
Guide: https://mccteam.github.io/guide/chat-bots.html#auto-fishing
|
||||
Guide: https://mccteam.github.io/g/bots/#auto-fishing
|
||||
You can use "/fish" to control the bot manually.
|
||||
/!\ Make sure server rules allow automated farming before using this bot</value>
|
||||
</data>
|
||||
|
|
@ -1731,12 +1729,12 @@ Server admins can spoof chat messages (/nick, /tellraw) so keep this in mind whe
|
|||
<data name="config.ChatBot.DiscordBridge" xml:space="preserve">
|
||||
<value>This bot allows you to send and recieve messages and commands via a Discord channel.
|
||||
For Setup you can either use the documentation or read here (Documentation has images).
|
||||
Documentation: https://mccteam.github.io/guide/chat-bots.html#discord-bridge
|
||||
Documentation: https://mccteam.github.io/g/bots/#discord-bridge
|
||||
Setup:
|
||||
First you need to create a Bot on the Discord Developers Portal, here is a video tutorial: https://www.youtube.com/watch?v=2FgMnZViNPA .
|
||||
/!\ IMPORTANT /!\: When creating a bot, you MUST ENABLE "Message Content Intent", "Server Members Intent" and "Presence Intent" in order for bot to work! Also follow along carefully do not miss any steps!
|
||||
When making a bot, copy the generated token and paste it here in "Token" field (tokens are important, keep them safe).
|
||||
Copy the "Application ID" and go to: https://bit.ly/2Spn2Q3 .
|
||||
Copy the "Application ID" and go to: https://discordapi.com/permissions.html .
|
||||
Paste the id you have copied and check the "Administrator" field in permissions, then click on the link at the bottom.
|
||||
This will open an invitation menu with your servers, choose the server you want to invite the bot on and invite him.
|
||||
Once you've invited the bot, go to your Discord client and go to Settings -> Advanced and Enable "Developer Mode".
|
||||
|
|
@ -1754,7 +1752,7 @@ To send a message, simply type it out and hit enter.</value>
|
|||
<value>Message formats
|
||||
Words wrapped with { and } are going to be replaced during the code execution, do not change them!
|
||||
For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time.
|
||||
For Discord message formatting, check the following: https://bit.ly/3F8CUCm</value>
|
||||
For Discord message formatting, check the following: https://mccteam.github.io/r/dc-fmt.html</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.DiscordBridge.GuildId" xml:space="preserve">
|
||||
<value>The ID of a server/guild where you have invited the bot to.</value>
|
||||
|
|
@ -1861,7 +1859,7 @@ Please note that due to technical limitations, the client player (you) will not
|
|||
</data>
|
||||
<data name="config.ChatBot.ScriptScheduler" xml:space="preserve">
|
||||
<value>Schedule commands and scripts to launch on various events such as server join, date/time or time interval
|
||||
See https://mccteam.github.io/guide/chat-bots.html#script-scheduler for more info</value>
|
||||
See https://mccteam.github.io/g/bots/#script-scheduler for more info</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.TelegramBridge" xml:space="preserve">
|
||||
<value>This bot allows you to send and receive messages and commands via a Telegram Bot DM or to receive messages in a Telegram channel.
|
||||
|
|
@ -1898,7 +1896,7 @@ To send a message, simply type it out and hit enter.</value>
|
|||
<value>Message formats
|
||||
Words wrapped with { and } are going to be replaced during the code execution, do not change them!
|
||||
For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time.
|
||||
For Telegram message formatting, check the following: https://sendpulse.com/blog/telegram-text-formatting</value>
|
||||
For Telegram message formatting, check the following: https://mccteam.github.io/r/tg-fmt.html</value>
|
||||
</data>
|
||||
<data name="config.ChatBot.TelegramBridge.MessageSendTimeout" xml:space="preserve">
|
||||
<value>How long to wait (in seconds) if a message can not be sent to Telegram before canceling the task (minimum 1 second).</value>
|
||||
|
|
@ -1908,7 +1906,7 @@ For Telegram message formatting, check the following: https://sendpulse.com/blog
|
|||
</data>
|
||||
<data name="config.ChatFormat" xml:space="preserve">
|
||||
<value>MCC does it best to detect chat messages, but some server have unusual chat formats
|
||||
When this happens, you'll need to configure chat format below, see https://mccteam.github.io/guide/configuration.html#chat-format</value>
|
||||
When this happens, you'll need to configure chat format below, see https://mccteam.github.io/g/conf/#chat-format-section</value>
|
||||
</data>
|
||||
<data name="config.ChatFormat.Builtins" xml:space="preserve">
|
||||
<value>MCC support for common message formats. Set "false" to avoid conflicts with custom formats.</value>
|
||||
|
|
@ -1920,7 +1918,7 @@ When this happens, you'll need to configure chat format below, see https://mccte
|
|||
<value>Startup Config File
|
||||
Please do not record extraneous data in this file as it will be overwritten by MCC.
|
||||
|
||||
New to Minecraft Console Client? Check out this document: https://mccteam.github.io/guide/configuration.html
|
||||
New to Minecraft Console Client? Check out this document: https://mccteam.github.io/g/conf.html
|
||||
Want to upgrade to a newer version? See https://github.com/MCCTeam/Minecraft-Console-Client/#download</value>
|
||||
</data>
|
||||
<data name="config.load" xml:space="preserve">
|
||||
|
|
@ -2003,7 +2001,7 @@ Usage examples: "/tell <mybot> reco Player2", "/connect <serverip> P
|
|||
<value>Toggle inventory handling.</value>
|
||||
</data>
|
||||
<data name="config.Main.Advanced.language" xml:space="preserve">
|
||||
<value>Fill in with in-game locale code, check https://github.com/MCCTeam/Minecraft-Console-Client/discussions/2239</value>
|
||||
<value>Fill in with in-game locale code, check https://mccteam.github.io/r/l-code.html</value>
|
||||
</data>
|
||||
<data name="config.Main.Advanced.language.invaild" xml:space="preserve">
|
||||
<value>The language code is invalid!</value>
|
||||
|
|
@ -2669,4 +2667,13 @@ Logging in...</value>
|
|||
<data name="mcc.backup_old_config" xml:space="preserve">
|
||||
<value>The old MinecraftClient.ini has been backed up as {0}</value>
|
||||
</data>
|
||||
<data name="config.Main.Advanced.temporary_fix_badpacket" xml:space="preserve">
|
||||
<value>Temporary fix for Badpacket issue on some servers.</value>
|
||||
</data>
|
||||
<data name="mcc.browser_login_code" xml:space="preserve">
|
||||
<value>Paste your code here:</value>
|
||||
</data>
|
||||
<data name="mcc.browser_open" xml:space="preserve">
|
||||
<value>Your browser should open automatically. If not, open the link below in your browser.</value>
|
||||
</data>
|
||||
</root>
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -247,12 +247,12 @@ namespace MinecraftClient
|
|||
/// </summary>
|
||||
/// <param name="extraAttempts">If connection fails, the client will make X extra attempts</param>
|
||||
/// <param name="delaySeconds">Optional delay, in seconds, before restarting</param>
|
||||
new public void ReconnectToTheServer(int extraAttempts = -999999, int delaySeconds = 0)
|
||||
new public void ReconnectToTheServer(int extraAttempts = -999999, int delaySeconds = 0, bool keepAccountAndServerSettings = false)
|
||||
{
|
||||
if (extraAttempts == -999999)
|
||||
base.ReconnectToTheServer();
|
||||
base.ReconnectToTheServer(delaySeconds: delaySeconds, keepAccountAndServerSettings: keepAccountAndServerSettings);
|
||||
else
|
||||
base.ReconnectToTheServer(extraAttempts);
|
||||
base.ReconnectToTheServer(extraAttempts, delaySeconds, keepAccountAndServerSettings);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -361,7 +361,7 @@ namespace MinecraftClient
|
|||
{
|
||||
bool result = Settings.Config.Main.Advanced.SetAccount(accountAlias);
|
||||
if (result && andReconnect)
|
||||
ReconnectToTheServer();
|
||||
ReconnectToTheServer(keepAccountAndServerSettings: true);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
@ -374,7 +374,7 @@ namespace MinecraftClient
|
|||
{
|
||||
bool result = Settings.Config.Main.SetServerIP(new MainConfigHealper.MainConfig.ServerInfoConfig(server), true);
|
||||
if (result && andReconnect)
|
||||
ReconnectToTheServer();
|
||||
ReconnectToTheServer(keepAccountAndServerSettings: true);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -922,7 +922,7 @@ namespace MinecraftClient
|
|||
/// </summary>
|
||||
/// <param name="ExtraAttempts">In case of failure, maximum extra attempts before aborting</param>
|
||||
/// <param name="delaySeconds">Optional delay, in seconds, before restarting</param>
|
||||
protected void ReconnectToTheServer(int ExtraAttempts = 3, int delaySeconds = 0)
|
||||
protected void ReconnectToTheServer(int ExtraAttempts = 3, int delaySeconds = 0, bool keepAccountAndServerSettings = false)
|
||||
{
|
||||
if (Settings.Config.Logging.DebugMessages)
|
||||
{
|
||||
|
|
@ -930,7 +930,7 @@ namespace MinecraftClient
|
|||
ConsoleIO.WriteLogLine(string.Format(Translations.chatbot_reconnect, botName));
|
||||
}
|
||||
McClient.ReconnectionAttemptsLeft = ExtraAttempts;
|
||||
Program.Restart(delaySeconds);
|
||||
Program.Restart(delaySeconds, keepAccountAndServerSettings);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ using static MinecraftClient.Settings.ChatFormatConfigHelper;
|
|||
using static MinecraftClient.Settings.HeadCommentHealper;
|
||||
using static MinecraftClient.Settings.LoggingConfigHealper;
|
||||
using static MinecraftClient.Settings.MainConfigHealper;
|
||||
using static MinecraftClient.Settings.MainConfigHealper.MainConfig;
|
||||
using static MinecraftClient.Settings.MainConfigHealper.MainConfig.AdvancedConfig;
|
||||
using static MinecraftClient.Settings.MCSettingsConfigHealper;
|
||||
using static MinecraftClient.Settings.SignatureConfigHelper;
|
||||
|
|
@ -47,17 +48,19 @@ namespace MinecraftClient
|
|||
|
||||
public static ushort ServerPort = 25565;
|
||||
|
||||
public static string Login = string.Empty;
|
||||
public static AccountInfoConfig Account = new();
|
||||
|
||||
public static string Username = string.Empty;
|
||||
|
||||
public static string Password = string.Empty;
|
||||
|
||||
public static string MinecraftVersion = string.Empty;
|
||||
|
||||
public static bool InteractiveMode = true;
|
||||
|
||||
public static bool GravityEnabled = true;
|
||||
|
||||
public static bool KeepAccountSettings = false;
|
||||
|
||||
public static bool KeepServerSettings = false;
|
||||
}
|
||||
|
||||
public class GlobalConfig
|
||||
|
|
@ -125,8 +128,13 @@ namespace MinecraftClient
|
|||
|
||||
}
|
||||
|
||||
public static Tuple<bool, bool> LoadFromFile(string filepath)
|
||||
public static Tuple<bool, bool> LoadFromFile(string filepath, bool keepAccountAndServerSettings = false)
|
||||
{
|
||||
bool keepAccountSettings = InternalConfig.KeepAccountSettings;
|
||||
bool keepServerSettings = InternalConfig.KeepServerSettings;
|
||||
if (keepAccountAndServerSettings)
|
||||
InternalConfig.KeepAccountSettings = InternalConfig.KeepServerSettings = true;
|
||||
|
||||
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
|
||||
TomlDocument document;
|
||||
try
|
||||
|
|
@ -145,7 +153,7 @@ namespace MinecraftClient
|
|||
string configString = File.ReadAllText(filepath);
|
||||
if (configString.Contains("Some settings missing here after an upgrade?"))
|
||||
{
|
||||
string newFilePath = Path.ChangeExtension(filepath, ".backup.ini");
|
||||
string newFilePath = Path.ChangeExtension(filepath, ".old.ini");
|
||||
File.Copy(filepath, newFilePath, true);
|
||||
ConsoleIO.WriteLineFormatted("§c" + Translations.mcc_use_new_config);
|
||||
ConsoleIO.WriteLineFormatted("§c" + string.Format(Translations.mcc_backup_old_config, newFilePath));
|
||||
|
|
@ -157,6 +165,13 @@ namespace MinecraftClient
|
|||
ConsoleIO.WriteLine(ex.GetFullMessage());
|
||||
return new(false, false);
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (!keepAccountSettings)
|
||||
InternalConfig.KeepAccountSettings = false;
|
||||
if (!keepServerSettings)
|
||||
InternalConfig.KeepServerSettings = false;
|
||||
}
|
||||
return new(true, false);
|
||||
}
|
||||
|
||||
|
|
@ -236,6 +251,7 @@ namespace MinecraftClient
|
|||
public static void LoadArguments(string[] args)
|
||||
{
|
||||
int positionalIndex = 0;
|
||||
bool skipPassword = false;
|
||||
|
||||
foreach (string argument in args)
|
||||
{
|
||||
|
|
@ -256,13 +272,24 @@ namespace MinecraftClient
|
|||
switch (positionalIndex)
|
||||
{
|
||||
case 0:
|
||||
InternalConfig.Login = argument;
|
||||
if (Config.Main.Advanced.AccountList.TryGetValue(argument, out AccountInfoConfig accountInfo))
|
||||
{
|
||||
InternalConfig.Account = accountInfo;
|
||||
skipPassword = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
InternalConfig.Account.Login = argument;
|
||||
}
|
||||
InternalConfig.KeepAccountSettings = true;
|
||||
break;
|
||||
case 1:
|
||||
InternalConfig.Password = argument;
|
||||
if (!skipPassword)
|
||||
InternalConfig.Account.Password = argument;
|
||||
break;
|
||||
case 2:
|
||||
Config.Main.SetServerIP(new MainConfig.ServerInfoConfig(argument), true);
|
||||
InternalConfig.KeepServerSettings = true;
|
||||
break;
|
||||
case 3:
|
||||
// SingleCommand = argument;
|
||||
|
|
@ -328,36 +355,32 @@ namespace MinecraftClient
|
|||
/// <returns>True if the server IP was valid and loaded, false otherwise</returns>
|
||||
public bool SetServerIP(ServerInfoConfig serverInfo, bool checkAlias)
|
||||
{
|
||||
string serverStr = ToLowerIfNeed(serverInfo.Host);
|
||||
string[] sip = serverStr.Split(new[] { ":", ":" }, StringSplitOptions.None);
|
||||
string host = sip[0];
|
||||
string[] sip = serverInfo.Host.Split(new[] { ":", ":" }, StringSplitOptions.None);
|
||||
string host = ToLowerIfNeed(sip[0]);
|
||||
ushort port = 25565;
|
||||
|
||||
if (sip.Length > 1)
|
||||
if (serverInfo.Port.HasValue)
|
||||
{
|
||||
if (serverInfo.Port != null)
|
||||
{
|
||||
port = (ushort)serverInfo.Port;
|
||||
port = serverInfo.Port.Value;
|
||||
}
|
||||
else
|
||||
else if (sip.Length > 1)
|
||||
{
|
||||
try { port = Convert.ToUInt16(sip[1]); }
|
||||
catch (FormatException) { return false; }
|
||||
}
|
||||
}
|
||||
|
||||
if (host == "localhost" || host.Contains('.'))
|
||||
{
|
||||
//Server IP (IP or domain names contains at least a dot)
|
||||
if (sip.Length == 1 && serverInfo.Port == null && host.Contains('.') && host.Any(c => char.IsLetter(c)) &&
|
||||
Settings.Config.Main.Advanced.ResolveSrvRecords != MainConfigHealper.MainConfig.AdvancedConfig.ResolveSrvRecordType.no)
|
||||
if (sip.Length == 1 && !serverInfo.Port.HasValue && host.Contains('.') && host.Any(c => char.IsLetter(c)) &&
|
||||
Settings.Config.Main.Advanced.ResolveSrvRecords != ResolveSrvRecordType.no)
|
||||
//Domain name without port may need Minecraft SRV Record lookup
|
||||
ProtocolHandler.MinecraftServiceLookup(ref host, ref port);
|
||||
InternalConfig.ServerIP = host;
|
||||
InternalConfig.ServerPort = port;
|
||||
return true;
|
||||
}
|
||||
else if (checkAlias && Advanced.ServerList.TryGetValue(serverStr, out ServerInfoConfig serverStr2))
|
||||
else if (checkAlias && Advanced.ServerList.TryGetValue(sip[0], out ServerInfoConfig serverStr2))
|
||||
{
|
||||
return SetServerIP(serverStr2, false);
|
||||
}
|
||||
|
|
@ -373,7 +396,13 @@ namespace MinecraftClient
|
|||
|
||||
General.Account.Login ??= string.Empty;
|
||||
General.Account.Password ??= string.Empty;
|
||||
InternalConfig.Login = General.Account.Login;
|
||||
if (!InternalConfig.KeepAccountSettings)
|
||||
{
|
||||
if (Advanced.AccountList.TryGetValue(General.Account.Login, out AccountInfoConfig account))
|
||||
InternalConfig.Account = account;
|
||||
else
|
||||
InternalConfig.Account = General.Account;
|
||||
}
|
||||
|
||||
General.Server.Host ??= string.Empty;
|
||||
|
||||
|
|
@ -404,6 +433,8 @@ namespace MinecraftClient
|
|||
ConsoleIO.WriteLogLine("[Settings] " + Translations.config_Main_Advanced_language_invaild);
|
||||
}
|
||||
|
||||
if (!InternalConfig.KeepServerSettings)
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(General.Server.Host))
|
||||
{
|
||||
string[] sip = General.Server.Host.Split(new[] { ":", ":" }, StringSplitOptions.None);
|
||||
|
|
@ -421,6 +452,7 @@ namespace MinecraftClient
|
|||
InternalConfig.ServerPort = General.Server.Port.Value;
|
||||
else
|
||||
SetServerIP(General.Server, true);
|
||||
}
|
||||
|
||||
for (int i = 0; i < Advanced.BotOwners.Count; ++i)
|
||||
Advanced.BotOwners[i] = ToLowerIfNeed(Advanced.BotOwners[i]);
|
||||
|
|
@ -508,6 +540,9 @@ namespace MinecraftClient
|
|||
[TomlInlineComment("$config.Main.Advanced.movement_speed$")]
|
||||
public int MovementSpeed = 2;
|
||||
|
||||
[TomlInlineComment("$config.Main.Advanced.temporary_fix_badpacket$")]
|
||||
public bool TemporaryFixBadpacket = false;
|
||||
|
||||
[TomlInlineComment("$config.Main.Advanced.inventory_handling$")]
|
||||
public bool InventoryHandling = false;
|
||||
|
||||
|
|
@ -576,7 +611,7 @@ namespace MinecraftClient
|
|||
{
|
||||
if (AccountList.TryGetValue(accountAlias, out AccountInfoConfig accountInfo))
|
||||
{
|
||||
Settings.Config.Main.General.Account = accountInfo;
|
||||
InternalConfig.Account = accountInfo;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
|
|
@ -872,7 +907,7 @@ namespace MinecraftClient
|
|||
switch (varname_lower)
|
||||
{
|
||||
case "username": result.Append(InternalConfig.Username); break;
|
||||
case "login": result.Append(InternalConfig.Login); break;
|
||||
case "login": result.Append(InternalConfig.Account.Login); break;
|
||||
case "serverip": result.Append(InternalConfig.ServerIP); break;
|
||||
case "serverport": result.Append(InternalConfig.ServerPort); break;
|
||||
case "datetime":
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Minecraft Console Client User Manual
|
||||
======
|
||||
|
||||
This page has been moved to appropriate sections on our new [Documentation website](https://mccteam.github.io/docs/).
|
||||
This page has been moved to appropriate sections on our new [Documentation website](https://mccteam.github.io/guide/configuration.html).
|
||||
20
README.md
20
README.md
|
|
@ -6,7 +6,15 @@
|
|||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Dutch.md) | [Русский](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Russian.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Chinese_Simplified.md) | [繁體中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/l10n_master/README/README-Chinese_Traditional.md)
|
||||
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
|
|
@ -51,16 +59,6 @@ If you'd like to contribute to Minecraft Console Client, great, just fork the re
|
|||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
|
|
|||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft 控制台客户端 (MCC)
|
||||
|
||||
[文档](https://mccteam.github.io/) | [下载](#download) | [安装](https://mccteam.github.io/guide/installation.html) | [配置](https://mccteam.github.io/guide/configuration.html) | [使用](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord 服务器" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **关于 ℹ️**
|
||||
|
||||
**Minecraft 控制台客户端 (MCC)** 是一个轻量级、跨平台、基于文本用户界面的 Minecraft 客户端,适用于 **Java 国际版**,允许您连接到任何 Minecraft Java 国际版服务器,以快速简单的方式发送命令与接受文本消息,而无需打开 Minecraft 游戏。
|
||||
|
||||
## 下载
|
||||
|
||||
从 [Releases](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) 获取开发构建
|
||||
|
||||
## 如何使用 📚
|
||||
|
||||
- 🌐 [完整文档](https://mccteam.github.io/)
|
||||
- 📦 [安装](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [使用](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [配置](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [聊天机器人](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [示例配置文件](MinecraftClient/config/)
|
||||
|
||||
## 获取帮助 🙋
|
||||
|
||||
查看[网站](https://mccteam.github.io/)、[README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) 以及[交流区](https://github.com/MCCTeam/Minecraft-Console-Client/discussions):也许你的问题已经在那里得到了解答。 如果没有,请创建一个[新的交流帖](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new)并提出你的问题。 如果你发现了一个 bug,请在 [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) 页面进行反馈。
|
||||
|
||||
## Discord
|
||||
|
||||
我们创建了一个 Discord 服务器, [点击此处](https://discord.gg/sfBv4TtpC9)加入。
|
||||
|
||||
## 帮助我们 ❤️
|
||||
|
||||
我们是个较小的社区,所以我们需要帮助来实现对新 Minecraft 版本的升级、修复 bug 以及扩展项目。 我们一直在寻找有动力的人来参与贡献。 如果你觉得你是那个人,请查看 [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) 页面 :)
|
||||
|
||||
## 如何进行贡献 📝
|
||||
|
||||
如果你希望为 Minecraft 控制台客户端做出贡献,很好,只需 fork 仓库并向 _Master_ 分支上提交一个 Pull Request 即可。 如果你希望为网站 / 在线文档做出贡献,请参阅[网站的 git 仓库](https://github.com/MCCTeam/MCCTeam.github.io)。
|
||||
|
||||

|
||||
|
||||
## 翻译 Minecraft 控制台客户端 (MCC) 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC 现在支持这些语言(按字母顺序排列):
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini`: English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## 从源码构建 🏗️
|
||||
|
||||
这部分已经被移动到了我们的新[文档站](https://mccteam.github.io/guide/installation.html#building-from-the-source-code)上。
|
||||
|
||||
## License ⚖️
|
||||
|
||||
除非特别说明,代码均来自 MCC 团队或贡献者,并且可在 CDDL-1.0 许可下使用。 否则,许可证和原始作者将在源文件头中提及。 CDDL-1.0 许可的主要条款基本上是以下内容:
|
||||
|
||||
- 无论您希望将其用于整个程序或部分程序,您都可以在任何程序中使用许可的代码,而需考虑程序整体的许可证(或者说,除了您使用的代码之外的部分)。 程序本身可以是开源或闭源的,免费或商业的。
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- 在使用 CDDL 代码的任何程序(源代码或二进制文件)中,必须提及 CDDL 代码的来源(项目或作者)。 此外,对 CDDL 代码的修改(必须以源代码的形式分发)不能删除指示代码来源的声明。
|
||||
|
||||
更多信息:http://qstuff.blogspot.fr/2007/04/why-cddl.html 完整协议:http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io). To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following: Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial. The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
Minecraft Console Client (MCC) is een simpele app waarmee je Minecraft servers kan joinen, command sturen en berichten ontvangen op een snelle en makkelijke manier zonder Minecraft echt hoeven te openen.
|
||||
|
||||
## Download 🔽
|
||||
|
||||
https://github.com/MCCTeam/Minecraft-Console-Client/actions/workflows/build-and-release.yml/badge.svg
|
||||
|
||||
## Hoe Te Gebruiken 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- Bekijk [hier](MinecraftClient/config/) een voorbeeld van de configuratie bestand, deze bevat uitleg om het te gebruiken. Daarnaats kan je de [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) lezen.
|
||||
|
||||
## Hulp Krijgen 🙋
|
||||
|
||||
Bekijk de [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) en de bestaande [discussies](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Misschien is je vraag daar al beantwoord. Als dat niet zo is open dan een [nieuwe discussie](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) en stel je vraag. Als je een bug vind, rapporteer dat bij de [problemen](https://github.com/MCCTeam/Minecraft-Console-Client/issues) sectie.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We zijn een kleine community, dus we hebben hulp nodig bij het implementeren van verbeteringen voor de nieuwe Minecraft-versies, het oplossen van bugs en het uitbreiden van het project. We zijn altijd op zoek naar gemotiveerde mensen om een steentje bij te dragen. Als je het gevoel hebt dat jij de persoon bent die wij zoeken, kijk dan eens naar de [problemen](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) sectie :)
|
||||
|
||||
## Hoe draag je bij 📝
|
||||
|
||||
Als je graag mee wilt helpen aan Minecraft Console Client, geweldig! Fork de repository en dien een pull request in op de *Master* branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Minecraft Console Client Vertalen 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
Dit gedeelte is verplaatst naar onze nieuwe documentatiewebsite. [Klik hier](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## Licentie ⚖️
|
||||
|
||||
Tenzij anders aangegeven, is de code van hete MCC Team of vrijwilligers, en beschikbaar onder CDDL-1.0. De licentie en orginele autheur zijn te vinden in de kopteksten van de bronnen te vinden. De belangrijkste punten van de CDDL-1.0 licentie zijn als volgt:
|
||||
|
||||
- Je mag de gelicentieerde code in zijn geheel of gedeeltelijk gebruiken in je eigen programma's, ongeacht de licentie van het programma als geheel (of beter gezegd, als exclusief de code die u leent). Het programma zelf kan open of closed source, gratis of commercieel zijn.
|
||||
- In alle gevallen echter, eventuele wijzigingen, verbeteringen of toevoegingen aan de CDDL-code (elke code waarnaar wordt verwezen in directe wijzigingen aan de CDDL-code wordt beschouwd als een toevoeging aan de CDDL-code en is dus gebonden aan deze vereiste; bijvoorbeeld een wijziging van een wiskundige functie om een snelle opzoektabel te gebruiken, maakt die tabel zelf een toevoeging aan de CDDL-code, ongeacht of het in een eigen broncodebestand staat) moet openbaar en vrij beschikbaar worden gesteld in de bron, onder de CDDL-licentie zelf.
|
||||
- In elk programma (bron of binair) dat CDDL-code gebruikt, moet herkenning worden gegeven aan de bron (project of auteur) van de CDDL-code. Ook mogen wijzigingen in de CDDL-code (die als bron moet worden verspreid) geen kennisgevingen verwijderen die de afkomst van de code aangeven.
|
||||
|
||||
Meer info op http://qstuff.blogspot.fr/2007/04/why-cddl.html Volledige licentie op http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
<div align="center">
|
||||
|
||||
<img src="https://i.pics.rs/LLDhE.png" alt="Logo"/>
|
||||
|
||||
# Minecraft Console Client (MCC)
|
||||
|
||||
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
|
||||
[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
|
||||
|
||||
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) <a href="https://discord.gg/sfBv4TtpC9"><img src="https://img.shields.io/discord/1018553894831403028?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
## **About ℹ️**
|
||||
|
||||
**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
|
||||
|
||||
## Download
|
||||
|
||||
Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
|
||||
|
||||
## How to use 📚
|
||||
|
||||
- 🌐 [Full Documentation](https://mccteam.github.io/)
|
||||
- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
|
||||
- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
|
||||
- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
|
||||
- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
|
||||
- 📝 [Sample configuration files](MinecraftClient/config/)
|
||||
|
||||
## Getting Help 🙋
|
||||
|
||||
Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
|
||||
|
||||
## Discord
|
||||
|
||||
We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
|
||||
|
||||
## Helping Us ❤️
|
||||
|
||||
We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
|
||||
|
||||
## How to contribute 📝
|
||||
|
||||
If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
|
||||
|
||||

|
||||
|
||||
## Translating Minecraft Console Client 🌍
|
||||
|
||||
To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
|
||||
|
||||
MCC now supports the following languages (Alphabetical order) :
|
||||
* `de.ini` : Deutsch - German
|
||||
* `en.ini` : English - English
|
||||
* `fr.ini` : Français (France) - French
|
||||
* `ru.ini` : Русский (Russkiy) - Russian
|
||||
* `tr.ini` : Türkçe (Türkiye) - Turkish
|
||||
* `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
|
||||
* `zh-Hans.ini` : 简体中文 - Chinese Simplified
|
||||
* `zh-Hant.ini` : 繁體中文 - Chinese Traditional
|
||||
|
||||
## Building from the source 🏗️
|
||||
|
||||
This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
|
||||
|
||||
## License ⚖️
|
||||
|
||||
Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
|
||||
|
||||
- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
|
||||
- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
|
||||
- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
|
||||
|
||||
More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue