diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..2111595f1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +[*] +end_of_line = lf +indent_style = space +indent_size = 4 + +[*.js] +indent_size = 2 + +[*.yaml] +indent_size = 2 diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..c79aa5b53 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,14 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] + - https://afdian.net/@teahouse diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 84c5de9d3..5d81613da 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -25,11 +25,10 @@ assignees: '' 可以的话,加上截图可以帮助解释你的问题。 **版本** - * 操作系统:[例:Windows] -* Minecraft 版本:[例:1.15.2] -* 资源包版本:[例:0.1.0] -* 环境 [例:加载了Fabric/Forge,安装了CustomSkinLoader] +* Minecraft 版本:[例:1.18.2] +* 资源包版本:[例:1.6.1] +* 环境:[例:加载了Fabric/Forge,安装了CustomSkinLoader] **其他内容** 添加更多关于漏洞的来龙去脉。 diff --git a/.github/workflows/check_news.yml b/.github/workflows/check_news.yml deleted file mode 100644 index 4a6254ac4..000000000 --- a/.github/workflows/check_news.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Check News - -on: - push: - paths: - - 'news.json' - - 'alerts.json' - pull_request: - paths: - - 'news.json' - - 'alerts.json' - -jobs: - check-news: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - - run: node check_news.js - - name: Create comment - uses: peter-evans/commit-comment@v1 - if: ${{ failure() }} - with: - body: | - 您的 `news.json` 或 `alerts.json` 格式出了些问题, 请及时修正 - - name: Push to global - if: ${{ github.repository_owner == 'Teahouse-Studios' && github.ref == 'refs/heads/master' && success()}} - run: curl -L purge.jsdelivr.net/gh/Teahouse-Studios/mcwzh-meme-resourcepack@master/news.json && curl -L purge.jsdelivr.net/gh/Teahouse-Studios/mcwzh-meme-resourcepack@master/alerts.json diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..47f14d578 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,41 @@ +name: "CodeQL" + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + schedule: + - cron: "17 4 * * 3" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ python ] + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + queries: +security-and-quality + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index c4fbcd8ac..000000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Deploy - -on: - push: - branches: [ master ] - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Wait on tests - uses: lewagon/wait-on-check-action@v0.2 - with: - ref: ${{ github.ref }} - check-name: test - repo-token: ${{ secrets.GITHUB_TOKEN }} - wait-interval: 5 - - name: Update Deployment Status - run: | - curl \ - -X POST \ - -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/${{github.repository}}/deployments \ - -d '{"ref":"${{ github.sha }}", "required_contexts": []}' \ No newline at end of file diff --git a/.github/workflows/deploy_dynamic_content.yml b/.github/workflows/deploy_dynamic_content.yml new file mode 100644 index 000000000..69e2bea13 --- /dev/null +++ b/.github/workflows/deploy_dynamic_content.yml @@ -0,0 +1,39 @@ +name: Deploy Web Builder dynamic Content + +on: + push: + paths: + - 'dynamic/**' + pull_request: + paths: + - 'dynamic/**' + workflow_dispatch: + +jobs: + check-news: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + - run: node check_news.js + - name: Create comment + uses: peter-evans/commit-comment@v1 + if: ${{ failure() }} + with: + body: | + 您的 `news.json` 或 `alerts.json` 格式出了些问题, 请及时修正 + deploy: + environment: production + if: ${{ github.ref_name == 'master' && !failure() }} + needs: + - check-news + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: Teahouse-Studios/aliyun-oss-action@0.7 + with: + KEY_ID: ${{ secrets.KEY_ID }} + KEY_SECRET: ${{ secrets.KEY_SECRET }} + BUCKET: frontend-wdljt + LOCAL_PATH: ./dynamic/ + REMOTE_PREFIX: meme/dynamic/ diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 7396dbfe8..2c27d30c5 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -2,7 +2,7 @@ name: 'Lock Threads' on: schedule: - - cron: '0 * * * *' + - cron: '0 0 * * *' permissions: issues: write @@ -18,4 +18,4 @@ jobs: issue-lock-inactive-days: '60' pr-lock-inactive-days: '60' issue-exclude-labels: 'KEEP' - pr-exclude-labels: 'KEEP' \ No newline at end of file + pr-exclude-labels: 'KEEP' diff --git a/.github/workflows/test_ci.yml b/.github/workflows/test_ci.yml index a8a07f0a9..565cad7e4 100644 --- a/.github/workflows/test_ci.yml +++ b/.github/workflows/test_ci.yml @@ -10,33 +10,43 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - - name: Set up Python 3.9 - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flake8 - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - - name: Test build - run: | - python preset_build.py - - - name: Upload files built - uses: actions/upload-artifact@v2 - with: - name: files-built - path: | - builds + - uses: actions/checkout@v3 + + - uses: pnpm/action-setup@v2 + with: + version: latest + + - uses: actions/setup-node@v3 + with: + node-version: 18 + cache: pnpm + + - name: Install dependencies + run: | + pnpm install --frozen-lockfile + + - name: Test build + run: | + pnpm run test-build + + - name: Upload files built + uses: actions/upload-artifact@v3 + with: + name: files-built + path: | + builds + deploy: + if: ${{ github.event_name == 'push' && github.ref_name == 'master' }} + needs: + - test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Update Deployment Status + run: | + curl \ + -X POST \ + -H "Authorization: token ${{secrets.GITHUB_TOKEN}}" \ + -H "Accept: application/vnd.github.v3+json" \ + https://api.github.com/repos/${{github.repository}}/deployments \ + -d '{"ref":"${{ github.sha }}", "required_contexts": []}' diff --git a/.gitignore b/.gitignore index ebd479c81..271305268 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,6 @@ Lib/ Scripts/ pyvenv.cfg !/news.json -!/alerts.json \ No newline at end of file +!/alerts.json +node_modules +!package.json \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..73a4a8b71 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,18 @@ +{ + "semi": false, + "useTabs": false, + "singleQuote": true, + "trailingComma": "all", + "tabWidth": 2, + "printWidth": 80, + "endOfLine": "lf", + "overrides": [ + { + "files": "*.json", + "options": { + "tabWidth": 4, + "useTabs": false + } + } + ] +} diff --git a/README.md b/README.md index 8e0a73458..83cfdc88f 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,18 @@ [![GitHub issues](https://img.shields.io/github/issues/Teahouse-Studios/mcwzh-meme-resourcepack?logo=github&style=flat-square)](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/issues) [![GitHub pull requests](https://img.shields.io/github/issues-pr/Teahouse-Studios/mcwzh-meme-resourcepack?logo=github&style=flat-square)](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/pulls) [![License](https://img.shields.io/static/v1?label=License&message=CC%20BY-SA%204.0&color=db2331&style=flat-square&logo=creative%20commons)](https://creativecommons.org/licenses/by-sa/4.0/) [![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/Teahouse-Studios/mcwzh-meme-resourcepack?label=latest%20version&style=flat-square)](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/releases) [![Minecraft ver](https://img.shields.io/static/v1?label=Minecraft%20version&message=1.12.2%2B&color=db2331&style=flat-square&logo=)](https://minecraft.net) -[![Banner](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/blob/master/materials/zh_meme_banner.png?raw=true)](https://www.mcbbs.net/thread-1004643-1-1.html) - 此资源包仅适用于**Minecraft Java版**。**关于适用于Minecraft基岩版的资源包,参见[基岩版梗体中文](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack-bedrock)。** -**注:若发现可能存在该资源包上头的情况,请立刻~~食用~~阅读[译名标准化](https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki:译名标准化)。** +**注:若发现可能存在该资源包上头的情况,请立刻~~食用~~阅读[译名标准化](https://zh.minecraft.wiki/w/Minecraft_Wiki:译名标准化)。** + +[![Banner](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/blob/master/materials/zh_meme_banner.png?raw=true)](https://www.mcbbs.net/thread-1004643-1-1.html) + +## 赞助者 +

+ + + +

## 作用 @@ -14,11 +21,11 @@ ## 用法 -在[Releases](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/releases)中下载此资源包,或在[网页构建](https://dl.meme.teahou.se/)中选择自定义选项下载。 +在[Releases](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/releases)中下载此资源包,或在[网页构建](https://meme.teahouse.team/)中选择自定义选项下载。 ### 常规 -请选择 `mcwzh-meme.zip` 下载,像其他资源包一样复制到你对应的 `.minecraft/resourcepacks/` 目录中([MCBBS上的教程](https://www.mcbbs.net/thread-880869-1-1.html))(MultiMC或其他分离版本的启动器请自行查找)。资源包新建了一个语言,安装启用后在语言设置中选择“**梗体中文**”即可体验。 +请选择 `mcwzh-meme.zip` 下载,像其他资源包一样复制到你对应的 `.minecraft/resourcepacks/` 目录中(MultiMC或其他分离版本的启动器请自行查找)。资源包新建了一个语言,安装启用后在语言设置中选择“**梗体中文**”即可体验。 ### 加载Mod时 @@ -36,13 +43,13 @@ ### 唱片替换 -该资源包将唱片信息修改成了非Minecraft歌曲。由于版权原因,您需要自行制作一个唱片替换资源包(可以参考[这篇文章](https://www.planetminecraft.com/blog/how-to-change-music-discs-to-any-song---easy/))。一份不受支持的预制版唱片替换包(不允许二次分发)可以在[这里](https://files.lakejason0.ml/images/3/34/%E5%94%B1%E7%89%87%E6%9B%BF%E6%8D%A2.zip)获得。 +该资源包将唱片信息修改成了非Minecraft歌曲。由于版权原因,您需要自行制作一个唱片替换资源包(可以参考[这篇文章](https://www.planetminecraft.com/blog/how-to-change-music-discs-to-any-song---easy/))。一份不受支持的预制版唱片替换包(不允许二次分发)可以在[这里](https://wdf.ink/record-java)获得。 ### 不死图腾替换 -该资源包将不死图腾替换成了自定义模型。自定义模型范围为 `10800000~10800006` 。如果这不适用于你(例如模型出错,游玩自定义地图或装载其他3D资源包),你可以尝试调整载入顺序,或者下载不带自定义模型的预设构建(以 `_nofigure` 结尾)。如果不想重新下载,你也可以直接删除有自定义模型版本的对应的文件夹。 +该资源包将不死图腾替换成了自定义模型。自定义模型范围为 `10800000~10800006` 。如果这不适用于你(例如模型出错,游玩自定义地图或装载其他3D资源包),你可以尝试调整加载顺序,或者下载不带自定义模型的预设构建(以 `_nofigure` 结尾)。如果不想重新下载,你也可以直接删除有自定义模型版本的对应的文件夹。 -关于可以直接获取自定义模型的数据包,可以在[这里](https://files.lakejason0.ml/images/e/e5/Figure.zip),或是在本repo中的`datapack`目录找到。 +关于可以直接获取自定义模型的数据包,可以在[这里](https://lakeus.xyz/images/e/e5/Figure.zip),或是在本repo中的`datapack`目录找到。 ### “Suitable for work”替换 @@ -52,38 +59,30 @@ ### 体验最新内容 -想要**抢先体验**最前沿~~整活~~版本,我们强烈建议您前往[网页打包](https://dl.meme.teahou.se/),那里可以更直观地选择您需要的内容。 +想要**抢先体验**最前沿~~整活~~版本,我们强烈建议您前往[网页打包](https://meme.teahouse.team/),那里可以更直观地选择您需要的内容。 若您仍想自己尝试从命令行打包(并不推荐,比较繁琐),可按以下步骤进行: #### 先决条件 -请确保已经安装了Python 3.9+和Git。如果没有,请到[Python官网](https://www.python.org)和[Git官网](https://www.git-scm.com)下载。 +请确保已经安装了NodeJS主流版本和Git。如果没有,请到[NodeJS官网](https://nodejs.org/zh-cn/)和[Git官网](https://www.git-scm.com)下载。 #### 步骤 1. 下载源码; 2. 进入文件夹; -3. 安装相关pip依赖; +3. 安装相关依赖; 4. 运行预设打包命令。 ``` sh git clone https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack.git cd mcwzh-meme-resourcepack -pip install -r requirements.txt -python preset_build.py +npm install +node preset_build.js ``` 在 `builds` 文件夹中会生成 `mcwzh-meme.zip` 、 `mcwzh-meme_compatible_sfw.zip` 、 `mcwzh-meme_compatible_nofigure_legacy_sfw.zip` 等预设的资源包,名称和作用如上所述。 -如果需要预设以外的资源包,可输入需要的参数: - -``` sh -python -m memepack_builder ... -``` - -具体用法可见[此处](https://github.com/Teahouse-Studios/memepack-builder/blob/main/doc/CLI_Manual.zh-hans.md)。 - ### 自助跟进游戏版本 此资源包的语言文件顺序与原版的英文顺序并不一致(本资源包是将key按照字母顺序排序)。如果原版的英文译名跟进了,请先将解包的英文语言文件按照前文所述排序,可以参考[这个网站](https://tool.funsmall.cn/jsonsort/)或本repo中的 `sort.py`。推荐使用[Visual Studio Code](https://github.com/microsoft/vscode)的比较功能以方便查看新字符串。 @@ -99,12 +98,13 @@ python -m memepack_builder ... ## 声明 * 本资源包**仅供娱乐**,请勿将其可能存在的误导性内容当真。 -* 本资源包与Mojang、Minecraft Wiki、Gamepedia和Fandom无关,原中文翻译版权为Mojang和翻译者所有。 - * 关于正确的译名,请参见[中文Minecraft Wiki上的标准译名列表](https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki:译名标准化)。 +* 本资源包与Mojang、Minecraft Wiki和Weird Gloop无关,原中文翻译版权为Mojang和翻译者所有。 + * 关于正确的译名,请参见[中文Minecraft Wiki上的标准译名列表](https://zh.minecraft.wiki/w/Minecraft_Wiki:译名标准化)。 * 本项目文件除另有声明外,均以 ***CC BY-SA 4.0*** 协议授权。 * 这意味着,你可在署名的情况下自由修改本资源包,但是你再创作的作品必须以本协议发布。 * 这不是法律建议。 + * `minecraft_cjk_character_supplement` 模块中散有的各个字形以Unifont兼容的协议(GPLv2+ with the GNU Font Embedding Exception及SIL Open Font License)发布;部分压缩文件的协议请参考压缩文件内的协议文件。 * 本项目附带的Mod内容字符串、未经梗体中文修改过的部分,按照 ***原作品的协议*** 发布。 -* 本项目 `tools` 目录下的脚本和根目录下的 `preset_build.py` 文件,可选择 ***CC BY-SA 4.0*** 或 ***Apache License 2.0*** 协议之一授权。 +* 本项目 `tools` 目录下的脚本和根目录下的 `preset_build.js` 文件,可选择 ***CC BY-SA 4.0*** 或 ***Apache License 2.0*** 协议之一授权。 ![GitHub forks](https://img.shields.io/github/forks/Teahouse-Studios/mcwzh-meme-resourcepack?style=social) ![GitHub stars](https://img.shields.io/github/stars/Teahouse-Studios/mcwzh-meme-resourcepack?style=social) ![GitHub watchers](https://img.shields.io/github/watchers/Teahouse-Studios/mcwzh-meme-resourcepack?style=social) diff --git a/alerts.json b/alerts.json deleted file mode 100644 index 83f34b02b..000000000 --- a/alerts.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "name": "打钱", - "message": "若您有经济实力,欢迎给孩子们在爱发电上打钱。" - } -] diff --git a/check_news.js b/check_news.js index 9ec732681..8e22b1852 100644 --- a/check_news.js +++ b/check_news.js @@ -1,8 +1,8 @@ const fs = require('fs') const path = require('path') -const news = fs.readFileSync(path.resolve(__dirname, 'news.json')) +const news = fs.readFileSync(path.resolve(__dirname, './dynamic/news.json')) JSON.parse(news) -const alerts = fs.readFileSync(path.resolve(__dirname, 'alerts.json')) +const alerts = fs.readFileSync(path.resolve(__dirname, './dynamic/alerts.json')) JSON.parse(alerts) diff --git a/datapack/data/minecraft/loot_tables/entities/evoker.json b/datapack/data/minecraft/loot_tables/entities/evoker.json index b702c3bb6..484ca6715 100644 --- a/datapack/data/minecraft/loot_tables/entities/evoker.json +++ b/datapack/data/minecraft/loot_tables/entities/evoker.json @@ -1,121 +1,121 @@ { - "type": "minecraft:entity", - "pools": [ - { - "rolls": 1, - "entries": [ + "type": "minecraft:entity", + "pools": [ { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800000}" - } - ] + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800000}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800001}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800002}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800003}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800004}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800005}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800006}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:10800007}" + } + ] + } + ] }, { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800001}" - } - ] - }, - { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800002}" - } - ] - }, - { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800003}" - } - ] - }, - { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800004}" - } - ] - }, - { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800005}" - } - ] - }, - { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800006}" - } - ] - }, - { - "type": "minecraft:item", - "name": "minecraft:totem_of_undying", - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{CustomModelData:10800007}" - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 0.0, - "max": 1.0, - "type": "minecraft:uniform" - } - }, - { - "function": "minecraft:looting_enchant", - "count": { - "min": 0.0, - "max": 1.0 - } - } - ], - "name": "minecraft:emerald" - } - ], - "conditions": [ - { - "condition": "minecraft:killed_by_player" + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 0.0, + "max": 1.0, + "type": "minecraft:uniform" + } + }, + { + "function": "minecraft:looting_enchant", + "count": { + "min": 0.0, + "max": 1.0 + } + } + ], + "name": "minecraft:emerald" + } + ], + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ] } - ] - } - ] -} \ No newline at end of file + ] +} diff --git a/dynamic/alerts.json b/dynamic/alerts.json new file mode 100644 index 000000000..dc6c69c24 --- /dev/null +++ b/dynamic/alerts.json @@ -0,0 +1,7 @@ +[ + { + "name": "Bilibili20220601", + "message": "欢迎关注官方Bilibili账号,以随时获取最新资讯。", + "emoji": "📺" + } +] diff --git a/dynamic/news.json b/dynamic/news.json new file mode 100644 index 000000000..7be8470fc --- /dev/null +++ b/dynamic/news.json @@ -0,0 +1,8 @@ +{ + "id": 20, + "title": "致歉说明", + "image": "https://fastly.jsdelivr.net/gh/Teahouse-Studios/mcwzh-meme-resourcepack/materials/banner_new.png", + "video": null, + "content": "

有关昨日所说的梗体中文语言部分正式加入原版Minecraft的通知事实上有误。实际上可以认为的是,梗体中文的部分模块加入了Minecraft愚人节快照!

有关拆分模块的事宜事实上确实存在,但仍在商讨之中。梗体中文作为茶馆工作室部分成员的项目孵化器,其实际地位还有待评估。

感谢各位对梗体中文的支持!我们将在梗体中文内发布本次愚人节快照的翻译(这次大概是真的!)

梗体中文内容组", + "detail": "https://t.bilibili.com/779785646791196679" +} diff --git a/dynamic/sp_messages.json b/dynamic/sp_messages.json new file mode 100644 index 000000000..a16228cfe --- /dev/null +++ b/dynamic/sp_messages.json @@ -0,0 +1,53 @@ +{ + "汉吐司": "游戏被你们镐蜂辣!!!🌶️🌶️🌶️", + "[BIG SHOT]": "I love you [doge]", + "古镇天Gugle": "电量量可爱", + "匿名_0x01": "加油,希望你们能继续坚持下去!", + "KFACBT": "加油!", + "laohutongzhi": "加油", + "EnderMoxynz": "qwqwqwqwqwqwqwqwqwqwqwq", + "姜胤": "祝梗体中文越来越好!\ndl.meme.teahou.se yyds!", + "羽末": "喵喵", + "YuChuXi": "梗体中文给了我和我的伙伴们许多快乐", + "DaJiFick": "Never Gonna Give You Up(", + "Xzavier0707": "十分喜欢里面更改的终末之诗,感谢!", + "1amSherluck": "加油!", + "Moments_Closed_Switch": "你做的好,你做得好啊(无慈悲)", + "匿名_0x02": "三杯咖啡请收好~", + "ForeverMIAO": "加油!!永远热爱!!", + "天下大帅比": "再一次捐赠,我很希望梗体中文越来越好😘", + "DoroWolf": "多洛超可爱同人gkd", + "孤123丫": "加油!💪希望越做越好", + "章夜辰": "加油", + "NBDK": "加油", + "匿名_0x03": "一直以来辛苦了,这个年头活着不容易,希望所有用爱发电的人能获得幸福、快乐", + "MNW小石头": "加油,挺过去", + "LaoT": "Never gonna give you up~~~(莫名被骗)", + "匿名_0x04": "加油(ง •_•)ง", + "匿名_0x05": "忒牛了呀,加油,希望以后更牛啤", + "winver1234_": "我宣布个事!", + "匿名_0x06": "都挺不容易的……", + "CallumBTW_": "可爱捏", + "AntiRain15": "一个令人快乐的资源包", + "匿名_0x07": "加油哦", + "小刚嘿": "梗体中文真的很生草!!!", + "小馒头": "加油!", + "匿名_0x08": "好活当赏,", + "_Cherry_Coke": "嘿嘿,啊哈哈哈哈,咖啡来咯~", + "Ender_hz": "英雄联盟,很好资源包,爱来自太湖南面<3", + "奏": "噶油", + "匿名_0x09": "加油", + "摆烂的小竹": "加油(撕心裂肺)", + "SuperOrange": "只是个初中生,攒了一些钱,希望这个网站越变越好", + "匿名_0x0A": "加油", + "GPS22115": "加油awa", + "匿名_0x0B": "谢谢你们 做的很好", + "Gen_Cn": "如果可以,请不要把那些抖音,快手等短视频平台的梗编上去,因为真的很烂+无趣", + "Longling10124": "欢乐不止", + "苦茶子": "希望我的帮助有用", + "meikuang": "感谢付出", + "红红杨梅香": "看了梗体中文的终末之诗,这也许是今年为数不多让我静下心来好好看的一部作品了,虽不多但也是一点心意", + "香菜工作室": "阿巴阿巴加油", + "我是绵羊Yang_g": "你现在不能休息,周围有怪物在游荡", + "0xBlueBerryx0": "欢乐不止" +} diff --git a/en-mods/betternether.json b/en-mods/betternether.json index ffbae1b04..bb683d51c 100644 --- a/en-mods/betternether.json +++ b/en-mods/betternether.json @@ -1,414 +1,414 @@ { - "container.forge": "Forge", - "container.chest_of_drawers": "Chest of Drawers", - - "entity.betternether.firefly": "Firefly", - - "item.betternether.black_apple": "Black Apple", - - "item.betternether.cincinnasite": "Cincinnasite", - "item.betternether.cincinnasite_axe": "Cincinnasite Axe", - "item.betternether.cincinnasite_axe_diamond": "Cincinnasite-Diamond Axe", - "item.betternether.cincinnasite_pickaxe": "Cincinnasite Pickaxe", - "item.betternether.cincinnasite_pickaxe_diamond": "Cincinnasite-Diamond Pickaxe", - - "item.betternether.stalagnate_bowl": "Stalagnate Bowl", - "item.betternether.stalagnate_bowl_apple": "Black Apple", - "item.betternether.stalagnate_bowl_mushroom": "Mushroom Stew", - "item.betternether.stalagnate_bowl_wart": "Wart Soup", - - "itemGroup.betternether.items": "Better Nether", - - "message.spawn_help": "§c§lYou must hold Glowstone Dust to set your spawn point here", - "message.spawn_set": "§2§lYour spawn point was set here", - - "block.betternether.agave": "Agave", - - "block.betternether.barrel_cactus": "Barrel Cactus", - - "block.betternether.black_apple_seed": "Black Apple Seed", - "block.betternether.black_bush": "Black Bush", - - "block.betternether.eyeball": "Eyeball Block", - "block.betternether.eyeball_small": "Small Eyeball Block", - - "block.betternether.bone_block": "Bone Block", - "block.betternether.bone_button": "Bone Button", - "block.betternether.bone_cincinnasite_door": "Bone-Cincinnasite Door", - "block.betternether.bone_mushroom": "Bone Mushroom Spores", - "block.betternether.bone_plate": "Bone Pressure Plate", - "block.betternether.bone_reed_door": "Bone-Reed Door", - "block.betternether.bone_slab": "Bone Slab", - "block.betternether.bone_stairs": "Bone Stairs", - "block.betternether.bone_tile": "Bone Tile", - "block.betternether.bone_wall": "Bone Wall", - - "block.betternether.chest_of_drawers": "Chest of Drawers", - - "block.betternether.cincinnasite_bars": "Cincinnasite Bars", - "block.betternether.cincinnasite_block": "Cincinnasite Block", - "block.betternether.cincinnasite_brick_plate": "Cincinnasite Brick Plate", - "block.betternether.cincinnasite_bricks": "Cincinnasite Bricks", - "block.betternether.cincinnasite_bricks_pillar": "Cincinnasite Brick Pillar", - "block.betternether.cincinnasite_button": "Cincinnasite Button", - "block.betternether.cincinnasite_carved": "Cincinnasite Carved", - "block.betternether.cincinnasite_fire_bowl": "Cincinnasite Fire Bowl", - "block.betternether.cincinnasite_forge": "Cincinnasite Forge", - "block.betternether.cincinnasite_forged": "Forged Cincinnasite Block", - "block.betternether.cincinnasite_frame": "Cincinnasite Frame", - "block.betternether.cincinnasite_lantern": "Cincinnasite Lantern", - "block.betternether.cincinnasite_ore": "Cincinnasite Ore", - "block.betternether.cincinnasite_pedestal": "Cincinnasite Pedestal", - "block.betternether.cincinnasite_pillar": "Cincinnasite Pillar", - "block.betternether.cincinnasite_plate": "Cincinnasite Plate", - "block.betternether.cincinnasite_pot": "Cincinnasite Pot", - "block.betternether.cincinnasite_slab": "Cincinnasite Slab", - "block.betternether.cincinnasite_stairs": "Cincinnasite Stairs", - "block.betternether.cincinnasite_tile_large": "Large Cincinnasite Tile", - "block.betternether.cincinnasite_tile_small": "Small Cincinnasite Tile", - "block.betternether.cincinnasite_wall": "Cincinnasite Wall", - - "block.betternether.egg_plant": "Egg Plant", - - "block.betternether.eye_seed": "Eye Seed", - - "block.betternether.farmland": "Farmland", - - "block.betternether.gray_mold": "Gray Mold", - - "block.betternether.ink_bush": "Ink Bush", - "block.betternether.ink_bush_seed": "Ink Bush Seed", - - "block.betternether.lucis_spore": "Lucis Spore", - - "block.betternether.magma_flower": "Magma flower seed", - - "block.betternether.nether_brick_tile_large": "Large Nether Brick Tile", - "block.betternether.nether_brick_tile_slab": "Small Nether Brick Tile Slab", - "block.betternether.nether_brick_tile_small": "Small Nether Brick Tile", - "block.betternether.nether_brick_tile_stairs": "Small Nether Brick Tile Stairs", - "block.betternether.nether_brick_wall": "Nether Brick Wall", - "block.betternether.nether_cactus": "Nether Cactus", - "block.betternether.nether_grass": "Nether Grass", - "block.betternether.nether_mycelium": "Nether Mycelium", - "block.betternether.nether_reed": "Nether Reed", - "block.betternether.netherrack_furnace": "Netherrack Furnace", - "block.betternether.netherrack_moss": "Nether Moss", - - "block.betternether.orange_mushroom": "Orange Mushroom", - - "block.betternether.pig_statue_respawner": "Respawner Statue", - - "block.betternether.potted_plant": "Potted Plant", - - "block.betternether.quartz_glass": "Quartz Glass", - "block.betternether.quartz_glass_framed": "Framed Quartz Glass", - "block.betternether.quartz_glass_framed_pane": "Framed Quartz Glass Pane", - "block.betternether.quartz_glass_pane": "Quartz Glass Pane", - "block.betternether.quartz_glass_black": "Quartz Glass Black", - "block.betternether.quartz_glass_blue": "Quartz Glass Blue", - "block.betternether.quartz_glass_brown": "Quartz Glass Brown", - "block.betternether.quartz_glass_cyan": "Quartz Glass Cyan", - "block.betternether.quartz_glass_gray": "Quartz Glass Gray", - "block.betternether.quartz_glass_green": "Quartz Glass Green", - "block.betternether.quartz_glass_light_blue": "Quartz Glass Light Blue", - "block.betternether.quartz_glass_lime": "Quartz Glass Lime", - "block.betternether.quartz_glass_magenta": "Quartz Glass Magenta", - "block.betternether.quartz_glass_orange": "Quartz Glass Orange", - "block.betternether.quartz_glass_pink": "Quartz Glass Pink", - "block.betternether.quartz_glass_purple": "Quartz Glass Purple", - "block.betternether.quartz_glass_red": "Quartz Glass Red", - "block.betternether.quartz_glass_light_gray": "Quartz Glass Light Gray", - "block.betternether.quartz_glass_white": "Quartz Glass White", - "block.betternether.quartz_glass_yellow": "Quartz Glass Yellow", - "block.betternether.quartz_glass_framed_black": "Framed Quartz Glass Black", - "block.betternether.quartz_glass_framed_blue": "Framed Quartz Glass Blue", - "block.betternether.quartz_glass_framed_brown": "Framed Quartz Glass Brown", - "block.betternether.quartz_glass_framed_cyan": "Framed Quartz Glass Cyan", - "block.betternether.quartz_glass_framed_gray": "Framed Quartz Glass Gray", - "block.betternether.quartz_glass_framed_green": "Framed Quartz Glass Green", - "block.betternether.quartz_glass_framed_light_blue": "Framed Quartz Glass Light Blue", - "block.betternether.quartz_glass_framed_lime": "Framed Quartz Glass Lime", - "block.betternether.quartz_glass_framed_magenta": "Framed Quartz Glass Magenta", - "block.betternether.quartz_glass_framed_orange": "Framed Quartz Glass Orange", - "block.betternether.quartz_glass_framed_pink": "Framed Quartz Glass Pink", - "block.betternether.quartz_glass_framed_purple": "Framed Quartz Glass Purple", - "block.betternether.quartz_glass_framed_red": "Framed Quartz Glass Red", - "block.betternether.quartz_glass_framed_light_gray": "Framed Quartz Glass Light Gray", - "block.betternether.quartz_glass_framed_white": "Framed Quartz Glass White", - "block.betternether.quartz_glass_framed_yellow": "Framed Quartz Glass Yellow", - - "block.betternether.red_mold": "Red Mold", - - "block.betternether.reeds_block": "Reeds Block", - "block.betternether.reeds_button": "Reeds Button", - "block.betternether.reeds_fence": "Reeds Fence", - "block.betternether.reeds_gate": "Reeds Gate", - "block.betternether.reeds_ladder": "Reeds Ladder", - "block.betternether.reeds_plate": "Reeds Pressure Plate", - "block.betternether.reeds_slab": "Reeds Slab", - "block.betternether.reeds_stairs": "Reeds Stairs", - "block.betternether.reeds_door": "Reeds Door", - "block.betternether.reeds_trapdoor": "Reeds Trapdoor", - - "block.betternether.smoker": "Smoker", - - "block.betternether.stalagnate": "Stalagnate", - "block.betternether.stalagnate_stem": "Stalagnate", - "block.betternether.stalagnate_bark": "Stalagnate Wood", - "block.betternether.stalagnate_bowl_placed": "Stalagnate Bowl", - "block.betternether.stalagnate_planks": "Stalagnate Planks", - "block.betternether.stalagnate_planks_button": "Stalagnate Button", - "block.betternether.stalagnate_planks_fence": "Stalagnate Fence", - "block.betternether.stalagnate_planks_gate": "Stalagnate Gate", - "block.betternether.stalagnate_planks_plate": "Stalagnate Pressure Plate", - "block.betternether.stalagnate_planks_slab": "Stalagnate Slab", - "block.betternether.stalagnate_planks_stairs": "Stalagnate Stairs", - "block.betternether.stalagnate_planks_door": "Stalagnate Door", - "block.betternether.stalagnate_planks_trapdoor": "Stalagnate Trapdoor", - "block.betternether.stalagnate_seed": "Stalagnate Seed", - "block.betternether.wart_seed": "Wart Seed", - - "commands.findnethercity.usage.console": "No coordinates in input", - "commands.findnethercity.usage.coordinates": "Wrong coordinates", - "commands.findnethercity.usage": "Wrong usage, must be /findNetherCity or /findNetherCity x y z", - - "block.betternether.willow_branch": "Willow Branch", - "block.betternether.willow_leaves": "Willow Leaves", - "block.betternether.willow_trunk": "Willow Trunk", - "block.betternether.willow_log": "Willow Log", - "block.betternether.willow_bark": "Willow Wood", - "block.betternether.willow_sapling": "Willow Sapling", - - "block.betternether.swamp_grass": "Swamp Grass", - - "block.betternether.willow_planks": "Willow Planks", - "block.betternether.willow_stairs": "Willow Stairs", - "block.betternether.willow_slab": "Willow Slab", - "block.betternether.willow_fence": "Willow Fence", - "block.betternether.willow_gate": "Willow Gate", - "block.betternether.willow_button": "Willow Button", - "block.betternether.willow_plate": "Willow Pressure Plate", - "block.betternether.willow_trapdoor": "Willow Trapdoor", - "block.betternether.willow_door": "Willow Door", - - "block.betternether.wart_planks": "Wart Planks", - "block.betternether.wart_stairs": "Wart Stairs", - "block.betternether.wart_slab": "Wart Slab", - "block.betternether.wart_fence": "Wart Fence", - "block.betternether.wart_gate": "Wart Gate", - "block.betternether.wart_button": "Wart Button", - "block.betternether.wart_plate": "Wart Pressure Plate", - "block.betternether.wart_trapdoor": "Wart Trapdoor", - "block.betternether.wart_door": "Wart Door", - - "block.betternether.black_vine": "Black Vine", - "block.betternether.veined_sand": "Veined Sand", - "block.betternether.soul_vein": "Soul Vein", - "block.betternether.blooming_vine": "Blooming vine", - "block.betternether.golden_vine": "Golden Vine", - "block.betternether.geyser": "Geyser", - - "item.betternether.cincinnasite_shovel": "Cincinnasite Shovel", - "item.betternether.cincinnasite_shovel_diamond": "Cincinnasite-Diamond Shovel", - - "item.betternether.cincinnasite_helmet": "Cincinnasite Helmet", - "item.betternether.cincinnasite_chestplate": "Cincinnasite Chestplate", - "item.betternether.cincinnasite_leggings": "Cincinnasite Leggings", - "item.betternether.cincinnasite_boots": "Cincinnasite Boots", - "item.betternether.cincinnasite_sword": "Cincinnasite Sword", - "item.betternether.cincinnasite_sword_diamond": "Cincinnasite-Diamond Sword", - - "item.betternether.spawn_egg_firefly": "Firefly Spawn Egg", - "item.betternether.cincinnasite_ingot": "Cincinnasite Ingot", - - "block.betternether.mushroom_stem": "Mushroom Stem", - "block.betternether.mushroom_planks": "Mushroom Planks", - "block.betternether.mushroom_stairs": "Mushroom Stairs", - "block.betternether.mushroom_slab": "Mushroom Slab", - "block.betternether.mushroom_fence": "Mushroom Fence", - "block.betternether.mushroom_gate": "Mushroom Gate", - "block.betternether.mushroom_button": "Mushroom Button", - "block.betternether.mushroom_plate": "Mushroom Plate", - "block.betternether.mushroom_trapdoor": "Mushroom Trapdoor", - "block.betternether.mushroom_door": "Mushroom Door", - - "block.betternether.cincinnasite_lantern_small": "Small Cincinnasite Lantern", - - "block.betternether.quartz_glass_pane_white": "White Quartz Pane", - "block.betternether.quartz_glass_pane_orange": "Orange Quartz Pane", - "block.betternether.quartz_glass_pane_magenta": "Magenta Quartz Pane", - "block.betternether.quartz_glass_pane_light_blue": "Light Blue Quartz Pane", - "block.betternether.quartz_glass_pane_yellow": "Yellow Quartz Pane", - "block.betternether.quartz_glass_pane_lime": "Lime Quartz Pane", - "block.betternether.quartz_glass_pane_pink": "Pink Quartz Pane", - "block.betternether.quartz_glass_pane_gray": "Gray Quartz Pane", - "block.betternether.quartz_glass_pane_light_gray": "Light Gray Quartz Pane", - "block.betternether.quartz_glass_pane_cyan": "Cyan Quartz Pane", - "block.betternether.quartz_glass_pane_purple": "Purple Quartz Pane", - "block.betternether.quartz_glass_pane_blue": "Blue Quartz Pane", - "block.betternether.quartz_glass_pane_brown": "Brown Quartz Pane", - "block.betternether.quartz_glass_pane_green": "Green Quartz Pane", - "block.betternether.quartz_glass_pane_red": "Red Quartz Pane", - "block.betternether.quartz_glass_pane_black": "Black Quartz Pane", - - "block.betternether.quartz_glass_framed_pane_white": "White Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_orange": "Orange Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_magenta": "Magenta Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_light_blue": "Light Framed Blue Quartz Pane", - "block.betternether.quartz_glass_framed_pane_yellow": "Yellow Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_lime": "Lime Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_pink": "Pink Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_gray": "Gray Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_light_gray": "Light Gray Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_cyan": "Cyan Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_purple": "Purple Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_blue": "Blue Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_brown": "Brown Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_green": "Green Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_red": "Red Framed Quartz Pane", - "block.betternether.quartz_glass_framed_pane_black": "Black Framed Quartz Pane", - - "block.betternether.soul_lily": "Soul Lily", - "block.betternether.soul_lily_sapling": "Soul Lily Sapling", - "block.betternether.soul_grass": "Soul Grass", - - "block.betternether.wart_log": "Wart Log", - "block.betternether.wart_bark": "Wart Wood", - "block.betternether.wart_roots": "Wart Roots", - - "block.betternether.wall_moss": "Wall Moss", - "block.betternether.wall_mushroom_brown": "Wall Brown Mushroom", - "block.betternether.wall_mushroom_red": "Wall Red Mushroom", - - "block.betternether.roof_tile_reeds": "Reeds Roof Tile", - "block.betternether.roof_tile_reeds_stairs": "Reeds Roof Tile Stairs", - "block.betternether.roof_tile_reeds_slab": "Reeds Roof Tile Slab", - "block.betternether.roof_tile_stalagnate": "Stalagnate Roof Tile", - "block.betternether.roof_tile_stalagnate_stairs": "Stalagnate Roof Tile Stairs", - "block.betternether.roof_tile_stalagnate_slab": "Stalagnate Roof Tile Slab", - "block.betternether.roof_tile_nether_bricks": "Nether Bricks Roof Tile", - "block.betternether.roof_tile_nether_bricks_stairs": "Nether Bricks Roof Tile Stairs", - "block.betternether.roof_tile_nether_bricks_slab": "Nether Bricks Roof Tile Slab", - "block.betternether.roof_tile_cincinnasite": "Cincinnasite Roof Tile", - "block.betternether.roof_tile_cincinnasite_stairs": "Cincinnasite Roof Tile Stairs", - "block.betternether.roof_tile_cincinnasite_slab": "Cincinnasite Roof Tile Slab", - "block.betternether.roof_tile_willow": "Willow Roof Tile", - "block.betternether.roof_tile_willow_stairs": "Willow Roof Tile Stairs", - "block.betternether.roof_tile_willow_slab": "Willow Roof Tile Slab", - "block.betternether.roof_tile_wart": "Wart Roof Tile", - "block.betternether.roof_tile_wart_stairs": "Wart Roof Tile Stairs", - "block.betternether.roof_tile_wart_slab": "Wart Roof Tile Slab", - - "block.betternether.taburet_reeds": "Reeds Stool", - "block.betternether.taburet_stalagnate": "Stalagnate Stool", - "block.betternether.taburet_willow": "Willow Stool", - "block.betternether.taburet_wart": "Wart Stool", - "block.betternether.taburet_cincinnasite": "Cincinnasite Stool", - - "block.betternether.stalagnate_ladder": "Stalagnate Ladder", - "block.betternether.willow_ladder": "Willow Ladder", - "block.betternether.wart_ladder": "Wart Ladder", - - "block.betternether.chair_reeds": "Reeds Chair", - "block.betternether.chair_stalagnate": "Stalagnate Chair", - "block.betternether.chair_willow": "Willow Chair", - "block.betternether.chair_wart": "Wart Chair", - "block.betternether.chair_cincinnasite": "Cincinnasite Chair", - - "block.betternether.striped_log_stalagnate": "Striped Stalagnate Log", - "block.betternether.striped_log_willow": "Striped Willow Log", - "block.betternether.striped_log_wart": "Striped Wart Log", - - "block.betternether.striped_bark_stalagnate": "Striped Stalagnate Wood", - "block.betternether.striped_bark_willow": "Striped Willow Wood", - "block.betternether.striped_bark_wart": "Striped Wart Wood", - - "block.betternether.giant_mold": "Giant Mold", - "block.betternether.giant_mold_sapling": "Giant Mold Sapling", - - "block.betternether.bar_stool_reeds": "Reed Bar Stool", - "block.betternether.bar_stool_stalagnate": "Stalagnate Bar Stool", - "block.betternether.bar_stool_willow": "Willow Bar Stool", - "block.betternether.bar_stool_wart": "Wart Bar Stool", - "block.betternether.bar_stool_cincinnasite": "Cincinnasite Bar Stool", - - "biome.betternether.gravel_desert": "Gravel Desert", - "biome.betternether.nether_jungle": "Nether Jungle", - "biome.betternether.wart_forest": "Wart Forest", - "biome.betternether.nether_grasslands": "Nether Grasslands", - "biome.betternether.nether_mushroom_forest": "Nether Mushroom Forest", - "biome.betternether.nether_mushroom_forest_edge": "Nether Mushroom Forest Edge", - "biome.betternether.nether_wart_forest_edge": "Wart Forest Edge", - "biome.betternether.bone_reef": "Bone Reef", - "biome.betternether.poor_grasslands": "Poor Grasslands", - "biome.betternether.nether_swampland": "Nether Swampland", - "biome.betternether.nether_swampland_terraces": "Nether Swampland Terraces", - "biome.betternether.magma_land": "Magma Land", - "biome.betternether.soul_plain": "Soul Plain", - - "block.betternether.mushroom_fir": "Mushroom Fir", - "block.betternether.mushroom_fir_sapling": "Mushroom Fir Sapling", - "block.betternether.mushroom_fir_stem": "Mushroom Fir Stem", - "block.betternether.mushroom_fir_log": "Mushroom Fir Log", - "block.betternether.mushroom_fir_wood": "Mushroom Fir Wood", - "block.betternether.striped_log_mushroom_fir": "Striped Mushroom Fir Log", - "block.betternether.striped_wood_mushroom_fir": "Striped Mushroom Fir Wood", - "block.betternether.mushroom_fir_planks": "Mushroom Fir Planks", - "block.betternether.mushroom_fir_stairs": "Mushroom Fir Stairs", - "block.betternether.mushroom_fir_slab": "Mushroom Fir Slab", - "block.betternether.mushroom_fir_fence": "Mushroom Fir Fence", - "block.betternether.mushroom_fir_gate": "Mushroom Fir Gate", - "block.betternether.mushroom_fir_button": "Mushroom Fir Button", - "block.betternether.mushroom_fir_plate": "Mushroom Fir Plate", - "block.betternether.mushroom_fir_trapdoor": "Mushroom Fir Trapdoor", - "block.betternether.mushroom_fir_door": "Mushroom Fir Door", - - "block.betternether.chair_mushroom_fir": "Mushroom Fir Chair", - "block.betternether.taburet_mushroom_fir": "Mushroom Fir Stool", - "block.betternether.bar_stool_mushroom_fir": "Mushroom Fir Bar Stool", - - "block.betternether.obsidian_bricks": "Obsidian Bricks", - "block.betternether.obsidian_bricks_stairs": "Obsidian Bricks Stairs", - "block.betternether.obsidian_bricks_slab": "Obsidian Bricks Slab", - "block.betternether.obsidian_tile": "Obsidian Tile", - "block.betternether.obsidian_tile_small": "Obsidian Small Tile", - "block.betternether.obsidian_tile_stairs": "Obsidian Tile Stairs", - "block.betternether.obsidian_tile_slab": "Obsidian Tile Slab", - "block.betternether.obsidian_glass": "Obsidian Glass", - "block.betternether.obsidian_glass_pane": "Obsidian Glass Pane", - "block.betternether.blue_obsidian": "Blue Obsidian", - "block.betternether.blue_obsidian_bricks": "Blue Obsidian Bricks", - "block.betternether.blue_obsidian_bricks_stairs": "Blue Obsidian Bricks Stairs", - "block.betternether.blue_obsidian_bricks_slab": "Blue Obsidian Bricks Slab", - "block.betternether.blue_obsidian_tile": "Blue Obsidian Tile", - "block.betternether.blue_obsidian_tile_small": "Blue Obsidian Small Tile", - "block.betternether.blue_obsidian_tile_stairs": "Blue Obsidian Tile Stairs", - "block.betternether.blue_obsidian_tile_slab": "Blue Obsidian Tile Slab", - "block.betternether.blue_obsidian_glass": "Blue Obsidian Glass", - "block.betternether.blue_obsidian_glass_pane": "Blue Obsidian Glass Pane", - - "block.betternether.taburet_oak": "Oak Stool", - "block.betternether.chair_oak": "Oak Chair", - "block.betternether.bar_stool_oak": "Oak Bar Stool", - "block.betternether.taburet_spruce": "Spruce Stool", - "block.betternether.chair_spruce": "Spruce Chair", - "block.betternether.bar_stool_spruce": "Spruce Bar Stool", - "block.betternether.taburet_birch": "Birch Stool", - "block.betternether.chair_birch": "Birch Chair", - "block.betternether.bar_stool_birch": "Birch Bar Stool", - "block.betternether.taburet_jungle": "Jungle Stool", - "block.betternether.chair_jungle": "Jungle Chair", - "block.betternether.bar_stool_jungle": "Jungle Bar Stool", - "block.betternether.taburet_acacia": "Acacia Stool", - "block.betternether.chair_acacia": "Acacia Chair", - "block.betternether.bar_stool_acacia": "Acacia Bar Stool", - "block.betternether.taburet_dark_oak": "Dark Oak Stool", - "block.betternether.chair_dark_oak": "Dark Oak Chair", - "block.betternether.bar_stool_dark_oak": "Dark Oak Bar Stool", - - "item.betternether.cincinnasite_hammer": "Cincinnasite Hammer", - "item.betternether.cincinnasite_hammer_diamond": "Cincinnasite-Diamond Hammer", - - "block.betternether.nether_brewing_stand": "Nether Brewing Stand" -} \ No newline at end of file + "container.forge": "Forge", + "container.chest_of_drawers": "Chest of Drawers", + + "entity.betternether.firefly": "Firefly", + + "item.betternether.black_apple": "Black Apple", + + "item.betternether.cincinnasite": "Cincinnasite", + "item.betternether.cincinnasite_axe": "Cincinnasite Axe", + "item.betternether.cincinnasite_axe_diamond": "Cincinnasite-Diamond Axe", + "item.betternether.cincinnasite_pickaxe": "Cincinnasite Pickaxe", + "item.betternether.cincinnasite_pickaxe_diamond": "Cincinnasite-Diamond Pickaxe", + + "item.betternether.stalagnate_bowl": "Stalagnate Bowl", + "item.betternether.stalagnate_bowl_apple": "Black Apple", + "item.betternether.stalagnate_bowl_mushroom": "Mushroom Stew", + "item.betternether.stalagnate_bowl_wart": "Wart Soup", + + "itemGroup.betternether.items": "Better Nether", + + "message.spawn_help": "§c§lYou must hold Glowstone Dust to set your spawn point here", + "message.spawn_set": "§2§lYour spawn point was set here", + + "block.betternether.agave": "Agave", + + "block.betternether.barrel_cactus": "Barrel Cactus", + + "block.betternether.black_apple_seed": "Black Apple Seed", + "block.betternether.black_bush": "Black Bush", + + "block.betternether.eyeball": "Eyeball Block", + "block.betternether.eyeball_small": "Small Eyeball Block", + + "block.betternether.bone_block": "Bone Block", + "block.betternether.bone_button": "Bone Button", + "block.betternether.bone_cincinnasite_door": "Bone-Cincinnasite Door", + "block.betternether.bone_mushroom": "Bone Mushroom Spores", + "block.betternether.bone_plate": "Bone Pressure Plate", + "block.betternether.bone_reed_door": "Bone-Reed Door", + "block.betternether.bone_slab": "Bone Slab", + "block.betternether.bone_stairs": "Bone Stairs", + "block.betternether.bone_tile": "Bone Tile", + "block.betternether.bone_wall": "Bone Wall", + + "block.betternether.chest_of_drawers": "Chest of Drawers", + + "block.betternether.cincinnasite_bars": "Cincinnasite Bars", + "block.betternether.cincinnasite_block": "Cincinnasite Block", + "block.betternether.cincinnasite_brick_plate": "Cincinnasite Brick Plate", + "block.betternether.cincinnasite_bricks": "Cincinnasite Bricks", + "block.betternether.cincinnasite_bricks_pillar": "Cincinnasite Brick Pillar", + "block.betternether.cincinnasite_button": "Cincinnasite Button", + "block.betternether.cincinnasite_carved": "Cincinnasite Carved", + "block.betternether.cincinnasite_fire_bowl": "Cincinnasite Fire Bowl", + "block.betternether.cincinnasite_forge": "Cincinnasite Forge", + "block.betternether.cincinnasite_forged": "Forged Cincinnasite Block", + "block.betternether.cincinnasite_frame": "Cincinnasite Frame", + "block.betternether.cincinnasite_lantern": "Cincinnasite Lantern", + "block.betternether.cincinnasite_ore": "Cincinnasite Ore", + "block.betternether.cincinnasite_pedestal": "Cincinnasite Pedestal", + "block.betternether.cincinnasite_pillar": "Cincinnasite Pillar", + "block.betternether.cincinnasite_plate": "Cincinnasite Plate", + "block.betternether.cincinnasite_pot": "Cincinnasite Pot", + "block.betternether.cincinnasite_slab": "Cincinnasite Slab", + "block.betternether.cincinnasite_stairs": "Cincinnasite Stairs", + "block.betternether.cincinnasite_tile_large": "Large Cincinnasite Tile", + "block.betternether.cincinnasite_tile_small": "Small Cincinnasite Tile", + "block.betternether.cincinnasite_wall": "Cincinnasite Wall", + + "block.betternether.egg_plant": "Egg Plant", + + "block.betternether.eye_seed": "Eye Seed", + + "block.betternether.farmland": "Farmland", + + "block.betternether.gray_mold": "Gray Mold", + + "block.betternether.ink_bush": "Ink Bush", + "block.betternether.ink_bush_seed": "Ink Bush Seed", + + "block.betternether.lucis_spore": "Lucis Spore", + + "block.betternether.magma_flower": "Magma flower seed", + + "block.betternether.nether_brick_tile_large": "Large Nether Brick Tile", + "block.betternether.nether_brick_tile_slab": "Small Nether Brick Tile Slab", + "block.betternether.nether_brick_tile_small": "Small Nether Brick Tile", + "block.betternether.nether_brick_tile_stairs": "Small Nether Brick Tile Stairs", + "block.betternether.nether_brick_wall": "Nether Brick Wall", + "block.betternether.nether_cactus": "Nether Cactus", + "block.betternether.nether_grass": "Nether Grass", + "block.betternether.nether_mycelium": "Nether Mycelium", + "block.betternether.nether_reed": "Nether Reed", + "block.betternether.netherrack_furnace": "Netherrack Furnace", + "block.betternether.netherrack_moss": "Nether Moss", + + "block.betternether.orange_mushroom": "Orange Mushroom", + + "block.betternether.pig_statue_respawner": "Respawner Statue", + + "block.betternether.potted_plant": "Potted Plant", + + "block.betternether.quartz_glass": "Quartz Glass", + "block.betternether.quartz_glass_framed": "Framed Quartz Glass", + "block.betternether.quartz_glass_framed_pane": "Framed Quartz Glass Pane", + "block.betternether.quartz_glass_pane": "Quartz Glass Pane", + "block.betternether.quartz_glass_black": "Quartz Glass Black", + "block.betternether.quartz_glass_blue": "Quartz Glass Blue", + "block.betternether.quartz_glass_brown": "Quartz Glass Brown", + "block.betternether.quartz_glass_cyan": "Quartz Glass Cyan", + "block.betternether.quartz_glass_gray": "Quartz Glass Gray", + "block.betternether.quartz_glass_green": "Quartz Glass Green", + "block.betternether.quartz_glass_light_blue": "Quartz Glass Light Blue", + "block.betternether.quartz_glass_lime": "Quartz Glass Lime", + "block.betternether.quartz_glass_magenta": "Quartz Glass Magenta", + "block.betternether.quartz_glass_orange": "Quartz Glass Orange", + "block.betternether.quartz_glass_pink": "Quartz Glass Pink", + "block.betternether.quartz_glass_purple": "Quartz Glass Purple", + "block.betternether.quartz_glass_red": "Quartz Glass Red", + "block.betternether.quartz_glass_light_gray": "Quartz Glass Light Gray", + "block.betternether.quartz_glass_white": "Quartz Glass White", + "block.betternether.quartz_glass_yellow": "Quartz Glass Yellow", + "block.betternether.quartz_glass_framed_black": "Framed Quartz Glass Black", + "block.betternether.quartz_glass_framed_blue": "Framed Quartz Glass Blue", + "block.betternether.quartz_glass_framed_brown": "Framed Quartz Glass Brown", + "block.betternether.quartz_glass_framed_cyan": "Framed Quartz Glass Cyan", + "block.betternether.quartz_glass_framed_gray": "Framed Quartz Glass Gray", + "block.betternether.quartz_glass_framed_green": "Framed Quartz Glass Green", + "block.betternether.quartz_glass_framed_light_blue": "Framed Quartz Glass Light Blue", + "block.betternether.quartz_glass_framed_lime": "Framed Quartz Glass Lime", + "block.betternether.quartz_glass_framed_magenta": "Framed Quartz Glass Magenta", + "block.betternether.quartz_glass_framed_orange": "Framed Quartz Glass Orange", + "block.betternether.quartz_glass_framed_pink": "Framed Quartz Glass Pink", + "block.betternether.quartz_glass_framed_purple": "Framed Quartz Glass Purple", + "block.betternether.quartz_glass_framed_red": "Framed Quartz Glass Red", + "block.betternether.quartz_glass_framed_light_gray": "Framed Quartz Glass Light Gray", + "block.betternether.quartz_glass_framed_white": "Framed Quartz Glass White", + "block.betternether.quartz_glass_framed_yellow": "Framed Quartz Glass Yellow", + + "block.betternether.red_mold": "Red Mold", + + "block.betternether.reeds_block": "Reeds Block", + "block.betternether.reeds_button": "Reeds Button", + "block.betternether.reeds_fence": "Reeds Fence", + "block.betternether.reeds_gate": "Reeds Gate", + "block.betternether.reeds_ladder": "Reeds Ladder", + "block.betternether.reeds_plate": "Reeds Pressure Plate", + "block.betternether.reeds_slab": "Reeds Slab", + "block.betternether.reeds_stairs": "Reeds Stairs", + "block.betternether.reeds_door": "Reeds Door", + "block.betternether.reeds_trapdoor": "Reeds Trapdoor", + + "block.betternether.smoker": "Smoker", + + "block.betternether.stalagnate": "Stalagnate", + "block.betternether.stalagnate_stem": "Stalagnate", + "block.betternether.stalagnate_bark": "Stalagnate Wood", + "block.betternether.stalagnate_bowl_placed": "Stalagnate Bowl", + "block.betternether.stalagnate_planks": "Stalagnate Planks", + "block.betternether.stalagnate_planks_button": "Stalagnate Button", + "block.betternether.stalagnate_planks_fence": "Stalagnate Fence", + "block.betternether.stalagnate_planks_gate": "Stalagnate Gate", + "block.betternether.stalagnate_planks_plate": "Stalagnate Pressure Plate", + "block.betternether.stalagnate_planks_slab": "Stalagnate Slab", + "block.betternether.stalagnate_planks_stairs": "Stalagnate Stairs", + "block.betternether.stalagnate_planks_door": "Stalagnate Door", + "block.betternether.stalagnate_planks_trapdoor": "Stalagnate Trapdoor", + "block.betternether.stalagnate_seed": "Stalagnate Seed", + "block.betternether.wart_seed": "Wart Seed", + + "commands.findnethercity.usage.console": "No coordinates in input", + "commands.findnethercity.usage.coordinates": "Wrong coordinates", + "commands.findnethercity.usage": "Wrong usage, must be /findNetherCity or /findNetherCity x y z", + + "block.betternether.willow_branch": "Willow Branch", + "block.betternether.willow_leaves": "Willow Leaves", + "block.betternether.willow_trunk": "Willow Trunk", + "block.betternether.willow_log": "Willow Log", + "block.betternether.willow_bark": "Willow Wood", + "block.betternether.willow_sapling": "Willow Sapling", + + "block.betternether.swamp_grass": "Swamp Grass", + + "block.betternether.willow_planks": "Willow Planks", + "block.betternether.willow_stairs": "Willow Stairs", + "block.betternether.willow_slab": "Willow Slab", + "block.betternether.willow_fence": "Willow Fence", + "block.betternether.willow_gate": "Willow Gate", + "block.betternether.willow_button": "Willow Button", + "block.betternether.willow_plate": "Willow Pressure Plate", + "block.betternether.willow_trapdoor": "Willow Trapdoor", + "block.betternether.willow_door": "Willow Door", + + "block.betternether.wart_planks": "Wart Planks", + "block.betternether.wart_stairs": "Wart Stairs", + "block.betternether.wart_slab": "Wart Slab", + "block.betternether.wart_fence": "Wart Fence", + "block.betternether.wart_gate": "Wart Gate", + "block.betternether.wart_button": "Wart Button", + "block.betternether.wart_plate": "Wart Pressure Plate", + "block.betternether.wart_trapdoor": "Wart Trapdoor", + "block.betternether.wart_door": "Wart Door", + + "block.betternether.black_vine": "Black Vine", + "block.betternether.veined_sand": "Veined Sand", + "block.betternether.soul_vein": "Soul Vein", + "block.betternether.blooming_vine": "Blooming vine", + "block.betternether.golden_vine": "Golden Vine", + "block.betternether.geyser": "Geyser", + + "item.betternether.cincinnasite_shovel": "Cincinnasite Shovel", + "item.betternether.cincinnasite_shovel_diamond": "Cincinnasite-Diamond Shovel", + + "item.betternether.cincinnasite_helmet": "Cincinnasite Helmet", + "item.betternether.cincinnasite_chestplate": "Cincinnasite Chestplate", + "item.betternether.cincinnasite_leggings": "Cincinnasite Leggings", + "item.betternether.cincinnasite_boots": "Cincinnasite Boots", + "item.betternether.cincinnasite_sword": "Cincinnasite Sword", + "item.betternether.cincinnasite_sword_diamond": "Cincinnasite-Diamond Sword", + + "item.betternether.spawn_egg_firefly": "Firefly Spawn Egg", + "item.betternether.cincinnasite_ingot": "Cincinnasite Ingot", + + "block.betternether.mushroom_stem": "Mushroom Stem", + "block.betternether.mushroom_planks": "Mushroom Planks", + "block.betternether.mushroom_stairs": "Mushroom Stairs", + "block.betternether.mushroom_slab": "Mushroom Slab", + "block.betternether.mushroom_fence": "Mushroom Fence", + "block.betternether.mushroom_gate": "Mushroom Gate", + "block.betternether.mushroom_button": "Mushroom Button", + "block.betternether.mushroom_plate": "Mushroom Plate", + "block.betternether.mushroom_trapdoor": "Mushroom Trapdoor", + "block.betternether.mushroom_door": "Mushroom Door", + + "block.betternether.cincinnasite_lantern_small": "Small Cincinnasite Lantern", + + "block.betternether.quartz_glass_pane_white": "White Quartz Pane", + "block.betternether.quartz_glass_pane_orange": "Orange Quartz Pane", + "block.betternether.quartz_glass_pane_magenta": "Magenta Quartz Pane", + "block.betternether.quartz_glass_pane_light_blue": "Light Blue Quartz Pane", + "block.betternether.quartz_glass_pane_yellow": "Yellow Quartz Pane", + "block.betternether.quartz_glass_pane_lime": "Lime Quartz Pane", + "block.betternether.quartz_glass_pane_pink": "Pink Quartz Pane", + "block.betternether.quartz_glass_pane_gray": "Gray Quartz Pane", + "block.betternether.quartz_glass_pane_light_gray": "Light Gray Quartz Pane", + "block.betternether.quartz_glass_pane_cyan": "Cyan Quartz Pane", + "block.betternether.quartz_glass_pane_purple": "Purple Quartz Pane", + "block.betternether.quartz_glass_pane_blue": "Blue Quartz Pane", + "block.betternether.quartz_glass_pane_brown": "Brown Quartz Pane", + "block.betternether.quartz_glass_pane_green": "Green Quartz Pane", + "block.betternether.quartz_glass_pane_red": "Red Quartz Pane", + "block.betternether.quartz_glass_pane_black": "Black Quartz Pane", + + "block.betternether.quartz_glass_framed_pane_white": "White Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_orange": "Orange Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_magenta": "Magenta Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_light_blue": "Light Framed Blue Quartz Pane", + "block.betternether.quartz_glass_framed_pane_yellow": "Yellow Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_lime": "Lime Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_pink": "Pink Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_gray": "Gray Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_light_gray": "Light Gray Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_cyan": "Cyan Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_purple": "Purple Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_blue": "Blue Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_brown": "Brown Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_green": "Green Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_red": "Red Framed Quartz Pane", + "block.betternether.quartz_glass_framed_pane_black": "Black Framed Quartz Pane", + + "block.betternether.soul_lily": "Soul Lily", + "block.betternether.soul_lily_sapling": "Soul Lily Sapling", + "block.betternether.soul_grass": "Soul Grass", + + "block.betternether.wart_log": "Wart Log", + "block.betternether.wart_bark": "Wart Wood", + "block.betternether.wart_roots": "Wart Roots", + + "block.betternether.wall_moss": "Wall Moss", + "block.betternether.wall_mushroom_brown": "Wall Brown Mushroom", + "block.betternether.wall_mushroom_red": "Wall Red Mushroom", + + "block.betternether.roof_tile_reeds": "Reeds Roof Tile", + "block.betternether.roof_tile_reeds_stairs": "Reeds Roof Tile Stairs", + "block.betternether.roof_tile_reeds_slab": "Reeds Roof Tile Slab", + "block.betternether.roof_tile_stalagnate": "Stalagnate Roof Tile", + "block.betternether.roof_tile_stalagnate_stairs": "Stalagnate Roof Tile Stairs", + "block.betternether.roof_tile_stalagnate_slab": "Stalagnate Roof Tile Slab", + "block.betternether.roof_tile_nether_bricks": "Nether Bricks Roof Tile", + "block.betternether.roof_tile_nether_bricks_stairs": "Nether Bricks Roof Tile Stairs", + "block.betternether.roof_tile_nether_bricks_slab": "Nether Bricks Roof Tile Slab", + "block.betternether.roof_tile_cincinnasite": "Cincinnasite Roof Tile", + "block.betternether.roof_tile_cincinnasite_stairs": "Cincinnasite Roof Tile Stairs", + "block.betternether.roof_tile_cincinnasite_slab": "Cincinnasite Roof Tile Slab", + "block.betternether.roof_tile_willow": "Willow Roof Tile", + "block.betternether.roof_tile_willow_stairs": "Willow Roof Tile Stairs", + "block.betternether.roof_tile_willow_slab": "Willow Roof Tile Slab", + "block.betternether.roof_tile_wart": "Wart Roof Tile", + "block.betternether.roof_tile_wart_stairs": "Wart Roof Tile Stairs", + "block.betternether.roof_tile_wart_slab": "Wart Roof Tile Slab", + + "block.betternether.taburet_reeds": "Reeds Stool", + "block.betternether.taburet_stalagnate": "Stalagnate Stool", + "block.betternether.taburet_willow": "Willow Stool", + "block.betternether.taburet_wart": "Wart Stool", + "block.betternether.taburet_cincinnasite": "Cincinnasite Stool", + + "block.betternether.stalagnate_ladder": "Stalagnate Ladder", + "block.betternether.willow_ladder": "Willow Ladder", + "block.betternether.wart_ladder": "Wart Ladder", + + "block.betternether.chair_reeds": "Reeds Chair", + "block.betternether.chair_stalagnate": "Stalagnate Chair", + "block.betternether.chair_willow": "Willow Chair", + "block.betternether.chair_wart": "Wart Chair", + "block.betternether.chair_cincinnasite": "Cincinnasite Chair", + + "block.betternether.striped_log_stalagnate": "Striped Stalagnate Log", + "block.betternether.striped_log_willow": "Striped Willow Log", + "block.betternether.striped_log_wart": "Striped Wart Log", + + "block.betternether.striped_bark_stalagnate": "Striped Stalagnate Wood", + "block.betternether.striped_bark_willow": "Striped Willow Wood", + "block.betternether.striped_bark_wart": "Striped Wart Wood", + + "block.betternether.giant_mold": "Giant Mold", + "block.betternether.giant_mold_sapling": "Giant Mold Sapling", + + "block.betternether.bar_stool_reeds": "Reed Bar Stool", + "block.betternether.bar_stool_stalagnate": "Stalagnate Bar Stool", + "block.betternether.bar_stool_willow": "Willow Bar Stool", + "block.betternether.bar_stool_wart": "Wart Bar Stool", + "block.betternether.bar_stool_cincinnasite": "Cincinnasite Bar Stool", + + "biome.betternether.gravel_desert": "Gravel Desert", + "biome.betternether.nether_jungle": "Nether Jungle", + "biome.betternether.wart_forest": "Wart Forest", + "biome.betternether.nether_grasslands": "Nether Grasslands", + "biome.betternether.nether_mushroom_forest": "Nether Mushroom Forest", + "biome.betternether.nether_mushroom_forest_edge": "Nether Mushroom Forest Edge", + "biome.betternether.nether_wart_forest_edge": "Wart Forest Edge", + "biome.betternether.bone_reef": "Bone Reef", + "biome.betternether.poor_grasslands": "Poor Grasslands", + "biome.betternether.nether_swampland": "Nether Swampland", + "biome.betternether.nether_swampland_terraces": "Nether Swampland Terraces", + "biome.betternether.magma_land": "Magma Land", + "biome.betternether.soul_plain": "Soul Plain", + + "block.betternether.mushroom_fir": "Mushroom Fir", + "block.betternether.mushroom_fir_sapling": "Mushroom Fir Sapling", + "block.betternether.mushroom_fir_stem": "Mushroom Fir Stem", + "block.betternether.mushroom_fir_log": "Mushroom Fir Log", + "block.betternether.mushroom_fir_wood": "Mushroom Fir Wood", + "block.betternether.striped_log_mushroom_fir": "Striped Mushroom Fir Log", + "block.betternether.striped_wood_mushroom_fir": "Striped Mushroom Fir Wood", + "block.betternether.mushroom_fir_planks": "Mushroom Fir Planks", + "block.betternether.mushroom_fir_stairs": "Mushroom Fir Stairs", + "block.betternether.mushroom_fir_slab": "Mushroom Fir Slab", + "block.betternether.mushroom_fir_fence": "Mushroom Fir Fence", + "block.betternether.mushroom_fir_gate": "Mushroom Fir Gate", + "block.betternether.mushroom_fir_button": "Mushroom Fir Button", + "block.betternether.mushroom_fir_plate": "Mushroom Fir Plate", + "block.betternether.mushroom_fir_trapdoor": "Mushroom Fir Trapdoor", + "block.betternether.mushroom_fir_door": "Mushroom Fir Door", + + "block.betternether.chair_mushroom_fir": "Mushroom Fir Chair", + "block.betternether.taburet_mushroom_fir": "Mushroom Fir Stool", + "block.betternether.bar_stool_mushroom_fir": "Mushroom Fir Bar Stool", + + "block.betternether.obsidian_bricks": "Obsidian Bricks", + "block.betternether.obsidian_bricks_stairs": "Obsidian Bricks Stairs", + "block.betternether.obsidian_bricks_slab": "Obsidian Bricks Slab", + "block.betternether.obsidian_tile": "Obsidian Tile", + "block.betternether.obsidian_tile_small": "Obsidian Small Tile", + "block.betternether.obsidian_tile_stairs": "Obsidian Tile Stairs", + "block.betternether.obsidian_tile_slab": "Obsidian Tile Slab", + "block.betternether.obsidian_glass": "Obsidian Glass", + "block.betternether.obsidian_glass_pane": "Obsidian Glass Pane", + "block.betternether.blue_obsidian": "Blue Obsidian", + "block.betternether.blue_obsidian_bricks": "Blue Obsidian Bricks", + "block.betternether.blue_obsidian_bricks_stairs": "Blue Obsidian Bricks Stairs", + "block.betternether.blue_obsidian_bricks_slab": "Blue Obsidian Bricks Slab", + "block.betternether.blue_obsidian_tile": "Blue Obsidian Tile", + "block.betternether.blue_obsidian_tile_small": "Blue Obsidian Small Tile", + "block.betternether.blue_obsidian_tile_stairs": "Blue Obsidian Tile Stairs", + "block.betternether.blue_obsidian_tile_slab": "Blue Obsidian Tile Slab", + "block.betternether.blue_obsidian_glass": "Blue Obsidian Glass", + "block.betternether.blue_obsidian_glass_pane": "Blue Obsidian Glass Pane", + + "block.betternether.taburet_oak": "Oak Stool", + "block.betternether.chair_oak": "Oak Chair", + "block.betternether.bar_stool_oak": "Oak Bar Stool", + "block.betternether.taburet_spruce": "Spruce Stool", + "block.betternether.chair_spruce": "Spruce Chair", + "block.betternether.bar_stool_spruce": "Spruce Bar Stool", + "block.betternether.taburet_birch": "Birch Stool", + "block.betternether.chair_birch": "Birch Chair", + "block.betternether.bar_stool_birch": "Birch Bar Stool", + "block.betternether.taburet_jungle": "Jungle Stool", + "block.betternether.chair_jungle": "Jungle Chair", + "block.betternether.bar_stool_jungle": "Jungle Bar Stool", + "block.betternether.taburet_acacia": "Acacia Stool", + "block.betternether.chair_acacia": "Acacia Chair", + "block.betternether.bar_stool_acacia": "Acacia Bar Stool", + "block.betternether.taburet_dark_oak": "Dark Oak Stool", + "block.betternether.chair_dark_oak": "Dark Oak Chair", + "block.betternether.bar_stool_dark_oak": "Dark Oak Bar Stool", + + "item.betternether.cincinnasite_hammer": "Cincinnasite Hammer", + "item.betternether.cincinnasite_hammer_diamond": "Cincinnasite-Diamond Hammer", + + "block.betternether.nether_brewing_stand": "Nether Brewing Stand" +} diff --git a/en-mods/blockus.json b/en-mods/blockus.json deleted file mode 100644 index c046a1dc0..000000000 --- a/en-mods/blockus.json +++ /dev/null @@ -1,477 +0,0 @@ -{ - "itemGroup.blockus.blockus_building_blocks": "Building Blocks §3(Blockus)", - "itemGroup.blockus.blockus_decorations": "Decoration Blocks §3(Blockus)", - "itemGroup.blockus.blockus_redstone": "Redstone §3(Blockus)", - "block.blockus.blaze_bricks": "Blaze Bricks", - "block.blockus.blaze_bricks_wall": "Blaze Brick Wall", - "block.blockus.blaze_bricks_stairs": "Blaze Brick Stairs", - "block.blockus.blaze_bricks_slab": "Blaze Brick Slab", - "block.blockus.blaze_pillar": "Blaze Pillar", - "block.blockus.sandstone_bricks": "Sandstone Bricks", - "block.blockus.sandstone_bricks_stairs": "Sandstone Brick Stairs", - "block.blockus.sandstone_bricks_slab": "Sandstone Brick Slab", - "block.blockus.red_sandstone_bricks": "Red Sandstone Bricks", - "block.blockus.red_sandstone_bricks_stairs": "Red Sandstone Brick Stairs", - "block.blockus.red_sandstone_bricks_slab": "Red Sandstone Brick Slab", - "block.blockus.paper_block": "Paper Block", - "block.blockus.burned_paper_block": "Burned Paper Block", - "block.blockus.paper_wall": "Paper Wall", - "block.blockus.paper_door": "Paper Door", - "block.blockus.paper_trapdoor": "Paper Trapdoor", - "block.blockus.stars_block": "Stars Block", - "block.blockus.ender_block": "Ender Block", - "block.blockus.rotten_flesh_block": "Rotten Flesh Block", - "block.blockus.smooth_stone_stairs": "Smooth Stone Stairs", - "block.blockus.stone_bricks_pillar": "Stone Brick Pillar", - "block.blockus.white_stone_bricks": "White Stone Bricks", - "block.blockus.orange_stone_bricks": "Orange Stone Bricks", - "block.blockus.magenta_stone_bricks": "Magenta Stone Bricks", - "block.blockus.light_blue_stone_bricks": "Light Blue Stone Bricks", - "block.blockus.yellow_stone_bricks": "Yellow Stone Bricks", - "block.blockus.lime_stone_bricks": "Lime Stone Bricks", - "block.blockus.pink_stone_bricks": "Pink Stone Bricks", - "block.blockus.gray_stone_bricks": "Gray Stone Bricks", - "block.blockus.cyan_stone_bricks": "Cyan Stone Bricks", - "block.blockus.purple_stone_bricks": "Purple Stone Bricks", - "block.blockus.blue_stone_bricks": "Blue Stone Bricks", - "block.blockus.brown_stone_bricks": "Brown Stone Bricks", - "block.blockus.green_stone_bricks": "Green Stone Bricks", - "block.blockus.red_stone_bricks": "Red Stone Bricks", - "block.blockus.black_stone_bricks": "Black Stone Bricks", - - "block.blockus.green_orange_colored_tiles": "Colored Tiles (Green & Orange)", - "block.blockus.lime_yellow_colored_tiles": "Colored Tiles (Lime & Yellow)", - "block.blockus.light_blue_yellow_colored_tiles": "Colored Tiles (Light Blue & Yellow)", - "block.blockus.pink_magenta_colored_tiles": "Colored Tiles (Pink & Magenta)", - "block.blockus.red_blue_colored_tiles": "Colored Tiles (Red & Blue)", - "block.blockus.light_blue_white_colored_tiles": "Colored Tiles (Light Blue & White)", - "block.blockus.red_white_colored_tiles": "Colored Tiles (Red & White)", - "block.blockus.black_white_colored_tiles": "Colored Tiles (Black & White)", - "block.blockus.blue_cyan_colored_tiles": "Colored Tiles (Blue & Cyan)", - - "block.blockus.bamboo_planks": "Bamboo Planks", - "block.blockus.bamboo_door": "Bamboo Door", - "block.blockus.bamboo_slab": "Bamboo Slab", - "block.blockus.bamboo_stairs": "Bamboo Stairs", - "block.blockus.bamboo_pressure_plate": "Bamboo Pressure Plate", - "block.blockus.bamboo_button": "Bamboo Button", - "block.blockus.bamboo_fence": "Bamboo Fence", - "block.blockus.bamboo_fence_gate": "Bamboo Fence Gate", - "block.blockus.bamboo_trapdoor": "Bamboo Trapdoor", - "block.blockus.polished_netherrack": "Polished Netherrack", - "block.blockus.polished_netherrack_stairs": "Polished Netherrack Stairs", - "block.blockus.polished_netherrack_slab": "Polished Netherrack Slab", - "block.blockus.bluestone": "Bluestone", - "block.blockus.bluestone_stairs": "Bluestone Stairs", - "block.blockus.bluestone_slab": "Bluestone Slab", - "block.blockus.bluestone_tiles": "Bluestone Tiles", - "block.blockus.bluestone_tiles_stairs": "Bluestone Tile Stairs", - "block.blockus.bluestone_tiles_slab": "Bluestone Tile Slab", - "block.blockus.bluestone_pillar": "Bluestone Pillar", - "block.blockus.bluestone_bricks": "Bluestone Bricks", - "block.blockus.bluestone_lines": "Bluestone Lines", - "block.blockus.bluestone_squares": "Bluestone Squares", - "block.blockus.bluestone_little_bricks": "Bluestone Little Bricks", - "block.blockus.chiseled_bluestone": "Chiseled Bluestone", - "block.blockus.smooth_bluestone": "Smooth Bluestone", - "block.blockus.large_bricks": "Large Bricks", - - "block.blockus.white_patterned_wool": "White Patterned Wool", - "block.blockus.orange_patterned_wool": "Orange Patterned Wool", - "block.blockus.magenta_patterned_wool": "Magenta Patterned Wool", - "block.blockus.light_blue_patterned_wool": "Light Blue Patterned Wool", - "block.blockus.yellow_patterned_wool": "Yellow Patterned Wool", - "block.blockus.lime_patterned_wool": "Lime Patterned Wool", - "block.blockus.pink_patterned_wool": "Pink Patterned Wool", - "block.blockus.gray_patterned_wool": "Gray Patterned Wool", - "block.blockus.light_gray_patterned_wool": "Light Gray Patterned Wool", - "block.blockus.cyan_patterned_wool": "Cyan Patterned Wool", - "block.blockus.purple_patterned_wool": "Purple Patterned Wool", - "block.blockus.blue_patterned_wool": "Blue Patterned Wool", - "block.blockus.brown_patterned_wool": "Brown Patterned Wool", - "block.blockus.green_patterned_wool": "Green Patterned Wool", - "block.blockus.red_patterned_wool": "Red Patterned Wool", - "block.blockus.black_patterned_wool": "Black Patterned Wool", - - "block.blockus.stone_door": "Stone Door", - "block.blockus.stone_trapdoor": "Stone Trapdoor", - "block.blockus.oak_barrel": "Oak Barrel", - "block.minecraft.barrel": "Spruce Barrel", - "block.blockus.birch_barrel": "Birch Barrel", - "block.blockus.jungle_barrel": "Jungle Barrel", - "block.blockus.acacia_barrel": "Acacia Barrel", - "block.blockus.dark_oak_barrel": "Dark Oak Barrel", - "block.blockus.bamboo_barrel": "Bamboo Barrel", - "block.blockus.love_block": "Love Block §4<3", - "block.blockus.purpur_bricks": "Purpur Bricks", - "block.blockus.smooth_purpur": "Smooth Purpur", - "block.blockus.purpur_lines": "Purpur Lines", - "block.blockus.purpur_squares": "Purpur Squares", - "block.blockus.purpur_little_bricks": "Purpur Little Bricks", - "block.blockus.chiseled_purpur": "Chiseled Purpur", - "block.blockus.nether_pillar": "Nether Pillar", - "block.blockus.red_nether_pillar": "Red Nether Pillar", - "block.blockus.smooth_nether_bricks": "Smooth Nether Bricks", - "block.blockus.smooth_red_nether_bricks": "Smooth Red Nether Bricks", - "block.blockus.soul_sandstone": "Soul Sandstone", - "block.blockus.soul_sandstone_stairs": "Soul Sandstone Stairs", - "block.blockus.soul_sandstone_slab": "Soul Sandstone Slab", - "block.blockus.soul_sandstone_wall": "Soul Sandstone Wall", - "block.blockus.smooth_soul_sandstone": "Smooth Soul Sandstone", - "block.blockus.smooth_soul_sandstone_stairs": "Smooth Soul Sandstone Stairs", - "block.blockus.smooth_soul_sandstone_slab": "Smooth Soul Sandstone Slab", - "block.blockus.soul_sandstone_bricks": "Soul Sandstone Bricks", - "block.blockus.soul_sandstone_bricks_stairs": "Soul Sandstone Brick Stairs", - "block.blockus.soul_sandstone_bricks_slab": "Soul Sandstone Brick Slab", - "block.blockus.cut_soul_sandstone": "Cut Soul Sandstone", - "block.blockus.cut_soul_sandstone_slab": "Cut Soul Sandstone Slab", - "block.blockus.chiseled_soul_sandstone": "Chiseled Soul Sandstone", - "block.blockus.quartz_bricks": "Quartz Bricks", - "block.blockus.wooden_frame": "Wooden Frame", - "block.blockus.membrane_block": "Membrane Block", - "block.blockus.blaze_block": "Blaze Block", - "block.blockus.zigzagged_stone_bricks": "Zigzagged Stone Bricks", - "block.blockus.zigzagged_andesite": "Zigzagged Andesite", - "block.blockus.zigzagged_diorite": "Zigzagged Diorite", - "block.blockus.zigzagged_granite": "Zigzagged Granite", - "block.blockus.andesite_bricks": "Andesite Bricks", - "block.blockus.andesite_bricks_stairs": "Andesite Brick Stairs", - "block.blockus.andesite_bricks_slab": "Andesite Brick Slab", - "block.blockus.diorite_bricks": "Diorite Bricks", - "block.blockus.diorite_bricks_stairs": "Diorite Brick Stairs", - "block.blockus.diorite_bricks_slab": "Diorite Brick Slab", - "block.blockus.granite_bricks": "Granite Bricks", - "block.blockus.granite_bricks_stairs": "Granite Brick Stairs", - "block.blockus.granite_bricks_slab": "Granite Brick Slab", - "block.blockus.caution_block": "Caution Block", - "block.blockus.caution_barrier": "Caution Barrier", - "block.blockus.road_barrier": "Road Barrier", - - "block.blockus.charred_nether_bricks": "Charred Nether Bricks", - "block.blockus.charred_nether_bricks_wall": "Charred Nether Brick Wall", - "block.blockus.charred_nether_bricks_stairs": "Charred Nether Brick Stairs", - "block.blockus.charred_nether_bricks_slab": "Charred Nether Brick Slab", - "block.blockus.charred_nether_pillar": "Charred Nether Pillar", - "block.blockus.smooth_charred_nether_bricks": "Smooth Charred Nether Bricks", - - "block.blockus.soaked_bricks": "Soaked Bricks", - "block.blockus.soaked_bricks_wall": "Soaked Brick Wall", - "block.blockus.soaked_bricks_stairs": "Soaked Brick Stairs", - "block.blockus.soaked_bricks_slab": "Soaked Brick Slab", - - "block.blockus.beveled_glass": "Beveled Glass", - "block.blockus.white_beveled_glass": "White Beveled Glass", - "block.blockus.orange_beveled_glass": "Orange Beveled Glass", - "block.blockus.magenta_beveled_glass": "Magenta Beveled Glass", - "block.blockus.light_blue_beveled_glass": "Light Blue Beveled Glass", - "block.blockus.yellow_beveled_glass": "Yellow Beveled Glass", - "block.blockus.lime_beveled_glass": "Lime Beveled Glass", - "block.blockus.pink_beveled_glass": "Pink Beveled Glass", - "block.blockus.light_gray_beveled_glass": "Light Gray Beveled Glass", - "block.blockus.gray_beveled_glass": "Gray Beveled Glass", - "block.blockus.cyan_beveled_glass": "Cyan Beveled Glass", - "block.blockus.purple_beveled_glass": "Purple Beveled Glass", - "block.blockus.blue_beveled_glass": "Blue Beveled Glass", - "block.blockus.brown_beveled_glass": "Brown Beveled Glass", - "block.blockus.green_beveled_glass": "Green Beveled Glass", - "block.blockus.red_beveled_glass": "Red Beveled Glass", - "block.blockus.black_beveled_glass": "Black Beveled Glass", - "block.blockus.beveled_glass_pane": "Beveled Glass Pane", - "block.blockus.white_beveled_glass_pane": "White Beveled Glass Pane", - "block.blockus.orange_beveled_glass_pane": "Orange Beveled Glass Pane", - "block.blockus.magenta_beveled_glass_pane": "Magenta Beveled Glass Pane", - "block.blockus.light_blue_beveled_glass_pane": "Light Blue Beveled Glass Pane", - "block.blockus.yellow_beveled_glass_pane": "Yellow Beveled Glass Pane", - "block.blockus.lime_beveled_glass_pane": "Lime Beveled Glass Pane", - "block.blockus.pink_beveled_glass_pane": "Pink Beveled Glass Pane", - "block.blockus.light_gray_beveled_glass_pane": "Light Gray Beveled Glass Pane", - "block.blockus.gray_beveled_glass_pane": "Gray Beveled Glass Pane", - "block.blockus.cyan_beveled_glass_pane": "Cyan Beveled Glass Pane", - "block.blockus.purple_beveled_glass_pane": "Purple Beveled Glass Pane", - "block.blockus.blue_beveled_glass_pane": "Blue Beveled Glass Pane", - "block.blockus.brown_beveled_glass_pane": "Brown Beveled Glass Pane", - "block.blockus.green_beveled_glass_pane": "Green Beveled Glass Pane", - "block.blockus.red_beveled_glass_pane": "Red Beveled Glass Pane", - "block.blockus.black_beveled_glass_pane": "Black Beveled Glass Pane", - - "block.blockus.magma_bricks": "Magma Bricks", - "block.blockus.magma_bricks_wall": "Magma Brick Wall", - "block.blockus.magma_bricks_stairs": "Magma Brick Stairs", - "block.blockus.magma_bricks_slab": "Magma Brick Slab", - - "block.blockus.chiseled_end_stone_bricks": "Chiseled End Stone Bricks", - "block.blockus.zigzagged_end_stone_bricks": "Zigzagged End Stone Bricks", - "block.blockus.white_glazed_terracotta_pillar": "White Glazed Terracotta Pillar", - "block.blockus.orange_glazed_terracotta_pillar": "Orange Glazed Terracotta Pillar", - "block.blockus.magenta_glazed_terracotta_pillar": "Magenta Glazed Terracotta Pillar", - "block.blockus.light_blue_glazed_terracotta_pillar": "Light Blue Glazed Terracotta Pillar", - "block.blockus.yellow_glazed_terracotta_pillar": "Yellow Glazed Terracotta Pillar", - "block.blockus.lime_glazed_terracotta_pillar": "Lime Glazed Terracotta Pillar", - "block.blockus.pink_glazed_terracotta_pillar": "Pink Glazed Terracotta Pillar", - "block.blockus.light_gray_glazed_terracotta_pillar": "Light Gray Glazed Terracotta Pillar", - "block.blockus.gray_glazed_terracotta_pillar": "Gray Glazed Terracotta Pillar", - "block.blockus.cyan_glazed_terracotta_pillar": "Cyan Glazed Terracotta Pillar", - "block.blockus.purple_glazed_terracotta_pillar": "Purple Glazed Terracotta Pillar", - "block.blockus.blue_glazed_terracotta_pillar": "Blue Glazed Terracotta Pillar", - "block.blockus.brown_glazed_terracotta_pillar": "Brown Glazed Terracotta Pillar", - "block.blockus.green_glazed_terracotta_pillar": "Green Glazed Terracotta Pillar", - "block.blockus.red_glazed_terracotta_pillar": "Red Glazed Terracotta Pillar", - "block.blockus.black_glazed_terracotta_pillar": "Black Glazed Terracotta Pillar", - - "block.blockus.limestone": "Limestone", - "block.blockus.limestone_stairs": "Limestone Stairs", - "block.blockus.limestone_slab": "Limestone Slab", - "block.blockus.limestone_bricks": "Limestone Bricks", - "block.blockus.limestone_bricks_stairs": "Limestone Brick Stairs", - "block.blockus.limestone_bricks_slab": "Limestone Brick Slab", - "block.blockus.limestone_bricks_wall": "Limestone Brick Wall", - "block.blockus.limestone_pillar": "Limestone Pillar", - "block.blockus.chiseled_limestone": "Chiseled Limestone", - - "block.blockus.asphalt": "Asphalt", - "block.blockus.white_asphalt": "White Asphalt", - "block.blockus.orange_asphalt": "Orange Asphalt", - "block.blockus.magenta_asphalt": "Magenta Asphalt", - "block.blockus.light_blue_asphalt": "Light Blue Asphalt", - "block.blockus.yellow_asphalt": "Yellow Asphalt", - "block.blockus.lime_asphalt": "Lime Asphalt", - "block.blockus.pink_asphalt": "Pink Asphalt", - "block.blockus.light_gray_asphalt": "Light Gray Asphalt", - "block.blockus.gray_asphalt": "Gray Asphalt", - "block.blockus.cyan_asphalt": "Cyan Asphalt", - "block.blockus.purple_asphalt": "Purple Asphalt", - "block.blockus.blue_asphalt": "Blue Asphalt", - "block.blockus.brown_asphalt": "Brown Asphalt", - "block.blockus.green_asphalt": "Green Asphalt", - "block.blockus.red_asphalt": "Red Asphalt", - "block.blockus.asphalt_stairs": "Asphalt Stairs", - "block.blockus.white_asphalt_stairs": "White Asphalt Stairs", - "block.blockus.orange_asphalt_stairs": "Orange Asphalt Stairs", - "block.blockus.magenta_asphalt_stairs": "Magenta Asphalt Stairs", - "block.blockus.light_blue_asphalt_stairs": "Light Blue Asphalt Stairs", - "block.blockus.yellow_asphalt_stairs": "Yellow Asphalt Stairs", - "block.blockus.lime_asphalt_stairs": "Lime Asphalt Stairs", - "block.blockus.pink_asphalt_stairs": "Pink Asphalt Stairs", - "block.blockus.light_gray_asphalt_stairs": "Light Gray Asphalt Stairs", - "block.blockus.gray_asphalt_stairs": "Gray Asphalt Stairs", - "block.blockus.cyan_asphalt_stairs": "Cyan Asphalt Stairs", - "block.blockus.purple_asphalt_stairs": "Purple Asphalt Stairs", - "block.blockus.blue_asphalt_stairs": "Blue Asphalt Stairs", - "block.blockus.brown_asphalt_stairs": "Brown Asphalt Stairs", - "block.blockus.green_asphalt_stairs": "Green Asphalt Stairs", - "block.blockus.red_asphalt_stairs": "Red Asphalt Stairs", - "block.blockus.asphalt_slab": "Asphalt Slab", - "block.blockus.white_asphalt_slab": "White Asphalt Slab", - "block.blockus.orange_asphalt_slab": "Orange Asphalt Slab", - "block.blockus.magenta_asphalt_slab": "Magenta Asphalt Slab", - "block.blockus.light_blue_asphalt_slab": "Light Blue Asphalt Slab", - "block.blockus.yellow_asphalt_slab": "Yellow Asphalt Slab", - "block.blockus.lime_asphalt_slab": "Lime Asphalt Slab", - "block.blockus.pink_asphalt_slab": "Pink Asphalt Slab", - "block.blockus.light_gray_asphalt_slab": "Light Gray Asphalt Slab", - "block.blockus.gray_asphalt_slab": "Gray Asphalt Slab", - "block.blockus.cyan_asphalt_slab": "Cyan Asphalt Slab", - "block.blockus.purple_asphalt_slab": "Purple Asphalt Slab", - "block.blockus.blue_asphalt_slab": "Blue Asphalt Slab", - "block.blockus.brown_asphalt_slab": "Brown Asphalt Slab", - "block.blockus.green_asphalt_slab": "Green Asphalt Slab", - "block.blockus.red_asphalt_slab": "Red Asphalt Slab", - - "block.blockus.paper_lamp": "Paper Lamp", - "block.blockus.redstone_sand": "Redstone Sand", - "block.blockus.stone_circle_pavement": "Stone Circle Pavement", - "block.blockus.andesite_circle_pavement": "Andesite Circle Pavement", - "block.blockus.diorite_circle_pavement": "Diorite Circle Pavement", - "block.blockus.granite_circle_pavement": "Granite Circle Pavement", - "block.blockus.limestone_circle_pavement": "Limestone Circle Pavement", - "block.blockus.quartz_circle_pavement": "Quartz Circle Pavement", - "block.blockus.netherrack_circle_pavement": "Netherrack Circle Pavement", - "block.blockus.prismarine_circle_pavement": "Prismarine Circle Pavement", - "block.blockus.nether_stars_block": "Nether Star Block", - - "block.blockus.obsidian_bricks": "Obsidian Bricks", - "block.blockus.obsidian_bricks_stairs": "Obsidian Brick Stairs", - "block.blockus.obsidian_bricks_slab": "Obsidian Brick Slab", - "block.blockus.obsidian_bricks_wall": "Obsidian Brick Wall", - "block.blockus.obsidian_pillar": "Obsidian Pillar", - "block.blockus.obsidian_circle_pavement": "Obsidian Circle Pavement", - "block.blockus.obsidian_reinforced_door": "Obsidian Reinforced Door", - "block.blockus.obsidian_reinforced_trapdoor": "Obsidian Reinforced Trapdoor", - - "block.blockus.lava_bricks": "Lava Bricks", - "block.blockus.lava_bricks_wall": "Lava Brick Wall", - "block.blockus.lava_bricks_stairs": "Lava Brick Stairs", - "block.blockus.lava_bricks_slab": "Lava Brick Slab", - "block.blockus.chiseled_lava_bricks": "Chiseled Lava Bricks", - - "block.blockus.water_bricks": "Water Bricks", - "block.blockus.water_bricks_wall": "Water Brick Wall", - "block.blockus.water_bricks_stairs": "Water Brick Stairs", - "block.blockus.water_bricks_slab": "Water Brick Slab", - "block.blockus.chiseled_water_bricks": "Chiseled Water Bricks", - - "block.blockus.marble": "Marble", - "block.blockus.marble_stairs": "Marble Stairs", - "block.blockus.marble_slab": "Marble Slab", - "block.blockus.marble_bricks": "Marble Bricks", - "block.blockus.marble_bricks_stairs": "Marble Brick Stairs", - "block.blockus.marble_bricks_slab": "Marble Brick Slab", - "block.blockus.marble_bricks_wall": "Marble Brick Wall", - "block.blockus.marble_pillar": "Marble Pillar", - "block.blockus.chiseled_marble_pillar": "Chiseled Marble Pillar", - "block.blockus.chiseled_marble": "Chiseled Marble", - "block.blockus.marble_circle_pavement": "Marble Circle Pavement", - - "block.blockus.rainbow_block": "Rainbow Block", - "block.blockus.rainbow_bricks": "Rainbow Bricks", - "block.blockus.rainbow_bricks_wall": "Rainbow Brick Wall", - "block.blockus.rainbow_bricks_stairs": "Rainbow Brick Stairs", - "block.blockus.rainbow_bricks_slab": "Rainbow Brick Slab", - - "block.blockus.rainbow_lamp": "Rainbow Lamp", - "block.blockus.rainbow_lamp_lit": "Lit Rainbow Lamp", - "block.blockus.redstone_lamp_lit": "Lit Redstone Lamp", - "block.blockus.white_redstone_lamp": "White Redstone Lamp", - "block.blockus.white_redstone_lamp_lit": "Lit White Redstone Lamp", - "block.blockus.orange_redstone_lamp": "Orange Redstone Lamp", - "block.blockus.orange_redstone_lamp_lit": "Lit Orange Redstone Lamp", - "block.blockus.magenta_redstone_lamp": "Magenta Redstone Lamp", - "block.blockus.magenta_redstone_lamp_lit": "Lit Magenta Redstone Lamp", - "block.blockus.light_blue_redstone_lamp": "Light Blue Redstone Lamp", - "block.blockus.light_blue_redstone_lamp_lit": "Lit Light Blue Redstone Lamp", - "block.blockus.yellow_redstone_lamp": "Yellow Redstone Lamp", - "block.blockus.yellow_redstone_lamp_lit": "Lit Yellow Redstone Lamp", - "block.blockus.lime_redstone_lamp": "Lime Redstone Lamp", - "block.blockus.lime_redstone_lamp_lit": "Lit Lime Redstone Lamp", - "block.blockus.pink_redstone_lamp": "Pink Redstone Lamp", - "block.blockus.pink_redstone_lamp_lit": "Lit Pink Redstone Lamp", - "block.blockus.gray_redstone_lamp": "Gray Redstone Lamp", - "block.blockus.gray_redstone_lamp_lit": "Lit Gray Redstone Lamp", - "block.blockus.light_gray_redstone_lamp": "Light Gray Redstone Lamp", - "block.blockus.light_gray_redstone_lamp_lit": "Lit Light Gray Redstone Lamp", - "block.blockus.cyan_redstone_lamp": "Cyan Redstone Lamp", - "block.blockus.cyan_redstone_lamp_lit": "Lit Cyan Redstone Lamp", - "block.blockus.purple_redstone_lamp": "Purple Redstone Lamp", - "block.blockus.purple_redstone_lamp_lit": "Lit Purple Redstone Lamp", - "block.blockus.blue_redstone_lamp": "Blue Redstone Lamp", - "block.blockus.blue_redstone_lamp_lit": "Lit Blue Redstone Lamp", - "block.blockus.brown_redstone_lamp": "Brown Redstone Lamp", - "block.blockus.brown_redstone_lamp_lit": "Lit Brown Redstone Lamp", - "block.blockus.green_redstone_lamp": "Green Redstone Lamp", - "block.blockus.green_redstone_lamp_lit": "Lit Green Redstone Lamp", - "block.blockus.red_redstone_lamp": "Red Redstone Lamp", - "block.blockus.red_redstone_lamp_lit": "Lit Red Redstone Lamp", - - "block.blockus.cod_crate": "Cod Crate", - "block.blockus.salmon_crate": "Salmon Crate", - "block.blockus.pufferfish_crate": "Pufferfish Crate", - "block.blockus.tropical_fish_crate": "Tropical Fish Crate", - "block.blockus.apple_crate": "Apple Crate", - "block.blockus.golden_apple_crate": "Golden Apple Crate", - "block.blockus.potato_crate": "Potato Crate", - "block.blockus.carrot_crate": "Carrot Crate", - "block.blockus.golden_carrot_crate": "Golden Carrot Crate", - "block.blockus.beetroot_crate": "Beetroot Crate", - "block.blockus.sweet_berries_crate": "Sweet Berries Crate", - "block.blockus.bread_box": "Bread Box", - "block.blockus.chorus_block": "Chorus Block", - "block.blockus.cookie_block": "Block of Cookie", - - "block.blockus.small_hedge": "Oak Small Hedge", - "block.blockus.spruce_small_hedge": "Spruce Small Hedge", - "block.blockus.birch_small_hedge": "Birch Small Hedge", - "block.blockus.jungle_small_hedge": "Jungle Small Hedge", - "block.blockus.acacia_small_hedge": "Acacia Small Hedge", - "block.blockus.dark_oak_small_hedge": "Dark Oak Small Hedge", - - "block.blockus.honeycomb_bricks": "Honeycomb Bricks", - "block.blockus.honeycomb_bricks_wall": "Honeycomb Brick Wall", - "block.blockus.honeycomb_bricks_stairs": "Honeycomb Brick Stairs", - "block.blockus.honeycomb_bricks_slab": "Honeycomb Brick Slab", - - "block.blockus.charred_planks": "Charred Planks", - "block.blockus.charred_door": "Charred Wooden Door", - "block.blockus.charred_slab": "Charred Wooden Slab", - "block.blockus.charred_stairs": "Charred Wooden Stairs", - "block.blockus.charred_pressure_plate": "Charred Wooden Pressure Plate", - "block.blockus.charred_button": "Charred Wooden Button", - "block.blockus.charred_fence": "Charred Fence", - "block.blockus.charred_fence_gate": "Charred Fence Gate", - "block.blockus.charred_trapdoor": "Charred Wooden Trapdoor", - "block.blockus.charred_barrel": "Charred Barrel", - - "block.blockus.crimson_barrel": "Crimson Barrel", - "block.blockus.warped_barrel": "Warped Barrel", - - "block.blockus.white_futurneo_block": "White Futurneo Block", - "block.blockus.orange_futurneo_block": "Orange Futurneo Block", - "block.blockus.magenta_futurneo_block": "Magenta Futurneo Block", - "block.blockus.light_blue_futurneo_block": "Light Blue Futurneo Block", - "block.blockus.yellow_futurneo_block": "Yellow Futurneo Block", - "block.blockus.lime_futurneo_block": "Lime Futurneo Block", - "block.blockus.pink_futurneo_block": "Pink Futurneo Block", - "block.blockus.gray_futurneo_block": "Gray Futurneo Block", - "block.blockus.gray_bright_futurneo_block": "Gray Bright Futurneo Block", - "block.blockus.light_gray_futurneo_block": "Light Gray Futurneo Block", - "block.blockus.cyan_futurneo_block": "Cyan Futurneo Block", - "block.blockus.purple_futurneo_block": "Purple Futurneo Block", - "block.blockus.blue_futurneo_block": "Blue Futurneo Block", - "block.blockus.brown_futurneo_block": "Brown Futurneo Block", - "block.blockus.green_futurneo_block": "Green Futurneo Block", - "block.blockus.red_futurneo_block": "Red Futurneo Block", - "block.blockus.black_futurneo_block": "Black Futurneo Block", - - "block.blockus.iron_gate": "Iron Gate", - "block.blockus.sandy_bricks": "Sandy Bricks", - "block.blockus.sandy_bricks_wall": "Sandy Brick Wall", - "block.blockus.sandy_bricks_stairs": "Sandy Brick Stairs", - "block.blockus.sandy_bricks_slab": "Sandy Brick Slab", - - "block.blockus.white_oak_planks": "White Oak Planks", - "block.blockus.white_oak_door": "White Oak Door", - "block.blockus.white_oak_slab": "White Oak Slab", - "block.blockus.white_oak_stairs": "White Oak Stairs", - "block.blockus.white_oak_pressure_plate": "White Oak Pressure Plate", - "block.blockus.white_oak_button": "White Oak Button", - "block.blockus.white_oak_fence": "White Oak Fence", - "block.blockus.white_oak_fence_gate": "White Oak Fence Gate", - "block.blockus.white_oak_trapdoor": "White Oak Trapdoor", - "block.blockus.white_oak_log": "White Oak Log", - "block.blockus.white_oak_wood": "White Oak Wood", - "block.blockus.stripped_white_oak_log": "Stripped White Oak Log", - "block.blockus.stripped_white_oak_wood": "Stripped White Oak Wood", - "block.blockus.white_oak_leaves": "White Oak Leaves", - "block.blockus.white_oak_sapling": "White Oak Sapling", - "block.blockus.white_oak_small_hedge": "White Oak Small Hedge", - "block.blockus.white_oak_barrel": "White Oak Barrel", - - "block.blockus.teal_nether_bricks": "Teal Nether Bricks", - "block.blockus.teal_nether_brick_slab": "Teal Nether Brick Slab", - "block.blockus.teal_nether_brick_stairs": "Teal Nether Brick Stairs", - "block.blockus.teal_nether_brick_wall": "Teal Nether Brick Wall", - "block.blockus.smooth_teal_nether_bricks": "Smooth Teal Nether Bricks", - "block.blockus.teal_nether_pillar": "Teal Nether Pillar", - "block.blockus.lantern_block": "Lantern Block", - "block.blockus.soul_lantern_block": "Soul Lantern Block", - - "block.blockus.legacy_bricks": "Bricks (Legacy)", - "block.blockus.legacy_stonecutter": "Stonecutter (Legacy)", - "block.blockus.legacy_grass_block": "Grass Block (Legacy)", - "block.blockus.legacy_leaves": "Leaves (Legacy)", - "block.blockus.legacy_gravel": "Gravel (Legacy)", - "block.blockus.legacy_cobblestone": "Cobblestone (Legacy)", - "block.blockus.legacy_mossy_cobblestone": "Mossy Cobblestone (Legacy)", - "block.blockus.legacy_iron_block": "Iron Block (Legacy)", - "block.blockus.legacy_gold_block": "Gold Block (Legacy)", - "block.blockus.legacy_explosion_proof_gold_block": "Gold Block (Legacy)", - "block.blockus.legacy_diamond_block": "Diamond Block (Legacy)", - "block.blockus.legacy_lapis_block": "Lapis Lazuli Block (Legacy)", - "block.blockus.legacy_sponge": "Sponge (Legacy)", - "block.blockus.legacy_crying_obsidian": "Crying Obsidian (Legacy)", - "block.blockus.legacy_glowing_obsidian": "Glowing Obsidian", - "block.blockus.legacy_nether_reactor_core": "Nether Reactor Core", - "block.blockus.legacy_planks": "Planks (Legacy)", - - "block.minecraft.nether_wart_block": "Crimson Wart Block" - -} diff --git a/en-mods/craftpresence.json b/en-mods/craftpresence.json index eae54aee8..712925dc9 100644 --- a/en-mods/craftpresence.json +++ b/en-mods/craftpresence.json @@ -1,268 +1,268 @@ { - "gui.config.title": "CraftPresence - Configuration GUI", - "gui.config.title.general": "General Settings", - "gui.config.title.biomemessages": "Customize Biome Messages", - "gui.config.title.dimensionmessages": "Customize Dimension Messages", - "gui.config.title.servermessages": "Customize Server Messages", - "gui.config.title.statusmessages": "Customize Status Messages", - "gui.config.title.advanced": "Advanced Settings", - "gui.config.title.accessibility": "Accessibility Settings", - "gui.config.title.presencesettings": "Presence Settings", - "gui.config.title.about.config": "About this Configuration GUI", - "gui.config.title.changes": "Version Check Info (State: %1$s)", - "gui.config.title.commands": "Commands", - "gui.config.title.message": "CraftPresence - Message", - "gui.config.title.biome.editspecificbiome": "CraftPresence - Edit Biome (%1$s)", - "gui.config.title.dimension.editspecificdimension": "CraftPresence - Edit Dimension (%1$s)", - "gui.config.title.server.editspecificserver": "CraftPresence - Edit Server (%1$s)", - "gui.config.title.gui.editspecificgui": "CraftPresence - Edit GUI (%1$s)", - "gui.config.title.gui.editspecificitem": "CraftPresence - Edit Item (%1$s)", - "gui.config.title.editor.color": "CraftPresence - Color Editor (%1$s)", - "gui.config.title.editor.character": "CraftPresence - Character Editor", - "gui.config.title.editor.addnew": "CraftPresence - Add New Value", - "gui.config.title.selector.dimension": "CraftPresence - Select a Dimension", - "gui.config.title.selector.biome": "CraftPresence - Select a Biome", - "gui.config.title.selector.server": "CraftPresence - Select Server IP", - "gui.config.title.selector.gui": "CraftPresence - Select a GUI", - "gui.config.title.selector.item": "CraftPresence - Select an Item", - "gui.config.title.selector.icon": "CraftPresence - Select an Icon", - "gui.config.title.selector.view.assets.large": "CraftPresence - Discord Large Assets", - "gui.config.title.selector.view.assets.small": "CraftPresence - Discord Small Assets", - "gui.config.title.selector.view.assets.all": "CraftPresence - Discord Assets List", - "gui.config.title.selector.view.biomes": "CraftPresence - Available Biomes", - "gui.config.title.selector.view.dimensions": "CraftPresence - Available Dimensions", - "gui.config.title.selector.view.servers": "CraftPresence - Server Addresses", - "gui.config.title.selector.view.guis": "CraftPresence - Available GUIs", - "gui.config.title.selector.view.items": "CraftPresence - Available Items", - "gui.config.comment.title.general": "General Settings for Displaying Info", - "gui.config.comment.title.biomemessages": "Customize Messages to display with Biomes\\n (Manual Format: biome_name;message)\\n Available Placeholders:\\n - &biome& = Biome Name\\n - &id& = Biome ID", - "gui.config.comment.title.dimensionmessages": "Customize Messages to display with Dimensions\\n (Manual Format: dimension_name;message)\\n Available Placeholders:\\n - &dimension& = Dimension Name\\n - &id& = Dimension ID\\n - &icon& = Default Dimension Icon", - "gui.config.comment.title.servermessages": "Customize Messages to display with Servers\\n (Manual Format: server_IP;message;icon)\\n Available Placeholders:\\n - &ip& = Server IP\\n - &name& = Server Name\\n - &motd& = Server MOTD\\n - &icon& = Default Server Icon\\n - &players& = Server Player Counter\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", - "gui.config.comment.title.statusmessages": "Customize Messages relating to different Game States", - "gui.config.comment.title.advanced": "Customize Additional Settings of the Mod", - "gui.config.comment.title.accessibility": "Customize Accessibility Settings of the Mod\\n Includes:\\n - Language ID\\n - KeyBindings\\n - Additional GUI Customization Options", - "gui.config.comment.presencesettings": "Customize the Formatting and Locations of the Different Messages to display in the Rich Presence", - "gui.config.buttonMessage.back": "Back", - "gui.config.buttonMessage.save": "Save", - "gui.config.buttonMessage.continue": "Continue", - "gui.config.buttonMessage.viewsource": "View Source", - "gui.config.buttonMessage.download": "Download", - "gui.config.buttonMessage.versionInfo": "Version Info", - "gui.config.buttonMessage.checkForUpdates": "Check for Updates", - "gui.config.buttonMessage.addnew": "Add New", - "gui.config.buttonMessage.iconchange": "Change Icon", - "gui.config.buttonMessage.chareditor": "Character Editor", - "gui.config.buttonMessage.sync.single": "Sync %1$s", - "gui.config.buttonMessage.sync.all": "Sync All", - "gui.config.buttonMessage.reset": "Reset To Default", - "gui.config.defaultMessage.biome": "Default Biome Message", - "gui.config.defaultMessage.dimension": "Default Dimension Message", - "gui.config.defaultMessage.server": "Default Server Message", - "gui.config.editorMessage.charinput": "Character Input:", - "gui.config.editorMessage.charwidth": "Character Width:", - "gui.config.editorMessage.search": "Search:", - "gui.config.editorMessage.message": "Message:", - "gui.config.editorMessage.enterkey": "Enter Key...", - "gui.config.editorMessage.valuename": "Value Name:", - "gui.config.editorMessage.hexcode": "Hex Code:", - "gui.config.editorMessage.texturepath": "Texture Path:", - "gui.config.editorMessage.preview": "Preview:", - "gui.config.editorMessage.redcolorvalue": "Red Color Value", - "gui.config.editorMessage.greencolorvalue": "Green Color Value", - "gui.config.editorMessage.bluecolorvalue": "Blue Color Value", - "gui.config.editorMessage.alphacolorvalue": "Alpha Color Value", - "gui.config.editorMessage.refresh": "**Press ENTER to Refresh Values**", - "gui.config.presenceMessage.generalArgs": "General Message Formatting Arguments:\\n* Placeholders Configuable in Status Messages and other areas\\n* Some Placeholders are Empty unless they are assigned\\n\\n - &MAINMENU& = The Main Menu Message, while in the Main Menu\\n - &MCVERSION& = The Minecraft Version Label\\n - &BRAND& = The Minecraft Branding Label\\n - &IGN& = The Non-World Player Info Message\\n - &MODS& = The Message displaying your Mod Count\\n - &PACK& = The Pack's Message, if using a pack\\n - &DIMENSION& = The Current Dimension Message\\n - &BIOME& = The Current Biome Message\\n - &SERVER& = The Current Server Message\\n - &GUI& = The Current Gui Message\\n - &ENTITY& = The Current Entity Message", - "gui.config.presenceMessage.iconArgs": "General Icon Formatting Arguments:\\n* Placeholders Configuable in Status Messages and other areas\\n* Only One Placeholder is allowed at one time\\n* Some Placeholders are Empty unless they are assigned\\n\\n - &DEFAULT& = The Default Icon, specified in config\\n - &MAINMENU& = The Icon used in the Main Menu\\n * Use this instead of &DEFAULT& to only show the default icon in the main menu\\n - &PACK& = The Pack's Icon, if using a pack\\n - &DIMENSION& = The Current Dimension Icon\\n - &SERVER& = The Current Server Icon", - "gui.config.message.character.notice": "Notice on Syncing\\n\\n Syncing may not yield accurate Results on Older Minecraft Versions", - "gui.config.message.credits": "This Configuration GUI was made from scratch by\\n Jonathing, and will continue to be maintained by\\n CDAGaming. A lot of effort went into making this\\n custom GUI, so show him some support! Thanks.\\n\\n Feel free to learn from this GUI's code on\\n the CraftPresence GitLab repository.", - "gui.config.message.changelog": "Changes in %1$s:\\n\\n%2$s", - "gui.config.message.remove": "**Remove Message Text to Remove this Value**", - "gui.config.message.null": "This Area is not Implemented just yet!\\n\\n Please Check Back Later...", - "gui.config.message.emptylist": "This List is Empty and Cannot be Displayed!\\n\\n Please Try Again...", - "gui.config.hoverMessage.access": "**Enable \"%1$s\" to use this Menu**", - "gui.config.hoverMessage.defaultempty": "**Default Info cannot be Empty and Must be Valid**", - "gui.config.hoverMessage.valuename": "Name to Identify this Value", - "gui.config.name.general.clientid": "Client ID", - "gui.config.name.general.defaulticon": "Default Icon", - "gui.config.name.general.detectcursemanifest": "Detect Curse Manifest", - "gui.config.name.general.detectmultimcmanifest": "Detect MultiMC Instance", - "gui.config.name.general.detectmcupdaterinstance": "Detect MCUpdater Instance", - "gui.config.name.general.detecttechnicpack": "Detect Technic Pack", - "gui.config.name.general.showtime": "Show Elapsed Time", - "gui.config.name.general.showbiome": "Show Biome", - "gui.config.name.general.showdimension": "Show Dimension", - "gui.config.name.general.showstate": "Show Game Status", - "gui.config.name.general.enablejoinrequest": "Enable Join Requests", - "gui.config.name.biomemessages.biomemessages": "Biome Messages", - "gui.config.name.dimensionmessages.dimensionicon": "Default Dimension Icon", - "gui.config.name.dimensionmessages.dimensionmessages": "Dimension Messages", - "gui.config.name.servermessages.servericon": "Default Server Icon", - "gui.config.name.servermessages.servermotd": "Default Server MOTD", - "gui.config.name.servermessages.servername": "Default Server Name", - "gui.config.name.servermessages.servermessages": "Server Messages", - "gui.config.name.statusmessages.mainmenumsg": "Main Menu Message", - "gui.config.name.statusmessages.lanmsg": "LAN Game Message", - "gui.config.name.statusmessages.singleplayermsg": "Singleplayer Game Message", - "gui.config.name.statusmessages.placeholder.packmsg": "ModPack Message", - "gui.config.name.statusmessages.placeholder.playermsg.out": "Player Outer Info Placeholder", - "gui.config.name.statusmessages.placeholder.playermsg.in": "Player Inner Info Placeholder", - "gui.config.name.statusmessages.placeholder.playercoordinatemsg": "Player Coordinate Placeholder", - "gui.config.name.statusmessages.placeholder.playerhealthmsg": "Player Health Placeholder", - "gui.config.name.statusmessages.placeholder.playeramountmsg": "Player List Placeholder", - "gui.config.name.statusmessages.placeholder.worldmsg": "World Data Placeholder", - "gui.config.name.statusmessages.placeholder.modsmsg": "Mods Placeholder", - "gui.config.name.statusmessages.special.vivecraftmsg": "Vivecraft Message", - "gui.config.name.advanced.splitcharacter": "Split Character", - "gui.config.name.advanced.enablecommands": "Enable Commands", - "gui.config.name.advanced.enablepergui": "Enable Per-GUI System", - "gui.config.name.advanced.enableperitem": "Enable Per-Item System", - "gui.config.name.advanced.rendertooltips": "Render Tooltips", - "gui.config.name.advanced.debugmode": "Debug Mode", - "gui.config.name.advanced.guimessages": "GUI Messages", - "gui.config.name.advanced.itemmessages": "Item Messages", - "gui.config.name.accessibility.tooltipbgcolor": "Tooltip Background Color", - "gui.config.name.accessibility.tooltipbordercolor": "Tooltip Border Color", - "gui.config.name.accessibility.guibgcolor": "GUI Background Color", - "gui.config.name.accessibility.languageid": "Language ID", - "gui.config.name.accessibility.striptranslationcolors": "Strip Translation Colors", - "gui.config.name.accessibility.showlogginginchat": "Show Logging in Chat", - "gui.config.name.display.smallimagemsg": "Small Image Text Format", - "gui.config.name.display.largeimagemsg": "Large Image Text Format", - "gui.config.name.display.detailsmsg": "Details Message Format", - "gui.config.name.display.gamestatemsg": "Game State Message Format", - "gui.config.name.display.smallimagekey": "Small Image Key Format", - "gui.config.name.display.largeimagekey": "Large Image Key Format", - "gui.config.comment.general.clientid": "Client ID Used for retrieving Assets, Icon Keys, and titles", - "gui.config.comment.general.defaulticon": "Default Icon\\n (Used in Main Menu, Dimensions and Servers)", - "gui.config.comment.general.detectcursemanifest": "Enable Detection for Twitch/Curse Manifest Data?", - "gui.config.comment.general.detectmultimcmanifest": "Enable Detection for MultiMC Instance Data?", - "gui.config.comment.general.detectmcupdaterinstance": "Enable Detection for MCUpdater Instance Data?", - "gui.config.comment.general.detecttechnicpack": "Enable Detection for Technic Pack Data?", - "gui.config.comment.general.showtime": "Show Elapsed Time in Rich Presence?", - "gui.config.comment.general.showbiome": "Show Current Biome in Rich Presence?", - "gui.config.comment.general.showdimension": "Show Current Dimension in Rich Presence?", - "gui.config.comment.general.showstate": "Show Specific Game Data in Rich Presence?", - "gui.config.comment.general.enablejoinrequest": "Allows Sending or Accepting Join Requests in Discord", - "gui.config.comment.biomemessages.biomemessages": "Customize Messages to display with Biomes\\n (Manual Format: biome_name;message)\\n Available Placeholders:\\n - &biome& = Biome Name\\n - &id& = Biome ID", - "gui.config.comment.dimensionmessages.dimensionicon": "Dimension Icon to Default to when in an Unsupported Dimension", - "gui.config.comment.dimensionmessages.dimensionmessages": "Customize Messages to display with Dimensions\\n (Manual Format: dimension_name;message)\\n Available Placeholders:\\n - &dimension& = Dimension Name\\n - &id& = Dimension ID\\n - &icon& = Default Dimension Icon", - "gui.config.comment.servermessages.servericon": "Server Icon to default to when in an Unsupported Server", - "gui.config.comment.servermessages.servermotd": "Server MOTD to default to, in the case of a null MOTD\\n (Also Applies for Direct Connects)", - "gui.config.comment.servermessages.servername": "Server Display Name to default to, in the case of a null Name\\n (Also Applies for Direct Connects)", - "gui.config.comment.servermessages.servermessages": "Customize Messages to display with Servers\\n (Manual Format: server_IP;message;icon)\\n Available Placeholders:\\n - &ip& = Server IP\\n - &name& = Server Name\\n - &motd& = Server MOTD\\n - &icon& = Default Server Icon\\n - &players& = Server Player Counter\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", - "gui.config.comment.statusmessages.mainmenumsg": "Message to Display while on the Main Menu", - "gui.config.comment.statusmessages.lanmsg": "Message to Display while in a LAN Game\\n Available Placeholders:\\n - &ip& = Server IP\\n - &name& = Server Name\\n - &motd& = Server MOTD\\n - &icon& = Default Server Icon\\n - &players& = Server Player Counter\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", - "gui.config.comment.statusmessages.singleplayermsg": "Message to Display while in Singleplayer\\n Available Placeholders:\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", - "gui.config.comment.statusmessages.placeholder.packmsg": "Message to use for the &pack& placeholder in Presence Settings\\n (If a Curse, Twitch, Technic, MCUpdater, or MultiMC Pack is Detected)\\n Available Placeholders:\\n - &name& = The Pack's Name", - "gui.config.comment.statusmessages.placeholder.playermsg.out": "Message to use for the &ign& General Placeholder in Presence Settings and the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &name& = Your Username", - "gui.config.comment.statusmessages.placeholder.playermsg.in": "Message to use for the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &coords& = The Player's Coordinate Placeholder Message\\n - &health& = The Player's Health Placeholder Message", - "gui.config.comment.statusmessages.placeholder.playercoordinatemsg": "Message to use for the &coords& Argument for the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &xPosition& = Your Current In-Game X Position\\n - &zPosition& = Your Current In-Game Z Position", - "gui.config.comment.statusmessages.placeholder.playerhealthmsg": "Message to use for the &health& Argument for the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - ¤t& = Your Current In-Game Health\\n - &max& = Your Current In-Game Maximum Health", - "gui.config.comment.statusmessages.placeholder.playeramountmsg": "Message to use for the &players& Placeholder in Server Settings\\n Available Placeholders:\\n - ¤t& = Current Player Count\\n - &max& = Maximum Player Count", - "gui.config.comment.statusmessages.placeholder.worldmsg": "Message to use for the &worldinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &difficulty& = The Current World's Difficulty\\n - &worldname& = The Name of the Current World\\n - &worldtime& = The Current World's In-Game Time", - "gui.config.comment.statusmessages.placeholder.modsmsg": "Message to use for the &mods& Placeholder in Presence Settings\\n Available Placeholders:\\n - &modcount& = The Amount of Mods currently in your Mods Folder", - "gui.config.comment.statusmessages.special.vivecraftmsg": "Message to display in Rich Presence when using Vivecraft", - "gui.config.comment.advanced.splitcharacter": "The Split Character for The Arrays in CraftPresence's Messages Configs", - "gui.config.comment.advanced.enablecommands": "Allows CraftPresence to utilize Commands\\n (Enables Command GUI in Main Config GUI)", - "gui.config.comment.advanced.enablepergui": "Allows CraftPresence to change it's display based on the GUI your in\\n Note the Following:\\n - Requires an Option in GUI Messages\\n - Minecraft's GUIs must be Opened once before Configuring due to Obfuscation", - "gui.config.comment.advanced.enableperitem": "Allows CraftPresence to change it's display based on the Item Your Holding\\n Note the Following:\\n - Requires an Option in Item Messages", - "gui.config.comment.advanced.rendertooltips": "Allow CraftPresence to render Hover Tooltips (when available)", - "gui.config.comment.advanced.debugmode": "Toggles Developer Mode, showing debug features and enabling debug logging", - "gui.config.comment.advanced.guimessages": "Customize Messages to display with GUIs\\n (Manual Format: gui;message)\\n Available Placeholders:\\n - &gui& = GUI Name\\n - &class& = GUI Class Name\\n - &screen& = GUI Screen Instance Name", - "gui.config.comment.advanced.itemmessages": "Customize Messages to display with Items\\n (Manual Format: item;message)\\n Available Placeholders:\\n - &main& = Current Main Hand Item\\n - &offhand& = Current OffHand Item\\n - &helmet& = Currently Equipped Helmet\\n - &chest& = Currently Equipped ChestPiece\\n - &legs& = Currently Equipped Leggings\\n - &boots& = Currently Equipped Boots", - "key.craftpresence.category": "CraftPresence - KeyBindings", - "key.craftpresence.config_keybind": "Config KeyBinding", - "craftpresence.message.unsupported": "This Feature is not Supported in this Version of Minecraft", - "craftpresence.defaults.servermessages.servername": "Minecraft Server", - "craftpresence.defaults.servermessages.servermotd": "A Minecraft Server", - "craftpresence.defaults.state.mainmenu": "In the Main Menu", - "craftpresence.defaults.state.mcversion": "Minecraft %1$s", - "craftpresence.defaults.state.lan": "Playing on a LAN Server", - "craftpresence.defaults.state.singleplayer": "Playing Singleplayer", - "craftpresence.defaults.placeholder.pack": "&name&", - "craftpresence.defaults.placeholder.players": "¤t& / &max& Players", - "craftpresence.defaults.placeholder.playerinfo.out": "As &name&", - "craftpresence.defaults.placeholder.playerinfo.in": "(&health&)", - "craftpresence.defaults.placeholder.playerinfo.coordinate": "At &xPosition&, &zPosition&", - "craftpresence.defaults.placeholder.playerinfo.health": "Health: ¤t&/&max&", - "craftpresence.defaults.placeholder.worldinfo": "On &worldname&", - "craftpresence.defaults.placeholder.mods": "&modcount& Mod(s)", - "craftpresence.defaults.special.vivecraft": "Playing in VR via Vivecraft", - "craftpresence.multiplayer.status.cannot_connect": "Can't connect to server", - "craftpresence.multiplayer.status.pinging": "Pinging...", - "craftpresence.multiplayer.status.polling": "Polling...", - "craftpresence.multiplayer.status.cannot_resolve": "Can't resolve hostname", - "craftpresence.command.usage.main": "§lCraftPresence - Sub-Commands:\\n §rSyntax: §6/ \\n\\n §6§lreboot §r- Reboot RPC\\n §6§lshutdown §r- Shut Down RPC\\n §6§lreload §r- Reloads CraftPresence Data based on Settings\\n §6§lrequest §r- View Join Request Info\\n §6§lview §r- View a Variety of Display Data\\n §6§lhelp §r- Views this Page", - "craftpresence.command.usage.view": "§lCraftPresence - View Sub-Commands:\\n\\n §6§lcurrentData §r- Shows your Current RPC Data, in text\\n §6§lassets §r- Displays all Asset Icons available\\n §6§ldimensions §r- Displays available Dimension Names\\n §6§lbiomes §r- Displays available Biome Names\\n §6§lservers §r- Displays available Server Addresses\\n §6§lguis §r- Displays available GUI Names\\n §6§litems §r- Displays available Item Names", - "craftpresence.command.usage.assets": "§lCraftPresence - Assets Sub-Commands:\\n\\n §6§llarge §r- View Discord Assets with Size LARGE\\n §6§lsmall §r- View Discord Assets with Size SMALL\\n §6§lall §r- View All Discord Assets", - "craftpresence.command.unrecognized": "§c§lUnknown Command - use §6§l/craftpresence help", - "craftpresence.command.currentdata": "§lCurrent RPC Data (Logged in as %1$s):§r\\n §6§lDetails:§r %2$s\\n §6§lGame State:§r %3$s\\n §6§lStart Timestamp:§r %4$s\\n §6§lClient ID:§r %5$s\\n §6§lLarge Icon Key:§r %6$s\\n §6§lLarge Icon Text:§r %7$s\\n §6§lSmall Icon Key:§r %8$s\\n §6§lSmall Icon Text:§r %9$s\\n §6§lParty ID:§r %10$s\\n §6§lParty Size:§r %11$s\\n §6§lParty Max:§r %12$s\\n §6§lJoin Secret:§r %13$s\\n §6§lEnd Timestamp:§r %14$s\\n §6§lMatch Secret:§r %15$s\\n §6§lSpectate Secret:§r %16$s\\n §6§lInstance:§r %17$s", - "craftpresence.command.reload": "§6§lReloading CraftPresence Data, depending on Settings!", - "craftpresence.command.reload.complete": "§2§lReloaded CraftPresence Data!", - "craftpresence.command.request.info": "§6§lRequest Info:§r\\n §6§lRequester Username: %1$s\\n\\n §6§lUse /cp request or Wait %2$s Seconds to Ignore", - "craftpresence.command.request.none": "§6§lYou do not have any available Join Requests!", - "craftpresence.command.request.accept": "§6§lJoin Request Accepted! %1$s has been sent an Invite!", - "craftpresence.command.request.denied": "§6§lJoin Request Denied from %1$s!", - "craftpresence.command.request.ignored": "§6§lJoin Request Ignored from %1$s!", - "craftpresence.command.shutdown.pre": "§6§lShutting Down CraftPresence...", - "craftpresence.command.shutdown.post": "§2§lCraftPresence has been Shutdown!\\n §6§lUse /cp reboot to Reboot", - "craftpresence.command.reboot.pre": "§6§lRebooting CraftPresence...", - "craftpresence.command.reboot.post": "§2§lCraftPresence has been Rebooted!", - "craftpresence.logger.info.os": "Detected OS: %1$s (Architecture: %2$s, Is 64-Bit: %3$s)", - "craftpresence.logger.info.load": "Loaded Display Data with ID: %1$s (Logged in as %2$s)", - "craftpresence.logger.info.shutdown": "Shutting Down CraftPresence...", - "craftpresence.logger.info.config.new": "New Configuration Data for CraftPresence has been created successfully!", - "craftpresence.logger.info.config.save": "Configuration Settings have been Saved and Reloaded Successfully!", - "craftpresence.logger.info.manifest.init": "Checking for valid Curse Manifest Data...", - "craftpresence.logger.info.manifest.loaded": "Found Curse Manifest Data! ( Name: \"%1$s\" )", - "craftpresence.logger.info.instance.init": "Checking for valid MultiMC Instance Data...", - "craftpresence.logger.info.instance.loaded": "Found MultiMC Instance Data! ( Name: \"%1$s\" - Icon: \"%2$s\" )", - "craftpresence.logger.info.mcupdater.init": "Checking for valid MCUpdater Instance Data...", - "craftpresence.logger.info.mcupdater.loaded": "Found MCUpdater Instance Data! ( Name: \"%1$s\")", - "craftpresence.logger.info.technic.init": "Checking for valid Technic Pack Data...", - "craftpresence.logger.info.technic.loaded": "Found Technic Pack Data! ( Name: \"%1$s\" - Icon: \"%2$s\" )", - "craftpresence.logger.info.chardata.init": "Searching for Character and Glyph Width Data...", - "craftpresence.logger.info.chardata.loaded": "Character and Glyph Width Data successfully Loaded!", - "craftpresence.logger.info.dll.init": "Loading \"%1$s\" as a DLL...", - "craftpresence.logger.info.dll.loaded": "\"%1$s\" has been Successfully loaded as a DLL!", - "craftpresence.logger.info.download.init": "Downloading \"%1$s\" to \"%2$s\"... ( From: \"%3$s\" )", - "craftpresence.logger.info.download.loaded": "\"%1$s\" has been Successfully Downloaded to \"%2$s\"! ( From: \"%3$s\")", - "craftpresence.logger.info.discord.assets.load": "Checking Discord for Available Assets with ID: %1$s", - "craftpresence.logger.info.discord.assets.detected": "%1$s Total Assets Detected!", - "craftpresence.logger.info.discord.assets.load.credits": "Originally Coded by paulhobbel - https://github.com/paulhobbel", - "craftpresence.logger.info.discord.assets.request": "To Add Support for this Icon, Please Request for this Icon to be Added to the Default Client ID or Add the Icon under the following Name: \"%1$s\".", - "craftpresence.logger.info.discord.assets.fallback": "Fallback Icon for \"%1$s\" Found! Using Fallback Icon with Name \"%2$s\"!", - "craftpresence.logger.error.system": "CraftPresence was unable to retrieve System Info, Things may not work well...", - "craftpresence.logger.error.rpc": "CraftPresence has encountered the following RPC Error, and has been Shut Down to prevent a crash: %1$s", - "craftpresence.logger.error.download": "Failed to Download \"%1$s\" from \"%2$s\"\\n Manually Download \"%1$s\" from \"%2$s\" to \"%3$s\"", - "craftpresence.logger.error.chardata": "Failed to Retrieve Character & Glyph Width Data, Some Rendering Functions have been disabled...", - "craftpresence.logger.error.dataclose": "Failed to Close a Data Stream, Resource Depletion may Occur, Please Report this Issue...", - "craftpresence.logger.error.dll": "Failed to Load \"%1$s\" as a DLL, Things may not work well...", - "craftpresence.logger.error.delete.file": "Failed to Delete \"%1$s\", Things may not work well...", - "craftpresence.logger.error.web": "Failed to Go to Page: %1$s", - "craftpresence.logger.error.keybind": "A Keybind Error has occurred, Resetting \"%1$s\" to default to prevent a crash...", - "craftpresence.logger.error.command": "An Error has Occurred Executing this Command", - "craftpresence.logger.error.config.save": "Failed to load or save Configuration", - "craftpresence.logger.error.config.invalidicon.empty": "Unable to Detect any Usable Icons! Please Submit a Mod Issue, if this is a mistake", - "craftpresence.logger.error.config.invalidicon.pre": "Invalid Icon \"%1$s\" in Property \"%2$s\", Selecting a Randomized Valid Icon...", - "craftpresence.logger.error.config.invalidicon.post": "Successfully Set Icon in Property \"%1$s\" to \"%2$s\"", - "craftpresence.logger.error.config.emptyprop": "Empty or Non-Convertable Property Detected (\"%1$s\"), setting property as default...", - "craftpresence.logger.error.config.invalidprop": "Invalid Property Detected (\"%1$s\"), removing property...", - "craftpresence.logger.error.config.defaultmissing": "Default Value is missing for Property \"%1$s\", Adding to Property...", - "craftpresence.logger.error.file.manifest": "Unable to get Curse Manifest Data (Ignore if Not using a Twitch/CursePack)", - "craftpresence.logger.error.file.instance": "Unable to get MultiMC Instance Data (Ignore if Not using a MultiMC Pack)", - "craftpresence.logger.error.file.mcupdater": "Unable to get MCUpdater Instance Data (Ignore if Not using a MCUpdater Pack)", - "craftpresence.logger.error.file.technic": "Unable to get Technic Pack Data (Ignore if Not using a Technic Pack)", - "craftpresence.logger.error.technic.limitation": "Due to Technic Limitations, The Pack your Currently Playing will only display an Icon properly if selected in the Technic Launcher.", - "craftpresence.logger.error.load": "Failed to Load Display Data", - "craftpresence.logger.error.discord.join": "Join Request Rejected, due to an Invalid Join Key: %1$s", - "craftpresence.logger.error.discord.assets.load": "Unable to get Discord Assets, Things may not work well.", - "craftpresence.logger.error.discord.assets.fallback": "Asset Name \"%1$s\" does not exist, attempting to use an alternative Icon \"%2$s\"...", - "craftpresence.logger.error.discord.assets.default": "Failed to Assign an Alternative Icon for Asset Name \"%1$s\", using Default/Randomized Icon \"%2$s\"...", - "craftpresence.logger.warning.config.disabled.enablejoinrequest": "Join Request Support is Disabled in Your Config. Please Enable it to accept and send Join Requests in Discord!", - "craftpresence.logger.warning.config.empty.clientid": "Your Client ID is Empty, things may not work well...", - "craftpresence.logger.warning.fingerprintviolation": "Invalid Certificate Detected, this Build will not receive Support!", - "craftpresence.logger.warning.debugmode": "You are Running CraftPresence in a Debugging Environment, some features may not function properly!", - "craftpresence.exception.config.nullprop": "Property Value for \"%1$s\" cannot be null" -} \ No newline at end of file + "gui.config.title": "CraftPresence - Configuration GUI", + "gui.config.title.general": "General Settings", + "gui.config.title.biomemessages": "Customize Biome Messages", + "gui.config.title.dimensionmessages": "Customize Dimension Messages", + "gui.config.title.servermessages": "Customize Server Messages", + "gui.config.title.statusmessages": "Customize Status Messages", + "gui.config.title.advanced": "Advanced Settings", + "gui.config.title.accessibility": "Accessibility Settings", + "gui.config.title.presencesettings": "Presence Settings", + "gui.config.title.about.config": "About this Configuration GUI", + "gui.config.title.changes": "Version Check Info (State: %1$s)", + "gui.config.title.commands": "Commands", + "gui.config.title.message": "CraftPresence - Message", + "gui.config.title.biome.editspecificbiome": "CraftPresence - Edit Biome (%1$s)", + "gui.config.title.dimension.editspecificdimension": "CraftPresence - Edit Dimension (%1$s)", + "gui.config.title.server.editspecificserver": "CraftPresence - Edit Server (%1$s)", + "gui.config.title.gui.editspecificgui": "CraftPresence - Edit GUI (%1$s)", + "gui.config.title.gui.editspecificitem": "CraftPresence - Edit Item (%1$s)", + "gui.config.title.editor.color": "CraftPresence - Color Editor (%1$s)", + "gui.config.title.editor.character": "CraftPresence - Character Editor", + "gui.config.title.editor.addnew": "CraftPresence - Add New Value", + "gui.config.title.selector.dimension": "CraftPresence - Select a Dimension", + "gui.config.title.selector.biome": "CraftPresence - Select a Biome", + "gui.config.title.selector.server": "CraftPresence - Select Server IP", + "gui.config.title.selector.gui": "CraftPresence - Select a GUI", + "gui.config.title.selector.item": "CraftPresence - Select an Item", + "gui.config.title.selector.icon": "CraftPresence - Select an Icon", + "gui.config.title.selector.view.assets.large": "CraftPresence - Discord Large Assets", + "gui.config.title.selector.view.assets.small": "CraftPresence - Discord Small Assets", + "gui.config.title.selector.view.assets.all": "CraftPresence - Discord Assets List", + "gui.config.title.selector.view.biomes": "CraftPresence - Available Biomes", + "gui.config.title.selector.view.dimensions": "CraftPresence - Available Dimensions", + "gui.config.title.selector.view.servers": "CraftPresence - Server Addresses", + "gui.config.title.selector.view.guis": "CraftPresence - Available GUIs", + "gui.config.title.selector.view.items": "CraftPresence - Available Items", + "gui.config.comment.title.general": "General Settings for Displaying Info", + "gui.config.comment.title.biomemessages": "Customize Messages to display with Biomes\\n (Manual Format: biome_name;message)\\n Available Placeholders:\\n - &biome& = Biome Name\\n - &id& = Biome ID", + "gui.config.comment.title.dimensionmessages": "Customize Messages to display with Dimensions\\n (Manual Format: dimension_name;message)\\n Available Placeholders:\\n - &dimension& = Dimension Name\\n - &id& = Dimension ID\\n - &icon& = Default Dimension Icon", + "gui.config.comment.title.servermessages": "Customize Messages to display with Servers\\n (Manual Format: server_IP;message;icon)\\n Available Placeholders:\\n - &ip& = Server IP\\n - &name& = Server Name\\n - &motd& = Server MOTD\\n - &icon& = Default Server Icon\\n - &players& = Server Player Counter\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", + "gui.config.comment.title.statusmessages": "Customize Messages relating to different Game States", + "gui.config.comment.title.advanced": "Customize Additional Settings of the Mod", + "gui.config.comment.title.accessibility": "Customize Accessibility Settings of the Mod\\n Includes:\\n - Language ID\\n - KeyBindings\\n - Additional GUI Customization Options", + "gui.config.comment.presencesettings": "Customize the Formatting and Locations of the Different Messages to display in the Rich Presence", + "gui.config.buttonMessage.back": "Back", + "gui.config.buttonMessage.save": "Save", + "gui.config.buttonMessage.continue": "Continue", + "gui.config.buttonMessage.viewsource": "View Source", + "gui.config.buttonMessage.download": "Download", + "gui.config.buttonMessage.versionInfo": "Version Info", + "gui.config.buttonMessage.checkForUpdates": "Check for Updates", + "gui.config.buttonMessage.addnew": "Add New", + "gui.config.buttonMessage.iconchange": "Change Icon", + "gui.config.buttonMessage.chareditor": "Character Editor", + "gui.config.buttonMessage.sync.single": "Sync %1$s", + "gui.config.buttonMessage.sync.all": "Sync All", + "gui.config.buttonMessage.reset": "Reset To Default", + "gui.config.defaultMessage.biome": "Default Biome Message", + "gui.config.defaultMessage.dimension": "Default Dimension Message", + "gui.config.defaultMessage.server": "Default Server Message", + "gui.config.editorMessage.charinput": "Character Input:", + "gui.config.editorMessage.charwidth": "Character Width:", + "gui.config.editorMessage.search": "Search:", + "gui.config.editorMessage.message": "Message:", + "gui.config.editorMessage.enterkey": "Enter Key...", + "gui.config.editorMessage.valuename": "Value Name:", + "gui.config.editorMessage.hexcode": "Hex Code:", + "gui.config.editorMessage.texturepath": "Texture Path:", + "gui.config.editorMessage.preview": "Preview:", + "gui.config.editorMessage.redcolorvalue": "Red Color Value", + "gui.config.editorMessage.greencolorvalue": "Green Color Value", + "gui.config.editorMessage.bluecolorvalue": "Blue Color Value", + "gui.config.editorMessage.alphacolorvalue": "Alpha Color Value", + "gui.config.editorMessage.refresh": "**Press ENTER to Refresh Values**", + "gui.config.presenceMessage.generalArgs": "General Message Formatting Arguments:\\n* Placeholders Configuable in Status Messages and other areas\\n* Some Placeholders are Empty unless they are assigned\\n\\n - &MAINMENU& = The Main Menu Message, while in the Main Menu\\n - &MCVERSION& = The Minecraft Version Label\\n - &BRAND& = The Minecraft Branding Label\\n - &IGN& = The Non-World Player Info Message\\n - &MODS& = The Message displaying your Mod Count\\n - &PACK& = The Pack's Message, if using a pack\\n - &DIMENSION& = The Current Dimension Message\\n - &BIOME& = The Current Biome Message\\n - &SERVER& = The Current Server Message\\n - &GUI& = The Current Gui Message\\n - &ENTITY& = The Current Entity Message", + "gui.config.presenceMessage.iconArgs": "General Icon Formatting Arguments:\\n* Placeholders Configuable in Status Messages and other areas\\n* Only One Placeholder is allowed at one time\\n* Some Placeholders are Empty unless they are assigned\\n\\n - &DEFAULT& = The Default Icon, specified in config\\n - &MAINMENU& = The Icon used in the Main Menu\\n * Use this instead of &DEFAULT& to only show the default icon in the main menu\\n - &PACK& = The Pack's Icon, if using a pack\\n - &DIMENSION& = The Current Dimension Icon\\n - &SERVER& = The Current Server Icon", + "gui.config.message.character.notice": "Notice on Syncing\\n\\n Syncing may not yield accurate Results on Older Minecraft Versions", + "gui.config.message.credits": "This Configuration GUI was made from scratch by\\n Jonathing, and will continue to be maintained by\\n CDAGaming. A lot of effort went into making this\\n custom GUI, so show him some support! Thanks.\\n\\n Feel free to learn from this GUI's code on\\n the CraftPresence GitLab repository.", + "gui.config.message.changelog": "Changes in %1$s:\\n\\n%2$s", + "gui.config.message.remove": "**Remove Message Text to Remove this Value**", + "gui.config.message.null": "This Area is not Implemented just yet!\\n\\n Please Check Back Later...", + "gui.config.message.emptylist": "This List is Empty and Cannot be Displayed!\\n\\n Please Try Again...", + "gui.config.hoverMessage.access": "**Enable \"%1$s\" to use this Menu**", + "gui.config.hoverMessage.defaultempty": "**Default Info cannot be Empty and Must be Valid**", + "gui.config.hoverMessage.valuename": "Name to Identify this Value", + "gui.config.name.general.clientid": "Client ID", + "gui.config.name.general.defaulticon": "Default Icon", + "gui.config.name.general.detectcursemanifest": "Detect Curse Manifest", + "gui.config.name.general.detectmultimcmanifest": "Detect MultiMC Instance", + "gui.config.name.general.detectmcupdaterinstance": "Detect MCUpdater Instance", + "gui.config.name.general.detecttechnicpack": "Detect Technic Pack", + "gui.config.name.general.showtime": "Show Elapsed Time", + "gui.config.name.general.showbiome": "Show Biome", + "gui.config.name.general.showdimension": "Show Dimension", + "gui.config.name.general.showstate": "Show Game Status", + "gui.config.name.general.enablejoinrequest": "Enable Join Requests", + "gui.config.name.biomemessages.biomemessages": "Biome Messages", + "gui.config.name.dimensionmessages.dimensionicon": "Default Dimension Icon", + "gui.config.name.dimensionmessages.dimensionmessages": "Dimension Messages", + "gui.config.name.servermessages.servericon": "Default Server Icon", + "gui.config.name.servermessages.servermotd": "Default Server MOTD", + "gui.config.name.servermessages.servername": "Default Server Name", + "gui.config.name.servermessages.servermessages": "Server Messages", + "gui.config.name.statusmessages.mainmenumsg": "Main Menu Message", + "gui.config.name.statusmessages.lanmsg": "LAN Game Message", + "gui.config.name.statusmessages.singleplayermsg": "Singleplayer Game Message", + "gui.config.name.statusmessages.placeholder.packmsg": "ModPack Message", + "gui.config.name.statusmessages.placeholder.playermsg.out": "Player Outer Info Placeholder", + "gui.config.name.statusmessages.placeholder.playermsg.in": "Player Inner Info Placeholder", + "gui.config.name.statusmessages.placeholder.playercoordinatemsg": "Player Coordinate Placeholder", + "gui.config.name.statusmessages.placeholder.playerhealthmsg": "Player Health Placeholder", + "gui.config.name.statusmessages.placeholder.playeramountmsg": "Player List Placeholder", + "gui.config.name.statusmessages.placeholder.worldmsg": "World Data Placeholder", + "gui.config.name.statusmessages.placeholder.modsmsg": "Mods Placeholder", + "gui.config.name.statusmessages.special.vivecraftmsg": "Vivecraft Message", + "gui.config.name.advanced.splitcharacter": "Split Character", + "gui.config.name.advanced.enablecommands": "Enable Commands", + "gui.config.name.advanced.enablepergui": "Enable Per-GUI System", + "gui.config.name.advanced.enableperitem": "Enable Per-Item System", + "gui.config.name.advanced.rendertooltips": "Render Tooltips", + "gui.config.name.advanced.debugmode": "Debug Mode", + "gui.config.name.advanced.guimessages": "GUI Messages", + "gui.config.name.advanced.itemmessages": "Item Messages", + "gui.config.name.accessibility.tooltipbgcolor": "Tooltip Background Color", + "gui.config.name.accessibility.tooltipbordercolor": "Tooltip Border Color", + "gui.config.name.accessibility.guibgcolor": "GUI Background Color", + "gui.config.name.accessibility.languageid": "Language ID", + "gui.config.name.accessibility.striptranslationcolors": "Strip Translation Colors", + "gui.config.name.accessibility.showlogginginchat": "Show Logging in Chat", + "gui.config.name.display.smallimagemsg": "Small Image Text Format", + "gui.config.name.display.largeimagemsg": "Large Image Text Format", + "gui.config.name.display.detailsmsg": "Details Message Format", + "gui.config.name.display.gamestatemsg": "Game State Message Format", + "gui.config.name.display.smallimagekey": "Small Image Key Format", + "gui.config.name.display.largeimagekey": "Large Image Key Format", + "gui.config.comment.general.clientid": "Client ID Used for retrieving Assets, Icon Keys, and titles", + "gui.config.comment.general.defaulticon": "Default Icon\\n (Used in Main Menu, Dimensions and Servers)", + "gui.config.comment.general.detectcursemanifest": "Enable Detection for Twitch/Curse Manifest Data?", + "gui.config.comment.general.detectmultimcmanifest": "Enable Detection for MultiMC Instance Data?", + "gui.config.comment.general.detectmcupdaterinstance": "Enable Detection for MCUpdater Instance Data?", + "gui.config.comment.general.detecttechnicpack": "Enable Detection for Technic Pack Data?", + "gui.config.comment.general.showtime": "Show Elapsed Time in Rich Presence?", + "gui.config.comment.general.showbiome": "Show Current Biome in Rich Presence?", + "gui.config.comment.general.showdimension": "Show Current Dimension in Rich Presence?", + "gui.config.comment.general.showstate": "Show Specific Game Data in Rich Presence?", + "gui.config.comment.general.enablejoinrequest": "Allows Sending or Accepting Join Requests in Discord", + "gui.config.comment.biomemessages.biomemessages": "Customize Messages to display with Biomes\\n (Manual Format: biome_name;message)\\n Available Placeholders:\\n - &biome& = Biome Name\\n - &id& = Biome ID", + "gui.config.comment.dimensionmessages.dimensionicon": "Dimension Icon to Default to when in an Unsupported Dimension", + "gui.config.comment.dimensionmessages.dimensionmessages": "Customize Messages to display with Dimensions\\n (Manual Format: dimension_name;message)\\n Available Placeholders:\\n - &dimension& = Dimension Name\\n - &id& = Dimension ID\\n - &icon& = Default Dimension Icon", + "gui.config.comment.servermessages.servericon": "Server Icon to default to when in an Unsupported Server", + "gui.config.comment.servermessages.servermotd": "Server MOTD to default to, in the case of a null MOTD\\n (Also Applies for Direct Connects)", + "gui.config.comment.servermessages.servername": "Server Display Name to default to, in the case of a null Name\\n (Also Applies for Direct Connects)", + "gui.config.comment.servermessages.servermessages": "Customize Messages to display with Servers\\n (Manual Format: server_IP;message;icon)\\n Available Placeholders:\\n - &ip& = Server IP\\n - &name& = Server Name\\n - &motd& = Server MOTD\\n - &icon& = Default Server Icon\\n - &players& = Server Player Counter\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", + "gui.config.comment.statusmessages.mainmenumsg": "Message to Display while on the Main Menu", + "gui.config.comment.statusmessages.lanmsg": "Message to Display while in a LAN Game\\n Available Placeholders:\\n - &ip& = Server IP\\n - &name& = Server Name\\n - &motd& = Server MOTD\\n - &icon& = Default Server Icon\\n - &players& = Server Player Counter\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", + "gui.config.comment.statusmessages.singleplayermsg": "Message to Display while in Singleplayer\\n Available Placeholders:\\n - &playerinfo& = Your In-World Player Info Message\\n - &worldinfo& = Your In-World Game Info", + "gui.config.comment.statusmessages.placeholder.packmsg": "Message to use for the &pack& placeholder in Presence Settings\\n (If a Curse, Twitch, Technic, MCUpdater, or MultiMC Pack is Detected)\\n Available Placeholders:\\n - &name& = The Pack's Name", + "gui.config.comment.statusmessages.placeholder.playermsg.out": "Message to use for the &ign& General Placeholder in Presence Settings and the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &name& = Your Username", + "gui.config.comment.statusmessages.placeholder.playermsg.in": "Message to use for the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &coords& = The Player's Coordinate Placeholder Message\\n - &health& = The Player's Health Placeholder Message", + "gui.config.comment.statusmessages.placeholder.playercoordinatemsg": "Message to use for the &coords& Argument for the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &xPosition& = Your Current In-Game X Position\\n - &zPosition& = Your Current In-Game Z Position", + "gui.config.comment.statusmessages.placeholder.playerhealthmsg": "Message to use for the &health& Argument for the &playerinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - ¤t& = Your Current In-Game Health\\n - &max& = Your Current In-Game Maximum Health", + "gui.config.comment.statusmessages.placeholder.playeramountmsg": "Message to use for the &players& Placeholder in Server Settings\\n Available Placeholders:\\n - ¤t& = Current Player Count\\n - &max& = Maximum Player Count", + "gui.config.comment.statusmessages.placeholder.worldmsg": "Message to use for the &worldinfo& Placeholder in Server Settings\\n Available Placeholders:\\n - &difficulty& = The Current World's Difficulty\\n - &worldname& = The Name of the Current World\\n - &worldtime& = The Current World's In-Game Time", + "gui.config.comment.statusmessages.placeholder.modsmsg": "Message to use for the &mods& Placeholder in Presence Settings\\n Available Placeholders:\\n - &modcount& = The Amount of Mods currently in your Mods Folder", + "gui.config.comment.statusmessages.special.vivecraftmsg": "Message to display in Rich Presence when using Vivecraft", + "gui.config.comment.advanced.splitcharacter": "The Split Character for The Arrays in CraftPresence's Messages Configs", + "gui.config.comment.advanced.enablecommands": "Allows CraftPresence to utilize Commands\\n (Enables Command GUI in Main Config GUI)", + "gui.config.comment.advanced.enablepergui": "Allows CraftPresence to change it's display based on the GUI your in\\n Note the Following:\\n - Requires an Option in GUI Messages\\n - Minecraft's GUIs must be Opened once before Configuring due to Obfuscation", + "gui.config.comment.advanced.enableperitem": "Allows CraftPresence to change it's display based on the Item Your Holding\\n Note the Following:\\n - Requires an Option in Item Messages", + "gui.config.comment.advanced.rendertooltips": "Allow CraftPresence to render Hover Tooltips (when available)", + "gui.config.comment.advanced.debugmode": "Toggles Developer Mode, showing debug features and enabling debug logging", + "gui.config.comment.advanced.guimessages": "Customize Messages to display with GUIs\\n (Manual Format: gui;message)\\n Available Placeholders:\\n - &gui& = GUI Name\\n - &class& = GUI Class Name\\n - &screen& = GUI Screen Instance Name", + "gui.config.comment.advanced.itemmessages": "Customize Messages to display with Items\\n (Manual Format: item;message)\\n Available Placeholders:\\n - &main& = Current Main Hand Item\\n - &offhand& = Current OffHand Item\\n - &helmet& = Currently Equipped Helmet\\n - &chest& = Currently Equipped ChestPiece\\n - &legs& = Currently Equipped Leggings\\n - &boots& = Currently Equipped Boots", + "key.craftpresence.category": "CraftPresence - KeyBindings", + "key.craftpresence.config_keybind": "Config KeyBinding", + "craftpresence.message.unsupported": "This Feature is not Supported in this Version of Minecraft", + "craftpresence.defaults.servermessages.servername": "Minecraft Server", + "craftpresence.defaults.servermessages.servermotd": "A Minecraft Server", + "craftpresence.defaults.state.mainmenu": "In the Main Menu", + "craftpresence.defaults.state.mcversion": "Minecraft %1$s", + "craftpresence.defaults.state.lan": "Playing on a LAN Server", + "craftpresence.defaults.state.singleplayer": "Playing Singleplayer", + "craftpresence.defaults.placeholder.pack": "&name&", + "craftpresence.defaults.placeholder.players": "¤t& / &max& Players", + "craftpresence.defaults.placeholder.playerinfo.out": "As &name&", + "craftpresence.defaults.placeholder.playerinfo.in": "(&health&)", + "craftpresence.defaults.placeholder.playerinfo.coordinate": "At &xPosition&, &zPosition&", + "craftpresence.defaults.placeholder.playerinfo.health": "Health: ¤t&/&max&", + "craftpresence.defaults.placeholder.worldinfo": "On &worldname&", + "craftpresence.defaults.placeholder.mods": "&modcount& Mod(s)", + "craftpresence.defaults.special.vivecraft": "Playing in VR via Vivecraft", + "craftpresence.multiplayer.status.cannot_connect": "Can't connect to server", + "craftpresence.multiplayer.status.pinging": "Pinging...", + "craftpresence.multiplayer.status.polling": "Polling...", + "craftpresence.multiplayer.status.cannot_resolve": "Can't resolve hostname", + "craftpresence.command.usage.main": "§lCraftPresence - Sub-Commands:\\n §rSyntax: §6/ \\n\\n §6§lreboot §r- Reboot RPC\\n §6§lshutdown §r- Shut Down RPC\\n §6§lreload §r- Reloads CraftPresence Data based on Settings\\n §6§lrequest §r- View Join Request Info\\n §6§lview §r- View a Variety of Display Data\\n §6§lhelp §r- Views this Page", + "craftpresence.command.usage.view": "§lCraftPresence - View Sub-Commands:\\n\\n §6§lcurrentData §r- Shows your Current RPC Data, in text\\n §6§lassets §r- Displays all Asset Icons available\\n §6§ldimensions §r- Displays available Dimension Names\\n §6§lbiomes §r- Displays available Biome Names\\n §6§lservers §r- Displays available Server Addresses\\n §6§lguis §r- Displays available GUI Names\\n §6§litems §r- Displays available Item Names", + "craftpresence.command.usage.assets": "§lCraftPresence - Assets Sub-Commands:\\n\\n §6§llarge §r- View Discord Assets with Size LARGE\\n §6§lsmall §r- View Discord Assets with Size SMALL\\n §6§lall §r- View All Discord Assets", + "craftpresence.command.unrecognized": "§c§lUnknown Command - use §6§l/craftpresence help", + "craftpresence.command.currentdata": "§lCurrent RPC Data (Logged in as %1$s):§r\\n §6§lDetails:§r %2$s\\n §6§lGame State:§r %3$s\\n §6§lStart Timestamp:§r %4$s\\n §6§lClient ID:§r %5$s\\n §6§lLarge Icon Key:§r %6$s\\n §6§lLarge Icon Text:§r %7$s\\n §6§lSmall Icon Key:§r %8$s\\n §6§lSmall Icon Text:§r %9$s\\n §6§lParty ID:§r %10$s\\n §6§lParty Size:§r %11$s\\n §6§lParty Max:§r %12$s\\n §6§lJoin Secret:§r %13$s\\n §6§lEnd Timestamp:§r %14$s\\n §6§lMatch Secret:§r %15$s\\n §6§lSpectate Secret:§r %16$s\\n §6§lInstance:§r %17$s", + "craftpresence.command.reload": "§6§lReloading CraftPresence Data, depending on Settings!", + "craftpresence.command.reload.complete": "§2§lReloaded CraftPresence Data!", + "craftpresence.command.request.info": "§6§lRequest Info:§r\\n §6§lRequester Username: %1$s\\n\\n §6§lUse /cp request or Wait %2$s Seconds to Ignore", + "craftpresence.command.request.none": "§6§lYou do not have any available Join Requests!", + "craftpresence.command.request.accept": "§6§lJoin Request Accepted! %1$s has been sent an Invite!", + "craftpresence.command.request.denied": "§6§lJoin Request Denied from %1$s!", + "craftpresence.command.request.ignored": "§6§lJoin Request Ignored from %1$s!", + "craftpresence.command.shutdown.pre": "§6§lShutting Down CraftPresence...", + "craftpresence.command.shutdown.post": "§2§lCraftPresence has been Shutdown!\\n §6§lUse /cp reboot to Reboot", + "craftpresence.command.reboot.pre": "§6§lRebooting CraftPresence...", + "craftpresence.command.reboot.post": "§2§lCraftPresence has been Rebooted!", + "craftpresence.logger.info.os": "Detected OS: %1$s (Architecture: %2$s, Is 64-Bit: %3$s)", + "craftpresence.logger.info.load": "Loaded Display Data with ID: %1$s (Logged in as %2$s)", + "craftpresence.logger.info.shutdown": "Shutting Down CraftPresence...", + "craftpresence.logger.info.config.new": "New Configuration Data for CraftPresence has been created successfully!", + "craftpresence.logger.info.config.save": "Configuration Settings have been Saved and Reloaded Successfully!", + "craftpresence.logger.info.manifest.init": "Checking for valid Curse Manifest Data...", + "craftpresence.logger.info.manifest.loaded": "Found Curse Manifest Data! ( Name: \"%1$s\" )", + "craftpresence.logger.info.instance.init": "Checking for valid MultiMC Instance Data...", + "craftpresence.logger.info.instance.loaded": "Found MultiMC Instance Data! ( Name: \"%1$s\" - Icon: \"%2$s\" )", + "craftpresence.logger.info.mcupdater.init": "Checking for valid MCUpdater Instance Data...", + "craftpresence.logger.info.mcupdater.loaded": "Found MCUpdater Instance Data! ( Name: \"%1$s\")", + "craftpresence.logger.info.technic.init": "Checking for valid Technic Pack Data...", + "craftpresence.logger.info.technic.loaded": "Found Technic Pack Data! ( Name: \"%1$s\" - Icon: \"%2$s\" )", + "craftpresence.logger.info.chardata.init": "Searching for Character and Glyph Width Data...", + "craftpresence.logger.info.chardata.loaded": "Character and Glyph Width Data successfully Loaded!", + "craftpresence.logger.info.dll.init": "Loading \"%1$s\" as a DLL...", + "craftpresence.logger.info.dll.loaded": "\"%1$s\" has been Successfully loaded as a DLL!", + "craftpresence.logger.info.download.init": "Downloading \"%1$s\" to \"%2$s\"... ( From: \"%3$s\" )", + "craftpresence.logger.info.download.loaded": "\"%1$s\" has been Successfully Downloaded to \"%2$s\"! ( From: \"%3$s\")", + "craftpresence.logger.info.discord.assets.load": "Checking Discord for Available Assets with ID: %1$s", + "craftpresence.logger.info.discord.assets.detected": "%1$s Total Assets Detected!", + "craftpresence.logger.info.discord.assets.load.credits": "Originally Coded by paulhobbel - https://github.com/paulhobbel", + "craftpresence.logger.info.discord.assets.request": "To Add Support for this Icon, Please Request for this Icon to be Added to the Default Client ID or Add the Icon under the following Name: \"%1$s\".", + "craftpresence.logger.info.discord.assets.fallback": "Fallback Icon for \"%1$s\" Found! Using Fallback Icon with Name \"%2$s\"!", + "craftpresence.logger.error.system": "CraftPresence was unable to retrieve System Info, Things may not work well...", + "craftpresence.logger.error.rpc": "CraftPresence has encountered the following RPC Error, and has been Shut Down to prevent a crash: %1$s", + "craftpresence.logger.error.download": "Failed to Download \"%1$s\" from \"%2$s\"\\n Manually Download \"%1$s\" from \"%2$s\" to \"%3$s\"", + "craftpresence.logger.error.chardata": "Failed to Retrieve Character & Glyph Width Data, Some Rendering Functions have been disabled...", + "craftpresence.logger.error.dataclose": "Failed to Close a Data Stream, Resource Depletion may Occur, Please Report this Issue...", + "craftpresence.logger.error.dll": "Failed to Load \"%1$s\" as a DLL, Things may not work well...", + "craftpresence.logger.error.delete.file": "Failed to Delete \"%1$s\", Things may not work well...", + "craftpresence.logger.error.web": "Failed to Go to Page: %1$s", + "craftpresence.logger.error.keybind": "A Keybind Error has occurred, Resetting \"%1$s\" to default to prevent a crash...", + "craftpresence.logger.error.command": "An Error has Occurred Executing this Command", + "craftpresence.logger.error.config.save": "Failed to load or save Configuration", + "craftpresence.logger.error.config.invalidicon.empty": "Unable to Detect any Usable Icons! Please Submit a Mod Issue, if this is a mistake", + "craftpresence.logger.error.config.invalidicon.pre": "Invalid Icon \"%1$s\" in Property \"%2$s\", Selecting a Randomized Valid Icon...", + "craftpresence.logger.error.config.invalidicon.post": "Successfully Set Icon in Property \"%1$s\" to \"%2$s\"", + "craftpresence.logger.error.config.emptyprop": "Empty or Non-Convertable Property Detected (\"%1$s\"), setting property as default...", + "craftpresence.logger.error.config.invalidprop": "Invalid Property Detected (\"%1$s\"), removing property...", + "craftpresence.logger.error.config.defaultmissing": "Default Value is missing for Property \"%1$s\", Adding to Property...", + "craftpresence.logger.error.file.manifest": "Unable to get Curse Manifest Data (Ignore if Not using a Twitch/CursePack)", + "craftpresence.logger.error.file.instance": "Unable to get MultiMC Instance Data (Ignore if Not using a MultiMC Pack)", + "craftpresence.logger.error.file.mcupdater": "Unable to get MCUpdater Instance Data (Ignore if Not using a MCUpdater Pack)", + "craftpresence.logger.error.file.technic": "Unable to get Technic Pack Data (Ignore if Not using a Technic Pack)", + "craftpresence.logger.error.technic.limitation": "Due to Technic Limitations, The Pack your Currently Playing will only display an Icon properly if selected in the Technic Launcher.", + "craftpresence.logger.error.load": "Failed to Load Display Data", + "craftpresence.logger.error.discord.join": "Join Request Rejected, due to an Invalid Join Key: %1$s", + "craftpresence.logger.error.discord.assets.load": "Unable to get Discord Assets, Things may not work well.", + "craftpresence.logger.error.discord.assets.fallback": "Asset Name \"%1$s\" does not exist, attempting to use an alternative Icon \"%2$s\"...", + "craftpresence.logger.error.discord.assets.default": "Failed to Assign an Alternative Icon for Asset Name \"%1$s\", using Default/Randomized Icon \"%2$s\"...", + "craftpresence.logger.warning.config.disabled.enablejoinrequest": "Join Request Support is Disabled in Your Config. Please Enable it to accept and send Join Requests in Discord!", + "craftpresence.logger.warning.config.empty.clientid": "Your Client ID is Empty, things may not work well...", + "craftpresence.logger.warning.fingerprintviolation": "Invalid Certificate Detected, this Build will not receive Support!", + "craftpresence.logger.warning.debugmode": "You are Running CraftPresence in a Debugging Environment, some features may not function properly!", + "craftpresence.exception.config.nullprop": "Property Value for \"%1$s\" cannot be null" +} diff --git a/en-mods/extraalchemy.json b/en-mods/extraalchemy.json index db9e42685..5044ca758 100644 --- a/en-mods/extraalchemy.json +++ b/en-mods/extraalchemy.json @@ -1,55 +1,55 @@ { - "effect.extraalchemy.magnetism": "Magnetism", - "item.minecraft.potion.effect.magnetism": "Potion of Magnetism", - "item.minecraft.splash_potion.effect.magnetism": "Splash Potion of Magnetism", - "item.minecraft.lingering_potion.effect.magnetism": "Lingering Potion of Magnetism", - "item.minecraft.tipped_arrow.effect.magnetism": "Arrow of Magnetism", - - "effect.extraalchemy.photosynthesis": "Photosynthesis", - "item.minecraft.potion.effect.photosynthesis": "Potion of Photosynthesis", - "item.minecraft.splash_potion.effect.photosynthesis": "Splash Potion of Photosynthesis", - "item.minecraft.lingering_potion.effect.photosynthesis": "Lingering Potion of Photosynthesis", - "item.minecraft.tipped_arrow.effect.photosynthesis": "Arrow of Photosynthesis", - - "effect.extraalchemy.crumbling": "Crumbling", - "item.minecraft.potion.effect.crumbling": "Potion of Crumbling", - "item.minecraft.splash_potion.effect.crumbling": "Splash Potion of Crumbling", - "item.minecraft.lingering_potion.effect.crumbling": "Lingering Potion of Crumbling", - "item.minecraft.tipped_arrow.effect.crumbling": "Arrow of Crumbling", - - "effect.extraalchemy.sails": "Sails", - "item.minecraft.potion.effect.sails": "Potion of Sailing", - "item.minecraft.splash_potion.effect.sails": "Splash Potion of Sailing", - "item.minecraft.lingering_potion.effect.sails": "Lingering Potion of Sailing", - "item.minecraft.tipped_arrow.effect.sails": "Arrow of Sailing", - - "effect.extraalchemy.fuse": "Detonation", - "item.minecraft.potion.effect.fuse": "Potion of Fuse", - "item.minecraft.splash_potion.effect.fuse": "Splash Potion of Fuse", - "item.minecraft.lingering_potion.effect.fuse": "Lingering Potion of Fuse", - "item.minecraft.tipped_arrow.effect.fuse": "Arrow of Fuse", - - "effect.extraalchemy.recall": "Recall", - "item.minecraft.potion.effect.recall": "Potion of Rewinding", - "item.minecraft.splash_potion.effect.recall": "Splash Potion of Rewinding", - "item.minecraft.lingering_potion.effect.recall": "Lingering Potion of Rewinding", - "item.minecraft.tipped_arrow.effect.recall": "Arrow of Rewinding", - - "effect.extraalchemy.returning": "Returning", - "item.minecraft.potion.effect.returning": "Potion of Returning", - "item.minecraft.splash_potion.effect.returning": "Splash Potion of Returning", - "item.minecraft.lingering_potion.effect.returning": "Lingering Potion of Returning", - "item.minecraft.tipped_arrow.effect.returning": "Arrow of Returning", - - "effect.extraalchemy.learning": "Learning", - "item.minecraft.potion.effect.learning": "Potion of Learning", - "item.minecraft.splash_potion.effect.learning": "Splash Potion of Learning", - "item.minecraft.lingering_potion.effect.learning": "Lingering Potion of Learning", - "item.minecraft.tipped_arrow.effect.learning": "Arrow of Learning", - - "effect.extraalchemy.concentration": "Focus", - "item.minecraft.potion.effect.concentration": "Potion of Concentration", - "item.minecraft.splash_potion.effect.concentration": "Splash Potion of Concentration", - "item.minecraft.lingering_potion.effect.concentration": "Lingering Potion of Concentration", - "item.minecraft.tipped_arrow.effect.concentration": "Arrow of Concentration" -} \ No newline at end of file + "effect.extraalchemy.magnetism": "Magnetism", + "item.minecraft.potion.effect.magnetism": "Potion of Magnetism", + "item.minecraft.splash_potion.effect.magnetism": "Splash Potion of Magnetism", + "item.minecraft.lingering_potion.effect.magnetism": "Lingering Potion of Magnetism", + "item.minecraft.tipped_arrow.effect.magnetism": "Arrow of Magnetism", + + "effect.extraalchemy.photosynthesis": "Photosynthesis", + "item.minecraft.potion.effect.photosynthesis": "Potion of Photosynthesis", + "item.minecraft.splash_potion.effect.photosynthesis": "Splash Potion of Photosynthesis", + "item.minecraft.lingering_potion.effect.photosynthesis": "Lingering Potion of Photosynthesis", + "item.minecraft.tipped_arrow.effect.photosynthesis": "Arrow of Photosynthesis", + + "effect.extraalchemy.crumbling": "Crumbling", + "item.minecraft.potion.effect.crumbling": "Potion of Crumbling", + "item.minecraft.splash_potion.effect.crumbling": "Splash Potion of Crumbling", + "item.minecraft.lingering_potion.effect.crumbling": "Lingering Potion of Crumbling", + "item.minecraft.tipped_arrow.effect.crumbling": "Arrow of Crumbling", + + "effect.extraalchemy.sails": "Sails", + "item.minecraft.potion.effect.sails": "Potion of Sailing", + "item.minecraft.splash_potion.effect.sails": "Splash Potion of Sailing", + "item.minecraft.lingering_potion.effect.sails": "Lingering Potion of Sailing", + "item.minecraft.tipped_arrow.effect.sails": "Arrow of Sailing", + + "effect.extraalchemy.fuse": "Detonation", + "item.minecraft.potion.effect.fuse": "Potion of Fuse", + "item.minecraft.splash_potion.effect.fuse": "Splash Potion of Fuse", + "item.minecraft.lingering_potion.effect.fuse": "Lingering Potion of Fuse", + "item.minecraft.tipped_arrow.effect.fuse": "Arrow of Fuse", + + "effect.extraalchemy.recall": "Recall", + "item.minecraft.potion.effect.recall": "Potion of Rewinding", + "item.minecraft.splash_potion.effect.recall": "Splash Potion of Rewinding", + "item.minecraft.lingering_potion.effect.recall": "Lingering Potion of Rewinding", + "item.minecraft.tipped_arrow.effect.recall": "Arrow of Rewinding", + + "effect.extraalchemy.returning": "Returning", + "item.minecraft.potion.effect.returning": "Potion of Returning", + "item.minecraft.splash_potion.effect.returning": "Splash Potion of Returning", + "item.minecraft.lingering_potion.effect.returning": "Lingering Potion of Returning", + "item.minecraft.tipped_arrow.effect.returning": "Arrow of Returning", + + "effect.extraalchemy.learning": "Learning", + "item.minecraft.potion.effect.learning": "Potion of Learning", + "item.minecraft.splash_potion.effect.learning": "Splash Potion of Learning", + "item.minecraft.lingering_potion.effect.learning": "Lingering Potion of Learning", + "item.minecraft.tipped_arrow.effect.learning": "Arrow of Learning", + + "effect.extraalchemy.concentration": "Focus", + "item.minecraft.potion.effect.concentration": "Potion of Concentration", + "item.minecraft.splash_potion.effect.concentration": "Splash Potion of Concentration", + "item.minecraft.lingering_potion.effect.concentration": "Lingering Potion of Concentration", + "item.minecraft.tipped_arrow.effect.concentration": "Arrow of Concentration" +} diff --git a/en-mods/shulkerboxtooltip.json b/en-mods/shulkerboxtooltip.json index b06f17103..cd6177b26 100644 --- a/en-mods/shulkerboxtooltip.json +++ b/en-mods/shulkerboxtooltip.json @@ -1,38 +1,38 @@ { - "container.shulkerbox.contains": "Contains %s stack(s)", - "container.shulkerbox.empty": "Empty", - "shulkerboxtooltip.hint.compact": "view contents", - "shulkerboxtooltip.hint.full": "view full contents", - "shulkerboxtooltip.hint.lootTable": "Has loot table", - "shulkerboxtooltip.hint.lootTable.advanced": "Loot Table", - "text.autoconfig.shulkerboxtooltip.title": "ShulkerBoxTooltip Configuration", - "text.autoconfig.shulkerboxtooltip.category.main": "Main", - "text.autoconfig.shulkerboxtooltip.option.main.alwaysOn": "Always On", - "text.autoconfig.shulkerboxtooltip.option.main.alwaysOn.tooltip": "If on, the preview is always displayed,\nregardless of the shift key being pressed.", - "text.autoconfig.shulkerboxtooltip.option.main.compactPreviewTagBehavior": "Compact Preview NBT", - "text.autoconfig.shulkerboxtooltip.option.main.compactPreviewTagBehavior.tooltip": "In compact mode, how should items with the same ID\nbut different NBT data be compacted?\nIgnored: ignores NBT data\nFirst Item: items are displayed as all having\nthe same NBT as the first item\nSeparate: separates items with different NBT data", - "text.autoconfig.shulkerboxtooltip.option.main.coloredPreview": "Colored Preview Window", - "text.autoconfig.shulkerboxtooltip.option.main.coloredPreview.tooltip": "Controls whether the preview window should be colored.", - "text.autoconfig.shulkerboxtooltip.option.main.defaultMaxRowSize": "Maximum Row Size", - "text.autoconfig.shulkerboxtooltip.option.main.defaultMaxRowSize.tooltip": "The max number of items in a row\nMay not affect modded containers", - "text.autoconfig.shulkerboxtooltip.option.main.enablePreview": "Enable Preview", - "text.autoconfig.shulkerboxtooltip.option.main.enablePreview.tooltip": "Toggles the shulker box preview.\nEffectively disables the mod.", - "text.autoconfig.shulkerboxtooltip.option.main.lockPreview": "Lock Preview Window", - "text.autoconfig.shulkerboxtooltip.option.main.lockPreview.tooltip": "Locks the preview window above the tooltip.\nWhen locked, the window will not adapt when out of screen.", - "text.autoconfig.shulkerboxtooltip.option.main.lootTableInfoType": "Loot Table Info Type", - "text.autoconfig.shulkerboxtooltip.option.main.lootTableInfoType.tooltip": "Shows info about the current loot table of the item if present.\nVisible only when Tooltip Type is set to Modded.\nHide: no loot table info, default.\nSimple: displays whether the stack uses a loot table.\nAdvanced: shows the loot table used by the item.", - "text.autoconfig.shulkerboxtooltip.option.main.swapModes": "Swap Modes", - "text.autoconfig.shulkerboxtooltip.option.main.swapModes.tooltip": "Swaps the preview modes.\nIf true, pressing shift will show the full preview instead.", - "text.autoconfig.shulkerboxtooltip.option.main.tooltipType": "Tooltip Type", - "text.autoconfig.shulkerboxtooltip.option.main.tooltipType.tooltip": "The tooltip to use.\nVanilla: the vanilla tooltip (shows the first 5 items)\nModded: the mod's tooltip\nNone: no tooltip", - "shulkerboxtooltip.compactPreviewTagBehavior.ignore": "Ignore", - "shulkerboxtooltip.compactPreviewTagBehavior.first_item": "First Item", - "shulkerboxtooltip.compactPreviewTagBehavior.separate": "Separate Items", - "shulkerboxtooltip.tooltipType.vanilla": "Vanilla", - "shulkerboxtooltip.tooltipType.mod": "Modded", - "shulkerboxtooltip.tooltipType.none": "None", - "shulkerboxtooltip.lootTableInfoType.hide": "Hide", - "shulkerboxtooltip.lootTableInfoType.simple": "Simple", - "shulkerboxtooltip.lootTableInfoType.advanced": "Advanced", - "shulkerboxtooltip.config.validator.greater_than_zero": "Must be greater than zero" -} \ No newline at end of file + "container.shulkerbox.contains": "Contains %s stack(s)", + "container.shulkerbox.empty": "Empty", + "shulkerboxtooltip.hint.compact": "view contents", + "shulkerboxtooltip.hint.full": "view full contents", + "shulkerboxtooltip.hint.lootTable": "Has loot table", + "shulkerboxtooltip.hint.lootTable.advanced": "Loot Table", + "text.autoconfig.shulkerboxtooltip.title": "ShulkerBoxTooltip Configuration", + "text.autoconfig.shulkerboxtooltip.category.main": "Main", + "text.autoconfig.shulkerboxtooltip.option.main.alwaysOn": "Always On", + "text.autoconfig.shulkerboxtooltip.option.main.alwaysOn.tooltip": "If on, the preview is always displayed,\nregardless of the shift key being pressed.", + "text.autoconfig.shulkerboxtooltip.option.main.compactPreviewTagBehavior": "Compact Preview NBT", + "text.autoconfig.shulkerboxtooltip.option.main.compactPreviewTagBehavior.tooltip": "In compact mode, how should items with the same ID\nbut different NBT data be compacted?\nIgnored: ignores NBT data\nFirst Item: items are displayed as all having\nthe same NBT as the first item\nSeparate: separates items with different NBT data", + "text.autoconfig.shulkerboxtooltip.option.main.coloredPreview": "Colored Preview Window", + "text.autoconfig.shulkerboxtooltip.option.main.coloredPreview.tooltip": "Controls whether the preview window should be colored.", + "text.autoconfig.shulkerboxtooltip.option.main.defaultMaxRowSize": "Maximum Row Size", + "text.autoconfig.shulkerboxtooltip.option.main.defaultMaxRowSize.tooltip": "The max number of items in a row\nMay not affect modded containers", + "text.autoconfig.shulkerboxtooltip.option.main.enablePreview": "Enable Preview", + "text.autoconfig.shulkerboxtooltip.option.main.enablePreview.tooltip": "Toggles the shulker box preview.\nEffectively disables the mod.", + "text.autoconfig.shulkerboxtooltip.option.main.lockPreview": "Lock Preview Window", + "text.autoconfig.shulkerboxtooltip.option.main.lockPreview.tooltip": "Locks the preview window above the tooltip.\nWhen locked, the window will not adapt when out of screen.", + "text.autoconfig.shulkerboxtooltip.option.main.lootTableInfoType": "Loot Table Info Type", + "text.autoconfig.shulkerboxtooltip.option.main.lootTableInfoType.tooltip": "Shows info about the current loot table of the item if present.\nVisible only when Tooltip Type is set to Modded.\nHide: no loot table info, default.\nSimple: displays whether the stack uses a loot table.\nAdvanced: shows the loot table used by the item.", + "text.autoconfig.shulkerboxtooltip.option.main.swapModes": "Swap Modes", + "text.autoconfig.shulkerboxtooltip.option.main.swapModes.tooltip": "Swaps the preview modes.\nIf true, pressing shift will show the full preview instead.", + "text.autoconfig.shulkerboxtooltip.option.main.tooltipType": "Tooltip Type", + "text.autoconfig.shulkerboxtooltip.option.main.tooltipType.tooltip": "The tooltip to use.\nVanilla: the vanilla tooltip (shows the first 5 items)\nModded: the mod's tooltip\nNone: no tooltip", + "shulkerboxtooltip.compactPreviewTagBehavior.ignore": "Ignore", + "shulkerboxtooltip.compactPreviewTagBehavior.first_item": "First Item", + "shulkerboxtooltip.compactPreviewTagBehavior.separate": "Separate Items", + "shulkerboxtooltip.tooltipType.vanilla": "Vanilla", + "shulkerboxtooltip.tooltipType.mod": "Modded", + "shulkerboxtooltip.tooltipType.none": "None", + "shulkerboxtooltip.lootTableInfoType.hide": "Hide", + "shulkerboxtooltip.lootTableInfoType.simple": "Simple", + "shulkerboxtooltip.lootTableInfoType.advanced": "Advanced", + "shulkerboxtooltip.config.validator.greater_than_zero": "Must be greater than zero" +} diff --git a/en-mods/tdnf.json b/en-mods/tdnf.json index 3dff64112..4e3b2a00e 100644 --- a/en-mods/tdnf.json +++ b/en-mods/tdnf.json @@ -1,73 +1,70 @@ { - "config.tdnf.title" : "Trees Do Not Float", - "config.tdnf.reset" : "Reset", - - "config.tdnf.category.blocks" : "Blocks", - - "config.tdnf.value.fall_condition" : "Fall Condition", - "config.tdnf.help.fall_condition" : "When do trees break?", - - "config.tdnf.value.keep_logs_intact" : "Keep Logs Intact", - "config.tdnf.help.keep_logs_intact" : "Log blocks fall to the ground instead of dropping;as items. Can be laggy.", - - "config.tdnf.value.render_falling" : "Render Falling", - "config.tdnf.help.render_falling" : "Render falling logs? (Affects client side only.) Can be laggy.", - - "config.tdnf.value.break_leaves" : "Break Plants", - "config.tdnf.help.break_leaves" : "Falling logs break leaves and other plants;on the way down.", - - "config.tdnf.value.break_fragile" : "Break Fragiles", - "config.tdnf.help.break_fragile" : "Falling logs break glass and other fragile blocks.", - - "config.tdnf.value.protect_player_logs" : "Protect Player Logs", - "config.tdnf.help.protect_player_logs" : "Logs placed by players are allowed to float.", - - - "config.tdnf.category.players" : "Players", - - "config.tdnf.value.direct_deposit" : "Direct Deposit", - "config.tdnf.help.direct_deposit" : "Dropped items go directly to player inventory.;Useful for skyblock packs.", - - "config.tdnf.value.apply_fortune" : "Apply Fortune", - "config.tdnf.help.apply_fortune" : "Apply fortune from tool used to fell;a tree. (If a tool is used)", - - "config.tdnf.value.consume_durability" : "Consume Durability", - "config.tdnf.help.consume_durability" : "Remove durability from a tool used;to fell a tree. (If a tool is used)", - - "config.tdnf.value.leaf_durability" : "Leaf Durability", - "config.tdnf.help.leaf_durability" : "Tools take durability loss from leaves as;well as logs. (If a tool is used)", - - "config.tdnf.value.protect_tools" : "Protect Tools", - "config.tdnf.help.protect_tools" : "Don't break tools when using durability.", - - "config.tdnf.value.apply_hunger" : "Apply Hunger", - "config.tdnf.help.apply_hunger" : "Players gain hunger from felling trees,;as if they had broken each log.", - - "config.tdnf.value.leaf_hunger" : "Leaf Hunger", - "config.tdnf.help.leaf_hunger" : "Players gain hunger from leaves;in addition to logs.", - - - "config.tdnf.category.performance" : "Performance", - - "config.tdnf.value.consolidate_drops" : "Combine Stacks", - "config.tdnf.help.consolidate_drops" : "Consolidate item drops into stacks to prevent lag", - - "config.tdnf.value.effect_level" : "Effect Level", - "config.tdnf.help.effect_level" : "Spawn breaking particles and play sounds?;Number is max effects per second.", - - "config.tdnf.value.max_breaks_per_tick" : "Max Breaks per Tick", - "config.tdnf.help.max_breaks_per_tick" : "Max log & leaf blocks to break per tick", - - "config.tdnf.value.tick_budget" : "Tick Budget", - "config.tdnf.help.tick_budget" : "Max percentage of each server tick;that can be used by TDNF.", - - "config.tdnf.value.max_falling_blocks" : "Max Falling Blocks", - "config.tdnf.help.max_falling_blocks" : "Max number of active falling block entities.", - - "config.tdnf.value.support_surface" : "Minimum Support Surface", - "config.tdnf.help.support_surface" : "What counts as support for logs?", - - "config.tdnf.value.job_timeout_ticks" : "Job Timeout Ticks", - "config.tdnf.help.job_timeout_ticks" : "Jobs taking longer than this are abandoned.;20 ticks/second." - -} \ No newline at end of file + "config.tdnf.title": "Trees Do Not Float", + "config.tdnf.reset": "Reset", + + "config.tdnf.category.blocks": "Blocks", + + "config.tdnf.value.fall_condition": "Fall Condition", + "config.tdnf.help.fall_condition": "When do trees break?", + + "config.tdnf.value.keep_logs_intact": "Keep Logs Intact", + "config.tdnf.help.keep_logs_intact": "Log blocks fall to the ground instead of dropping;as items. Can be laggy.", + + "config.tdnf.value.render_falling": "Render Falling", + "config.tdnf.help.render_falling": "Render falling logs? (Affects client side only.) Can be laggy.", + + "config.tdnf.value.break_leaves": "Break Plants", + "config.tdnf.help.break_leaves": "Falling logs break leaves and other plants;on the way down.", + + "config.tdnf.value.break_fragile": "Break Fragiles", + "config.tdnf.help.break_fragile": "Falling logs break glass and other fragile blocks.", + + "config.tdnf.value.protect_player_logs": "Protect Player Logs", + "config.tdnf.help.protect_player_logs": "Logs placed by players are allowed to float.", + + "config.tdnf.category.players": "Players", + + "config.tdnf.value.direct_deposit": "Direct Deposit", + "config.tdnf.help.direct_deposit": "Dropped items go directly to player inventory.;Useful for skyblock packs.", + + "config.tdnf.value.apply_fortune": "Apply Fortune", + "config.tdnf.help.apply_fortune": "Apply fortune from tool used to fell;a tree. (If a tool is used)", + + "config.tdnf.value.consume_durability": "Consume Durability", + "config.tdnf.help.consume_durability": "Remove durability from a tool used;to fell a tree. (If a tool is used)", + + "config.tdnf.value.leaf_durability": "Leaf Durability", + "config.tdnf.help.leaf_durability": "Tools take durability loss from leaves as;well as logs. (If a tool is used)", + + "config.tdnf.value.protect_tools": "Protect Tools", + "config.tdnf.help.protect_tools": "Don't break tools when using durability.", + + "config.tdnf.value.apply_hunger": "Apply Hunger", + "config.tdnf.help.apply_hunger": "Players gain hunger from felling trees,;as if they had broken each log.", + + "config.tdnf.value.leaf_hunger": "Leaf Hunger", + "config.tdnf.help.leaf_hunger": "Players gain hunger from leaves;in addition to logs.", + + "config.tdnf.category.performance": "Performance", + + "config.tdnf.value.consolidate_drops": "Combine Stacks", + "config.tdnf.help.consolidate_drops": "Consolidate item drops into stacks to prevent lag", + + "config.tdnf.value.effect_level": "Effect Level", + "config.tdnf.help.effect_level": "Spawn breaking particles and play sounds?;Number is max effects per second.", + + "config.tdnf.value.max_breaks_per_tick": "Max Breaks per Tick", + "config.tdnf.help.max_breaks_per_tick": "Max log & leaf blocks to break per tick", + + "config.tdnf.value.tick_budget": "Tick Budget", + "config.tdnf.help.tick_budget": "Max percentage of each server tick;that can be used by TDNF.", + + "config.tdnf.value.max_falling_blocks": "Max Falling Blocks", + "config.tdnf.help.max_falling_blocks": "Max number of active falling block entities.", + + "config.tdnf.value.support_surface": "Minimum Support Surface", + "config.tdnf.help.support_surface": "What counts as support for logs?", + + "config.tdnf.value.job_timeout_ticks": "Job Timeout Ticks", + "config.tdnf.help.job_timeout_ticks": "Jobs taking longer than this are abandoned.;20 ticks/second." +} diff --git a/list_of_language_modules.md b/list_of_language_modules.md index 36f0e32b3..259c54406 100644 --- a/list_of_language_modules.md +++ b/list_of_language_modules.md @@ -2,29 +2,37 @@ 众所周知,Mojang经常对语言文件进行破坏性更改(残念~)。为了保证仓库中的梗体中文和最新版本的原始语言文件有相同的键,我们将不同的部分提取出来,做成模块放在单独的文件夹内。如果你在游玩过程中遇到了没有翻译的内容,请检查使用的资源包是否包含对应游戏版本的字符串。 -如果你想提议一个语言增补模块,请首先看看[模块结构文档](https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack/wiki/%E6%A8%A1%E5%9D%97%E7%BB%93%E6%9E%84%E6%96%87%E6%A1%A3),根据那里的指导来编写一个模块。 - ## 语言模块一览 以下模块按名称排序。 | 名称 | 说明 | | ---- | ---- | -| `20w14inf` | 提供对愚人节快照20w14inf的有限支持 | -| `combat_test_6` | 提供对Combat Test 6的有限支持 | | `lang_achievements_1.11-1.11.2` | 17w13a之前的成就字符串 | +| `lang_april_fools_snapshots` | 提供对愚人节快照的有限支持 | | `lang_attributes_1.12.2-1.15.2` | 1.12.2至1.15.2间的属性名称 | | `lang_backupworld_1.12.2-1.16.5` | 1.12.2至1.16.5间的备份世界提醒 | +| `lang_chat_preview_1.19.2` | 22w42a以前的聊天预览消息 | +| `lang_combat_test_6` | 提供对Combat Test 6快照的梗体中文有限支持 | +| `lang_commands_1.11-1.12.2` | 1.13以前的命令字符串 | | `lang_extra_strings`| 提供额外字符串支持 | | `lang_grass_path_1.12.2-1.16.5` | 20w45a以前的草径方块 | +| `lang_itemgroup_1.12.2-1.19.2` | 22w42a以前的创造模式物品栏 | | `lang_multiplayer_before_1.12.2-1.16.3` | 1.16.4-pre1以前不兼容的客户端与服务端信息 | +| `lang_netease` | 网易版专用模块 | | `lang_nether_biome_1.12.2-1.15.2` | 20w06a以前的下界生物群系名称 | +| `lang_nether_biome_1.12.2-1.17.1` | 1.18前的生物群系 | +| `lang_old_realms_strings` | 旧版本领域的各种字符串 | | `lang_old_strings` | 旧版本的各种字符串 | | `lang_replaceitem_1.12.2-1.16.5` | 20w46a以前的replaceitem命令 | | `lang_selectworld_gui_1.12.2-1.16.1` | 20w28a以前的生成世界字符串 | | `lang_selectworld_gui_1.16.2-1.16.5` | 21w03a以前的生成世界字符串 | | `lang_serious_dedication_1.12.2-1.15.2` | 20w20a以前的“终极奉献”进度名称与描述 | +| `lang_sfc` | 适用于严格的文本替换。注:看破别说破。 | | `lang_sfw` | 适用于工作场合的文本替换 | +| `lang_sleep_impossible_1.12.2-1.16.5` | 21w03a以前的无法入睡字符串 | | `lang_spawnpoint_1.12.2-1.15.2` | 20w12a以前版本的重生信息的替换 | | `lang_spawnpoint_1.16-1.16.1` | 20w29a以前版本的重生信息的替换 | | `lang_trapdoor_1.12.2-1.15.2` | 20w14a以前版本的活板门字幕更正 | +| `lang_world_generation_1.12.2-1.18.2` | 1.19以前的世界生成 | +| `lang_wordborder_1.12.2-1.16.5` | 21w18a以前版本的世界边界过大提示的替换 | \ No newline at end of file diff --git a/list_of_supported_mods.md b/list_of_supported_mods.md index 25b670a15..501402db4 100644 --- a/list_of_supported_mods.md +++ b/list_of_supported_mods.md @@ -11,6 +11,9 @@ * 更多的合成(Crafting++):ruhuasiyu等,[网址](https://ruhuasiyu.github.io/CraftingPlusPlus/) * 烤地瓜(Sweet Potato):Pigeonia Featurehouse,[网址](https://github.com/Featurehouse/sweet_potato-source) * 矿物高亮(Bright ore):Pigeonia Featurehouse,[网址](https://github.com/Featurehouse/bright-ore) -* MCBBS Wiki 模组(MCBBS Wiki Mod):QWERTY_52_38(Github账号QWERTY770),[网址](https://github.com/QWERTY770/MCBBS-Wiki-Mod) +* MCBBS Wiki 模组(MCBBS Wiki Mod):QWERTY770,[网址](https://github.com/QWERTY770/MCBBS-Wiki-Mod) +* 乡野与魔法(Countryside And Magic):LAY Studio,[网址](https://github.com/CR-019/CAM_beta) +* SCP: Sharp:xtexChooser,[网址](https://github.com/SCPSharp/scp-sharp) +* 灯纟火模组: Xdi8Aho Mods,[网址](https://github.com/Xdi8Mod/Xdi8aho-Mod) 以下内容由于<*吃掉了*>的原因而无法显示,敬请谅jon'fslA;/[E-2L}sgr= diff --git a/mappings/addServer.json b/mappings/addServer.json index 4444514e9..ab3c88d3b 100644 --- a/mappings/addServer.json +++ b/mappings/addServer.json @@ -8,4 +8,4 @@ "addServer.resourcePack.enabled": "addServer.resourcePack.enabled", "addServer.resourcePack.prompt": "addServer.resourcePack.prompt", "addServer.title": "addServer.title" -} \ No newline at end of file +} diff --git a/mappings/advMode.json b/mappings/advMode.json index a0a62cc60..5c709735d 100644 --- a/mappings/advMode.json +++ b/mappings/advMode.json @@ -17,4 +17,4 @@ "advMode.self": "advMode.self", "advMode.setCommand": "advMode.setCommand", "advMode.setCommand.success": "advMode.setCommand.success" -} \ No newline at end of file +} diff --git a/mappings/advancements.json b/mappings/advancements.json index bbb99862a..de3d4d11c 100644 --- a/mappings/advancements.json +++ b/mappings/advancements.json @@ -113,4 +113,4 @@ "advancements.toast.challenge": "advancements.toast.challenge", "advancements.toast.goal": "advancements.toast.goal", "advancements.toast.task": "advancements.toast.task" -} \ No newline at end of file +} diff --git a/mappings/all_mappings b/mappings/all_mappings index 775e63c26..297d307b4 100644 --- a/mappings/all_mappings +++ b/mappings/all_mappings @@ -6,7 +6,6 @@ "book", "build", "chat", - "commands", "connect", "container", "controls", @@ -58,4 +57,4 @@ "title", "translation", "tutorial" -] \ No newline at end of file +] diff --git a/mappings/attribute.json b/mappings/attribute.json index c21ad1f00..70b1e26b2 100644 --- a/mappings/attribute.json +++ b/mappings/attribute.json @@ -19,4 +19,4 @@ "attribute.name.generic.movementSpeed": "attribute.name.generic.movementSpeed", "attribute.name.horse.jumpStrength": "attribute.name.horse.jumpStrength", "attribute.name.zombie.spawnReinforcements": "attribute.name.zombie.spawnReinforcements" -} \ No newline at end of file +} diff --git a/mappings/book.json b/mappings/book.json index fcf0cef6e..744ad9b7f 100644 --- a/mappings/book.json +++ b/mappings/book.json @@ -12,4 +12,4 @@ "gui.recipebook.moreRecipes": "gui.recipebook.moreRecipes", "gui.recipebook.toggleRecipes.all": "gui.recipebook.toggleRecipes.all", "gui.recipebook.toggleRecipes.craftable": "gui.recipebook.toggleRecipes.craftable" -} \ No newline at end of file +} diff --git a/mappings/build.json b/mappings/build.json index 02d2e9a1e..10877f1e5 100644 --- a/mappings/build.json +++ b/mappings/build.json @@ -1,3 +1,3 @@ { "build.tooHigh": "build.tooHigh" -} \ No newline at end of file +} diff --git a/mappings/chat.json b/mappings/chat.json index d079af862..b5ebf89d9 100644 --- a/mappings/chat.json +++ b/mappings/chat.json @@ -13,4 +13,4 @@ "chat.type.emote": "chat.type.emote", "chat.type.text": "chat.type.text", "chat.type.text.narrate": "chat.type.text.narrate" -} \ No newline at end of file +} diff --git a/mappings/connect.json b/mappings/connect.json index f241b1659..16f80e863 100644 --- a/mappings/connect.json +++ b/mappings/connect.json @@ -2,4 +2,4 @@ "connect.authorizing": "connect.authorizing", "connect.connecting": "connect.connecting", "connect.failed": "connect.failed" -} \ No newline at end of file +} diff --git a/mappings/container.json b/mappings/container.json index 571d7b9b7..cbb545389 100644 --- a/mappings/container.json +++ b/mappings/container.json @@ -25,4 +25,4 @@ "container.shulkerBox": "container.shulkerBox", "container.shulkerBox.more": "container.shulkerBox.more", "container.spectatorCantOpen": "container.spectatorCantOpen" -} \ No newline at end of file +} diff --git a/mappings/controls.json b/mappings/controls.json index 1e7fd26f3..24b971f67 100644 --- a/mappings/controls.json +++ b/mappings/controls.json @@ -2,4 +2,4 @@ "controls.reset": "controls.reset", "controls.resetAll": "controls.resetAll", "controls.title": "controls.title" -} \ No newline at end of file +} diff --git a/mappings/createWorld.json b/mappings/createWorld.json index e8dc53b47..aff0fe465 100644 --- a/mappings/createWorld.json +++ b/mappings/createWorld.json @@ -83,4 +83,4 @@ "createWorld.customize.presets.select": "createWorld.customize.presets.select", "createWorld.customize.presets.share": "createWorld.customize.presets.share", "createWorld.customize.presets.title": "createWorld.customize.presets.title" -} \ No newline at end of file +} diff --git a/mappings/death.json b/mappings/death.json index 49c8a8537..e4d0a0e6c 100644 --- a/mappings/death.json +++ b/mappings/death.json @@ -48,4 +48,4 @@ "death.fell.finish": "death.fell.finish", "death.fell.finish.item": "death.fell.finish.item", "death.fell.killer": "death.fell.killer" -} \ No newline at end of file +} diff --git a/mappings/deathScreen.json b/mappings/deathScreen.json index ca1eb62c6..61e70c84c 100644 --- a/mappings/deathScreen.json +++ b/mappings/deathScreen.json @@ -8,4 +8,4 @@ "deathScreen.title": "deathScreen.title", "deathScreen.title.hardcore": "deathScreen.title.hardcore", "deathScreen.titleScreen": "deathScreen.titleScreen" -} \ No newline at end of file +} diff --git a/mappings/debug.json b/mappings/debug.json index 18bbe0459..3d31db26d 100644 --- a/mappings/debug.json +++ b/mappings/debug.json @@ -23,4 +23,4 @@ "debug.show_hitboxes.help": "debug.show_hitboxes.help", "debug.show_hitboxes.off": "debug.show_hitboxes.off", "debug.show_hitboxes.on": "debug.show_hitboxes.on" -} \ No newline at end of file +} diff --git a/mappings/demo.json b/mappings/demo.json index 766e8fc9d..704955bc4 100644 --- a/mappings/demo.json +++ b/mappings/demo.json @@ -18,4 +18,4 @@ "demo.help.title": "demo.help.title", "demo.remainingTime": "demo.remainingTime", "demo.reminder": "demo.reminder" -} \ No newline at end of file +} diff --git a/mappings/difficulty.json b/mappings/difficulty.json index 7694e0d5b..c0462008b 100644 --- a/mappings/difficulty.json +++ b/mappings/difficulty.json @@ -1,4 +1,4 @@ { "difficulty.lock.question": "difficulty.lock.question", "difficulty.lock.title": "difficulty.lock.title" -} \ No newline at end of file +} diff --git a/mappings/disconnect.json b/mappings/disconnect.json index 73f37bfbc..12f88faea 100644 --- a/mappings/disconnect.json +++ b/mappings/disconnect.json @@ -13,4 +13,4 @@ "disconnect.quitting": "disconnect.quitting", "disconnect.spam": "disconnect.spam", "disconnect.timeout": "disconnect.timeout" -} \ No newline at end of file +} diff --git a/mappings/effect.json b/mappings/effect.json index a42b4c2d8..2f47168ae 100644 --- a/mappings/effect.json +++ b/mappings/effect.json @@ -27,4 +27,4 @@ "effect.waterBreathing": "effect.minecraft.water_breathing", "effect.weakness": "effect.minecraft.weakness", "effect.wither": "effect.minecraft.wither" -} \ No newline at end of file +} diff --git a/mappings/enchantment.json b/mappings/enchantment.json index 91be1e789..b6ab0af1f 100644 --- a/mappings/enchantment.json +++ b/mappings/enchantment.json @@ -39,4 +39,4 @@ "enchantment.vanishing_curse": "enchantment.minecraft.vanishing_curse", "enchantment.waterWalker": "enchantment.minecraft.depth_strider", "enchantment.waterWorker": "enchantment.minecraft.aqua_affinity" -} \ No newline at end of file +} diff --git a/mappings/entity.json b/mappings/entity.json index 0f04443ba..55dce1e6a 100644 --- a/mappings/entity.json +++ b/mappings/entity.json @@ -82,4 +82,4 @@ "entity.ZombieHorse.name": "entity.minecraft.zombie_horse", "entity.ZombieVillager.name": "entity.minecraft.zombie_villager", "entity.generic.name": "entity.minecraft.generic" -} \ No newline at end of file +} diff --git a/mappings/filled_map.json b/mappings/filled_map.json index ab93530d8..0bff473ad 100644 --- a/mappings/filled_map.json +++ b/mappings/filled_map.json @@ -4,4 +4,4 @@ "filled_map.monument": "filled_map.monument", "filled_map.scale": "filled_map.scale", "filled_map.unknown": "filled_map.unknown" -} \ No newline at end of file +} diff --git a/mappings/gameMode.json b/mappings/gameMode.json index 8c1d4b415..8a71fd9e8 100644 --- a/mappings/gameMode.json +++ b/mappings/gameMode.json @@ -5,4 +5,4 @@ "gameMode.hardcore": "gameMode.hardcore", "gameMode.spectator": "gameMode.spectator", "gameMode.survival": "gameMode.survival" -} \ No newline at end of file +} diff --git a/mappings/generator.json b/mappings/generator.json index cd280e5f9..00f2d9531 100644 --- a/mappings/generator.json +++ b/mappings/generator.json @@ -6,4 +6,4 @@ "generator.default": "generator.default", "generator.flat": "generator.flat", "generator.largeBiomes": "generator.largeBiomes" -} \ No newline at end of file +} diff --git a/mappings/gui.json b/mappings/gui.json index 689443aed..51b7e60e0 100644 --- a/mappings/gui.json +++ b/mappings/gui.json @@ -15,4 +15,4 @@ "gui.toTitle": "gui.toTitle", "gui.up": "gui.up", "gui.yes": "gui.yes" -} \ No newline at end of file +} diff --git a/mappings/inventory.json b/mappings/inventory.json index 5e3b11713..4c17d2d5e 100644 --- a/mappings/inventory.json +++ b/mappings/inventory.json @@ -2,4 +2,4 @@ "inventory.binSlot": "inventory.binSlot", "inventory.hotbarInfo": "inventory.hotbarInfo", "inventory.hotbarSaved": "inventory.hotbarSaved" -} \ No newline at end of file +} diff --git a/mappings/item.json b/mappings/item.json index 677001d8a..d1165dbd2 100644 --- a/mappings/item.json +++ b/mappings/item.json @@ -930,4 +930,4 @@ "item.writingBook.name": "item.minecraft.writable_book", "item.writtenBook.name": "item.minecraft.written_book", "item.yellowDust.name": "item.minecraft.glowstone_dust" -} \ No newline at end of file +} diff --git a/mappings/itemGroup.json b/mappings/itemGroup.json index 1105231ea..080db5007 100644 --- a/mappings/itemGroup.json +++ b/mappings/itemGroup.json @@ -12,4 +12,4 @@ "itemGroup.search": "itemGroup.search", "itemGroup.tools": "itemGroup.tools", "itemGroup.transportation": "itemGroup.transportation" -} \ No newline at end of file +} diff --git a/mappings/key.json b/mappings/key.json index fbc97b06b..011afc3ae 100644 --- a/mappings/key.json +++ b/mappings/key.json @@ -43,4 +43,4 @@ "key.swapHands": "key.swapHands", "key.togglePerspective": "key.togglePerspective", "key.use": "key.use" -} \ No newline at end of file +} diff --git a/mappings/lanServer.json b/mappings/lanServer.json index 2931256d9..4d440a0a7 100644 --- a/mappings/lanServer.json +++ b/mappings/lanServer.json @@ -3,4 +3,4 @@ "lanServer.scanning": "lanServer.scanning", "lanServer.start": "lanServer.start", "lanServer.title": "lanServer.title" -} \ No newline at end of file +} diff --git a/mappings/language.json b/mappings/language.json index e339b7dcd..f851ab62d 100644 --- a/mappings/language.json +++ b/mappings/language.json @@ -2,4 +2,4 @@ "language.code": "language.code", "language.name": "language.name", "language.region": "language.region" -} \ No newline at end of file +} diff --git a/mappings/lingering_potion.json b/mappings/lingering_potion.json index ddc7e808f..e1f0cb918 100644 --- a/mappings/lingering_potion.json +++ b/mappings/lingering_potion.json @@ -19,4 +19,4 @@ "lingering_potion.effect.water": "item.minecraft.lingering_potion.effect.water", "lingering_potion.effect.water_breathing": "item.minecraft.lingering_potion.effect.water_breathing", "lingering_potion.effect.weakness": "item.minecraft.lingering_potion.effect.weakness" -} \ No newline at end of file +} diff --git a/mappings/mcoServer.json b/mappings/mcoServer.json index fe1500a9b..77fdc95de 100644 --- a/mappings/mcoServer.json +++ b/mappings/mcoServer.json @@ -1,3 +1,3 @@ { "mcoServer.title": "mcoServer.title" -} \ No newline at end of file +} diff --git a/mappings/menu.json b/mappings/menu.json index 6d0c8afd4..5f65177f7 100644 --- a/mappings/menu.json +++ b/mappings/menu.json @@ -16,4 +16,4 @@ "menu.returnToMenu": "menu.returnToMenu", "menu.shareToLan": "menu.shareToLan", "menu.singleplayer": "menu.singleplayer" -} \ No newline at end of file +} diff --git a/mappings/merchant.json b/mappings/merchant.json index a43c555b3..55e0b04bd 100644 --- a/mappings/merchant.json +++ b/mappings/merchant.json @@ -1,3 +1,3 @@ { "merchant.deprecated": "merchant.deprecated.deprecated" -} \ No newline at end of file +} diff --git a/mappings/mount.json b/mappings/mount.json index 8d2082499..cf5972eba 100644 --- a/mappings/mount.json +++ b/mappings/mount.json @@ -1,3 +1,3 @@ { "mount.onboard": "mount.onboard" -} \ No newline at end of file +} diff --git a/mappings/multiplayer.json b/mappings/multiplayer.json index e043e5eff..98c8783fa 100644 --- a/mappings/multiplayer.json +++ b/mappings/multiplayer.json @@ -38,4 +38,4 @@ "multiplayer.texturePrompt.line1": "multiplayer.texturePrompt.line1", "multiplayer.texturePrompt.line2": "multiplayer.texturePrompt.line2", "multiplayer.title": "multiplayer.title" -} \ No newline at end of file +} diff --git a/mappings/narrator.json b/mappings/narrator.json index 3ef94431b..df5c53353 100644 --- a/mappings/narrator.json +++ b/mappings/narrator.json @@ -1,4 +1,4 @@ { "narrator.toast.disabled": "narrator.toast.disabled", "narrator.toast.enabled": "narrator.toast.enabled" -} \ No newline at end of file +} diff --git a/mappings/options.json b/mappings/options.json index 06c0e7608..41b192d25 100644 --- a/mappings/options.json +++ b/mappings/options.json @@ -108,4 +108,4 @@ "options.viewBobbing": "options.viewBobbing", "options.visible": "options.visible", "options.vsync": "options.vsync" -} \ No newline at end of file +} diff --git a/mappings/potion.json b/mappings/potion.json index f46de1d7c..803de66f0 100644 --- a/mappings/potion.json +++ b/mappings/potion.json @@ -22,4 +22,4 @@ "potion.potency.1": "potion.potency.1", "potion.potency.2": "potion.potency.2", "potion.whenDrank": "potion.whenDrank" -} \ No newline at end of file +} diff --git a/mappings/recipe.json b/mappings/recipe.json index 3e0762751..0ad0802ba 100644 --- a/mappings/recipe.json +++ b/mappings/recipe.json @@ -1,4 +1,4 @@ { "recipe.toast.description": "recipe.toast.description", "recipe.toast.title": "recipe.toast.title" -} \ No newline at end of file +} diff --git a/mappings/record.json b/mappings/record.json index 84a157076..1ced3825a 100644 --- a/mappings/record.json +++ b/mappings/record.json @@ -1,3 +1,3 @@ { "record.nowPlaying": "record.nowPlaying" -} \ No newline at end of file +} diff --git a/mappings/resourcePack.json b/mappings/resourcePack.json index ac57cef19..5e6ce5452 100644 --- a/mappings/resourcePack.json +++ b/mappings/resourcePack.json @@ -13,4 +13,4 @@ "resourcepack.requesting": "resourcepack.requesting", "resourcePack.selected.title": "resourcePack.selected.title", "resourcePack.title": "resourcePack.title" -} \ No newline at end of file +} diff --git a/mappings/screenshot.json b/mappings/screenshot.json index c2e8e4bf8..24d4ab573 100644 --- a/mappings/screenshot.json +++ b/mappings/screenshot.json @@ -1,4 +1,4 @@ { "screenshot.failure": "screenshot.failure", "screenshot.success": "screenshot.success" -} \ No newline at end of file +} diff --git a/mappings/selectServer.json b/mappings/selectServer.json index 80c41e4da..738925bdb 100644 --- a/mappings/selectServer.json +++ b/mappings/selectServer.json @@ -12,4 +12,4 @@ "selectServer.refresh": "selectServer.refresh", "selectServer.select": "selectServer.select", "selectServer.title": "selectServer.title" -} \ No newline at end of file +} diff --git a/mappings/selectWorld.json b/mappings/selectWorld.json index b6ffc45c3..1ba82e00d 100644 --- a/mappings/selectWorld.json +++ b/mappings/selectWorld.json @@ -60,4 +60,4 @@ "selectWorld.versionUnknown": "selectWorld.versionUnknown", "selectWorld.versionWarning": "selectWorld.versionWarning", "selectWorld.world": "selectWorld.world" -} \ No newline at end of file +} diff --git a/mappings/sign.json b/mappings/sign.json index a8f6e80be..6764eb3c0 100644 --- a/mappings/sign.json +++ b/mappings/sign.json @@ -1,3 +1,3 @@ { "sign.edit": "sign.edit" -} \ No newline at end of file +} diff --git a/mappings/soundCategory.json b/mappings/soundCategory.json index 2db3ae805..e67a8598c 100644 --- a/mappings/soundCategory.json +++ b/mappings/soundCategory.json @@ -9,4 +9,4 @@ "soundCategory.record": "soundCategory.record", "soundCategory.voice": "soundCategory.voice", "soundCategory.weather": "soundCategory.weather" -} \ No newline at end of file +} diff --git a/mappings/spectatorMenu.json b/mappings/spectatorMenu.json index fbca445cb..d39e8a0bf 100644 --- a/mappings/spectatorMenu.json +++ b/mappings/spectatorMenu.json @@ -7,4 +7,4 @@ "spectatorMenu.team_teleport.prompt": "spectatorMenu.team_teleport.prompt", "spectatorMenu.teleport": "spectatorMenu.teleport", "spectatorMenu.teleport.prompt": "spectatorMenu.teleport.prompt" -} \ No newline at end of file +} diff --git a/mappings/splash_potion.json b/mappings/splash_potion.json index a26e6c2a0..a262757df 100644 --- a/mappings/splash_potion.json +++ b/mappings/splash_potion.json @@ -19,4 +19,4 @@ "splash_potion.effect.water": "item.minecraft.splash_potion.effect.water", "splash_potion.effect.water_breathing": "item.minecraft.splash_potion.effect.water_breathing", "splash_potion.effect.weakness": "item.minecraft.splash_potion.effect.weakness" -} \ No newline at end of file +} diff --git a/mappings/stat.json b/mappings/stat.json index 7ec5729ba..458c72e56 100644 --- a/mappings/stat.json +++ b/mappings/stat.json @@ -74,4 +74,4 @@ "stat.used": "stat_type.minecraft.used", "stat.walkOneCm": "stat.minecraft.walk_one_cm", "stat.workbenchInteraction": "stat.minecraft.interact_with_crafting_table" -} \ No newline at end of file +} diff --git a/mappings/stats.json b/mappings/stats.json index 7bcbcc95c..b3cbedc20 100644 --- a/mappings/stats.json +++ b/mappings/stats.json @@ -1,3 +1,3 @@ { "stats.tooltip.type.statistic": "stats.tooltip.type.statistic" -} \ No newline at end of file +} diff --git a/mappings/structure_block.json b/mappings/structure_block.json index 9c91b224c..cd8f23575 100644 --- a/mappings/structure_block.json +++ b/mappings/structure_block.json @@ -30,4 +30,4 @@ "structure_block.size_failure": "structure_block.size_failure", "structure_block.size_success": "structure_block.size_success", "structure_block.structure_name": "structure_block.structure_name" -} \ No newline at end of file +} diff --git a/mappings/subtitles.json b/mappings/subtitles.json index 0513ff5eb..de180f657 100644 --- a/mappings/subtitles.json +++ b/mappings/subtitles.json @@ -342,4 +342,4 @@ "subtitles.item.shovel.flatten": "subtitles.item.shovel.flatten", "subtitles.item.totem.use": "subtitles.item.totem.use", "subtitles.weather.rain": "subtitles.weather.rain" -} \ No newline at end of file +} diff --git a/mappings/tile.json b/mappings/tile.json index 89227d3a8..9988d0e15 100644 --- a/mappings/tile.json +++ b/mappings/tile.json @@ -425,4 +425,4 @@ "tile.woolCarpet.white.name": "block.minecraft.white_carpet", "tile.woolCarpet.yellow.name": "block.minecraft.yellow_carpet", "tile.workbench.name": "block.minecraft.crafting_table" -} \ No newline at end of file +} diff --git a/mappings/tipped_arrow.json b/mappings/tipped_arrow.json index 3fe1603fa..4b89fc1a8 100644 --- a/mappings/tipped_arrow.json +++ b/mappings/tipped_arrow.json @@ -19,4 +19,4 @@ "tipped_arrow.effect.water": "item.minecraft.tipped_arrow.effect.water", "tipped_arrow.effect.water_breathing": "item.minecraft.tipped_arrow.effect.water_breathing", "tipped_arrow.effect.weakness": "item.minecraft.tipped_arrow.effect.weakness" -} \ No newline at end of file +} diff --git a/mappings/title.json b/mappings/title.json index 4b00a85fc..b586ef8e5 100644 --- a/mappings/title.json +++ b/mappings/title.json @@ -1,4 +1,4 @@ { "title.oldgl1": "title.oldgl.eol.line1", "title.oldgl2": "title.oldgl.eol.line2" -} \ No newline at end of file +} diff --git a/mappings/translation.json b/mappings/translation.json index ccf7d6ee6..f08128930 100644 --- a/mappings/translation.json +++ b/mappings/translation.json @@ -6,4 +6,4 @@ "translation.test.invalid2": "translation.test.invalid2", "translation.test.none": "translation.test.none", "translation.test.world": "translation.test.world" -} \ No newline at end of file +} diff --git a/mappings/tutorial.json b/mappings/tutorial.json index 8858eac4c..1581ebaad 100644 --- a/mappings/tutorial.json +++ b/mappings/tutorial.json @@ -11,4 +11,4 @@ "tutorial.open_inventory.title": "tutorial.open_inventory.title", "tutorial.punch_tree.description": "tutorial.punch_tree.description", "tutorial.punch_tree.title": "tutorial.punch_tree.title" -} \ No newline at end of file +} diff --git a/materials/2.xcf b/materials/2.xcf index 05c187e87..d4abfccde 100644 Binary files a/materials/2.xcf and b/materials/2.xcf differ diff --git a/materials/3.xcf b/materials/3.xcf index e235e7ea1..abaf1826c 100644 Binary files a/materials/3.xcf and b/materials/3.xcf differ diff --git a/materials/banner_2nd_birthday.png b/materials/banner_2nd_birthday.png new file mode 100644 index 000000000..0f33ad210 Binary files /dev/null and b/materials/banner_2nd_birthday.png differ diff --git a/materials/banner_2nd_birthday.xcf b/materials/banner_2nd_birthday.xcf new file mode 100644 index 000000000..f2d86d5f5 Binary files /dev/null and b/materials/banner_2nd_birthday.xcf differ diff --git a/materials/zh_meme_2nd_birthday.png b/materials/zh_meme_2nd_birthday.png new file mode 100644 index 000000000..870d09278 Binary files /dev/null and b/materials/zh_meme_2nd_birthday.png differ diff --git a/materials/zh_meme_2nd_birthday.xcf b/materials/zh_meme_2nd_birthday.xcf new file mode 100644 index 000000000..aeb6806ff Binary files /dev/null and b/materials/zh_meme_2nd_birthday.xcf differ diff --git a/meme_resourcepack/assets/realms/lang/zh_meme.json b/meme_resourcepack/assets/realms/lang/zh_meme.json deleted file mode 100644 index 955efebea..000000000 --- a/meme_resourcepack/assets/realms/lang/zh_meme.json +++ /dev/null @@ -1,240 +0,0 @@ -{ - "mco.account.privacy.info": "阅读更多关于Bugjump和其隐私政策", - "mco.account.privacyinfo": "Bugjump实施许多方法来帮助保护儿童及其隐私权,包括履行《儿童在线隐私权保护法案》(COPPA)与《通用数据保护条例》(GDPR)。\n\n在取得Realms账户访问权之前,你可能需要获得父母的同意。\n\n如果你拥有旧版的Minecraft账户(登录时使用用户名),你需要将其合并到Bugjump账户以获取Realms访问权。", - "mco.account.update": "更新账号", - "mco.activity.noactivity": "过去%s天都无动态", - "mco.activity.title": "玩家动态", - "mco.backup.button.download": "下载最新版本", - "mco.backup.button.reset": "重置世界", - "mco.backup.button.restore": "还原", - "mco.backup.button.upload": "上传世界", - "mco.backup.changes.tooltip": "更改", - "mco.backup.generate.world": "生成世界", - "mco.backup.nobackups": "这个Realm目前没有任何备份。", - "mco.backup.restoring": "正在还原你的Realm中", - "mco.brokenworld.download": "下载", - "mco.brokenworld.downloaded": "已下载", - "mco.brokenworld.message.line1": "请重置或选择另一个世界。", - "mco.brokenworld.message.line2": "你可以选择将世界下载至单人模式中。", - "mco.brokenworld.minigame.title": "此小游戏已不受支持", - "mco.brokenworld.nonowner.error": "请等待Realms所有者重置世界", - "mco.brokenworld.nonowner.title": "世界已过期", - "mco.brokenworld.play": "开始游戏", - "mco.brokenworld.reset": "重置", - "mco.brokenworld.title": "当前的世界已不受支持", - "mco.client.incompatible.msg.line1": "你的客户端与Realms不兼容。", - "mco.client.incompatible.msg.line2": "请使用最新版本的Minecraft。", - "mco.client.incompatible.msg.line3": "Realms不与快照版本兼容。", - "mco.client.incompatible.title": "客户端不兼容!", - "mco.client.outdated.msg.line1": "你的客户端已过时并与Realms不兼容。", - "mco.client.outdated.msg.line2": "请更换至最新版本的Minecraft。", - "mco.client.outdated.title": "客户端已过期!", - "mco.configure.current.minigame": "当前", - "mco.configure.world.activityfeed.disabled": "玩家推送暂不可用", - "mco.configure.world.backup": "世界备份", - "mco.configure.world.buttons.activity": "玩家动态", - "mco.configure.world.buttons.close": "关闭Realm", - "mco.configure.world.buttons.delete": "删除", - "mco.configure.world.buttons.done": "完成", - "mco.configure.world.buttons.edit": "编辑", - "mco.configure.world.buttons.invite": "邀请玩家", - "mco.configure.world.buttons.moreoptions": "更多选项", - "mco.configure.world.buttons.open": "打开Realm", - "mco.configure.world.buttons.options": "世界选项", - "mco.configure.world.buttons.players": "玩家", - "mco.configure.world.buttons.resetworld": "重置世界", - "mco.configure.world.buttons.settings": "设置", - "mco.configure.world.buttons.subscription": "订购", - "mco.configure.world.buttons.switchminigame": "换个小游戏", - "mco.configure.world.close.question.line1": "您的Realm将变为不可用。", - "mco.configure.world.close.question.line2": "你确定要继续吗?", - "mco.configure.world.closing": "关闭Realm中…", - "mco.configure.world.commandBlocks": "滥权方块", - "mco.configure.world.delete.button": "删除Realm", - "mco.configure.world.delete.question.line1": "你的Realm将被永久删除", - "mco.configure.world.delete.question.line2": "你确定要继续吗?", - "mco.configure.world.description": "Realm描述", - "mco.configure.world.edit.slot.name": "世界名称", - "mco.configure.world.edit.subscreen.adventuremap": "由于你当前的世界为一场冒险,有些设置将会被禁用", - "mco.configure.world.edit.subscreen.experience": "由于你当前的世界为一场体验,有些设定将会被禁用", - "mco.configure.world.edit.subscreen.inspiration": "由于你当前的世界是示例世界,一些设置被禁用", - "mco.configure.world.forceGameMode": "强制游戏模式", - "mco.configure.world.invite.narration": "你有%s项新的邀请", - "mco.configure.world.invite.profile.name": "名称", - "mco.configure.world.invited": "已邀请", - "mco.configure.world.invites.normal.tooltip": "垃圾普通玩家", - "mco.configure.world.invites.ops.tooltip": "滥权管理员", - "mco.configure.world.invites.remove.tooltip": "移除", - "mco.configure.world.leave.question.line1": "如果你离开这个Realm,你只有被再次邀请才能看见它。", - "mco.configure.world.leave.question.line2": "你确定要继续吗?", - "mco.configure.world.location": "位置", - "mco.configure.world.name": "Realm名称", - "mco.configure.world.off": "关闭", - "mco.configure.world.on": "开启", - "mco.configure.world.opening": "开启Realm中…", - "mco.configure.world.players.error": "不存在该指定名称的玩家", - "mco.configure.world.players.title": "玩家", - "mco.configure.world.pvp": "玩家对战", - "mco.configure.world.reset.question.line1": "您的Realm将被重新生成而您当前的Realm将会消失", - "mco.configure.world.reset.question.line2": "你确定要继续吗?", - "mco.configure.world.resourcepack.question.line1": "这个Realm需要一个自定义的资源包。", - "mco.configure.world.resourcepack.question.line2": "你想要自动下载并安装它吗?", - "mco.configure.world.restore.download.question.line1": "世界将会被下载并添加至你的单人游戏世界中", - "mco.configure.world.restore.download.question.line2": "您想继续吗?", - "mco.configure.world.restore.question.line1": "您的Realm将被还原至 '%s'(%s)", - "mco.configure.world.restore.question.line2": "你确定要继续吗?", - "mco.configure.world.settings.title": "设置", - "mco.configure.world.slot": "世界%s", - "mco.configure.world.slot.empty": "空", - "mco.configure.world.slot.switch.question.line1": "你的Realm将会被切换至另一个世界", - "mco.configure.world.slot.switch.question.line2": "你确定要继续吗?", - "mco.configure.world.slot.tooltip": "切换到世界", - "mco.configure.world.slot.tooltip.active": "加入", - "mco.configure.world.slot.tooltip.minigame": "切换至小游戏", - "mco.configure.world.spawnAnimals": "生成动物", - "mco.configure.world.spawnMonsters": "生成怪物", - "mco.configure.world.spawnNPCs": "生成NPC", - "mco.configure.world.spawnProtection": "死去活来点保护", - "mco.configure.world.status": "状态", - "mco.configure.world.subscription.day": "天", - "mco.configure.world.subscription.days": "天", - "mco.configure.world.subscription.expired": "已过期", - "mco.configure.world.subscription.extend": "延长订购时间", - "mco.configure.world.subscription.less_than_a_day": "一天以内", - "mco.configure.world.subscription.month": "月", - "mco.configure.world.subscription.months": "月", - "mco.configure.world.subscription.recurring.daysleft": "自动续期剩余时间:", - "mco.configure.world.subscription.start": "开始日期", - "mco.configure.world.subscription.timeleft": "剩余时间", - "mco.configure.world.subscription.title": "订购信息", - "mco.configure.world.subscription.unknown": "未知", - "mco.configure.world.switch.slot": "创建世界", - "mco.configure.world.switch.slot.subtitle": "这个世界是空的,请选择行动", - "mco.configure.world.title": "配置Realm:", - "mco.configure.world.uninvite.question": "你确定你要取消邀请吗", - "mco.configure.worlds.title": "世界", - "mco.connect.authorizing": "登入中...", - "mco.connect.connecting": "正在连接至Realm中…", - "mco.connect.failed": "未能连接至Realm", - "mco.connect.success": "完成", - "mco.create.world": "创建", - "mco.create.world.error": "您必须输入一个名字!", - "mco.create.world.reset.title": "正在创建世界...", - "mco.create.world.seed": "世界种子(可选)", - "mco.create.world.skip": "跳过", - "mco.create.world.subtitle": "可选,选择想放进你新Realm的世界", - "mco.create.world.wait": "正在创建Realm…", - "mco.download.cancelled": "下载已取消", - "mco.download.confirmation.line1": "你将下载的世界大小大于%s", - "mco.download.confirmation.line2": "你无法再次将这个世界上传至Realm", - "mco.download.done": "下载完成", - "mco.download.downloading": "正在下载", - "mco.download.extracting": "提取中", - "mco.download.failed": "下载失败", - "mco.download.preparing": "正在准备下载", - "mco.download.title": "下载最新的世界", - "mco.error.invalid.session.message": "请尝试重启Minecraft", - "mco.error.invalid.session.title": "无效的会话ID", - "mco.errorMessage.6001": "客户端已过期!", - "mco.errorMessage.6002": "尚未同意服务条款", - "mco.errorMessage.6003": "超过下载限制", - "mco.errorMessage.6004": "超过上传限制", - "mco.errorMessage.connectionFailure": "出错了,请稍候再试。", - "mco.gui.button": "按钮", - "mco.gui.ok": "好的", - "mco.invites.button.accept": "接受", - "mco.invites.button.reject": "拒绝", - "mco.invites.nopending": "没有未决邀请!", - "mco.invites.pending": "新的邀请!", - "mco.invites.title": "未决邀请", - "mco.minigame.world.changeButton": "选择另一个小游戏", - "mco.minigame.world.info.line1": "这将暂时将您的世界替换成一个小游戏!", - "mco.minigame.world.info.line2": "之后您可以毫无损失地返回到原来的世界。", - "mco.minigame.world.noSelection": "请选择", - "mco.minigame.world.restore": "结束小游戏中…", - "mco.minigame.world.restore.question.line1": "小游戏将结束而您的Realm将被恢复。", - "mco.minigame.world.restore.question.line2": "你确定要这么做吗?", - "mco.minigame.world.selected": "所选的小游戏:", - "mco.minigame.world.slot.screen.title": "转换世界中…", - "mco.minigame.world.startButton": "转换", - "mco.minigame.world.starting.screen.title": "正在开始小游戏…", - "mco.minigame.world.stopButton": "结束小游戏", - "mco.minigame.world.switch.new": "选择另一个小游戏?", - "mco.minigame.world.switch.title": "切换小游戏", - "mco.minigame.world.title": "将Realm切换成小游戏", - "mco.news": "Realms新闻", - "mco.reset.world.adventure": "冒险", - "mco.reset.world.experience": "体验", - "mco.reset.world.generate": "新的世界", - "mco.reset.world.inspiration": "示例", - "mco.reset.world.resetting.screen.title": "重置世界中…", - "mco.reset.world.seed": "世界种子(可选)", - "mco.reset.world.template": "世界模板", - "mco.reset.world.title": "重置世界", - "mco.reset.world.upload": "上传世界", - "mco.reset.world.warning": "这将替换掉您目前的Realm世界!", - "mco.selectServer.buy": "购买Realm服务器!", - "mco.selectServer.close": "关闭", - "mco.selectServer.closed": "已关闭的Realm", - "mco.selectServer.closeserver": "关闭Realm", - "mco.selectServer.configure": "配置Realm", - "mco.selectServer.create": "创建Realm", - "mco.selectServer.expired": "已过期的Realm", - "mco.selectServer.expiredList": "你的Realm已过期", - "mco.selectServer.expiredRenew": "续期", - "mco.selectServer.expiredSubscribe": "订阅", - "mco.selectServer.expiredTrial": "你的试用期已结束", - "mco.selectServer.expires.day": "将在一天内过期", - "mco.selectServer.expires.days": "将在%s天后过期", - "mco.selectServer.expires.soon": "即将过期", - "mco.selectServer.info": "“Realms”是什么?", - "mco.selectServer.leave": "逊出Realm", - "mco.selectServer.mapOnlySupportedForVersion": "此地图不受%s支持", - "mco.selectServer.minigame": "小游戏:", - "mco.selectServer.minigameNotSupportedInVersion": "无法在%s中进行这个小游戏", - "mco.selectServer.note": "注意:", - "mco.selectServer.open": "已开启的Realm", - "mco.selectServer.openserver": "开启Realm", - "mco.selectServer.play": "开始游戏", - "mco.selectServer.popup": "Realms是一种安全、简单地享受在线Minecraft世界的方式,可支持多达十位好友同时在线。它也支持多种小游戏与海量自定义世界!只有Realm的所有者需要付款。", - "mco.selectServer.trial": "取得试用期!", - "mco.selectServer.uninitialized": "点击来创建Realm!", - "mco.template.button.publisher": "发布者", - "mco.template.button.select": "选择", - "mco.template.button.trailer": "预告片", - "mco.template.default.name": "世界模板", - "mco.template.info.tooltip": "发布者的网站", - "mco.template.name": "模板", - "mco.template.select.failure": "我们无法接收这个分类的内容。\n请检查你的网络连接,或稍后再试。", - "mco.template.select.narrate.authors": "作者:%s", - "mco.template.select.narrate.version": "版本:%s", - "mco.template.select.none": "抱歉,看来这个分类目前是空的。\n请之后再回来检查是否有新内容,如果你是一名创作者的话,\n%s。", - "mco.template.select.none.linkTitle": "尝试自己提交一些自己的内容", - "mco.template.title": "世界模板", - "mco.template.title.minigame": "Realm小游戏", - "mco.template.trailer.tooltip": "地图预告", - "mco.terms.buttons.agree": "同意", - "mco.terms.buttons.disagree": "不同意", - "mco.terms.sentence.1": "我已阅读并接受Minecraft Realms的", - "mco.terms.sentence.2": "服务条款", - "mco.terms.title": "Realms服务条款", - "mco.trial.message.line1": "你想获得属于自己的Realm吗?", - "mco.trial.message.line2": "点击此处来获得更多消息!", - "mco.trial.title": "创建一个Realm", - "mco.trial.unavailable": "抱歉,目前没有试用期服务!", - "mco.upload.button.name": "上传", - "mco.upload.cancelled": "上传已取消", - "mco.upload.close.failure": "无法关闭服务器,请稍候再试", - "mco.upload.done": "完成上传", - "mco.upload.failed": "上传失败!(%s)", - "mco.upload.hardcore": "极限世界不能被上传!", - "mco.upload.preparing": "正在准备您的世界数据", - "mco.upload.select.world.none": "找不到单人游戏世界!", - "mco.upload.select.world.subtitle": "请选择一个单人游戏世界来上传", - "mco.upload.select.world.title": "上传世界", - "mco.upload.size.failure.line1": "\"%s\"太大了!", - "mco.upload.size.failure.line2": "你想上传%s的地图,超过了%s的限制。", - "mco.upload.uploading": "正在上传 '%s'", - "mco.upload.verifying": "正在验证你的地图", - "narrator.select.list.position": "第 %s 项 / 共 %s 项" -} diff --git a/meme_resourcepack/pack.mcmeta b/meme_resourcepack/pack.mcmeta deleted file mode 100644 index bde768b58..000000000 --- a/meme_resourcepack/pack.mcmeta +++ /dev/null @@ -1,61 +0,0 @@ -{ - "pack": { - "pack_format": 6, - "description": "§e梗体中文亮瞎眼包!!!\n§3Release v1.4.2" - }, - "language": { - "zh_meme": { - "name": "§e梗体中文§r", - "region": "§c天朝§r", - "bidirectional": false - } - }, - "author": [ - "Lakejason0", - "Lxazl5770", - "Dianliang233", - "MysticNebula70", - "SkyEye_FAST", - "Huerdada", - "Lightyzhh", - "IcyPhantom", - "Kakagou12341", - "Gu_ZT", - "ZCYF", - "XxLittleCxX", - "Determancer", - "Minecreeper86", - "theflysong", - "Zh9c418", - "45gfg9", - "Drlee_lihr", - "WTP016-CN", - "Light Beacon", - "CR-019", - "coldstarxuan", - "MiemieMethod", - "Other Minecraft Wiki (ZH) editors" - ], - "special_thanks": { - "Addonscommandresource": [ - { - "minecraft:trident": "The model in BE" - } - ], - "Blockbench": [ - { - "minecraft:totem_of_undying": "Model" - }, - { - "minecraft:brewing_stand": "Model" - } - ], - "Golden_eggs": [ - { - "minecraft:gui/title/mojangstudios": "Fonts" - } - ] - }, - "home": "https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack", - "copyright": "This is Memified Chinese Resource Pack, a Teahouse Studios' Production. You may use, share and remix the pack under Creative Commons Attribution-ShareAlike 4.0 license. For the license's text, see LICENSE file in the pack. For further information, visit github.com/Teahouse-Studios.\n这里是梗体中文资源包,由茶馆工作室出品。您可以在遵守知识共享 署名-相同方式分享 4.0 协议的前提下使用,分享和演绎该资源包。关于协议文本,详见本资源包根目录下的LICENSE文件。更多信息详见 github.com/Teahouse-Studios。Github的拼写是G-I-T-H-U-B,Teahouse的拼写是T-E-A-H-O-U-S-E,Studios的拼写是S-T-U-D-I-O-S。" -} diff --git a/mods/Computronics.json b/mods/Computronics.json index c5c4daec4..418579aa4 100644 --- a/mods/Computronics.json +++ b/mods/Computronics.json @@ -1,136 +1,136 @@ -{ - "tile.computronics.ironNoteBlock.name": "铁憨憨笔记方块", - "tile.computronics.tapeDrive.name": "磁带机", - "tile.computronics.camera.name": "摄像头", - "tile.computronics.chatBox.name": "聊天盒", - "tile.computronics.chatBox.creative.name": "滥权模式聊天盒", - "tile.computronics.sorter.name": "排序机", - "tile.computronics.cipher.name": "加密机", - "tile.computronics.cipher_advanced.name": "高级加密机", - "tile.computronics.radar.name": "雷达", - "tile.computronics.colorfulLamp.name": "彩灯", - "tile.computronics.locomotiveRelay.name": "数字机车中继器", - "tile.computronics.digitalControllerBox.name": "数字信号控制器", - "tile.computronics.digitalReceiverBox.name": "数字信号接收器", - "tile.computronics.detector.name": "检测器 - 数字", - "tile.computronics.ticketMachine.name": "售票机", - "tile.computronics.audiocable.name": "音频线", - "tile.computronics.speaker.name": "↑↓", - "tooltip.computronics.chatBox.creative": "盒中NSA!", - "tooltip.computronics.cipher.advanced": "For the Starchasers!", - "tooltip.computronics.sensor.bound": "绑定到[%1$s,%2$s,%3$s]", - "tooltip.computronics.sensor.desc1": "潜行时右击机车中继器\n以绑定它", - "tooltip.computronics.sensor.desc2": "潜行时左击电力机车\n以安装它", - "tooltip.computronics.tape.length": "长♂度: %s分", - "tooltip.computronics.tape.balanced": "已平衡.", - "tooltip.computronics.tape.unnamed": "未命名录音带", - "tooltip.computronics.tape.none": "无录音带", - "tooltip.computronics.tape.ig": "格雷泛银河飞船专属\n标卡数电录音带", - "tooltip.computronics.ticket.print": "打印车票", - "tooltip.computronics.ticket.printLocked": "§c手动打印已禁用", - "tooltip.computronics.ticket.locked": "本设备仅限{owner}使用.\n只有本机机主或服务器Op\n方能执行维护任务.", - "tooltip.computronics.ticket.notmaintenance": "空手右击此设备\n以进行维护.", - "tooltip.computronics.ticket.notowner": "你不是此机的机主.\n本机属于{owner}.", - "tooltip.computronics.ticket.unlocked": "点击以上锁.上锁后,\n仅你和服务器Op可进行维护.", - "tooltip.computronics.gate.action.computer_start": "启动电脑", - "tooltip.computronics.gate.action.computer_stop": "关闭电脑", - "tooltip.computronics.gate.action.tape_drive_start": "启动磁带机", - "tooltip.computronics.gate.action.tape_drive_stop": "关闭磁带机", - "tooltip.computronics.gate.action.tape_drive_rewind": "倒放磁带机", - "tooltip.computronics.gate.action.tape_drive_forward": "快进磁带机", - "tooltip.computronics.gate.action.lamp_color_set": "设定灯的颜色", - "tooltip.computronics.gate.action.lamp_color_reset": "重置灯的颜色", - "tooltip.computronics.gate.action.lamp_color.red": "红: %s", - "tooltip.computronics.gate.action.lamp_color.green": "绿: %s", - "tooltip.computronics.gate.action.lamp_color.blue": "蓝: %s", - "tooltip.computronics.gate.trigger.computer_running": "电脑奔跑中", - "tooltip.computronics.gate.trigger.computer_stopped": "电脑已关闭", - "tooltip.computronics.gate.trigger.tape_drive_playing": "磁带机播放中", - "tooltip.computronics.gate.trigger.tape_drive_stopped": "磁带机已关闭", - "tooltip.computronics.gate.trigger.tape_drive_rewinding": "磁带机倒放中", - "tooltip.computronics.gate.trigger.tape_drive_forwarding": "磁带机快进中", - "tooltip.computronics.waila.base.bus": "§a总线号§f: %s", - "tooltip.computronics.waila.relay.bound": "已绑定", - "tooltip.computronics.waila.relay.notbound": "未绑定", - "tooltip.computronics.waila.lamp.red": "红: %s", - "tooltip.computronics.waila.lamp.green": "绿: %s", - "tooltip.computronics.waila.lamp.blue": "蓝: %s", - "tooltip.computronics.tape.tapeinserted": "已插♂入录音带", - "tooltip.computronics.tape.labeltapeinserted": "已插♂入录音带\"%s\"", - "tooltip.computronics.tape.notapeinserted": "录音带插♂入", - "tooltip.computronics.tape.state": "状态: %s", - "tooltip.computronics.tape.state.stopped": "停下来了", - "tooltip.computronics.tape.state.playing": "不要停下来啊!", - "tooltip.computronics.tape.state.rewinding": "倒带中", - "tooltip.computronics.tape.state.forwarding": "快进中", - "tooltip.computronics.manual.oc.tab.blocks": "Computronics: 方块", - "tooltip.computronics.manual.oc.tab.items": "Computronics: 物品", - "tooltip.computronics.manual.tis3d.tab.items": "Computronics: 物品", - "tooltip.computronics.manual.tis3d.port.flamingo": "粉红色火烈鸟", - "option.computronics.enableOCAddress": "显示组件地址", - "option.computronics.enableTape": "显示插♂入磁带", - "option.computronics.enableTapeName": "显示磁带名称", - "option.computronics.enableDriveState": "显示磁带驱动状态", - "option.computronics.enableRelayBound": "显示中继器绑定状态", - "option.computronics.enableLampColor": "显示彩灯颜色", - "item.computronics.reelChromoxide.name": "二氧化铬录音带卷轮", - "item.computronics.drone_upgrade_docking.name": "无人机转接升级", - "item.computronics.dockingStation.name": "无人机转接坞", - "item.computronics.robot_upgrade_camera.name": "摄像升级", - "item.computronics.robot_upgrade_chatbox.name": "聊天升级", - "item.computronics.robot_upgrade_radar.name": "雷达升级", - "item.computronics.card_beep.name": "鸣笛升级", - "item.computronics.card_noise.name": "噪音升级", - "item.computronics.card_fx.name": "粒子特效升级", - "item.computronics.card_spoof.name": "欺骗卡", - "item.computronics.card_spoof.tip": "一个能设置发送地址的网卡", - "item.computronics.card_boom.name": "自杀式袭击卡片", - "item.computronics.card_boom.tip": "所有坏人都需要一个这个.", - "item.computronics.robot_upgrade_colorful.name": "R!G!B!升级", - "item.computronics.robot_upgrade_colorful.tip": "让你的机器人丰富多彩!", - "item.computronics.for.combAcid.name": "腐蚀性酸液", - "item.computronics.for.dropAcid.name": "腐蚀性蜜汁", - "item.computronics.relaySensor.name": "数字中继传感器", - "item.computronics.part_tape_track.name": "录音带轨道", - "item.computronics.tape.ig.name": "泛银河标卡数电录音带", - "item.computronics.tape.name": "盒式录音带", - "item.computronics.module_colorful.name": "R!G!B!模块", - "item.computronics.module_tape_reader.name": "磁带机模块", - "item.computronics.module_boom.name": "自杀式袭击模块", - "itemGroup.tabComputronics": "Computronics", - "entity.computronics.itemTape.name": "泛银河标卡数电录音带", - "entity.computronics.swarm.name": "Swarm", - "death.attack.computronics.sting.1": "%1$s 终于明白了为什么有人有恐蜂症", - "death.attack.computronics.sting.2": "<%1$s> §o哦不!不是蜜蜂啊!啊蜜蜂不要过来啊——啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊(生草版作者:建议联动av60919617)!", - "death.attack.computronics.sting.3": "%1$s couldn't handle the swarm's stinging puns", - "death.attack.computronics.sting.4": "%1$s forgot their epipen", - "death.attack.computronics.sting.5": "%1$s 变成了蜜蜂暗杀计划的受害者", - "death.attack.computronics.sting.self": "蜜蜂们背叛了 %1$s", - "computronics.flowers.sea": "Sea", - "computronics.bees.species.scummy": "Scummy", - "computronics.bees.species.scummy.description": "煤油、1,2-丙二醇、人工甜味剂、硫酸、朗姆酒、丙酮、红色素2号、浮渣、车轴润滑脂、铅酸蓄电池的酸液和/或意大利辣肉肠|酒吧里的异乡人,自称来自混乱岛", - "chat.computronics.cipher.locked": "加密机已锁,无法访问.", - "chat.computronics.colorful_upgrade.color": "§6颜色§f: %s", - "chat.computronics.lamp.binary.on": "RedNet模式设定为: Binary", - "chat.computronics.lamp.binary.off": "RedNet模式设定为: Normal", - "chat.computronics.relay.notBound": "中继器目前未与任何机车绑定!", - "chat.computronics.relay.unbound": "中继器成功与机车解绑!", - "chat.computronics.sensor.bound": "中继器成功与机车绑定!", - "chat.computronics.sensor.noRelay": "指定坐标处无中继器!", - "chat.computronics.sensor.noRelayDetected": "无法在给定坐标上检测到任何中继器!", - "chat.computronics.sensor.tooFarAway": "中继器与机车彼此相距过远!", - "chat.computronics.sensor.wrongLoco": "传感器只能安装在电力机车上!", - "chat.computronics.sensor.wrongDim": "中继器与机车处于不同位面!", - "achievement.computronics.gotTape": "大家的音乐", - "achievement.computronics.gotTape.desc": "当然远胜过胶带音乐", - "achievement.computronics.gotStarTape": "彩虹之上", - "achievement.computronics.gotStarTape.desc": "那彩虹猫居住的地方", - "achievement.computronics.gotIGTape": "未来太空船的第一个零件", - "achievement.computronics.gotIGTape.desc": "我可没说你能造了", - "achievement.computronics.droppedIGTape": "马航MH370", - "achievement.computronics.droppedIGTape.desc": "它消失了!?", - "achievement.computronics.gotLoco": "电力革命", - "achievement.computronics.gotLoco.desc": "就这样开始了.", - "achievement.computronics.gotRelay": "数字革命", - "achievement.computronics.gotRelay.desc": "111001111001010010011111111010001000110110001001111001111000100110001000111001001011110110011100111010001000000010000101001110100100110101101001011011100110010101100011011100100110000101100110011101000110101101110101010111110110100001100101011010010010110011100111100101001001111111101000100011011000100111100110100111011001000011101000101101001010100011100101100011001000010100111010011010000111010001110100011100000111001100111010001011110010111101100111011010010111010001101000011101010110001000101110011000110110111101101101001011110101010001100101011000010110100001101111011101010111001101100101001011010101001101110100011101010110010001101001011011110111001100101111011011010110001101110111011110100110100000101101011011010110010101101101011001010010110101110010011001010111001101101111011101010111001001100011011001010111000001100001011000110110101100101100111001011000111010011111111001101001011010000111001110100100100001000101010011000101000000100001" -} +{ + "tile.computronics.ironNoteBlock.name": "老铁笔记方块", + "tile.computronics.tapeDrive.name": "磁带机", + "tile.computronics.camera.name": "摄像头", + "tile.computronics.chatBox.name": "聊天盒", + "tile.computronics.chatBox.creative.name": "滥权模式聊天盒", + "tile.computronics.sorter.name": "排序机", + "tile.computronics.cipher.name": "加密机", + "tile.computronics.cipher_advanced.name": "高级加密机", + "tile.computronics.radar.name": "雷达", + "tile.computronics.colorfulLamp.name": "彩灯", + "tile.computronics.locomotiveRelay.name": "数字机车中继器", + "tile.computronics.digitalControllerBox.name": "数字信号控制器", + "tile.computronics.digitalReceiverBox.name": "数字信号接收器", + "tile.computronics.detector.name": "检测器 - 数字", + "tile.computronics.ticketMachine.name": "售票机", + "tile.computronics.audiocable.name": "音频线", + "tile.computronics.speaker.name": "↑↓", + "tooltip.computronics.chatBox.creative": "盒中NSA!", + "tooltip.computronics.cipher.advanced": "For the Starchasers!", + "tooltip.computronics.sensor.bound": "绑定到[%1$s,%2$s,%3$s]", + "tooltip.computronics.sensor.desc1": "潜行时右击机车中继器\n以绑定它", + "tooltip.computronics.sensor.desc2": "潜行时左击电力机车\n以安装它", + "tooltip.computronics.tape.length": "长♂度: %s分", + "tooltip.computronics.tape.balanced": "已平衡.", + "tooltip.computronics.tape.unnamed": "未命名录音带", + "tooltip.computronics.tape.none": "无录音带", + "tooltip.computronics.tape.ig": "格雷泛银河飞船专属\n标卡数电录音带", + "tooltip.computronics.ticket.print": "打印车票", + "tooltip.computronics.ticket.printLocked": "§c手动打印已禁用", + "tooltip.computronics.ticket.locked": "本设备仅限{owner}使用.\n只有本机机主或服务器Op\n方能执行维护任务.", + "tooltip.computronics.ticket.notmaintenance": "空手右击此设备\n以进行维护.", + "tooltip.computronics.ticket.notowner": "你不是此机的机主.\n本机属于{owner}.", + "tooltip.computronics.ticket.unlocked": "点击以上锁.上锁后,\n仅你和服务器Op可进行维护.", + "tooltip.computronics.gate.action.computer_start": "启动电脑", + "tooltip.computronics.gate.action.computer_stop": "关掉电脑", + "tooltip.computronics.gate.action.tape_drive_start": "启动磁带机", + "tooltip.computronics.gate.action.tape_drive_stop": "关掉磁带机", + "tooltip.computronics.gate.action.tape_drive_rewind": "倒放磁带机", + "tooltip.computronics.gate.action.tape_drive_forward": "快进磁带机", + "tooltip.computronics.gate.action.lamp_color_set": "设定灯的颜色", + "tooltip.computronics.gate.action.lamp_color_reset": "重置灯的颜色", + "tooltip.computronics.gate.action.lamp_color.red": "红: %s", + "tooltip.computronics.gate.action.lamp_color.green": "绿: %s", + "tooltip.computronics.gate.action.lamp_color.blue": "蓝: %s", + "tooltip.computronics.gate.trigger.computer_running": "电脑奔跑中", + "tooltip.computronics.gate.trigger.computer_stopped": "电脑已关掉", + "tooltip.computronics.gate.trigger.tape_drive_playing": "磁带机播放中", + "tooltip.computronics.gate.trigger.tape_drive_stopped": "磁带机已关掉", + "tooltip.computronics.gate.trigger.tape_drive_rewinding": "磁带机倒放中", + "tooltip.computronics.gate.trigger.tape_drive_forwarding": "磁带机快进中", + "tooltip.computronics.waila.base.bus": "§a总线号§f: %s", + "tooltip.computronics.waila.relay.bound": "已绑定", + "tooltip.computronics.waila.relay.notbound": "未绑定", + "tooltip.computronics.waila.lamp.red": "红: %s", + "tooltip.computronics.waila.lamp.green": "绿: %s", + "tooltip.computronics.waila.lamp.blue": "蓝: %s", + "tooltip.computronics.tape.tapeinserted": "已插♂入录音带", + "tooltip.computronics.tape.labeltapeinserted": "已插♂入录音带\"%s\"", + "tooltip.computronics.tape.notapeinserted": "录音带插♂入", + "tooltip.computronics.tape.state": "状态: %s", + "tooltip.computronics.tape.state.stopped": "停下来了", + "tooltip.computronics.tape.state.playing": "不要停下来啊!", + "tooltip.computronics.tape.state.rewinding": "倒带中", + "tooltip.computronics.tape.state.forwarding": "快进中", + "tooltip.computronics.manual.oc.tab.blocks": "Computronics: 方块", + "tooltip.computronics.manual.oc.tab.items": "Computronics: 物品", + "tooltip.computronics.manual.tis3d.tab.items": "Computronics: 物品", + "tooltip.computronics.manual.tis3d.port.flamingo": "粉红色火烈鸟", + "option.computronics.enableOCAddress": "显示组件地址", + "option.computronics.enableTape": "显示插♂入磁带", + "option.computronics.enableTapeName": "显示磁带名称", + "option.computronics.enableDriveState": "显示磁带驱动状态", + "option.computronics.enableRelayBound": "显示中继器绑定状态", + "option.computronics.enableLampColor": "显示彩灯颜色", + "item.computronics.reelChromoxide.name": "二氧化铬录音带卷轮", + "item.computronics.drone_upgrade_docking.name": "无人机转接升级", + "item.computronics.dockingStation.name": "无人机转接坞", + "item.computronics.robot_upgrade_camera.name": "摄像升级", + "item.computronics.robot_upgrade_chatbox.name": "聊天升级", + "item.computronics.robot_upgrade_radar.name": "雷达升级", + "item.computronics.card_beep.name": "鸣笛升级", + "item.computronics.card_noise.name": "噪音升级", + "item.computronics.card_fx.name": "粒子特效升级", + "item.computronics.card_spoof.name": "欺骗卡", + "item.computronics.card_spoof.tip": "一个能设置发送地址的网卡", + "item.computronics.card_boom.name": "自杀式袭击卡片", + "item.computronics.card_boom.tip": "所有坏人都需要一个这个.", + "item.computronics.robot_upgrade_colorful.name": "R!G!B!升级", + "item.computronics.robot_upgrade_colorful.tip": "让你的机器人丰富多彩!", + "item.computronics.for.combAcid.name": "腐蚀性酸液", + "item.computronics.for.dropAcid.name": "腐蚀性蜜汁", + "item.computronics.relaySensor.name": "数字中继传感器", + "item.computronics.part_tape_track.name": "录音带轨道", + "item.computronics.tape.ig.name": "泛银河标卡数电录音带", + "item.computronics.tape.name": "盒式录音带", + "item.computronics.module_colorful.name": "R!G!B!模块", + "item.computronics.module_tape_reader.name": "磁带机模块", + "item.computronics.module_boom.name": "自杀式袭击模块", + "itemGroup.tabComputronics": "Computronics", + "entity.computronics.itemTape.name": "泛银河标卡数电录音带", + "entity.computronics.swarm.name": "Swarm", + "death.attack.computronics.sting.1": "%1$s 终于明白了为什么有人有恐蜂症", + "death.attack.computronics.sting.2": "<%1$s> §o哦不!不是蜂子啊!啊蜂子不要过来啊——啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊(生草版作者:建议联动av60919617)!", + "death.attack.computronics.sting.3": "%1$s couldn't handle the swarm's stinging puns", + "death.attack.computronics.sting.4": "%1$s forgot their epipen", + "death.attack.computronics.sting.5": "%1$s 变成了蜂子暗杀计划的受害者", + "death.attack.computronics.sting.self": "蜂子们背叛了 %1$s", + "computronics.flowers.sea": "Sea", + "computronics.bees.species.scummy": "Scummy", + "computronics.bees.species.scummy.description": "煤油、1,2-丙二醇、人工甜味剂、硫酸、朗姆酒、丙酮、红色素2号、浮渣、车轴润滑脂、铅酸蓄电池的酸液和/或意大利辣肉肠|酒吧里的异乡人,自称来自混乱岛", + "chat.computronics.cipher.locked": "加密机已锁,无法访问.", + "chat.computronics.colorful_upgrade.color": "§6颜色§f: %s", + "chat.computronics.lamp.binary.on": "RedNet模式设定为: Binary", + "chat.computronics.lamp.binary.off": "RedNet模式设定为: Normal", + "chat.computronics.relay.notBound": "中继器目前未与任何机车绑定!", + "chat.computronics.relay.unbound": "中继器成功与机车解绑!", + "chat.computronics.sensor.bound": "中继器成功与机车绑定!", + "chat.computronics.sensor.noRelay": "指定坐标处无中继器!", + "chat.computronics.sensor.noRelayDetected": "无法在给定坐标上检测到任何中继器!", + "chat.computronics.sensor.tooFarAway": "中继器与机车彼此相距过远!", + "chat.computronics.sensor.wrongLoco": "传感器只能安装在电力机车上!", + "chat.computronics.sensor.wrongDim": "中继器与机车处于不同位面!", + "achievement.computronics.gotTape": "大家的音乐", + "achievement.computronics.gotTape.desc": "当然远胜过胶带音乐", + "achievement.computronics.gotStarTape": "彩虹之上", + "achievement.computronics.gotStarTape.desc": "那彩虹猫居住的地方", + "achievement.computronics.gotIGTape": "未来太空船的第一个零件", + "achievement.computronics.gotIGTape.desc": "我可没说你能造了", + "achievement.computronics.droppedIGTape": "马航MH370", + "achievement.computronics.droppedIGTape.desc": "它消失了!?", + "achievement.computronics.gotLoco": "电力革命", + "achievement.computronics.gotLoco.desc": "就这样开始了.", + "achievement.computronics.gotRelay": "数字革命", + "achievement.computronics.gotRelay.desc": "111001111001010010011111111010001000110110001001111001111000100110001000111001001011110110011100111010001000000010000101001110100100110101101001011011100110010101100011011100100110000101100110011101000110101101110101010111110110100001100101011010010010110011100111100101001001111111101000100011011000100111100110100111011001000011101000101101001010100011100101100011001000010100111010011010000111010001110100011100000111001100111010001011110010111101100111011010010111010001101000011101010110001000101110011000110110111101101101001011110101010001100101011000010110100001101111011101010111001101100101001011010101001101110100011101010110010001101001011011110111001100101111011011010110001101110111011110100110100000101101011011010110010101101101011001010010110101110010011001010111001101101111011101010111001001100011011001010111000001100001011000110110101100101100111001011000111010011111111001101001011010000111001110100100100001000101010011000101000000100001" +} diff --git a/mods/adorn.json b/mods/adorn.json index 4f4afc321..6c1a6f199 100644 --- a/mods/adorn.json +++ b/mods/adorn.json @@ -1,133 +1,133 @@ { - "block.adorn.white_sofa": "白色沙发", - "block.adorn.light_gray_sofa": "浅灰色沙发", - "block.adorn.gray_sofa": "灰色沙发", - "block.adorn.black_sofa": "黑色沙发", - "block.adorn.brown_sofa": "棕色沙发", - "block.adorn.red_sofa": "红色沙发", - "block.adorn.orange_sofa": "橙色沙发", - "block.adorn.yellow_sofa": "黄色沙发", - "block.adorn.lime_sofa": "黄绿色沙发", - "block.adorn.green_sofa": "原谅色沙发", - "block.adorn.cyan_sofa": "青色沙发", - "block.adorn.light_blue_sofa": "淡蓝色沙发", - "block.adorn.blue_sofa": "蓝色沙发", - "block.adorn.purple_sofa": "紫色沙发", - "block.adorn.magenta_sofa": "品红色沙发", - "block.adorn.pink_sofa": "粉色沙发", - - "block.adorn.oak_chair": "橡木椅子", - "block.adorn.spruce_chair": "云杉木椅子", - "block.adorn.birch_chair": "白桦木椅子", - "block.adorn.jungle_chair": "丛林木椅子", - "block.adorn.acacia_chair": "相思木椅子", - "block.adorn.dark_oak_chair": "巧克力椅子", - - "block.adorn.oak_table": "橡木桌子", - "block.adorn.spruce_table": "云杉木桌子", - "block.adorn.birch_table": "白桦木桌子", - "block.adorn.jungle_table": "丛林木桌子", - "block.adorn.acacia_table": "相思木桌子", - "block.adorn.dark_oak_table": "巧克力桌子", - - "block.adorn.oak_kitchen_counter": "橡木厨房台面", - "block.adorn.spruce_kitchen_counter": "云杉木厨房台面", - "block.adorn.birch_kitchen_counter": "白桦木厨房台面", - "block.adorn.jungle_kitchen_counter": "丛林木厨房台面", - "block.adorn.acacia_kitchen_counter": "相思木厨房台面", - "block.adorn.dark_oak_kitchen_counter": "巧克力厨房台面", - - "block.adorn.oak_kitchen_cupboard": "橡木厨房碗柜", - "block.adorn.spruce_kitchen_cupboard": "云杉木厨房碗柜", - "block.adorn.birch_kitchen_cupboard": "白桦木厨房碗柜", - "block.adorn.jungle_kitchen_cupboard": "丛林木厨房碗柜", - "block.adorn.acacia_kitchen_cupboard": "相思木厨房碗柜", - "block.adorn.dark_oak_kitchen_cupboard": "巧克力厨房碗柜", - - "block.adorn.oak_drawer": "橡木抽屉", - "block.adorn.spruce_drawer": "云杉木抽屉", - "block.adorn.birch_drawer": "白桦木抽屉", - "block.adorn.jungle_drawer": "丛林木抽屉", - "block.adorn.acacia_drawer": "相思木抽屉", - "block.adorn.dark_oak_drawer": "巧克力抽屉", - - "block.adorn.trading_station": "py站", - "block.adorn.trading_station.selling": "出售", - "block.adorn.trading_station.price": "价格", - "block.adorn.trading_station.label.owner": "%s的py站", - "block.adorn.trading_station.label.selling": "出售 %s", - "block.adorn.trading_station.label.price": "价格为 %s", - "block.adorn.trading_station.empty_trade": "这个py站没有卖任何东西.", - "block.adorn.trading_station.storage_not_stocked": "这个py站没有足够的商品.", - "block.adorn.trading_station.storage_full": "这个py站的存储满了.", - - "advancements.adorn.root.description": "装饰你的家!", - - "advancements.adorn.chair.title": "舒服的坐着", - "advancements.adorn.chair.description": "制造一把椅子.", - - "advancements.adorn.sofa.title": "白日梦", - "advancements.adorn.sofa.description": "用羊毛和棍子做一个沙发.", - - "advancements.adorn.trading_station.title": "赶集日", - "advancements.adorn.trading_station.description": "制造一个py站.", - - "advancements.adorn.chimney.title": "砖和烟", - "advancements.adorn.chimney.description": "制造一个烟囱.", - - "advancements.adorn.stone_torch.title": "岩石照明", - "advancements.adorn.stone_torch.description": "制造一个石制火炬.", - - "block.adorn.stone_torch": "石制火炬", - "block.adorn.stone_torch.desc": "比木制火炬更亮", - - "block.adorn.oak_post": "橡木柱", - "block.adorn.spruce_post": "云杉木柱", - "block.adorn.birch_post": "白桦木柱", - "block.adorn.jungle_post": "丛林木柱", - "block.adorn.acacia_post": "相思木柱", - "block.adorn.dark_oak_post": "巧克力柱", - "block.adorn.stone_post": "石柱", - "block.adorn.sandstone_post": "砂岩柱", - "block.adorn.cobblestone_post": "圆石柱", - "block.adorn.andesite_post": "安山岩柱", - "block.adorn.diorite_post": "闪长岩柱", - "block.adorn.granite_post": "花岗岩柱", - "block.adorn.post.desc": "有点像栅栏柱子", - - "block.adorn.oak_platform": "橡木平台", - "block.adorn.spruce_platform": "云杉木平台", - "block.adorn.birch_platform": "白桦木平台", - "block.adorn.jungle_platform": "丛林木平台", - "block.adorn.acacia_platform": "相思木平台", - "block.adorn.dark_oak_platform": "巧克力平台", - "block.adorn.stone_platform": "石制平台", - "block.adorn.sandstone_platform": "砂岩平台", - "block.adorn.cobblestone_platform": "圆石平台", - "block.adorn.andesite_platform": "安山岩平台", - "block.adorn.diorite_platform": "闪长岩平台", - "block.adorn.granite_platform": "花岗岩平台", - "block.adorn.platform.desc": "顶部有平台的柱子", - - "block.adorn.oak_step": "橡木压一压板", - "block.adorn.spruce_step": "云杉木压一压板", - "block.adorn.birch_step": "白桦木压一压板", - "block.adorn.jungle_step": "丛林木压一压板", - "block.adorn.acacia_step": "相思木压一压板", - "block.adorn.dark_oak_step": "巧克力压一压板", - "block.adorn.stone_step": "石制压一压板", - "block.adorn.sandstone_step": "砂岩压一压板", - "block.adorn.cobblestone_step": "圆石压一压板", - "block.adorn.andesite_step": "安山岩压一压板", - "block.adorn.diorite_step": "闪长岩压一压板", - "block.adorn.granite_step": "花岗岩平台压一压板", - "block.adorn.step.desc": "下方有柱子的小半砖", - - "block.adorn.chimney.desc": "装饰方块", - - "block.adorn.prismarine_chimney": "海晶烟囱", - "block.adorn.prismarine_chimney.desc": "水下气泡", - - "item.adorn.stone_rod": "石棒", - "item.adorn.stone_rod.desc": "合成原料" + "block.adorn.white_sofa": "白色沙发", + "block.adorn.light_gray_sofa": "浅灰色沙发", + "block.adorn.gray_sofa": "灰色沙发", + "block.adorn.black_sofa": "黑色沙发", + "block.adorn.brown_sofa": "棕色沙发", + "block.adorn.red_sofa": "红色沙发", + "block.adorn.orange_sofa": "橙色沙发", + "block.adorn.yellow_sofa": "黄色沙发", + "block.adorn.lime_sofa": "酸橙色沙发", + "block.adorn.green_sofa": "原谅色沙发", + "block.adorn.cyan_sofa": "青色沙发", + "block.adorn.light_blue_sofa": "淡蓝色沙发", + "block.adorn.blue_sofa": "蓝色沙发", + "block.adorn.purple_sofa": "紫色沙发", + "block.adorn.magenta_sofa": "品红色沙发", + "block.adorn.pink_sofa": "粉色沙发", + + "block.adorn.oak_chair": "橡木椅子", + "block.adorn.spruce_chair": "云杉木椅子", + "block.adorn.birch_chair": "白桦木椅子", + "block.adorn.jungle_chair": "丛林木椅子", + "block.adorn.acacia_chair": "相思木椅子", + "block.adorn.dark_oak_chair": "巧克力椅子", + + "block.adorn.oak_table": "橡木桌子", + "block.adorn.spruce_table": "云杉木桌子", + "block.adorn.birch_table": "白桦木桌子", + "block.adorn.jungle_table": "丛林木桌子", + "block.adorn.acacia_table": "相思木桌子", + "block.adorn.dark_oak_table": "巧克力桌子", + + "block.adorn.oak_kitchen_counter": "橡木厨房台面", + "block.adorn.spruce_kitchen_counter": "云杉木厨房台面", + "block.adorn.birch_kitchen_counter": "白桦木厨房台面", + "block.adorn.jungle_kitchen_counter": "丛林木厨房台面", + "block.adorn.acacia_kitchen_counter": "相思木厨房台面", + "block.adorn.dark_oak_kitchen_counter": "巧克力厨房台面", + + "block.adorn.oak_kitchen_cupboard": "橡木厨房碗柜", + "block.adorn.spruce_kitchen_cupboard": "云杉木厨房碗柜", + "block.adorn.birch_kitchen_cupboard": "白桦木厨房碗柜", + "block.adorn.jungle_kitchen_cupboard": "丛林木厨房碗柜", + "block.adorn.acacia_kitchen_cupboard": "相思木厨房碗柜", + "block.adorn.dark_oak_kitchen_cupboard": "巧克力厨房碗柜", + + "block.adorn.oak_drawer": "橡木抽屉", + "block.adorn.spruce_drawer": "云杉木抽屉", + "block.adorn.birch_drawer": "白桦木抽屉", + "block.adorn.jungle_drawer": "丛林木抽屉", + "block.adorn.acacia_drawer": "相思木抽屉", + "block.adorn.dark_oak_drawer": "巧克力抽屉", + + "block.adorn.trading_station": "py站", + "block.adorn.trading_station.selling": "出售", + "block.adorn.trading_station.price": "价格", + "block.adorn.trading_station.label.owner": "%s的py站", + "block.adorn.trading_station.label.selling": "出售 %s", + "block.adorn.trading_station.label.price": "价格为 %s", + "block.adorn.trading_station.empty_trade": "这个py站没有卖任何东西.", + "block.adorn.trading_station.storage_not_stocked": "这个py站没有足够的商品.", + "block.adorn.trading_station.storage_full": "这个py站的存储满了.", + + "advancements.adorn.root.description": "装饰你的家!", + + "advancements.adorn.chair.title": "舒服的坐着", + "advancements.adorn.chair.description": "制造一把椅子.", + + "advancements.adorn.sofa.title": "白日梦", + "advancements.adorn.sofa.description": "用羊毛和棍子做一个沙发.", + + "advancements.adorn.trading_station.title": "赶集日", + "advancements.adorn.trading_station.description": "制造一个py站.", + + "advancements.adorn.chimney.title": "砖和烟", + "advancements.adorn.chimney.description": "制造一个烟囱.", + + "advancements.adorn.stone_torch.title": "岩石照明", + "advancements.adorn.stone_torch.description": "制造一个石头火炬.", + + "block.adorn.stone_torch": "石头火把", + "block.adorn.stone_torch.desc": "比木头火炬更亮", + + "block.adorn.oak_post": "橡木柱", + "block.adorn.spruce_post": "云杉木柱", + "block.adorn.birch_post": "白桦木柱", + "block.adorn.jungle_post": "丛林木柱", + "block.adorn.acacia_post": "相思木柱", + "block.adorn.dark_oak_post": "巧克力柱", + "block.adorn.stone_post": "石柱", + "block.adorn.sandstone_post": "砂岩柱", + "block.adorn.cobblestone_post": "圆石柱", + "block.adorn.andesite_post": "安山岩柱", + "block.adorn.diorite_post": "DIO岩柱", + "block.adorn.granite_post": "花岗岩柱", + "block.adorn.post.desc": "有点像栅栏柱子", + + "block.adorn.oak_platform": "橡木平台", + "block.adorn.spruce_platform": "云杉木平台", + "block.adorn.birch_platform": "白桦木平台", + "block.adorn.jungle_platform": "丛林木平台", + "block.adorn.acacia_platform": "相思木平台", + "block.adorn.dark_oak_platform": "巧克力平台", + "block.adorn.stone_platform": "石头平台", + "block.adorn.sandstone_platform": "砂岩平台", + "block.adorn.cobblestone_platform": "圆石平台", + "block.adorn.andesite_platform": "安山岩平台", + "block.adorn.diorite_platform": "DIO岩平台", + "block.adorn.granite_platform": "花岗岩平台", + "block.adorn.platform.desc": "顶部有平台的柱子", + + "block.adorn.oak_step": "橡木压一压板", + "block.adorn.spruce_step": "云杉木压一压板", + "block.adorn.birch_step": "白桦木压一压板", + "block.adorn.jungle_step": "丛林木压一压板", + "block.adorn.acacia_step": "相思木压一压板", + "block.adorn.dark_oak_step": "巧克力压一压板", + "block.adorn.stone_step": "石头压一压板", + "block.adorn.sandstone_step": "砂岩压一压板", + "block.adorn.cobblestone_step": "圆石压一压板", + "block.adorn.andesite_step": "安山岩压一压板", + "block.adorn.diorite_step": "DIO岩压一压板", + "block.adorn.granite_step": "花岗岩平台压一压板", + "block.adorn.step.desc": "下方有柱子的小半砖", + + "block.adorn.chimney.desc": "装饰方块", + + "block.adorn.prismarine_chimney": "海晶烟囱", + "block.adorn.prismarine_chimney.desc": "水下气泡", + + "item.adorn.stone_rod": "石棒", + "item.adorn.stone_rod.desc": "合成原料" } diff --git a/mods/anc.json b/mods/anc.json new file mode 100644 index 000000000..489db9cf2 --- /dev/null +++ b/mods/anc.json @@ -0,0 +1,74 @@ +{ + "Please install the correct resource pack": "§f§l============================§r\n§b§l欢迎使用哐当工艺,数据包版本:§r%s§b§l,亮目害眼包版本:§6§l0.5.4-pre2§r\n§b§l数据包作者:§r§6§lGugle§r§b§l、§r§6§lsch246§r §b§l亮目害眼包作者:§r§6§lXe_Kr§r\n§f§l============================§r", + "anc.block.magnet_block.name": "钕铁硼", + "anc.block.magnet_block.lore": "被雷石东激活时可以吸起其正下方(4个方块内)的哐当", + "anc.block.crafting_machine.name": "合成器", + "anc.block.netherite_coil.name": "玄素卷材", + "anc.item.seed_of_the_sea.name": "武则天の海洋种子", + "anc.item.fruit_of_the_sea.name": "武则天の海洋之果", + "anc.item.kernel_of_the_sea.name": "武则天の海洋之核", + "anc.item.tear_of_the_sea.name": "武则天の海洋之泪", + "anc.item.blade_of_the_sea.name": "武则天の海洋之刃", + "anc.item.nether_star_shard.name": "白 金 之 星碎片", + "anc.item.debris_scrap.name": "废铁块碎片", + "anc.item.netherite_core.name": "下界玄素核心", + "anc.item.elytra_frame.name": "翅骨", + "anc.item.elytra_membrane.name": "翅膜", + "anc.item.empty_protocol.name": "没啥东西的协议", + "anc.item.dispel_protocol_random.name": "祛膜协议(随机)", + "anc.item.dispel_protocol_first.name": "祛膜协议(去首)", + "anc.item.dispel_protocol_last.name": "祛膜协议(去尾)", + "anc.item.dispel_protocol_curse.name": "祛膜协议(诅咒)", + "anc.item.dispel_protocol_punishment.name": "祛膜协议(惩罚)", + "anc.item.absorb_protocol.name": "偷你经验协议", + "anc.item.repair_protocol.name": "维修协议", + "anc.item.netherite_coil.name": "玄素卷材", + "anc.block.craft_machine.name": "合成器", + "anc.block.interact_machine.name": "交互机", + "anc.item.empty.name": "GUI", + "anc.item.button_w.name": "输出:西", + "anc.item.button_n.name": "输出:北", + "anc.item.button_s.name": "输出:南", + "anc.item.button_e.name": "输出:东", + "anc.item.button_u.name": "输出:上", + "anc.item.button_d.name": "输出:下", + "anc.item.button_yes.name": "保留一个物品:是", + "anc.item.button_no.name": "保留一个物品:否", + "anc.item.warning_material.name": "警告:材料呢?", + "anc.item.warning_none.name": "警告:妹啥可警告的", + "anc.item.warning_protocol.name": "警告:协议呢?", + "anc.item.craft_back.name": "GUI", + "anc.item.interact_back.name": "GUI", + "item.anc.output_slot.name": "输出", + "anc.item.placement_protocol.name": "方块出生协议", + "anc.item.protect_protocol.name": "保护协议", + "anc.item.restock_protocol.name": "补货协议", + "anc.item.magnet_ingot.name": "钕铁硼锭", + "anc.item.magnet.name": "手持钕铁硼", + "anc.item.cream.name": "洗洁精", + "anc.item.grease.name": "油脂", + "anc.item.flour.name": "面粉", + "anc.item.dough.name": "面团", + "anc.item.flatdough.name": "面皮", + "anc.item.dumpling_raw.name": "生水饺", + "anc.item.shengjian_raw.name": "生生煎", + "anc.item.meatballs_raw.name": "生肉丸", + "anc.item.beef_mushroom_stew_raw.name": "生叉剋汤", + "anc.item.meat_stuffing.name": "肉馅", + "anc.item.creamy_bread_roll.name": "狐狸尾巴", + "anc.item.chocolate.name": "真·巧克力", + "anc.item.shengjian.name": "生煎", + "anc.item.meatballs.name": "炸肉丸", + "anc.item.beef_mushroom_stew.name": "叉剋汤", + "anc.item.dumpling.name": "水饺", + "anc.item.cocoa_butter.name": "奥利脂", + "anc.item.cocoa_powder.name": "奥利粉", + "anc.item.cocoa_liquor.name": "奥利液块", + "anc.item.black_chocolate.name": "黑巧克力", + "anc.item.white_chocolate.name": "白巧克力", + "anc.item.utusan_raw.name": "生五毒散", + "anc.item.utusan.name": "五毒散", + "anc.item.sponge_gemmule.name": "黄 色 小 发 糕", + "anc.item.sweet_dumpling_raw.name": "生甜饺子", + "anc.item.sweet_dumpling.name": "甜饺子" +} diff --git a/mods/blockus.json b/mods/blockus.json new file mode 100644 index 000000000..97e8a8a72 --- /dev/null +++ b/mods/blockus.json @@ -0,0 +1,1213 @@ +{ + "itemGroup.blockus.blockus_building_blocks": "造房子用的 §3(Blockus)", + "itemGroup.blockus.blockus_decorations": "花里胡哨 §3(Blockus)", + "itemGroup.blockus.blockus_redstone": "雷石东 §3(Blockus)", + "itemGroup.blockus.blockus_legacy": "老古董 §3(Blockus)", + "blockus.blockitem.givespeed": "站在上面时给予Plash Speed[π]效果。", + "block.blockus.blaze_bricks": "烈焰砖", + "block.blockus.blaze_brick_wall": "烈焰砖墙", + "block.blockus.blaze_brick_stairs": "烈焰砖楼梯", + "block.blockus.blaze_brick_slab": "烈焰砖半砖", + "block.blockus.blaze_pillar": "烈焰柱子", + "block.blockus.blaze_lantern": "烈焰灯", + "block.blockus.rough_sandstone": "粗糙的砂岩", + "block.blockus.rough_sandstone_stairs": "粗糙的砂岩楼梯", + "block.blockus.rough_sandstone_slab": "粗糙的砂岩半砖", + "block.blockus.sandstone_bricks": "砂岩砖", + "block.blockus.sandstone_brick_stairs": "砂岩砖楼梯", + "block.blockus.sandstone_brick_slab": "砂岩砖半砖", + "block.blockus.sandstone_brick_wall": "砂岩砖墙", + "block.blockus.small_sandstone_bricks": "小型砂岩砖", + "block.blockus.small_sandstone_brick_stairs": "小型砂岩砖楼梯", + "block.blockus.small_sandstone_brick_slab": "小型砂岩砖半砖", + "block.blockus.small_sandstone_brick_wall": "小型砂岩砖墙", + "block.blockus.sandstone_pillar": "砂岩柱子", + "block.blockus.rough_red_sandstone": "粗糙的红砂岩", + "block.blockus.rough_red_sandstone_stairs": "粗糙的红砂岩楼梯", + "block.blockus.rough_red_sandstone_slab": "粗糙的红砂岩半砖", + "block.blockus.red_sandstone_bricks": "红砂岩砖", + "block.blockus.red_sandstone_brick_stairs": "红砂岩砖楼梯", + "block.blockus.red_sandstone_brick_slab": "红砂岩砖半砖", + "block.blockus.red_sandstone_brick_wall": "红砂岩砖墙", + "block.blockus.small_red_sandstone_bricks": "小型红砂岩砖", + "block.blockus.small_red_sandstone_brick_stairs": "小型红砂岩砖楼梯", + "block.blockus.small_red_sandstone_brick_slab": "小型红砂岩砖半砖", + "block.blockus.small_red_sandstone_brick_wall": "小型红砂岩砖墙", + "block.blockus.red_sandstone_pillar": "红砂岩柱子", + "block.blockus.soul_sandstone": "亡魂砂岩", + "block.blockus.soul_sandstone_stairs": "亡魂砂岩楼梯", + "block.blockus.soul_sandstone_slab": "亡魂砂岩半砖", + "block.blockus.soul_sandstone_wall": "亡魂砂岩墙", + "block.blockus.smooth_soul_sandstone": "滑溜溜的亡魂砂岩", + "block.blockus.smooth_soul_sandstone_stairs": "滑溜溜的亡魂砂岩楼梯", + "block.blockus.smooth_soul_sandstone_slab": "滑溜溜的亡魂砂岩半砖", + "block.blockus.rough_soul_sandstone": "粗糙的亡魂砂岩", + "block.blockus.rough_soul_sandstone_stairs": "粗糙的亡魂砂岩楼梯", + "block.blockus.rough_soul_sandstone_slab": "粗糙的亡魂砂岩半砖", + "block.blockus.soul_sandstone_bricks": "亡魂砂岩砖", + "block.blockus.soul_sandstone_brick_stairs": "亡魂砂岩砖楼梯", + "block.blockus.soul_sandstone_brick_slab": "亡魂砂岩砖半砖", + "block.blockus.soul_sandstone_brick_wall": "亡魂砂岩砖墙", + "block.blockus.cut_soul_sandstone": "切制亡魂砂岩", + "block.blockus.cut_soul_sandstone_slab": "切制亡魂砂岩半砖", + "block.blockus.chiseled_soul_sandstone": "使用了大师级雕刻技艺的亡魂砂岩", + "block.blockus.small_soul_sandstone_bricks": "小型亡魂砂岩砖", + "block.blockus.small_soul_sandstone_brick_stairs": "小型亡魂砂岩砖楼梯", + "block.blockus.small_soul_sandstone_brick_slab": "小型亡魂砂岩砖半砖", + "block.blockus.small_soul_sandstone_brick_wall": "小型亡魂砂岩砖墙", + "block.blockus.soul_sandstone_pillar": "亡魂砂岩柱子", + "block.blockus.paper_block": "纸块", + "block.blockus.burned_paper_block": "烧焦的纸块", + "block.blockus.framed_paper_block": "带框纸块", + "block.blockus.paper_wall": "纸墙", + "block.blockus.paper_door": "纸门", + "block.blockus.paper_trapdoor": "纸陷阱门", + "block.blockus.stars_block": "星星块", + "block.blockus.ender_block": "小黑珍珠块", + "block.blockus.charcoal_block": "木炭块", + "block.blockus.rotten_flesh_block": "烂肉块", + "block.blockus.sugar_block": "糖块", + "block.blockus.smooth_stone_stairs": "滑溜溜的石楼梯", + "block.blockus.stone_brick_pillar": "砖石柱子", + "block.blockus.white_stone_bricks": "白色砖石", + "block.blockus.orange_stone_bricks": "橙色砖石", + "block.blockus.magenta_stone_bricks": "品红色砖石", + "block.blockus.light_blue_stone_bricks": "淡蓝色砖石", + "block.blockus.yellow_stone_bricks": "黄色砖石", + "block.blockus.lime_stone_bricks": "酸橙色砖石", + "block.blockus.pink_stone_bricks": "粉色砖石", + "block.blockus.gray_stone_bricks": "灰色砖石", + "block.blockus.cyan_stone_bricks": "青色砖石", + "block.blockus.purple_stone_bricks": "紫色砖石", + "block.blockus.blue_stone_bricks": "蓝色砖石", + "block.blockus.brown_stone_bricks": "棕色砖石", + "block.blockus.green_stone_bricks": "原谅色砖石", + "block.blockus.red_stone_bricks": "红色砖石", + "block.blockus.black_stone_bricks": "黑色砖石", + "block.blockus.white_stone_brick_stairs": "白色砖石楼梯", + "block.blockus.orange_stone_brick_stairs": "橙色砖石楼梯", + "block.blockus.magenta_stone_brick_stairs": "品红色砖石楼梯", + "block.blockus.light_blue_stone_brick_stairs": "淡蓝色砖石楼梯", + "block.blockus.yellow_stone_brick_stairs": "黄色砖石楼梯", + "block.blockus.lime_stone_brick_stairs": "酸橙色砖石楼梯", + "block.blockus.pink_stone_brick_stairs": "粉色砖石楼梯", + "block.blockus.gray_stone_brick_stairs": "灰色砖石楼梯", + "block.blockus.cyan_stone_brick_stairs": "青色砖石楼梯", + "block.blockus.purple_stone_brick_stairs": "紫色砖石楼梯", + "block.blockus.blue_stone_brick_stairs": "蓝色砖石楼梯", + "block.blockus.brown_stone_brick_stairs": "棕色砖石楼梯", + "block.blockus.green_stone_brick_stairs": "原谅色砖石楼梯", + "block.blockus.red_stone_brick_stairs": "红色砖石楼梯", + "block.blockus.black_stone_brick_stairs": "黑色砖石楼梯", + "block.blockus.white_stone_brick_slab": "白色砖石半砖", + "block.blockus.orange_stone_brick_slab": "橙色砖石半砖", + "block.blockus.magenta_stone_brick_slab": "品红色砖石半砖", + "block.blockus.light_blue_stone_brick_slab": "淡蓝色砖石半砖", + "block.blockus.yellow_stone_brick_slab": "黄色砖石半砖", + "block.blockus.lime_stone_brick_slab": "酸橙色砖石半砖", + "block.blockus.pink_stone_brick_slab": "粉色砖石半砖", + "block.blockus.gray_stone_brick_slab": "灰色砖石半砖", + "block.blockus.cyan_stone_brick_slab": "青色砖石半砖", + "block.blockus.purple_stone_brick_slab": "紫色砖石半砖", + "block.blockus.blue_stone_brick_slab": "蓝色砖石半砖", + "block.blockus.brown_stone_brick_slab": "棕色砖石半砖", + "block.blockus.green_stone_brick_slab": "原谅色砖石半砖", + "block.blockus.red_stone_brick_slab": "红色砖石半砖", + "block.blockus.black_stone_brick_slab": "黑色砖石半砖", + "block.blockus.white_stone_brick_wall": "白色砖石墙", + "block.blockus.orange_stone_brick_wall": "橙色砖石墙", + "block.blockus.magenta_stone_brick_wall": "品红色砖石墙", + "block.blockus.light_blue_stone_brick_wall": "淡蓝色砖石墙", + "block.blockus.yellow_stone_brick_wall": "黄色砖石墙", + "block.blockus.lime_stone_brick_wall": "酸橙色砖石墙", + "block.blockus.pink_stone_brick_wall": "粉色砖石墙", + "block.blockus.gray_stone_brick_wall": "灰色砖石墙", + "block.blockus.cyan_stone_brick_wall": "青色砖石墙", + "block.blockus.purple_stone_brick_wall": "紫色砖石墙", + "block.blockus.blue_stone_brick_wall": "蓝色砖石墙", + "block.blockus.brown_stone_brick_wall": "棕色砖石墙", + "block.blockus.green_stone_brick_wall": "原谅色砖石墙", + "block.blockus.red_stone_brick_wall": "红色砖石墙", + "block.blockus.black_stone_brick_wall": "黑色砖石墙", + "block.blockus.white_concrete_bricks": "白色具体的砖", + "block.blockus.orange_concrete_bricks": "橙色具体的砖", + "block.blockus.magenta_concrete_bricks": "品红色具体的砖", + "block.blockus.light_blue_concrete_bricks": "淡蓝色具体的砖", + "block.blockus.yellow_concrete_bricks": "黄色具体的砖", + "block.blockus.lime_concrete_bricks": "酸橙色具体的砖", + "block.blockus.pink_concrete_bricks": "粉色具体的砖", + "block.blockus.gray_concrete_bricks": "灰色具体的砖", + "block.blockus.light_gray_concrete_bricks": "淡灰色具体的砖", + "block.blockus.cyan_concrete_bricks": "青色具体的砖", + "block.blockus.purple_concrete_bricks": "紫色具体的砖", + "block.blockus.blue_concrete_bricks": "蓝色具体的砖", + "block.blockus.brown_concrete_bricks": "棕色具体的砖", + "block.blockus.green_concrete_bricks": "原谅色具体的砖", + "block.blockus.red_concrete_bricks": "红色具体的砖", + "block.blockus.black_concrete_bricks": "黑色具体的砖", + "block.blockus.white_concrete_brick_stairs": "白色具体的砖楼梯", + "block.blockus.orange_concrete_brick_stairs": "橙色具体的砖楼梯", + "block.blockus.magenta_concrete_brick_stairs": "品红色具体的砖楼梯", + "block.blockus.light_blue_concrete_brick_stairs": "淡蓝色具体的砖楼梯", + "block.blockus.yellow_concrete_brick_stairs": "黄色具体的砖楼梯", + "block.blockus.lime_concrete_brick_stairs": "酸橙色具体的砖楼梯", + "block.blockus.pink_concrete_brick_stairs": "粉色具体的砖楼梯", + "block.blockus.gray_concrete_brick_stairs": "灰色具体的砖楼梯", + "block.blockus.light_gray_concrete_brick_stairs": "淡灰色具体的砖楼梯", + "block.blockus.cyan_concrete_brick_stairs": "青色具体的砖楼梯", + "block.blockus.purple_concrete_brick_stairs": "紫色具体的砖楼梯", + "block.blockus.blue_concrete_brick_stairs": "蓝色具体的砖楼梯", + "block.blockus.brown_concrete_brick_stairs": "棕色具体的砖楼梯", + "block.blockus.green_concrete_brick_stairs": "原谅色具体的砖楼梯", + "block.blockus.red_concrete_brick_stairs": "红色具体的砖楼梯", + "block.blockus.black_concrete_brick_stairs": "黑色具体的砖楼梯", + "block.blockus.white_concrete_brick_slab": "白色具体的砖半砖", + "block.blockus.orange_concrete_brick_slab": "橙色具体的砖半砖", + "block.blockus.magenta_concrete_brick_slab": "品红色具体的砖半砖", + "block.blockus.light_blue_concrete_brick_slab": "淡蓝色具体的砖半砖", + "block.blockus.yellow_concrete_brick_slab": "黄色具体的砖半砖", + "block.blockus.lime_concrete_brick_slab": "酸橙色具体的砖半砖", + "block.blockus.pink_concrete_brick_slab": "粉色具体的砖半砖", + "block.blockus.gray_concrete_brick_slab": "灰色具体的砖半砖", + "block.blockus.light_gray_concrete_brick_slab": "淡灰色具体的砖半砖", + "block.blockus.cyan_concrete_brick_slab": "青色具体的砖半砖", + "block.blockus.purple_concrete_brick_slab": "紫色具体的砖半砖", + "block.blockus.blue_concrete_brick_slab": "蓝色具体的砖半砖", + "block.blockus.brown_concrete_brick_slab": "棕色具体的砖半砖", + "block.blockus.green_concrete_brick_slab": "原谅色具体的砖半砖", + "block.blockus.red_concrete_brick_slab": "红色具体的砖半砖", + "block.blockus.black_concrete_brick_slab": "黑色具体的砖半砖", + "block.blockus.white_concrete_brick_wall": "白色具体的砖墙", + "block.blockus.orange_concrete_brick_wall": "橙色具体的砖墙", + "block.blockus.magenta_concrete_brick_wall": "品红色具体的砖墙", + "block.blockus.light_blue_concrete_brick_wall": "淡蓝色具体的砖墙", + "block.blockus.yellow_concrete_brick_wall": "黄色具体的砖墙", + "block.blockus.lime_concrete_brick_wall": "酸橙色具体的砖墙", + "block.blockus.pink_concrete_brick_wall": "粉色具体的砖墙", + "block.blockus.gray_concrete_brick_wall": "灰色具体的砖墙", + "block.blockus.light_gray_concrete_brick_wall": "淡灰色具体的砖墙", + "block.blockus.cyan_concrete_brick_wall": "青色具体的砖墙", + "block.blockus.purple_concrete_brick_wall": "紫色具体的砖墙", + "block.blockus.blue_concrete_brick_wall": "蓝色具体的砖墙", + "block.blockus.brown_concrete_brick_wall": "棕色具体的砖墙", + "block.blockus.green_concrete_brick_wall": "原谅色具体的砖墙", + "block.blockus.red_concrete_brick_wall": "红色具体的砖墙", + "block.blockus.black_concrete_brick_wall": "黑色具体的砖墙", + "block.blockus.white_concrete_pillar": "白色具体的柱子", + "block.blockus.orange_concrete_pillar": "橙色具体的柱子", + "block.blockus.magenta_concrete_pillar": "品红色具体的柱子", + "block.blockus.light_blue_concrete_pillar": "淡蓝色具体的柱子", + "block.blockus.yellow_concrete_pillar": "黄色具体的柱子", + "block.blockus.lime_concrete_pillar": "酸橙色具体的柱子", + "block.blockus.pink_concrete_pillar": "粉色具体的柱子", + "block.blockus.gray_concrete_pillar": "灰色具体的柱子", + "block.blockus.light_gray_concrete_pillar": "淡灰色具体的柱子", + "block.blockus.cyan_concrete_pillar": "青色具体的柱子", + "block.blockus.purple_concrete_pillar": "紫色具体的柱子", + "block.blockus.blue_concrete_pillar": "蓝色具体的柱子", + "block.blockus.brown_concrete_pillar": "棕色具体的柱子", + "block.blockus.green_concrete_pillar": "原谅色具体的柱子", + "block.blockus.red_concrete_pillar": "红色具体的柱子", + "block.blockus.black_concrete_pillar": "黑色具体的柱子", + "block.blockus.chiseled_white_concrete": "使用了大师级雕刻技艺的白色具体的", + "block.blockus.chiseled_orange_concrete": "使用了大师级雕刻技艺的橙色具体的", + "block.blockus.chiseled_magenta_concrete": "使用了大师级雕刻技艺的品红色具体的", + "block.blockus.chiseled_light_blue_concrete": "使用了大师级雕刻技艺的淡蓝色具体的", + "block.blockus.chiseled_yellow_concrete": "使用了大师级雕刻技艺的黄色具体的", + "block.blockus.chiseled_lime_concrete": "使用了大师级雕刻技艺的酸橙色具体的", + "block.blockus.chiseled_pink_concrete": "使用了大师级雕刻技艺的粉色具体的", + "block.blockus.chiseled_gray_concrete": "使用了大师级雕刻技艺的灰色具体的", + "block.blockus.chiseled_light_gray_concrete": "使用了大师级雕刻技艺的淡灰色具体的", + "block.blockus.chiseled_cyan_concrete": "使用了大师级雕刻技艺的青色具体的", + "block.blockus.chiseled_purple_concrete": "使用了大师级雕刻技艺的紫色具体的", + "block.blockus.chiseled_blue_concrete": "使用了大师级雕刻技艺的蓝色具体的", + "block.blockus.chiseled_brown_concrete": "使用了大师级雕刻技艺的棕色具体的", + "block.blockus.chiseled_green_concrete": "使用了大师级雕刻技艺的原谅色具体的", + "block.blockus.chiseled_red_concrete": "使用了大师级雕刻技艺的红色具体的", + "block.blockus.chiseled_black_concrete": "使用了大师级雕刻技艺的黑色具体的", + "block.blockus.rough_basalt": "粗糙的玄武岩", + "block.blockus.rough_basalt_stairs": "粗糙的玄武岩楼梯", + "block.blockus.rough_basalt_slab": "粗糙的玄武岩半砖", + "block.blockus.polished_basalt_bricks": "使用了打磨工艺进行加工的玄武岩砖", + "block.blockus.polished_basalt_brick_stairs": "使用了打磨工艺进行加工的玄武岩砖楼梯", + "block.blockus.polished_basalt_brick_slab": "使用了打磨工艺进行加工的玄武岩砖半砖", + "block.blockus.polished_basalt_brick_wall": "使用了打磨工艺进行加工的玄武岩砖墙", + "block.blockus.cracked_polished_basalt_bricks": "裂开来的使用了打磨工艺进行加工的玄武岩砖", + "block.blockus.polished_basalt_pillar": "使用了打磨工艺进行加工的玄武岩柱子", + "block.blockus.zigzagged_polished_basalt": "锯齿纹使用了打磨工艺进行加工的玄武岩", + "block.blockus.chiseled_polished_basalt": "使用了大师级雕刻技艺的使用了打磨工艺进行加工的玄武岩", + "block.blockus.polished_basalt_pressure_plate": "使用了打磨工艺进行加工的玄武岩阿姨压一压板", + "block.blockus.polished_basalt_button": "使用了打磨工艺进行加工的玄武岩抱枕", + "block.blockus.polished_basalt_circle_pavement": "环纹使用了打磨工艺进行加工的玄武岩", + "block.blockus.dark_prismarine_pillar": "暗海磷柱子", + "block.blockus.chiseled_dark_prismarine": "使用了大师级雕刻技艺的暗海磷", + "block.blockus.prismarine_pillar": "海磷柱子", + "block.blockus.chiseled_prismarine": "海磷", + "block.blockus.blackstone_door": "非洲石头门", + "block.blockus.blackstone_trapdoor": "非洲石头陷阱门", + "block.blockus.white_colored_tiles": "白色彩色瓦", + "block.blockus.orange_colored_tiles": "橙色彩色瓦", + "block.blockus.magenta_colored_tiles": "品红色彩色瓦", + "block.blockus.light_blue_colored_tiles": "淡蓝色彩色瓦", + "block.blockus.yellow_colored_tiles": "黄色彩色瓦", + "block.blockus.lime_colored_tiles": "酸橙色彩色瓦", + "block.blockus.pink_colored_tiles": "粉色彩色瓦", + "block.blockus.gray_colored_tiles": "灰色彩色瓦", + "block.blockus.light_gray_colored_tiles": "淡灰色彩色瓦", + "block.blockus.cyan_colored_tiles": "青色彩色瓦", + "block.blockus.purple_colored_tiles": "紫色彩色瓦", + "block.blockus.blue_colored_tiles": "蓝色彩色瓦", + "block.blockus.brown_colored_tiles": "棕色彩色瓦", + "block.blockus.green_colored_tiles": "原谅色彩色瓦", + "block.blockus.red_colored_tiles": "红色彩色瓦", + "block.blockus.black_colored_tiles": "黑色彩色瓦", + "block.blockus.orange_white_colored_tiles": "彩色瓦(橙色&白色)", + "block.blockus.magenta_white_colored_tiles": "彩色瓦(品红色&白色)", + "block.blockus.light_blue_white_colored_tiles": "彩色瓦(淡蓝色&白色)", + "block.blockus.yellow_white_colored_tiles": "彩色瓦(黄色&白色)", + "block.blockus.lime_white_colored_tiles": "彩色瓦(酸橙色&白色)", + "block.blockus.pink_white_colored_tiles": "彩色瓦(粉色&白色)", + "block.blockus.gray_white_colored_tiles": "彩色瓦(灰色&白色)", + "block.blockus.light_gray_white_colored_tiles": "彩色瓦(淡灰色&白色)", + "block.blockus.cyan_white_colored_tiles": "彩色瓦(青色&白色)", + "block.blockus.purple_white_colored_tiles": "彩色瓦(紫色&白色)", + "block.blockus.blue_white_colored_tiles": "彩色瓦(蓝色&白色)", + "block.blockus.brown_white_colored_tiles": "彩色瓦(棕色&白色)", + "block.blockus.green_white_colored_tiles": "彩色瓦(原谅色&白色)", + "block.blockus.red_white_colored_tiles": "彩色瓦(红色&白色)", + "block.blockus.black_white_colored_tiles": "彩色瓦(黑色&白色)", + "block.blockus.green_orange_colored_tiles": "彩色瓦(原谅色&橙色)", + "block.blockus.lime_yellow_colored_tiles": "彩色瓦(酸橙色&黄色)", + "block.blockus.light_blue_yellow_colored_tiles": "彩色瓦(淡蓝色&黄色)", + "block.blockus.pink_magenta_colored_tiles": "彩色瓦(粉色&品红色)", + "block.blockus.red_blue_colored_tiles": "彩色瓦(红色&蓝色)", + "block.blockus.blue_cyan_colored_tiles": "彩色瓦(蓝色&青色)", + "block.blockus.black_gray_colored_tiles": "彩色瓦(黑色&灰色)", + "block.blockus.black_red_colored_tiles": "彩色瓦(黑色&红色)", + "block.blockus.black_blue_colored_tiles": "彩色瓦(黑色&蓝色)", + "block.blockus.magenta_black_colored_tiles": "彩色瓦(品红色&黑色)", + "block.blockus.purple_orange_colored_tiles": "彩色瓦(紫色&橙色)", + "block.blockus.purple_blue_colored_tiles": "彩色瓦(紫色&蓝色)", + "block.blockus.green_brown_colored_tiles": "彩色瓦(原谅色&棕色)", + "block.blockus.gray_light_gray_colored_tiles": "彩色瓦(灰色&淡灰色)", + "block.blockus.rainbow_colored_tiles": "彩色瓦(彩虹)", + "block.blockus.bamboo_planks": "た↓け↑板", + "block.blockus.bamboo_door": "た↓け↑门", + "block.blockus.bamboo_slab": "た↓け↑半砖", + "block.blockus.bamboo_stairs": "た↓け↑楼梯", + "block.blockus.bamboo_pressure_plate": "た↓け↑阿姨压一压板", + "block.blockus.bamboo_button": "た↓け↑抱枕", + "block.blockus.bamboo_fence": "た↓け↑栅栏", + "block.blockus.bamboo_fence_gate": "た↓け↑栅栏门", + "block.blockus.bamboo_trapdoor": "た↓け↑陷阱门", + "block.blockus.bamboo_sign": "た↓け↑搞事牌", + "block.blockus.bamboo_wall_sign": "墙上的た↓け↑搞事牌", + "item.blockus.bamboo_boat": "た↓け↑方舟", + "block.blockus.polished_netherrack": "使用了打磨工艺进行加工的尼德兰岩", + "block.blockus.polished_netherrack_stairs": "使用了打磨工艺进行加工的尼德兰岩楼梯", + "block.blockus.polished_netherrack_slab": "使用了打磨工艺进行加工的尼德兰岩半砖", + "block.blockus.netherrack_bricks": "尼德兰岩砖", + "block.blockus.netherrack_brick_stairs": "尼德兰岩砖楼梯", + "block.blockus.netherrack_brick_slab": "尼德兰岩砖半砖", + "block.blockus.netherrack_brick_wall": "尼德兰岩砖墙", + "block.blockus.bluestone": "蓝石", + "block.blockus.bluestone_stairs": "蓝石楼梯", + "block.blockus.bluestone_slab": "蓝石半砖", + "block.blockus.bluestone_tiles": "蓝石瓦", + "block.blockus.bluestone_tile_stairs": "蓝石瓦楼梯", + "block.blockus.bluestone_tile_slab": "蓝石瓦半砖", + "block.blockus.bluestone_tile_wall": "蓝石瓦墙", + "block.blockus.bluestone_pillar": "蓝石柱子", + "block.blockus.bluestone_bricks": "蓝砖石", + "block.blockus.bluestone_brick_slab": "蓝砖石半砖", + "block.blockus.bluestone_brick_stairs": "蓝砖石楼梯", + "block.blockus.bluestone_brick_wall": "蓝砖石墙", + "block.blockus.bluestone_lines": "线纹蓝石", + "block.blockus.bluestone_squares": "方纹蓝石", + "block.blockus.small_bluestone_bricks": "小型蓝砖石", + "block.blockus.small_bluestone_brick_slab": "小型蓝砖石半砖", + "block.blockus.small_bluestone_brick_stairs": "小型蓝砖石楼梯", + "block.blockus.small_bluestone_brick_wall": "小型蓝砖石墙", + "block.blockus.bluestone_circle_pavement": "环纹蓝石", + "block.blockus.chiseled_bluestone": "使用了大师级雕刻技艺的蓝石", + "block.blockus.chiseled_bluestone_pillar": "使用了大师级雕刻技艺的蓝石柱子", + "block.blockus.polished_bluestone": "使用了打磨工艺进行加工的蓝石", + "block.blockus.polished_bluestone_slab": "使用了打磨工艺进行加工的蓝石半砖", + "block.blockus.polished_bluestone_stairs": "使用了打磨工艺进行加工的蓝石楼梯", + "block.blockus.white_patterned_wool": "白色花纹羊毛", + "block.blockus.orange_patterned_wool": "橙色花纹羊毛", + "block.blockus.magenta_patterned_wool": "品红色花纹羊毛", + "block.blockus.light_blue_patterned_wool": "淡蓝色花纹羊毛", + "block.blockus.yellow_patterned_wool": "黄色花纹羊毛", + "block.blockus.lime_patterned_wool": "酸橙色花纹羊毛", + "block.blockus.pink_patterned_wool": "粉色花纹羊毛", + "block.blockus.gray_patterned_wool": "灰色花纹羊毛", + "block.blockus.light_gray_patterned_wool": "淡灰色花纹羊毛", + "block.blockus.cyan_patterned_wool": "青色花纹羊毛", + "block.blockus.purple_patterned_wool": "紫色花纹羊毛", + "block.blockus.blue_patterned_wool": "蓝色花纹羊毛", + "block.blockus.brown_patterned_wool": "棕色花纹羊毛", + "block.blockus.green_patterned_wool": "原谅色花纹羊毛", + "block.blockus.red_patterned_wool": "红色花纹羊毛", + "block.blockus.black_patterned_wool": "黑色花纹羊毛", + "block.blockus.stone_door": "石门", + "block.blockus.stone_trapdoor": "石陷阱门", + "block.blockus.oak_barrel": "橡酒吧桶", + "block.minecraft.barrel": "云杉酒吧桶", + "block.blockus.birch_barrel": "桦酒吧桶", + "block.blockus.jungle_barrel": "丛林酒吧桶", + "block.blockus.acacia_barrel": "相思酒吧桶", + "block.blockus.dark_oak_barrel": "深色橡酒吧桶", + "block.blockus.bamboo_barrel": "た↓け↑酒吧桶", + "block.blockus.love_block": "§4<3", + "block.blockus.purpur_bricks": "珀珀砖", + "block.blockus.purpur_brick_slab": "珀珀砖半砖", + "block.blockus.purpur_brick_stairs": "珀珀砖楼梯", + "block.blockus.purpur_brick_wall": "珀珀砖墙", + "block.blockus.polished_purpur": "使用了打磨工艺进行加工的珀珀块", + "block.blockus.polished_purpur_slab": "使用了打磨工艺进行加工的珀珀半砖", + "block.blockus.polished_purpur_stairs": "使用了打磨工艺进行加工的珀珀楼梯", + "block.blockus.purpur_lines": "线纹珀珀块", + "block.blockus.purpur_squares": "方纹珀珀块", + "block.blockus.small_purpur_bricks": "小型珀珀砖", + "block.blockus.small_purpur_brick_slab": "小型珀珀砖半砖", + "block.blockus.small_purpur_brick_stairs": "小型珀珀砖楼梯", + "block.blockus.small_purpur_brick_wall": "小型珀珀砖墙", + "block.blockus.chiseled_purpur": "使用了大师级雕刻技艺的珀珀块", + "block.blockus.phantom_purpur_block": "IcyPhantom珀珀块", + "block.blockus.phantom_purpur_slab": "IcyPhantom珀珀半砖", + "block.blockus.phantom_purpur_stairs": "IcyPhantom珀珀楼梯", + "block.blockus.phantom_purpur_pillar": "IcyPhantom珀珀柱子", + "block.blockus.phantom_purpur_bricks": "IcyPhantom珀珀砖", + "block.blockus.phantom_purpur_brick_slab": "IcyPhantom珀珀砖半砖", + "block.blockus.phantom_purpur_brick_stairs": "IcyPhantom珀珀砖楼梯", + "block.blockus.phantom_purpur_brick_wall": "IcyPhantom珀珀砖墙", + "block.blockus.polished_phantom_purpur": "使用了打磨工艺进行加工的IcyPhantom珀珀块", + "block.blockus.polished_phantom_purpur_slab": "使用了打磨工艺进行加工的IcyPhantom珀珀半砖", + "block.blockus.polished_phantom_purpur_stairs": "使用了打磨工艺进行加工的IcyPhantom珀珀楼梯", + "block.blockus.phantom_purpur_lines": "线纹IcyPhantom珀珀块", + "block.blockus.phantom_purpur_squares": "方纹IcyPhantom珀珀块", + "block.blockus.small_phantom_purpur_bricks": "小型IcyPhantom珀珀砖", + "block.blockus.small_phantom_purpur_brick_slab": "小型IcyPhantom珀珀砖半砖", + "block.blockus.small_phantom_purpur_brick_stairs": "小型IcyPhantom珀珀砖楼梯", + "block.blockus.small_phantom_purpur_brick_wall": "小型IcyPhantom珀珀砖墙", + "block.blockus.chiseled_phantom_purpur": "使用了大师级雕刻技艺的IcyPhantom珀珀", + "block.blockus.nether_brick_pillar": "尼德兰砖柱子", + "block.blockus.red_nether_brick_pillar": "红色尼德兰砖柱子", + "block.blockus.polished_nether_bricks": "使用了打磨工艺进行加工的尼德兰砖", + "block.blockus.polished_red_nether_bricks": "使用了打磨工艺进行加工的红色尼德兰砖", + "block.blockus.quartz_tiles": "石英瓦", + "block.blockus.quartz_tile_slab": "石英瓦半砖", + "block.blockus.quartz_tile_stairs": "石英瓦楼梯", + "block.blockus.quartz_tile_wall": "石英瓦墙", + "block.blockus.wooden_frame": "木框", + "block.blockus.membrane_block": "IcyPhantom的膜块", + "block.blockus.bze_lantern": "烈焰灯", + "block.blockus.zigzagged_stone_bricks": "锯齿纹砖石", + "block.blockus.zigzagged_andesite": "锯齿纹安山岩", + "block.blockus.zigzagged_diorite": "锯齿纹DIO岩", + "block.blockus.zigzagged_granite": "锯齿纹花岗岩", + "block.blockus.andesite_bricks": "安山岩砖", + "block.blockus.andesite_brick_stairs": "安山岩砖楼梯", + "block.blockus.andesite_brick_slab": "安山岩砖半砖", + "block.blockus.diorite_bricks": "DIO岩砖", + "block.blockus.diorite_brick_stairs": "DIO岩砖楼梯", + "block.blockus.diorite_brick_slab": "DIO岩砖半砖", + "block.blockus.granite_bricks": "花岗岩砖", + "block.blockus.granite_brick_stairs": "大理砖石楼梯", + "block.blockus.granite_brick_slab": "大理砖石半砖", + "block.blockus.caution_block": "警戒方块", + "block.blockus.caution_barrier": "警戒路障", + "block.blockus.road_barrier": "立入禁止", + "block.blockus.charred_nether_bricks": "烧焦的尼德兰砖", + "block.blockus.charred_nether_brick_wall": "烧焦的红色尼德兰砖墙", + "block.blockus.charred_nether_brick_stairs": "烧焦的红色尼德兰砖楼梯", + "block.blockus.charred_nether_brick_slab": "烧焦的红色尼德兰砖半砖", + "block.blockus.charred_nether_brick_pillar": "烧焦的红色尼德兰砖柱子", + "block.blockus.polished_charred_nether_bricks": "使用了打磨工艺进行加工的烧焦的红色尼德兰砖", + "block.blockus.charred_bricks": "烧焦的砖块", + "block.blockus.charred_brick_wall": "烧焦的红色砖墙", + "block.blockus.charred_brick_stairs": "烧焦的红色砖楼梯", + "block.blockus.charred_brick_slab": "烧焦的红色砖半砖", + "block.blockus.zigzagged_charred_bricks": "锯齿纹烧焦的砖块", + "block.blockus.soaked_bricks": "浸润砖", + "block.blockus.soaked_brick_wall": "浸润砖墙", + "block.blockus.soaked_brick_stairs": "浸润砖楼梯", + "block.blockus.soaked_brick_slab": "浸润砖半砖", + "block.blockus.zigzagged_soaked_bricks": "锯齿纹浸润砖", + "block.blockus.sandy_bricks": "沙砖", + "block.blockus.sandy_brick_wall": "沙砖墙", + "block.blockus.sandy_brick_stairs": "沙砖楼梯", + "block.blockus.sandy_brick_slab": "沙砖半砖", + "block.blockus.zigzagged_sandy_bricks": "锯齿纹沙砖", + "block.blockus.large_bricks": "大型砖", + "block.blockus.large_brick_wall": "大型砖墙", + "block.blockus.large_brick_slab": "大型砖半砖", + "block.blockus.large_brick_stairs": "大型砖楼梯", + "block.blockus.zigzagged_bricks": "锯齿纹砖", + "block.blockus.rainbow_glass": "彩虹玻璃", + "block.blockus.rainbow_glass_pane": "彩虹玻璃板", + "block.blockus.beveled_glass": "斜纹玻璃", + "block.blockus.white_beveled_glass": "白色斜纹玻璃", + "block.blockus.orange_beveled_glass": "橙色斜纹玻璃", + "block.blockus.magenta_beveled_glass": "品红色斜纹玻璃", + "block.blockus.light_blue_beveled_glass": "淡蓝色斜纹玻璃", + "block.blockus.yellow_beveled_glass": "黄色斜纹玻璃", + "block.blockus.lime_beveled_glass": "酸橙色斜纹玻璃", + "block.blockus.pink_beveled_glass": "粉色斜纹玻璃", + "block.blockus.light_gray_beveled_glass": "淡灰色斜纹玻璃", + "block.blockus.gray_beveled_glass": "灰色斜纹玻璃", + "block.blockus.cyan_beveled_glass": "青色斜纹玻璃", + "block.blockus.purple_beveled_glass": "紫色斜纹玻璃", + "block.blockus.blue_beveled_glass": "蓝色斜纹玻璃", + "block.blockus.brown_beveled_glass": "棕色斜纹玻璃", + "block.blockus.green_beveled_glass": "原谅色斜纹玻璃", + "block.blockus.red_beveled_glass": "红色斜纹玻璃", + "block.blockus.black_beveled_glass": "黑色斜纹玻璃", + "block.blockus.rainbow_beveled_glass": "彩虹斜纹玻璃", + "block.blockus.beveled_glass_pane": "斜纹玻璃板", + "block.blockus.white_beveled_glass_pane": "白色斜纹玻璃板", + "block.blockus.orange_beveled_glass_pane": "橙色斜纹玻璃板", + "block.blockus.magenta_beveled_glass_pane": "品红色斜纹玻璃板", + "block.blockus.light_blue_beveled_glass_pane": "淡蓝色斜纹玻璃板", + "block.blockus.yellow_beveled_glass_pane": "黄色斜纹玻璃板", + "block.blockus.lime_beveled_glass_pane": "酸橙色斜纹玻璃板", + "block.blockus.pink_beveled_glass_pane": "粉色斜纹玻璃板", + "block.blockus.light_gray_beveled_glass_pane": "淡灰色斜纹玻璃板", + "block.blockus.gray_beveled_glass_pane": "灰色斜纹玻璃板", + "block.blockus.cyan_beveled_glass_pane": "青色斜纹玻璃板", + "block.blockus.purple_beveled_glass_pane": "紫色斜纹玻璃板", + "block.blockus.blue_beveled_glass_pane": "蓝色斜纹玻璃板", + "block.blockus.brown_beveled_glass_pane": "棕色斜纹玻璃板", + "block.blockus.green_beveled_glass_pane": "原谅色斜纹玻璃板", + "block.blockus.red_beveled_glass_pane": "红色斜纹玻璃板", + "block.blockus.black_beveled_glass_pane": "黑色斜纹玻璃板", + "block.blockus.rainbow_beveled_glass_pane": "彩虹斜纹玻璃板", + "block.blockus.tinted_beveled_glass": "见光死斜纹玻璃", + "block.blockus.magma_bricks": "西瓜霜砖石", + "block.blockus.magma_brick_wall": "西瓜霜砖石墙", + "block.blockus.magma_brick_stairs": "西瓜霜砖石楼梯", + "block.blockus.magma_brick_slab": "西瓜霜砖石半砖", + "block.blockus.small_magma_bricks": "小型西瓜霜砖石", + "block.blockus.small_magma_brick_wall": "小型西瓜霜砖石墙", + "block.blockus.small_magma_brick_stairs": "小型西瓜霜砖石楼梯", + "block.blockus.small_magma_brick_slab": "小型西瓜霜砖石半砖", + "block.blockus.chiseled_magma_bricks": "使用了大师级雕刻技艺的西瓜霜砖石", + "block.blockus.chiseled_end_stone_bricks": "使用了大师级雕刻技艺的奶砖", + "block.blockus.zigzagged_end_stone_bricks": "锯齿纹奶砖", + "block.blockus.polished_end_stone": "使用了打磨工艺进行加工的硬奶酪", + "block.blockus.polished_end_stone_stairs": "使用了打磨工艺进行加工的硬奶酪楼梯", + "block.blockus.polished_end_stone_slab": "使用了打磨工艺进行加工的硬奶酪半砖", + "block.blockus.white_glazed_terracotta_pillar": "白色带釉陶瓦柱子", + "block.blockus.orange_glazed_terracotta_pillar": "橙色带釉陶瓦柱子", + "block.blockus.magenta_glazed_terracotta_pillar": "品红色带釉陶瓦柱子", + "block.blockus.light_blue_glazed_terracotta_pillar": "淡蓝色带釉陶瓦柱子", + "block.blockus.yellow_glazed_terracotta_pillar": "黄色带釉陶瓦柱子", + "block.blockus.lime_glazed_terracotta_pillar": "酸橙色带釉陶瓦柱子", + "block.blockus.pink_glazed_terracotta_pillar": "粉色带釉陶瓦柱子", + "block.blockus.light_gray_glazed_terracotta_pillar": "淡灰色带釉陶瓦柱子", + "block.blockus.gray_glazed_terracotta_pillar": "灰色带釉陶瓦柱子", + "block.blockus.cyan_glazed_terracotta_pillar": "青色带釉陶瓦柱子", + "block.blockus.purple_glazed_terracotta_pillar": "紫色带釉陶瓦柱子", + "block.blockus.blue_glazed_terracotta_pillar": "蓝色带釉陶瓦柱子", + "block.blockus.brown_glazed_terracotta_pillar": "棕色带釉陶瓦柱子", + "block.blockus.green_glazed_terracotta_pillar": "原谅色带釉陶瓦柱子", + "block.blockus.red_glazed_terracotta_pillar": "红色带釉陶瓦柱子", + "block.blockus.black_glazed_terracotta_pillar": "黑色带釉陶瓦柱子", + "block.blockus.limestone": "石灰岩", + "block.blockus.limestone_stairs": "石灰岩楼梯", + "block.blockus.limestone_slab": "石灰岩半砖", + "block.blockus.polished_limestone": "使用了打磨工艺进行加工的石灰岩", + "block.blockus.polished_limestone_stairs": "使用了打磨工艺进行加工的石灰岩楼梯", + "block.blockus.polished_limestone_slab": "使用了打磨工艺进行加工的石灰岩半砖", + "block.blockus.limestone_bricks": "石灰岩砖", + "block.blockus.limestone_brick_stairs": "石灰砖楼梯", + "block.blockus.limestone_brick_slab": "石灰砖半砖", + "block.blockus.limestone_brick_wall": "石灰砖墙", + "block.blockus.limestone_tiles": "石灰岩瓦", + "block.blockus.limestone_tile_stairs": "石灰岩瓦楼梯", + "block.blockus.limestone_tile_slab": "石灰岩瓦半砖", + "block.blockus.limestone_tile_wall": "石灰岩瓦墙", + "block.blockus.limestone_pillar": "石灰岩柱子", + "block.blockus.chiseled_limestone_pillar": "使用了大师级雕刻技艺的石灰岩柱子", + "block.blockus.limestone_squares": "方纹石灰岩", + "block.blockus.limestone_lines": "线纹石灰岩", + "block.blockus.small_limestone_bricks": "小型石灰岩砖", + "block.blockus.small_limestone_brick_stairs": "小型石灰砖楼梯", + "block.blockus.small_limestone_brick_slab": "小型石灰砖半砖", + "block.blockus.small_limestone_brick_wall": "小型石灰砖墙", + "block.blockus.chiseled_limestone": "使用了大师级雕刻技艺的石灰岩", + "block.blockus.asphalt": "沥青", + "block.blockus.white_asphalt": "白色沥青", + "block.blockus.orange_asphalt": "橙色沥青", + "block.blockus.magenta_asphalt": "品红色沥青", + "block.blockus.light_blue_asphalt": "淡蓝色沥青", + "block.blockus.yellow_asphalt": "黄色沥青", + "block.blockus.lime_asphalt": "酸橙色沥青", + "block.blockus.pink_asphalt": "粉色沥青", + "block.blockus.light_gray_asphalt": "淡灰色沥青", + "block.blockus.gray_asphalt": "灰色沥青", + "block.blockus.cyan_asphalt": "青色沥青", + "block.blockus.purple_asphalt": "紫色沥青", + "block.blockus.blue_asphalt": "蓝色沥青", + "block.blockus.brown_asphalt": "棕色沥青", + "block.blockus.green_asphalt": "原谅色沥青", + "block.blockus.red_asphalt": "红色沥青", + "block.blockus.rainbow_asphalt": "彩虹沥青", + "block.blockus.asphalt_stairs": "沥青楼梯", + "block.blockus.white_asphalt_stairs": "白色沥青楼梯", + "block.blockus.orange_asphalt_stairs": "橙色沥青楼梯", + "block.blockus.magenta_asphalt_stairs": "品红色沥青楼梯", + "block.blockus.light_blue_asphalt_stairs": "淡蓝色沥青楼梯", + "block.blockus.yellow_asphalt_stairs": "黄色沥青楼梯", + "block.blockus.lime_asphalt_stairs": "酸橙色沥青楼梯", + "block.blockus.pink_asphalt_stairs": "粉色沥青楼梯", + "block.blockus.light_gray_asphalt_stairs": "淡灰色沥青楼梯", + "block.blockus.gray_asphalt_stairs": "灰色沥青楼梯", + "block.blockus.cyan_asphalt_stairs": "青色沥青楼梯", + "block.blockus.purple_asphalt_stairs": "紫色沥青楼梯", + "block.blockus.blue_asphalt_stairs": "蓝色沥青楼梯", + "block.blockus.brown_asphalt_stairs": "棕色沥青楼梯", + "block.blockus.green_asphalt_stairs": "原谅色沥青楼梯", + "block.blockus.red_asphalt_stairs": "红色沥青楼梯", + "block.blockus.asphalt_slab": "沥青半砖", + "block.blockus.white_asphalt_slab": "白色沥青半砖", + "block.blockus.orange_asphalt_slab": "橙色沥青半砖", + "block.blockus.magenta_asphalt_slab": "品红色沥青半砖", + "block.blockus.light_blue_asphalt_slab": "淡蓝色沥青半砖", + "block.blockus.yellow_asphalt_slab": "黄色沥青半砖", + "block.blockus.lime_asphalt_slab": "酸橙色沥青半砖", + "block.blockus.pink_asphalt_slab": "粉色沥青半砖", + "block.blockus.light_gray_asphalt_slab": "淡灰色沥青半砖", + "block.blockus.gray_asphalt_slab": "灰色沥青半砖", + "block.blockus.cyan_asphalt_slab": "青色沥青半砖", + "block.blockus.purple_asphalt_slab": "紫色沥青半砖", + "block.blockus.blue_asphalt_slab": "蓝色沥青半砖", + "block.blockus.brown_asphalt_slab": "棕色沥青半砖", + "block.blockus.green_asphalt_slab": "原谅色沥青半砖", + "block.blockus.red_asphalt_slab": "红色沥青半砖", + "block.blockus.paper_lamp": "纸灯笼", + "block.blockus.redstone_sand": "雷石东沙子子", + "block.blockus.stone_circle_pavement": "环纹石头", + "block.blockus.andesite_circle_pavement": "环纹安山岩", + "block.blockus.diorite_circle_pavement": "环纹DIO岩", + "block.blockus.granite_circle_pavement": "环纹花岗岩", + "block.blockus.limestone_circle_pavement": "环纹石灰岩", + "block.blockus.quartz_circle_pavement": "环纹石英", + "block.blockus.netherrack_circle_pavement": "环纹尼德兰岩", + "block.blockus.prismarine_circle_pavement": "环纹海磷", + "block.blockus.nether_stars_block": "白 金 之 星块", + "block.blockus.obsidian_bricks": "黑曜砖石", + "block.blockus.cracked_obsidian_bricks": "裂开来的黑曜砖石", + "block.blockus.obsidian_brick_stairs": "黑曜砖石楼梯", + "block.blockus.obsidian_brick_slab": "黑曜砖石半砖", + "block.blockus.obsidian_brick_wall": "黑曜砖石墙", + "block.blockus.obsidian_pillar": "黑曜石柱子", + "block.blockus.small_obsidian_bricks": "小型黑曜砖石", + "block.blockus.small_obsidian_brick_stairs": "小型黑曜砖石楼梯", + "block.blockus.small_obsidian_brick_slab": "小型黑曜砖石半砖", + "block.blockus.small_obsidian_brick_wall": "小型黑曜砖石墙", + "block.blockus.obsidian_circle_pavement": "环纹黑曜石", + "block.blockus.obsidian_reinforced_door": "黑曜石强化门", + "block.blockus.obsidian_reinforced_trapdoor": "黑曜石强化陷阱门", + "block.blockus.glowing_obsidian": "发光的黑曜石", + "block.blockus.lava_bricks": "熔岩砖石", + "block.blockus.lava_brick_wall": "熔岩砖石墙", + "block.blockus.lava_brick_stairs": "熔岩砖石楼梯", + "block.blockus.lava_brick_slab": "熔岩砖石半砖", + "block.blockus.chiseled_lava_bricks": "使用了大师级雕刻技艺的熔岩砖石", + "block.blockus.water_bricks": "水砖石", + "block.blockus.water_brick_wall": "水砖石墙", + "block.blockus.water_brick_stairs": "水砖石楼梯", + "block.blockus.water_brick_slab": "水砖石半砖", + "block.blockus.chiseled_water_bricks": "使用了大师级雕刻技艺的水砖石", + "block.blockus.zigzagged_nether_bricks": "锯齿纹尼德兰砖", + "block.blockus.zigzagged_red_nether_bricks": "锯齿纹红色尼德兰砖", + "block.blockus.zigzagged_charred_nether_bricks": "锯齿纹烧焦的尼德兰砖", + "block.blockus.marble": "大理石", + "block.blockus.marble_stairs": "大理石楼梯", + "block.blockus.marble_slab": "大理石半砖", + "block.blockus.polished_marble": "使用了打磨工艺进行加工的大理石", + "block.blockus.polished_marble_stairs": "使用了打磨工艺进行加工的大理石楼梯", + "block.blockus.polished_marble_slab": "使用了打磨工艺进行加工的大理石半砖", + "block.blockus.marble_bricks": "大理砖石", + "block.blockus.marble_brick_stairs": "大理砖石楼梯", + "block.blockus.marble_brick_slab": "大理砖石半砖", + "block.blockus.marble_brick_wall": "大理砖石墙", + "block.blockus.marble_tiles": "大理石瓦", + "block.blockus.marble_tile_stairs": "大理石瓦楼梯", + "block.blockus.marble_tile_slab": "大理石瓦半砖", + "block.blockus.marble_tile_wall": "大理石瓦墙", + "block.blockus.marble_pillar": "大理石柱子", + "block.blockus.marble_squares": "方纹大理石", + "block.blockus.marble_lines": "线纹大理石", + "block.blockus.small_marble_bricks": "小型大理砖石", + "block.blockus.small_marble_brick_stairs": "小型大理砖石楼梯", + "block.blockus.small_marble_brick_slab": "小型大理砖石半砖", + "block.blockus.small_marble_brick_wall": "小型大理砖石墙", + "block.blockus.chiseled_marble_pillar": "使用了大师级雕刻技艺的大理石柱子", + "block.blockus.chiseled_marble": "使用了大师级雕刻技艺的大理石", + "block.blockus.marble_circle_pavement": "环纹大理石", + "block.blockus.rainbow_rose": "彩虹蔷薇", + "block.blockus.potted_rainbow_rose": "彩虹蔷薇", + "item.blockus.rainbow_petal": "彩虹花瓣", + "block.blockus.rainbow_block": "彩虹块", + "block.blockus.rainbow_bricks": "彩虹砖", + "block.blockus.rainbow_brick_wall": "彩虹砖墙", + "block.blockus.rainbow_brick_stairs": "彩虹砖楼梯", + "block.blockus.rainbow_brick_slab": "彩虹砖半砖", + "block.blockus.rainbow_glowstone": "彩虹发光石", + "block.blockus.rainbow_lamp": "彩虹灯", + "block.blockus.rainbow_lamp_lit": "亮着的彩虹灯", + "block.blockus.redstone_lamp_lit": "亮着的雷石东灯", + "block.blockus.white_redstone_lamp": "白色雷石东灯", + "block.blockus.white_redstone_lamp_lit": "亮着的白色雷石东灯", + "block.blockus.orange_redstone_lamp": "橙色雷石东灯", + "block.blockus.orange_redstone_lamp_lit": "亮着的橙色雷石东灯", + "block.blockus.magenta_redstone_lamp": "品红色雷石东灯", + "block.blockus.magenta_redstone_lamp_lit": "亮着的品红色雷石东灯", + "block.blockus.light_blue_redstone_lamp": "淡蓝色雷石东灯", + "block.blockus.light_blue_redstone_lamp_lit": "亮着的淡蓝色雷石东灯", + "block.blockus.yellow_redstone_lamp": "黄色雷石东灯", + "block.blockus.yellow_redstone_lamp_lit": "亮着的黄色雷石东灯", + "block.blockus.lime_redstone_lamp": "酸橙色雷石东灯", + "block.blockus.lime_redstone_lamp_lit": "亮着的酸橙色雷石东灯", + "block.blockus.pink_redstone_lamp": "粉色雷石东灯", + "block.blockus.pink_redstone_lamp_lit": "亮着的粉色雷石东灯", + "block.blockus.gray_redstone_lamp": "灰色雷石东灯", + "block.blockus.gray_redstone_lamp_lit": "亮着的灰色雷石东灯", + "block.blockus.light_gray_redstone_lamp": "淡灰色雷石东灯", + "block.blockus.light_gray_redstone_lamp_lit": "亮着的淡灰色雷石东灯", + "block.blockus.cyan_redstone_lamp": "青色雷石东灯", + "block.blockus.cyan_redstone_lamp_lit": "亮着的青色雷石东灯", + "block.blockus.purple_redstone_lamp": "紫色雷石东灯", + "block.blockus.purple_redstone_lamp_lit": "亮着的紫色雷石东灯", + "block.blockus.blue_redstone_lamp": "蓝色雷石东灯", + "block.blockus.blue_redstone_lamp_lit": "亮着的蓝色雷石东灯", + "block.blockus.brown_redstone_lamp": "棕色雷石东灯", + "block.blockus.brown_redstone_lamp_lit": "亮着的棕色雷石东灯", + "block.blockus.green_redstone_lamp": "原谅色雷石东灯", + "block.blockus.green_redstone_lamp_lit": "亮着的原谅色雷石东灯", + "block.blockus.red_redstone_lamp": "红色雷石东灯", + "block.blockus.red_redstone_lamp_lit": "亮着的红色雷石东灯", + "block.blockus.cod_crate": "《使命召唤》板条箱", + "block.blockus.salmon_crate": "鲑鱼板条箱", + "block.blockus.pufferfish_crate": "泡芙鱼板条箱", + "block.blockus.tropical_fish_crate": "小鱼君板条箱", + "block.blockus.apple_crate": "苹果板条箱", + "block.blockus.golden_apple_crate": "黄油苹果板条箱", + "block.blockus.potato_crate": "育碧服务器板条箱", + "block.blockus.carrot_crate": "胡萝北板条箱", + "block.blockus.golden_carrot_crate": "黄油胡萝北板条箱", + "block.blockus.beetroot_crate": "甜菜根板条箱", + "block.blockus.sweet_berries_crate": "甜莓板条箱", + "block.blockus.glow_berries_crate": "荧光莓板条箱", + "block.blockus.bread_box": "法国面包盒", + "block.blockus.chorus_block": "共鸣块", + "block.blockus.cookie_block": "死扛块", + "block.blockus.oak_small_hedge": "橡木树篱", + "block.blockus.spruce_small_hedge": "云杉木树篱", + "block.blockus.birch_small_hedge": "桦木树篱", + "block.blockus.jungle_small_hedge": "丛林木树篱", + "block.blockus.acacia_small_hedge": "相思木树篱", + "block.blockus.dark_oak_small_hedge": "巧克力树篱", + "block.blockus.honeycomb_bricks": "蜂房砖", + "block.blockus.honeycomb_brick_wall": "蜂房砖墙", + "block.blockus.honeycomb_brick_stairs": "蜂房砖楼梯", + "block.blockus.honeycomb_brick_slab": "蜂房砖半砖", + "block.blockus.charred_planks": "烧焦的木板", + "block.blockus.charred_door": "烧焦的木门", + "block.blockus.charred_slab": "烧焦的木半砖", + "block.blockus.charred_stairs": "烧焦的木楼梯", + "block.blockus.charred_pressure_plate": "烧焦的木阿姨压一压板", + "block.blockus.charred_button": "烧焦的木抱枕", + "block.blockus.charred_fence": "烧焦的栅栏", + "block.blockus.charred_fence_gate": "烧焦的栅栏门", + "block.blockus.charred_trapdoor": "烧焦的木陷阱门", + "block.blockus.charred_barrel": "烧焦的桶", + "block.blockus.charred_sign": "烧焦的搞事牌", + "block.blockus.charred_wall_sign": "墙上的烧焦的搞事牌", + "item.blockus.charred_boat": "烧焦的方舟", + "block.blockus.white_neon": "白色氖", + "block.blockus.orange_neon": "橙色氖", + "block.blockus.magenta_neon": "品红色氖", + "block.blockus.light_blue_neon": "淡蓝色氖", + "block.blockus.yellow_neon": "黄色氖", + "block.blockus.lime_neon": "酸橙色氖", + "block.blockus.pink_neon": "粉色氖", + "block.blockus.gray_neon": "灰色氖", + "block.blockus.light_gray_neon": "淡灰色氖", + "block.blockus.cyan_neon": "青色氖", + "block.blockus.purple_neon": "紫色氖", + "block.blockus.blue_neon": "蓝色氖", + "block.blockus.brown_neon": "棕色氖", + "block.blockus.green_neon": "原谅色氖", + "block.blockus.red_neon": "红色氖", + "block.blockus.black_neon": "黑色氖", + "block.blockus.white_futurneo_block": "白色卷纹块", + "block.blockus.orange_futurneo_block": "橙色卷纹块", + "block.blockus.magenta_futurneo_block": "品红色卷纹块", + "block.blockus.light_blue_futurneo_block": "淡蓝色卷纹块", + "block.blockus.yellow_futurneo_block": "黄色卷纹块", + "block.blockus.lime_futurneo_block": "酸橙色卷纹块", + "block.blockus.pink_futurneo_block": "粉色卷纹块", + "block.blockus.gray_futurneo_block": "灰色卷纹块", + "block.blockus.gray_bright_futurneo_block": "灰亮色卷纹块", + "block.blockus.light_gray_futurneo_block": "淡灰色卷纹块", + "block.blockus.cyan_futurneo_block": "青色卷纹块", + "block.blockus.purple_futurneo_block": "紫色卷纹块", + "block.blockus.blue_futurneo_block": "蓝色卷纹块", + "block.blockus.brown_futurneo_block": "棕色卷纹块", + "block.blockus.green_futurneo_block": "原谅色卷纹块", + "block.blockus.red_futurneo_block": "红色卷纹块", + "block.blockus.black_futurneo_block": "黑色卷纹块", + "block.blockus.rainbow_futurneo_block": "彩色卷纹块", + "block.blockus.iron_gate": "老铁大门", + "block.blockus.golden_gate": "黄油大门", + "block.blockus.white_oak_planks": "白色橡木木板", + "block.blockus.white_oak_door": "白色橡木门", + "block.blockus.white_oak_slab": "白色橡木半砖", + "block.blockus.white_oak_stairs": "白色橡木楼梯", + "block.blockus.white_oak_pressure_plate": "白色橡木阿姨压一压板", + "block.blockus.white_oak_button": "白色橡木抱枕", + "block.blockus.white_oak_fence": "白色橡木栅栏", + "block.blockus.white_oak_fence_gate": "白色橡木栅栏门", + "block.blockus.white_oak_trapdoor": "白色橡木陷阱门", + "block.blockus.white_oak_sign": "白色橡木搞事牌", + "block.blockus.white_oak_wall_sign": "墙上的白色橡木搞事牌", + "item.blockus.white_oak_boat": "白色橡木方舟", + "block.blockus.white_oak_log": "白色橡木日志", + "block.blockus.white_oak_wood": "白色橡木", + "block.blockus.stripped_white_oak_log": "去皮白色橡木日志", + "block.blockus.stripped_white_oak_wood": "去皮白色橡木", + "block.blockus.white_oak_leaves": "白色橡木树叶", + "block.blockus.white_oak_sapling": "白色橡木宝宝", + "block.blockus.potted_white_oak_sapling": "白色橡树宝宝盆栽", + "block.blockus.white_oak_small_hedge": "白色橡木树篱", + "block.blockus.white_oak_barrel": "白色橡酒吧桶", + "block.blockus.lantern_block": "欧式灯块", + "block.blockus.polished_andesite_pillar": "使用了打磨工艺进行加工的安山岩柱子", + "block.blockus.polished_diorite_pillar": "使用了打磨工艺进行加工的DIO岩柱子", + "block.blockus.polished_granite_pillar": "使用了打磨工艺进行加工的花岗岩柱子", + "block.blockus.end_stone_pillar": "硬奶酪柱子", + "block.blockus.small_end_stone_bricks": "小型奶砖", + "block.blockus.small_end_stone_brick_stairs": "小型奶砖楼梯", + "block.blockus.small_end_stone_brick_slab": "小型奶砖半砖", + "block.blockus.small_end_stone_brick_wall": "小型奶砖墙", + "block.blockus.cracked_andesite_bricks": "裂开来的安山岩砖", + "block.blockus.cracked_diorite_bricks": "裂开来的DIO岩砖", + "block.blockus.cracked_granite_bricks": "裂开来的花岗岩砖", + "block.blockus.cracked_end_stone_bricks": "裂开来的奶砖", + "block.blockus.chiseled_andesite_bricks": "使用了大师级雕刻技艺的安山岩砖", + "block.blockus.chiseled_diorite_bricks": "使用了大师级雕刻技艺的DIO岩砖", + "block.blockus.chiseled_granite_bricks": "使用了大师级雕刻技艺的花岗岩砖", + "block.blockus.teal_nether_bricks": "蓝绿色尼德兰砖", + "block.blockus.teal_nether_brick_slab": "蓝绿色尼德兰砖半砖", + "block.blockus.teal_nether_brick_stairs": "蓝绿色尼德兰砖楼梯", + "block.blockus.teal_nether_brick_wall": "蓝绿色尼德兰砖墙", + "block.blockus.polished_teal_nether_bricks": "使用了打磨工艺进行加工的蓝绿色尼德兰砖", + "block.blockus.teal_nether_brick_pillar": "蓝绿色尼德兰砖柱子", + "block.blockus.weight_storage_cube": "储重块", + "block.blockus.companion_cube": "同伴块", + "block.blockus.soul_o_lantern": "亡魂,噢!灯笼!", + "block.blockus.large_flower_pot": "大fa♂盆", + "block.blockus.potted_rose_bush": "你比蔷薇丛更美丽盆栽", + "block.blockus.potted_lilac": "丁香盆栽", + "block.blockus.potted_peony": "牡丹盆栽", + "block.blockus.potted_large_fern": "妈的,蕨了!(大型)盆栽", + "block.blockus.potted_oak": "橡树盆栽", + "block.blockus.potted_spruce": "云杉树盆栽", + "block.blockus.potted_birch": "白桦树盆栽", + "block.blockus.potted_jungle": "丛林树盆栽", + "block.blockus.potted_acacia": "相思树盆栽", + "block.blockus.potted_dark_oak": "巧克力盆栽", + "block.blockus.potted_white_oak": "白色橡树盆栽", + "block.blockus.potted_huge_red_mushroom": "大型红色伞伞盆栽", + "block.blockus.potted_huge_brown_mushroom": "大型棕色伞伞盆栽", + "block.blockus.potted_huge_crimson_fungus": "大型绯红菌盆栽", + "block.blockus.potted_huge_warped_fungus": "大型幽蓝菌盆栽", + "block.blockus.potted_cactus_large": "大型拥抱死亡盆栽", + "block.blockus.potted_bamboo_large": "大型た↓け↑盆栽", + "block.blockus.potted_azalea_large": "大型杜鹃花丛盆栽", + "block.blockus.potted_flowering_azalea_large": "大型开fa♂的杜鹃花丛盆栽", + "block.blockus.soul_lantern_block": "加速欧式灯块", + "block.blockus.golden_chain": "黄油铁 索 连 环", + "block.blockus.golden_bars": "黄油神奇水管", + "block.blockus.crimson_warty_blackstone_bricks": "绯红疣非洲砖石", + "block.blockus.crimson_warty_blackstone_brick_slab": "绯红疣非洲砖石半砖", + "block.blockus.crimson_warty_blackstone_brick_stairs": "绯红疣非洲砖石楼梯", + "block.blockus.crimson_warty_blackstone_brick_wall": "绯红疣非洲砖石墙", + "block.blockus.warped_warty_blackstone_bricks": "幽蓝疣非洲砖石", + "block.blockus.warped_warty_blackstone_brick_slab": "幽蓝疣非洲砖石半砖", + "block.blockus.warped_warty_blackstone_brick_stairs": "幽蓝疣非洲砖石楼梯", + "block.blockus.warped_warty_blackstone_brick_wall": "幽蓝疣非洲砖石墙", + "block.blockus.zigzagged_teal_nether_bricks": "锯齿纹蓝绿色尼德兰砖", + "block.blockus.zigzagged_polished_blackstone": "锯齿纹使用了打磨工艺进行加工的非洲砖石", + "block.blockus.crimson_barrel": "绯红酒吧桶", + "block.blockus.warped_barrel": "幽蓝酒吧桶", + "block.blockus.polished_blackstone_pillar": "使用了打磨工艺进行加工的非洲石头柱子", + "block.blockus.polished_blackstone_circle_pavement": "环纹使用了打磨工艺进行加工的非洲石头", + "block.blockus.lava_polished_blackstone_bricks": "使用了打磨工艺进行加工的熔岩非洲砖石", + "block.blockus.lava_polished_blackstone_wall": "使用了打磨工艺进行加工的熔岩非洲砖石墙", + "block.blockus.lava_polished_blackstone_stairs": "使用了打磨工艺进行加工的熔岩非洲砖石楼梯", + "block.blockus.lava_polished_blackstone_slab": "使用了打磨工艺进行加工的熔岩非洲砖石半砖", + "block.blockus.chiseled_lava_polished_blackstone": "使用了大师级雕刻技艺的使用了打磨工艺进行加工的熔岩非洲石头", + "block.blockus.oak_timber_frame": "橡木木质框架", + "block.blockus.spruce_timber_frame": "云杉木木质框架", + "block.blockus.birch_timber_frame": "桦木木质框架", + "block.blockus.jungle_timber_frame": "丛林木木质框架", + "block.blockus.acacia_timber_frame": "相思木木质框架", + "block.blockus.dark_oak_timber_frame": "巧克力木质框架", + "block.blockus.charred_timber_frame": "烧焦的木质框架", + "block.blockus.white_oak_timber_frame": "白色橡木木质框架", + "block.blockus.bamboo_timber_frame": "た↓け↑木质框架", + "block.blockus.crimson_timber_frame": "绯红木质框架", + "block.blockus.warped_timber_frame": "幽蓝木质框架", + "block.blockus.oak_diagonal_timber_frame": "橡木对角木质框架", + "block.blockus.spruce_diagonal_timber_frame": "云杉木对角木质框架", + "block.blockus.birch_diagonal_timber_frame": "桦木对角木质框架", + "block.blockus.jungle_diagonal_timber_frame": "丛林木对角木质框架", + "block.blockus.acacia_diagonal_timber_frame": "相思木对角木质框架", + "block.blockus.dark_oak_diagonal_timber_frame": "巧克力对角木质框架", + "block.blockus.charred_diagonal_timber_frame": "烧焦的对角木质框架", + "block.blockus.white_oak_diagonal_timber_frame": "白色橡木对角木质框架", + "block.blockus.bamboo_diagonal_timber_frame": "た↓け↑对角木质框架", + "block.blockus.crimson_diagonal_timber_frame": "绯红对角木质框架", + "block.blockus.warped_diagonal_timber_frame": "幽蓝对角木质框架", + "block.blockus.oak_cross_timber_frame": "橡木十字木质框架", + "block.blockus.spruce_cross_timber_frame": "云杉木十字木质框架", + "block.blockus.birch_cross_timber_frame": "桦木十字木质框架", + "block.blockus.jungle_cross_timber_frame": "丛林木十字木质框架", + "block.blockus.acacia_cross_timber_frame": "相思木十字木质框架", + "block.blockus.dark_oak_cross_timber_frame": "巧克力十字木质框架", + "block.blockus.charred_cross_timber_frame": "烧焦的十字木质框架", + "block.blockus.white_oak_cross_timber_frame": "白色橡木十字木质框架", + "block.blockus.bamboo_cross_timber_frame": "た↓け↑十字木质框架", + "block.blockus.crimson_cross_timber_frame": "绯红十字木质框架", + "block.blockus.warped_cross_timber_frame": "幽蓝十字木质框架", + "block.blockus.shingles": "卵石", + "block.blockus.white_shingles": "白色卵石", + "block.blockus.orange_shingles": "橙色卵石", + "block.blockus.magenta_shingles": "品红色卵石", + "block.blockus.light_blue_shingles": "淡蓝色卵石", + "block.blockus.yellow_shingles": "黄色卵石", + "block.blockus.lime_shingles": "酸橙色卵石", + "block.blockus.pink_shingles": "粉色卵石", + "block.blockus.light_gray_shingles": "淡灰色卵石", + "block.blockus.gray_shingles": "灰色卵石", + "block.blockus.cyan_shingles": "青色卵石", + "block.blockus.purple_shingles": "紫色卵石", + "block.blockus.blue_shingles": "蓝色卵石", + "block.blockus.brown_shingles": "棕色卵石", + "block.blockus.green_shingles": "原谅色卵石", + "block.blockus.red_shingles": "红色卵石", + "block.blockus.black_shingles": "黑色卵石", + "block.blockus.shingles_stairs": "卵石楼梯", + "block.blockus.white_shingles_stairs": "白色卵石楼梯", + "block.blockus.orange_shingles_stairs": "橙色卵石楼梯", + "block.blockus.magenta_shingles_stairs": "品红色卵石楼梯", + "block.blockus.light_blue_shingles_stairs": "淡蓝色卵石楼梯", + "block.blockus.yellow_shingles_stairs": "黄色卵石楼梯", + "block.blockus.lime_shingles_stairs": "酸橙色卵石楼梯", + "block.blockus.pink_shingles_stairs": "粉色卵石楼梯", + "block.blockus.light_gray_shingles_stairs": "淡灰色卵石楼梯", + "block.blockus.gray_shingles_stairs": "灰色卵石楼梯", + "block.blockus.cyan_shingles_stairs": "青色卵石楼梯", + "block.blockus.purple_shingles_stairs": "紫色卵石楼梯", + "block.blockus.blue_shingles_stairs": "蓝色卵石楼梯", + "block.blockus.brown_shingles_stairs": "棕色卵石楼梯", + "block.blockus.green_shingles_stairs": "原谅色卵石楼梯", + "block.blockus.red_shingles_stairs": "红色卵石楼梯", + "block.blockus.black_shingles_stairs": "黑色卵石楼梯", + "block.blockus.shingles_slab": "卵石半砖", + "block.blockus.white_shingles_slab": "白色卵石半砖", + "block.blockus.orange_shingles_slab": "橙色卵石半砖", + "block.blockus.magenta_shingles_slab": "品红色卵石半砖", + "block.blockus.light_blue_shingles_slab": "淡蓝色卵石半砖", + "block.blockus.yellow_shingles_slab": "黄色卵石半砖", + "block.blockus.lime_shingles_slab": "酸橙色卵石半砖", + "block.blockus.pink_shingles_slab": "粉色卵石半砖", + "block.blockus.light_gray_shingles_slab": "淡灰色卵石半砖", + "block.blockus.gray_shingles_slab": "灰色卵石半砖", + "block.blockus.cyan_shingles_slab": "青色卵石半砖", + "block.blockus.purple_shingles_slab": "紫色卵石半砖", + "block.blockus.blue_shingles_slab": "蓝色卵石半砖", + "block.blockus.brown_shingles_slab": "棕色卵石半砖", + "block.blockus.green_shingles_slab": "原谅色卵石半砖", + "block.blockus.red_shingles_slab": "红色卵石半砖", + "block.blockus.black_shingles_slab": "黑色卵石半砖", + "block.blockus.oak_small_logs": "小型橡木日志", + "block.blockus.spruce_small_logs": "小型云杉木日志", + "block.blockus.birch_small_logs": "小型桦木日志", + "block.blockus.jungle_small_logs": "小型丛林木日志", + "block.blockus.acacia_small_logs": "小型相思木日志", + "block.blockus.dark_oak_small_logs": "小型巧克力日志", + "block.blockus.white_oak_small_logs": "小型白色橡木日志", + "block.blockus.crimson_small_stems": "小型绯红菌柄", + "block.blockus.warped_small_stems": "小型幽蓝菌柄", + "block.blockus.thatch": "茅草", + "block.blockus.thatch_stairs": "茅草楼梯", + "block.blockus.thatch_slab": "茅草半砖", + "block.blockus.iron_plating": "老铁板块", + "block.blockus.iron_plating_stairs": "老铁板楼梯", + "block.blockus.iron_plating_slab": "老铁板半砖", + "block.blockus.gold_plating": "黄油板", + "block.blockus.gold_plating_stairs": "黄油板楼梯", + "block.blockus.gold_plating_slab": "黄油板半砖", + "block.blockus.path": "路径", + "block.blockus.netherite_stairs": "下界玄素楼梯", + "block.blockus.netherite_slab": "下界玄素半砖", + "block.blockus.sturdy_stone": "硬石头", + "block.blockus.sturdy_blackstone": "硬非洲石头", + "block.blockus.polished_andesite_pressure_plate": "使用了打磨工艺进行加工的安山岩阿姨压一压板", + "block.blockus.polished_andesite_button": "使用了打磨工艺进行加工的安山岩抱枕", + "block.blockus.polished_granite_pressure_plate": "使用了打磨工艺进行加工的花岗岩阿姨压一压板", + "block.blockus.polished_granite_button": "使用了打磨工艺进行加工的花岗岩抱枕", + "block.blockus.polished_diorite_pressure_plate": "使用了打磨工艺进行加工的DIO岩阿姨压一压板", + "block.blockus.polished_diorite_button": "使用了打磨工艺进行加工的DIO岩抱枕", + "block.blockus.limestone_pressure_plate": "石灰岩阿姨压一压板", + "block.blockus.limestone_button": "石灰岩抱枕", + "block.blockus.marble_pressure_plate": "大理岩阿姨压一压板", + "block.blockus.marble_button": "大理岩抱枕", + "block.blockus.bluestone_pressure_plate": "蓝石阿姨压一压板", + "block.blockus.bluestone_button": "蓝石抱枕", + "block.blockus.polished_netherrack_pressure_plate": "使用了打磨工艺进行加工的尼德兰岩阿姨压一压板", + "block.blockus.polished_netherrack_button": "使用了打磨工艺进行加工的尼德兰岩抱枕", + "block.blockus.polished_end_stone_pressure_plate": "使用了打磨工艺进行加工的硬奶酪阿姨压一压板", + "block.blockus.polished_end_stone_button": "使用了打磨工艺进行加工的硬奶酪抱枕", + "block.blockus.snow_bricks": "思诺砖", + "block.blockus.snow_brick_wall": "思诺砖墙", + "block.blockus.snow_brick_stairs": "思诺砖楼梯", + "block.blockus.snow_brick_slab": "思诺砖半砖", + "block.blockus.snow_pillar": "思诺柱子", + "block.blockus.ice_bricks": "冰砖", + "block.blockus.ice_brick_wall": "冰砖墙", + "block.blockus.ice_pillar": "冰柱子", + "block.blockus.purpur_decorated_end_stone": "珀珀饰硬奶酪", + "block.blockus.phantom_purpur_decorated_end_stone": "IcyPhantom珀珀饰硬奶酪", + "block.blockus.lapis_decorated_sandstone": "蓝宝石饰砂岩", + "block.blockus.lapis_decorated_red_sandstone": "蓝宝石饰红砂岩", + "block.blockus.lapis_decorated_soul_sandstone": "蓝宝石饰亡魂砂岩", + "block.blockus.gold_decorated_sandstone": "黄油饰砂岩", + "block.blockus.gold_decorated_red_sandstone": "黄油饰红砂岩", + "block.blockus.gold_decorated_soul_sandstone": "黄油饰亡魂砂岩", + "block.blockus.gold_decorated_polished_blackstone": "黄油饰使用了打磨工艺进行加工的非洲石头", + "block.blockus.warped_small_hedge": "幽蓝树篱", + "block.blockus.crimson_small_hedge": "绯红树林篱", + "block.blockus.andesite_brick_wall": "安山岩砖墙", + "block.blockus.diorite_brick_wall": "DIO岩砖墙", + "block.blockus.granite_brick_wall": "大理砖石墙", + "block.blockus.limestone_wall": "石灰岩墙", + "block.blockus.marble_wall": "大理岩墙", + "block.blockus.bluestone_wall": "蓝石墙", + "block.minecraft.nether_wart_block": "绯红疣块", + "block.blockus.legacy_bricks": "远古砖", + "block.blockus.legacy_stonecutter": "远古石头刽子手", + "block.blockus.legacy_grass_block": "远古草(一种方块)", + "block.blockus.legacy_first_grass_block": "最远古草(一种方块)", + "block.blockus.legacy_leaves": "远古树叶", + "block.blockus.legacy_log": "远古木头", + "block.blockus.legacy_sapling": "远古树宝宝", + "block.blockus.legacy_gravel": "远古氵少石乐", + "block.blockus.legacy_cobblestone": "远古圆石", + "block.blockus.legacy_first_cobblestone": "最远古圆石", + "block.blockus.legacy_mossy_cobblestone": "远古原谅圆石", + "block.blockus.legacy_iron_block": "远古老铁方块", + "block.blockus.legacy_gold_block": "远古黄油方块", + "block.blockus.legacy_explosion_proof_gold_block": "远古防爆黄油方块", + "block.blockus.legacy_diamond_block": "远古祖安石方块", + "block.blockus.legacy_coal_block": "远古非洲方块", + "block.blockus.legacy_lapis_block": "远古蓝宝石方块", + "block.blockus.legacy_sponge": "远古黄 色 大 发 糕", + "block.blockus.legacy_crying_obsidian": "远古大 喊 大 叫 黑 曜 石", + "block.blockus.legacy_glowing_obsidian": "远古发光的黑曜石", + "block.blockus.legacy_glowstone": "远古发光石", + "block.blockus.legacy_nether_reactor_core": "远古尼德兰反应核", + "block.blockus.legacy_planks": "远古木板", + "block.blockus.potted_legacy_tree": "远古树盆栽", + "block.blockus.potted_legacy_sapling": "远古树宝宝盆栽", + "block.blockus.azalea_small_hedge": "杜鹃花丛树篱", + "block.blockus.azalea_small_hedge_flowers": "开fa♂的杜鹃花丛树篱", + "block.blockus.moss_small_hedge": "MOSS树篱", + "block.blockus.polished_dripstone": "使用了打磨工艺进行加工的滴水石块", + "block.blockus.polished_dripstone_stairs": "使用了打磨工艺进行加工的滴水石楼梯", + "block.blockus.polished_dripstone_slab": "使用了打磨工艺进行加工的滴水石半砖", + "block.blockus.dripstone_bricks": "滴水砖石", + "block.blockus.dripstone_brick_stairs": "滴水砖石楼梯", + "block.blockus.dripstone_brick_slab": "滴水砖石半砖", + "block.blockus.dripstone_brick_wall": "滴水砖石墙", + "block.blockus.cracked_dripstone_bricks": "裂开来的滴水砖石", + "block.blockus.chiseled_dripstone": "使用了大师级雕刻技艺的滴水石", + "block.blockus.dripstone_pillar": "滴水石柱子", + "block.blockus.polished_tuff": "使用了打磨工艺进行加工的凝灰岩", + "block.blockus.polished_tuff_stairs": "使用了打磨工艺进行加工的凝灰岩楼梯", + "block.blockus.polished_tuff_slab": "使用了打磨工艺进行加工的凝灰岩半砖", + "block.blockus.tuff_bricks": "凝灰岩砖", + "block.blockus.tuff_brick_stairs": "凝灰岩砖楼梯", + "block.blockus.tuff_brick_slab": "凝灰岩砖半砖", + "block.blockus.tuff_brick_wall": "凝灰岩砖墙", + "block.blockus.cracked_tuff_bricks": "裂开来的凝灰岩砖", + "block.blockus.chiseled_tuff": "使用了大师级雕刻技艺的凝灰岩", + "block.blockus.tuff_pillar": "凝灰岩柱子", + "block.blockus.zigzagged_tuff": "锯齿纹凝灰岩砖", + "block.blockus.tuff_circle_pavement": "环纹凝灰岩", + "block.blockus.polished_amethyst": "使用了打磨工艺进行加工的紫水晶", + "block.blockus.polished_amethyst_stairs": "使用了打磨工艺进行加工的紫水晶楼梯", + "block.blockus.polished_amethyst_slab": "使用了打磨工艺进行加工的紫水晶半砖", + "block.blockus.amethyst_bricks": "紫水晶砖", + "block.blockus.amethyst_brick_stairs": "紫水晶砖楼梯", + "block.blockus.amethyst_brick_slab": "紫水晶砖半砖", + "block.blockus.amethyst_brick_wall": "紫水晶砖墙", + "block.blockus.chiseled_amethyst": "使用了大师级雕刻技艺的紫水晶", + "block.blockus.amethyst_pillar": "紫水晶柱子", + "block.blockus.polished_tuff_pressure_plate": "使用了打磨工艺进行加工的凝灰岩阿姨压一压板", + "block.blockus.polished_tuff_button": "使用了打磨工艺进行加工的凝灰岩抱枕", + "block.blockus.mossy_deepslate_bricks": "原谅深♂砖石", + "block.blockus.mossy_deepslate_brick_stairs": "深♂砖石楼梯", + "block.blockus.mossy_deepslate_brick_slab": "深♂砖石半砖", + "block.blockus.mossy_deepslate_brick_wall": "原谅深♂砖石墙", + "block.blockus.deepslate_pillar": "深♂石柱子", + "block.blockus.zigzagged_deepslate": "锯齿纹深♂砖石", + "block.blockus.deepslate_circle_pavement": "环纹深♂石", + "block.blockus.sturdy_deepslate": "硬深♂石", + "block.blockus.polished_deepslate_pressure_plate": "使用了打磨工艺进行加工的深♂石阿姨压一压板", + "block.blockus.polished_deepslate_button": "使用了打磨工艺进行加工的深♂石抱枕", + "block.blockus.viridite": "青绿泥石块", + "block.blockus.viridite_stairs": "青绿泥石楼梯", + "block.blockus.viridite_slab": "青绿泥石半砖", + "block.blockus.viridite_wall": "青绿泥石墙", + "block.blockus.polished_viridite": "使用了打磨工艺进行加工的青绿泥石块", + "block.blockus.polished_viridite_stairs": "使用了打磨工艺进行加工的青绿泥石楼梯", + "block.blockus.polished_viridite_slab": "使用了打磨工艺进行加工的青绿泥石半砖", + "block.blockus.viridite_bricks": "青绿泥砖石", + "block.blockus.viridite_brick_stairs": "青绿泥砖石楼梯", + "block.blockus.viridite_brick_slab": "青绿泥砖石半砖", + "block.blockus.viridite_brick_wall": "青绿泥砖石墙", + "block.blockus.viridite_tiles": "青绿泥石瓦", + "block.blockus.viridite_tile_stairs": "青绿泥石瓦楼梯", + "block.blockus.viridite_tile_slab": "青绿泥石瓦半砖", + "block.blockus.viridite_tile_wall": "青绿泥石瓦墙", + "block.blockus.viridite_pillar": "青绿泥石柱子", + "block.blockus.viridite_squares": "方纹青绿泥石", + "block.blockus.small_viridite_bricks": "小型青绿泥砖石", + "block.blockus.small_viridite_brick_stairs": "小型青绿泥砖石楼梯", + "block.blockus.small_viridite_brick_slab": "小型青绿泥砖石半砖", + "block.blockus.small_viridite_brick_wall": "小型青绿泥砖石墙", + "block.blockus.chiseled_viridite": "使用了大师级雕刻技艺的青绿泥石块", + "block.blockus.chiseled_viridite_pillar": "使用了大师级雕刻技艺的青绿泥石柱子", + "block.blockus.viridite_circular_paving": "环纹青绿泥石", + "block.blockus.viridite_lines": "线纹青绿泥石", + "block.blockus.viridite_pressure_plate": "青绿泥石阿姨压一压板", + "block.blockus.viridite_button": "青绿泥石抱枕", + "block.blockus.herringbone_oak_planks": "人字形橡木木板", + "block.blockus.herringbone_spruce_planks": "人字形云杉木板", + "block.blockus.herringbone_birch_planks": "人字形桦木木板", + "block.blockus.herringbone_jungle_planks": "人字形丛林木板", + "block.blockus.herringbone_acacia_planks": "人字形相思木板", + "block.blockus.herringbone_dark_oak_planks": "人字形巧克力木板", + "block.blockus.herringbone_white_oak_planks": "人字形白色橡木木板", + "block.blockus.herringbone_bamboo_planks": "人字形た↓け↑板", + "block.blockus.herringbone_charred_planks": "人字形烧焦的木板", + "block.blockus.herringbone_crimson_planks": "人字形绯红木板", + "block.blockus.herringbone_warped_planks": "人字形幽蓝木板", + "block.blockus.stone_tiles": "石头瓦", + "block.blockus.stone_tile_slab": "石头瓦半砖", + "block.blockus.stone_tile_stairs": "石头瓦楼梯", + "block.blockus.stone_tile_wall": "石头瓦墙", + "block.blockus.polished_blackstone_tiles": "使用了打磨工艺进行加工的非洲石头瓦", + "block.blockus.polished_blackstone_tile_slab": "使用了打磨工艺进行加工的非洲石头瓦半砖", + "block.blockus.polished_blackstone_tile_stairs": "使用了打磨工艺进行加工的非洲石头瓦楼梯", + "block.blockus.polished_blackstone_tile_wall": "使用了打磨工艺进行加工的非洲石头瓦墙", + "block.blockus.stone_tile_column": "石头瓦楹", + "block.blockus.polished_blackstone_tile_column": "使用了打磨工艺进行加工的非洲石头瓦楹", + "block.blockus.andesite_brick_column": "安山岩砖楹", + "block.blockus.diorite_brick_column": "DIO岩砖楹", + "block.blockus.granite_brick_column": "花岗岩砖楹", + "block.blockus.dripstone_brick_column": "滴水砖石楹", + "block.blockus.tuff_brick_column": "凝灰岩砖楹", + "block.blockus.mossy_deepslate_brick_column": "深♂砖石楹", + "block.blockus.crimson_warty_blackstone_brick_column": "绯红疣非洲砖石楹", + "block.blockus.warped_warty_blackstone_brick_column": "扭曲疣非洲砖石楹", + "block.blockus.polished_basalt_brick_column": "使用了打磨工艺进行加工的玄武岩砖楹", + "block.blockus.limestone_column": "石灰岩楹", + "block.blockus.limestone_brick_column": "石灰岩砖楹", + "block.blockus.small_limestone_brick_column": "小型石灰岩转楹", + "block.blockus.limestone_tile_column": "石灰岩瓦楹", + "block.blockus.marble_column": "大理岩楹", + "block.blockus.marble_brick_column": "大理岩砖楹", + "block.blockus.small_marble_brick_column": "小型大理岩转楹", + "block.blockus.marble_tile_column": "大理岩瓦楹", + "block.blockus.bluestone_column": "蓝石楹", + "block.blockus.bluestone_brick_column": "蓝砖石楹", + "block.blockus.bluestone_tile_column": "蓝石瓦楹", + "block.blockus.small_bluestone_brick_column": "小型蓝石转楹", + "block.blockus.viridite_column": "青绿泥石楹", + "block.blockus.viridite_brick_column": "青绿泥砖石楹", + "block.blockus.viridite_tile_column": "青绿泥石瓦楹", + "block.blockus.small_viridite_brick_column": "小型青绿泥砖石楹", + "block.blockus.lava_brick_column": "熔岩砖石楹", + "block.blockus.lava_polished_blackstone_brick_column": "使用了打磨工艺进行加工的非洲砖石西瓜霜楹", + "block.blockus.water_brick_column": "水砖石楹", + "block.blockus.snow_brick_column": "思诺砖楹", + "block.blockus.ice_brick_column": "冰砖楹", + "block.blockus.magma_brick_column": "西瓜霜砖石楹", + "block.blockus.small_magma_brick_column": "小型西瓜霜砖石楹", + "block.blockus.blaze_brick_column": "烈焰砖楹", + "block.blockus.netherrack_brick_column": "尼德兰岩砖楹", + "block.blockus.charred_nether_brick_column": "烧焦的尼德兰砖楹", + "block.blockus.teal_nether_brick_column": "蓝绿色尼德兰砖楹", + "block.blockus.obsidian_brick_column": "黑曜砖石楹", + "block.blockus.small_obsidian_brick_column": "小型黑曜砖石楹", + "block.blockus.quartz_tile_column": "石英瓦楹", + "block.blockus.large_brick_column": "大型砖楹", + "block.blockus.soaked_brick_column": "浸润砖楹", + "block.blockus.sandy_brick_column": "沙砖楹", + "block.blockus.charred_brick_column": "烧焦的砖楹", + "block.blockus.sandstone_brick_column": "砂岩砖楹", + "block.blockus.small_sandstone_brick_column": "小型砂岩砖楹", + "block.blockus.red_sandstone_brick_column": "红砂岩砖楹", + "block.blockus.small_red_sandstone_brick_column": "小型红砂岩砖楹", + "block.blockus.soul_sandstone_column": "亡魂砂岩楹", + "block.blockus.soul_sandstone_brick_column": "亡魂砂岩砖楹", + "block.blockus.small_soul_sandstone_brick_column": "小型亡魂砂岩砖楹", + "block.blockus.honeycomb_brick_column": "蜂房砖楹", + "block.blockus.purpur_brick_column": "珀珀砖楹", + "block.blockus.small_purpur_brick_column": "小型珀珀砖楹", + "block.blockus.small_end_stone_brick_column": "小型奶砖楹", + "block.blockus.phantom_purpur_brick_column": "IcyPhantom珀珀砖楹", + "block.blockus.small_phantom_purpur_brick_column": "小型IcyPhantom珀珀砖楹", + "block.blockus.rainbow_brick_column": "彩虹砖楹", + "block.blockus.white_concrete_brick_column": "白色具体的砖楹", + "block.blockus.orange_concrete_brick_column": "橙色具体的砖楹", + "block.blockus.magenta_concrete_brick_column": "品红色具体的砖楹", + "block.blockus.light_blue_concrete_brick_column": "淡蓝色具体的砖楹", + "block.blockus.yellow_concrete_brick_column": "黄色具体的砖楹", + "block.blockus.lime_concrete_brick_column": "酸橙色具体的砖楹", + "block.blockus.pink_concrete_brick_column": "粉色具体的砖楹", + "block.blockus.gray_concrete_brick_column": "灰色具体的砖楹", + "block.blockus.light_gray_concrete_brick_column": "淡灰色具体的砖楹", + "block.blockus.cyan_concrete_brick_column": "青色具体的砖楹", + "block.blockus.purple_concrete_brick_column": "紫色具体的砖楹", + "block.blockus.blue_concrete_brick_column": "蓝色具体的砖楹", + "block.blockus.brown_concrete_brick_column": "棕色具体的砖楹", + "block.blockus.green_concrete_brick_column": "原谅色具体的砖楹", + "block.blockus.red_concrete_brick_column": "红色具体的砖楹", + "block.blockus.black_concrete_brick_column": "黑色具体的砖楹", + "block.blockus.potted_autumn_oak": "秋橡木盆栽", + "block.blockus.potted_autumn_birch": "秋白桦木盆栽", + "block.blockus.potted_pink_cherry_oak": "粉色樱桃橡木盆栽", + "block.blockus.potted_white_cherry_oak": "白色樱桃橡木盆栽", + "block.blockus.potted_palm": "棕榈盆栽", + "block.blockus.potted_huge_dark_amaranth_fungus": "巨大暗红苋菌盆栽", + "block.blockus.cherry_oak_small_logs": "小型樱桃橡木日志", + "block.blockus.palm_small_logs": "小型棕榈日志", + "block.blockus.dark_amaranth_small_stems": "小型暗红苋菌柄", + "block.blockus.autumn_oak_small_hedge": "小型秋橡木树篱", + "block.blockus.autumn_birch_small_hedge": "小型秋桦木树篱", + "block.blockus.pink_cherry_oak_small_hedge": "小型粉色樱桃橡木树篱", + "block.blockus.white_cherry_oak_small_hedge": "小型白色樱桃橡木树篱", + "block.blockus.palm_small_hedge": "小型棕榈树篱", + "block.blockus.dark_amaranth_small_hedge": "小型暗红苋树篱", + "block.blockus.white_oak_leaf_pile": "白色橡树树叶堆", + "block.blockus.blueberries_crate": "蓝莓板条箱" +} diff --git a/mods/buildcraft.json b/mods/buildcraft.json index b341c570f..8341ab61b 100644 --- a/mods/buildcraft.json +++ b/mods/buildcraft.json @@ -1,800 +1,800 @@ { - "buildcraft.boardRobotClean": "清洁工具人", - "buildcraft.boardRobotPicker": "拾取工具人", - "buildcraft.boardRobotLumberjack": "伐木工具人", - "buildcraft.boardRobotPlanter": "种植工具人", - "buildcraft.boardRobotLeaveCutter": "剪叶工具人", - "buildcraft.boardRobotCarrier": "搬运工具人", - "buildcraft.boardRobotFluidCarrier": "储罐工具人", - "buildcraft.boardRobotBomber": "爆破工具人", - "buildcraft.boardRobotKnight": "骑士工具人", - "buildcraft.boardRobotMiner": "采掘工具人", - "buildcraft.boardRobotFarmer": "耕耘工具人", - "buildcraft.boardRobotHarvester": "收获工具人", - "buildcraft.boardRobotShovelman": "铲工工具人", - "buildcraft.boardRobotButcher": "屠宰工具人", - "buildcraft.boardRobotBuilder": "建筑工具人", - "buildcraft.boardRobotCrafter": "合成工具人", - "buildcraft.boardRobotDelivery": "配送工具人", - "buildcraft.boardRobotPump": "液泵工具人", - "buildcraft.boardRobotStripes": "条纹工具人", - "buildcraft.boardRobotBreaker": "破坏工具人", - "buildcraft.boardRobotPicker.desc": "拾取物品", - "buildcraft.boardRobotLumberjack.desc": "伐木", - "buildcraft.boardRobotPlanter.desc": "种植作物", - "buildcraft.boardRobotLeaveCutter.desc": "剪树叶", - "buildcraft.boardRobotCarrier.desc": "在容器间搬运物品", - "buildcraft.boardRobotFluidCarrier.desc": "在储罐间运输流体", - "buildcraft.boardRobotBomber.desc": "轰炸区域", - "buildcraft.boardRobotKnight.desc": "与怪物斗智斗勇", - "buildcraft.boardRobotMiner.desc": "挖掘矿物", - "buildcraft.boardRobotFarmer.desc": "锄地", - "buildcraft.boardRobotHarvester.desc": "收获成熟作物", - "buildcraft.boardRobotShovelman.desc": "铲地", - "buildcraft.boardRobotButcher.desc": "屠宰动物", - "buildcraft.boardRobotBuilder.desc": "修建房屋", - "buildcraft.boardRobotCrafter.desc": "合成物品", - "buildcraft.boardRobotDelivery.desc": "根据需求配送物品", - "buildcraft.boardRobotPump.desc": "泵出流体", - "buildcraft.boardRobotStripes.desc": "采掘石头", - "chat.gateCopier.clear": "门信息已清除。", - "chat.gateCopier.gateCopied": "复制门信息到拷贝器中。", - "chat.gateCopier.gatePasted": "粘贴拷贝器信息到门中。", - "chat.gateCopier.noGate": "该面未发现门!", - "chat.gateCopier.noInformation": "没有存储的门信息!", - "chat.gateCopier.warning.actionParameters": "§6警告:目标缺少执行参数!", - "chat.gateCopier.warning.logic": "§6警告:目标的逻辑类型不同!", - "chat.gateCopier.warning.load": "§6警告:门触发/操作配置可能丢失!", - "chat.gateCopier.warning.slots": "§6警告:目标槽数不足!", - "chat.gateCopier.warning.triggerParameters": "§6警告:目标的触发参数不足!", - "chat.pipe.power.iron.mode": "切换为%dRF/t限制", - "chat.pipe.power.iron.mode.numberless": "切换为%s限制", - "chat.pipe.power.iron.level.20": "极低", - "chat.pipe.power.iron.level.40": "低", - "chat.pipe.power.iron.level.80": "较低", - "chat.pipe.power.iron.level.160": "中等", - "chat.pipe.power.iron.level.320": "高", - "chat.pipe.power.iron.level.640": "较高", - "chat.pipe.power.iron.level.1280": "极高", - "chat.pipe.power.iron.level.2560": "满容量", - "color.clear": "颜色清除", - "color.black": "黑色", - "color.blue": "蓝色", - "color.brown": "棕色", - "color.cyan": "青色", - "color.gray": "灰色", - "color.green": "绿色", - "color.light.blue": "浅蓝色", - "color.light.gray": "浅灰色", - "color.lime": "柠檬色", - "color.magenta": "品红色", - "color.orange": "橙色", - "color.pink": "粉色", - "color.purple": "紫色", - "color.red": "红色", - "color.white": "白色", - "color.yellow": "黄色", - "config.general": "常规", - "config.general.pipes": "管道", - "config.blueprints": "蓝图", - "config.builders": "建造", - "config.power": "耗能", - "config.experimental": "测试", - "config.display": "显示", - "config.performance": "性能", - "config.worldgen": "世界生成", - "config.network": "网络", - "config.buildcraft": "BuildCraft配置", - "config.blueprints.clientDatabaseDirectory": "客户端路径", - "config.blueprints.excludedMods": "排除模组", - "config.blueprints.excludedBlocks": "排除方块", - "config.builders.dropBrokenBlocks": "掉落方块", - "config.display.colorBlindMode": "色盲模式", - "config.display.hideFluidValues": "隐藏流体量", - "config.display.hidePowerValues": "隐藏能量", - "config.experimental.kinesisPowerLossOnTravel": "管道流失能量", - "config.general.boards.blacklist": "工具人黑名单", - "config.general.pumpsConsumeWater": "泵用水", - "config.general.updateCheck": "检查更新", - "config.general.fuel.fuel.combustion": "引擎燃油消耗倍数", - "config.general.fuel.oil.combustion": "引擎原油消耗倍数", - "config.general.fuel.fuel.combustion.energyOutput": "引擎燃油能量输出", - "config.general.fuel.oil.combustion.energyOutput": "引擎原油能量输出", - "config.general.itemLifespan": "物品存活时长(秒)", - "config.general.canEnginesExplode": "引擎爆炸", - "config.general.oilCanBurn": "原油是否可燃", - "config.general.oilIsDense": "原油是否稠密", - "config.general.pipes.baseFluidRate": "基本流动速率", - "config.general.pipes.facadeBlacklist": "伪装板黑名单", - "config.general.pipes.facadeBlacklistAsWhitelist": "反相伪装板黑名单", - "config.general.pipes.facadeNoLaserRecipe": "是否添加伪装板无镭射配方", - "config.general.pipes.hardness": "硬度", - "config.general.pipes.slimeballWaterproofRecipe": "是否添加粘液球合成密封剂配方", - "config.general.pumpsNeedRealPower": "泵是否需要真实能量", - "config.general.quarry": "采石场选项", - "config.general.quarry.oneTimeUse": "一次", - "config.general.quarry.doChunkLoading": "自动区块载入", - "config.general.markerRange": "地标标记范围", - "config.general.miningDepth": "最大相对挖掘深度", - "config.general.pumpDimensionControl": "泵作用范围控制", - "config.network.longUpdateFactor": "客户端同步因数(ticks)", - "config.network.updateFactor": "包发送因数(ticks)", - "config.power.miningUsageMultiplier": "挖掘能耗倍数", - "config.power.chipsetCostMultiplier": "芯片能耗倍数", - "config.power.gateCostMultiplier": "门能耗倍数", - "config.worldgen.enable": "激活", - "config.worldgen.generateWaterSprings": "生成水泉", - "config.worldgen.oilWellGenerationRate": "油井生成率", - "config.worldgen.spawnOilSprings": "生成油泉", - "config.worldgen.biomes.biomeOilDesert": "原油沙漠生物群落id", - "config.worldgen.biomes.biomeOilOcean": "原油海域生物群落id", - "config.worldgen.biomes.excessiveOilIDs": "原油极其丰富的生物群落", - "config.worldgen.biomes.excludeOilIDs": "无原油生物群落", - "config.worldgen.biomes.increasedOilIDs": "原油较丰富的生物群落", - "direction.north": "北面", - "direction.west": "西面", - "direction.east": "东面", - "direction.south": "南面", - "direction.up": "顶端", - "direction.down": "底端", - "direction.center": "中心", - "direction.center.0": "西北", - "direction.center.1": "北面", - "direction.center.2": "东北", - "direction.center.3": "西面", - "direction.center.4": "中心", - "direction.center.5": "东面", - "direction.center.6": "西南", - "direction.center.7": "南面", - "direction.center.8": "东南", - "buildcraft.fluid.empty": "空", - "buildcraft.fluid.static.milli.short": "%s mB", - "buildcraft.fluid.static.bucket.short": "%s B", - "buildcraft.fluid.static.milli.long": "%s 小桶", - "buildcraft.fluid.static.bucket.long": "%s 大桶", - "buildcraft.fluid.empty.milli.short": "0 / %s mB", - "buildcraft.fluid.empty.bucket.short": "0 / %s B", - "buildcraft.fluid.empty.milli.long": "空的 %s 小储罐", - "buildcraft.fluid.empty.bucket.long": "空的 %s 大储罐", - "buildcraft.fluid.full.milli.short": "%1$s / %1$s mB", - "buildcraft.fluid.full.bucket.short": "%1$s / %1$s B", - "buildcraft.fluid.full.milli.long": "满的 %s 小储罐", - "buildcraft.fluid.full.bucket.long": "满的 %s 大储罐", - "buildcraft.fluid.static.cap.milli.short": "%s / %s mB", - "buildcraft.fluid.static.cap.bucket.short": "%s / %s B", - "buildcraft.fluid.static.cap.milli.long": "%s 小桶 (在 %s 小储罐中)", - "buildcraft.fluid.static.cap.bucket.long": "%s 大桶 (在 %s 大储罐中)", - "buildcraft.fluid.flow.milli.short": "%s mB/t", - "buildcraft.fluid.flow.bucket.short": "%s B/s", - "buildcraft.fluid.flow.milli.long": "%s 小桶每刻", - "buildcraft.fluid.flow.bucket.long": "%s 大桶每秒", - "buildcraft.mj.static.long": "%s MC焦耳", - "buildcraft.mj.static.short": "%s MJ", - "buildcraft.mj.flow.long": "%s MC焦耳每刻", - "buildcraft.mj.flow.short": "%s MJ/t", - "buildcraft.mj.flow.seconds.long": "%s MC焦耳每秒", - "buildcraft.mj.flow.seconds.short": "%s MJ/s", - "fillerpattern.clear": "清除", - "fillerpattern.fill": "填充", - "fillerpattern.flatten": "平整", - "fillerpattern.horizon": "地平线", - "fillerpattern.pyramid": "金字塔", - "fillerpattern.stairs": "阶梯", - "fillerpattern.box": "盒状", - "fillerpattern.frame": "框架", - "fillerpattern.none": "空", - "fillerpattern.sphere_eighth": "八分之一球体", - "fillerpattern.sphere_quarter": "四分之一球体", - "fillerpattern.sphere_half": "半球", - "fillerpattern.sphere": "球", - "fillerpattern.2d_arc": "圆弧", - "fillerpattern.2d_semi_circle": "半圆", - "fillerpattern.2d_circle": "圆", - "fillerpattern.2d_triangle": "三角形", - "fillerpattern.2d_square": "正方形", - "fillerpattern.2d_pentagon": "五边形", - "fillerpattern.2d_hexagon": "六边形", - "fillerpattern.2d_octagon": "八边形", - "fillerpattern.parameter.hollow": "中空", - "fillerpattern.parameter.filled": "实心", - "fillerpattern.parameter.filled_outer": "包围", - "buildcraft.param.rotation.0": "不旋转", - "buildcraft.param.rotation.1": "90度旋转", - "buildcraft.param.rotation.2": "180度旋转", - "buildcraft.param.rotation.3": "270度旋转", - "buildcraft.param.axis.x": "X轴", - "buildcraft.param.axis.y": "Y轴", - "buildcraft.param.axis.z": "Z轴", - "fluid.oil": "原油", - "fluid.fuel": "燃油", - "fluid.oil_distilled": "蒸馏油", - "fluid.oil_heavy": "重油", - "fluid.oil_dense": "稠油", - "fluid.oil_residue": "残渣", - "fluid.tar": "焦油", - "fluid.fuel_mixed": "混合燃料", - "fluid.fuel_mixed_heavy": "混合重燃料", - "fluid.fuel_mixed_light": "混合轻燃料", - "fluid.fuel_dense": "浓燃料", - "fluid.fuel_light": "轻燃料", - "fluid.fuel_gaseous": "气态燃料", - "buildcraft.fluid.heat_0": "%s (§b冷§r)", - "buildcraft.fluid.heat_1": "%s (§6热§r)", - "buildcraft.fluid.heat_2": "%s (§c灼热§r)", - "buildcraft.christmas.fluid.oil": "生巧克力粉", - "buildcraft.christmas.fluid.fuel": "牛奶巧克力", - "buildcraft.christmas.fluid.oil_distilled": "混合巧克力", - "buildcraft.christmas.fluid.oil_heavy": "生巧克力", - "buildcraft.christmas.fluid.oil_dense": "香醇的生巧克力", - "buildcraft.christmas.fluid.oil_residue": "焦糖加多了", - "buildcraft.christmas.fluid.fuel_mixed_heavy": "深色巧克力粉", - "buildcraft.christmas.fluid.fuel_mixed_light": "浅色巧克力粉", - "buildcraft.christmas.fluid.fuel_dense": "黑巧克力", - "buildcraft.christmas.fluid.fuel_light": "牛奶巧克力", - "buildcraft.christmas.fluid.fuel_gaseous": "白巧克力", - "buildcraft.christmas.buildcraft.fluid.heat_0": "§b融化§r %s", - "buildcraft.christmas.buildcraft.fluid.heat_1": "§6沸腾§r %s", - "buildcraft.christmas.buildcraft.fluid.heat_2": "§c灼热§r %s", - "buildcraft.christmas.tile.engineIron.name": "巧克力引擎", - "gate.action.extraction": "%s提取预设", - "gate.action.pipe.item.color": "将物品颜色染为%s", - "gate.action.machine.on": "开", - "gate.action.machine.off": "关", - "gate.action.machine.loop": "循环", - "gate.action.pulsar.constant": "能量脉冲", - "gate.action.pulsar.single": "单次能量脉冲", - "gate.action.pipe.wire": "%s管线信号", - "gate.action.redstone.signal": "红石信号", - "gate.action.robot.goto_station": "前往转接坞", - "gate.action.pipe.valve.open": "开启", - "gate.action.pipe.valve.input_only": "仅输入", - "gate.action.pipe.valve.output_only": "仅输出", - "gate.action.pipe.valve.closed": "关闭", - "gate.action.station.provide_items": "提供物品", - "gate.action.station.accept_items": "接受物品", - "gate.action.station.request_items": "请求物品", - "gate.action.station.drop_items_in_pipe": "将物品传送到管道", - "gate.action.station.allow_craft": "允许合成", - "gate.action.station.provide_machine_request": "请求需要的物品", - "gate.action.station.accept_fluids": "接受流体", - "gate.action.station.povide_fluids": "提供流体", - "gate.action.robot.work_in_area": "工作区域", - "gate.action.robot.load_unload_area": "装载/卸载区域", - "gate.action.robot.wakeup": "唤醒", - "gate.action.station.forbid_robot": "禁用工具人", - "gate.action.station.force_robot": "强制工具人", - "gate.action.robot.filter": "过滤", - "gate.action.robot.filter_tool": "过滤工具", - "gate.action.pipe.direction": "面向 %s 方", - "gate.logic.and": "与", - "gate.logic.or": "或", - "gate.material.iron": "铁质", - "gate.material.nether_brick": "地狱砖质", - "gate.material.gold": "金质", - "gate.slots": "%s 位置", - "gate.params": "%s 位置参数", - "gate.params.trigger": "%s 触发参数", - "gate.params.action": "%s 运行参数", - "gate.side": "§7在 %s§7 方向", - "gate.name": "%s%s门", - "gate.name.basic": "基础门", - "gate.parameter.redstone.gateSideOnly": "仅限门侧", - "gate.trigger.true": "保持开启", - "gate.trigger.engine.blue": "引擎蓝色", - "gate.trigger.engine.green": "引擎绿色", - "gate.trigger.engine.yellow": "引擎黄色", - "gate.trigger.engine.red": "引擎红色", - "gate.trigger.engine.overheat": "引擎过热", - "gate.trigger.fluid.empty": "储罐空", - "gate.trigger.fluid.contains": "储罐有流体", - "gate.trigger.fluid.space": "储罐有空间", - "gate.trigger.fluid.full": "储罐满", - "gate.trigger.fluidlevel.below": "已使用空间 < %d%%", - "gate.trigger.inventory.empty": "容器空", - "gate.trigger.inventory.contains": "容器有物品", - "gate.trigger.inventory.space": "容器有空间", - "gate.trigger.inventory.full": "容器满", - "gate.trigger.inventorylevel.below": "已使用空间 < %d%%", - "gate.trigger.machine.done": "工作完成", - "gate.trigger.machine.scheduled": "有工作", - "gate.trigger.redstone.input.active": "红石信号开", - "gate.trigger.redstone.input.inactive": "红石信号关", - "gate.trigger.redstone.input.level": "红石信号强度%d", - "gate.trigger.redstone.input.equal": "红石信号相等", - "gate.trigger.redstone.input.greater": "红石信号大于", - "gate.trigger.redstone.input.less": "红石信号小于", - "gate.trigger.pipe.empty": "管道空", - "gate.trigger.pipe.containsItems": "物品经过", - "gate.trigger.pipe.containsFluids": "流体经过", - "gate.trigger.pipe.containsEnergy": "能量经过", - "gate.trigger.pipe.requestsEnergy": "能量需求", - "gate.trigger.pipe.tooMuchEnergy": "能量过载", - "gate.trigger.pipe.wire.active": "%s管线信号开", - "gate.trigger.pipe.wire.inactive": "%s管线信号关", - "gate.trigger.timer": "%s秒计时器", - "gate.trigger.robot.sleep": "休眠", - "gate.trigger.robot.in.station": "工具人入驻", - "gate.trigger.robot.linked": "转接坞连接", - "gate.trigger.robot.reserved": "转接坞预留", - "gate.trigger.machine.energyStored.high": "高能量存储", - "gate.trigger.machine.energyStored.low": "低能量存储", - "gate.trigger.machine.energyStored.below25": "能量储量 < 25%", - "gate.trigger.machine.energyStored.below50": "能量储量 < 50%", - "gate.trigger.machine.energyStored.below75": "能量储量 < 75%", - "gate.trigger.light.bright": "明亮", - "gate.trigger.light.dark": "黑暗", - "gate.trigger.time.0": "夜晚", - "gate.trigger.time.6": "早晨", - "gate.trigger.time.12": "下午", - "gate.trigger.time.18": "傍晚", - "gate.trigger.fuelLevelBelow": "燃料少于 %d%%", - "gate.trigger.coolantLevelBelow": "冷却液少于 %d%%", - "gui.fluidtank.empty": "空", - "gui.building.resources": "建筑材料", - "gui.building.fluids": "流体储罐", - "gui.del": "删除", - "gui.filling.resources": "填充材料", - "gui.inventory": "物品栏", - "gui.lock": "已锁定", - "gui.needed": "需要", - "gui.unlock": "未锁定", - "gui.energy": "能量", - "gui.currentOutput": "当前输出", - "gui.stored": "存储能量", - "gui.heat": "热量", - "gui.assemblyRate": "功率", - "gui.assemblyCurrentRequired": "需求能量", - "gui.clickcraft": "-点击以合成-", - "gui.list.nbt": "需要完全匹配\n§7(附魔,名称和存储的数据需要精确匹配)", - "gui.list.metadata": "模糊META数据", - "gui.list.oredict": "模糊矿物辞典", - "gui.pipes.emerald.title": "过滤", - "gui.pipes.emerald.blocking": "阻挡", - "gui.pipes.emerald.blocking.tip": "若过滤设置中有缺失对象则阻挡被抽取物品", - "gui.pipes.emerald.nonblocking": "不阻挡", - "gui.pipes.emerald.nonblocking.tip": "若过滤设置对象缺失则抽取下一个过滤设置对象", - "gui.pipes.emzuli.title": "抽取预设", - "gui.pipes.emzuli.paint": "染色物品 %s", - "gui.pipes.emzuli.nopaint": "不对物品染色", - "gui.ledger.ownership": "拥有者", - "gui.ledger.help": "帮助", - "gui.progress": "进度", - "gui.leftToBreak": "破坏", - "gui.leftToPlace": "放置", - "item.bucketFuel.name": "燃油桶", - "item.bucketOil.name": "原油桶", - "item.diamondShard.name": "钻石片", - "item.woodenGearItem.name": "木齿轮", - "item.stoneGearItem.name": "石齿轮", - "item.ironGearItem.name": "铁齿轮", - "item.goldGearItem.name": "金齿轮", - "item.diamondGearItem.name": "钻石齿轮", - "item.templateItem.name": "模版", - "item.wrenchItem.name": "扳手", - "item.paintbrush.name": "颜料刷", - "item.pipeWaterproof.name": "管道密封剂", - "item.PipeWire.name": "管线", - "item.redstoneCrystal.name": "红石晶体", - "item.redstone_red_chipset.name": "红石芯片", - "item.redstone_iron_chipset.name": "铁质芯片", - "item.redstone_gold_chipset.name": "金质芯片", - "item.redstone_diamond_chipset.name": "钻石芯片", - "item.redstone_emerald_chipset.name": "绿宝石芯片", - "item.redstone_pulsating_chipset.name": "脉冲芯片", - "item.redstone_quartz_chipset.name": "石英芯片", - "item.redstone_comp_chipset.name": "红石比较芯片", - "item.redstone_board.name": "红石板", - "item.robot.name": "工具人", - "item.tablet.name": "板", - "item.blueprintItem.name": "蓝图", - "item.schematicSingle.name": "单方块图纸", - "item.list.name": "列表", - "item.blueprint.unnamed": "<未命名蓝图>", - "item.blueprint.author": "作者:", - "item.blueprint.blank": "空白", - "item.blueprint.creative_only": "仅限上帝模式", - "item.blueprint.no_build": "无建筑", - "item.blueprint.incomplete": "未完成", - "item.mapLocation.name": "定位图纸", - "item.gateCopier.name": "门设拷贝器", - "item.plasticSheet.name": "塑料表格", - "item.markerConnector.name": "记号连接器", - "item.pulsar.name": "管道脉冲", - "item.fragile_fluid_shard.name": "脆弱的%s碎片", - "item.waterGel.name": "水凝胶剂", - "item.gel.name": "水凝胶", - "item.buildcraft_pipe_wood_item.name": "木质管道", - "item.buildcraft_pipe_cobblestone_item.name": "圆石管道", - "item.buildcraft_pipe_stone_item.name": "石头管道", - "item.buildcraft_pipe_andersite_item.name": "安山岩管道", - "item.buildcraft_pipe_andersite_polished_item.name": "磨光的安山岩管道", - "item.buildcraft_pipe_diorite_item.name": "闪长岩管道", - "item.buildcraft_pipe_diorite_polished_item.name": "磨光的闪长岩管道", - "item.buildcraft_pipe_granite_item.name": "花岗岩管道", - "item.buildcraft_pipe_granite_polished_item.name": "磨光的花岗岩管道", - "item.PipeItemsWood.name": "木质管道", - "item.PipeItemsCobblestone.name": "圆石管道", - "item.PipeItemsStone.name": "石头管道", - "item.PipeItemsAndesite.name": "安山岩管道", - "item.PipeItemsDiorite.name": "闪长岩管道", - "item.PipeItemsGranite.name": "花岗岩管道", - "item.PipeItemsQuartz.name": "石英管道", - "item.PipeItemsIron.name": "铁质管道", - "item.PipeItemsGold.name": "金质管道", - "item.PipeItemsDiamond.name": "钻石管道", - "item.PipeItemsObsidian.name": "黑曜石管道", - "item.PipeItemsWoodenDiamond.name": "木质钻石管道", - "item.PipeItemsLapis.name": "青金石管道", - "item.PipeItemsDaizuli.name": "靛金刚管道", - "item.PipeItemsEmzuli.name": "靛翡翠管道", - "item.PipeItemsClay.name": "粘土管道", - "item.PipeFluidsWood.name": "木质流体管道", - "item.PipeFluidsCobblestone.name": "圆石流体管道", - "item.PipeFluidsStone.name": "石头流体管道", - "item.PipeFluidsAndesite.name": "安山岩流体管道", - "item.PipeFluidsDiorite.name": "闪长岩流体管道", - "item.PipeFluidsGranite.name": "花岗岩流体管道", - "item.PipeFluidsIron.name": "铁质流体管道", - "item.PipeFluidsQuartz.name": "石英流体管道", - "item.PipeFluidsGold.name": "金质流体管道", - "item.PipeFluidsWoodenDiamond.name": "木质钻石流体管道", - "item.PipeFluidsDiamond.name": "钻石流体管道", - "item.PipeFluidsClay.name": "粘土流体管道", - "item.PipePowerWood.name": "木质能量管道", - "item.PipePowerCobblestone.name": "圆石能量管道", - "item.PipePowerStone.name": "石头能量管道", - "item.PipePowerQuartz.name": "石英能量管道", - "item.PipePowerIron.name": "铁质能量管道", - "item.PipePowerGold.name": "金质能量管道", - "item.PipePowerDiamond.name": "钻石能量管道", - "item.PipePowerEmerald.name": "绿宝石能量管道", - "item.PipeItemsStripes.name": "条纹管道", - "item.PipeStructureCobblestone.name": "圆石建筑管道", - "item.PipeItemsVoid.name": "虚空管道", - "item.PipeFluidsVoid.name": "虚空流体管道", - "item.PipeItemsSandstone.name": "沙石管道", - "item.PipeFluidsSandstone.name": "沙石流体管道", - "item.PipePowerSandstone.name": "沙石能量管道", - "item.PipeRobotStation.name": "工具人转接坞", - "item.Facade.name": "伪装板", - "item.Facade.state_hollow": "中空", - "item.FacadePhased.name": "多阶伪装板", - "item.FacadePhased.state": "%s: %s", - "item.FacadePhased.state_default": "默认:%s", - "item.FacadePhased.state_transparent": "透明度", - "item.PipePlug.name": "管塞", - "item.light_sensor.name": "光线感应器", - "item.Lens.name": "透镜", - "item.Filter.name": "滤镜", - "item.PipePowerAdapter.name": "能量接收器", - "item.debugger.name": "调试器", - "item.debugger.warning": "仅用于测试!会导致泄密。", - "item.package.name": "包", - "item.buildcraft.guide.name": "BuildCraft教程书", - "item.buildcraft.guide_note.name": "BuildCraft教程笔记", - "item.buildcraft.robot_goggles.name": "工具人风镜", - "item.buildcraft.filler_planner.name": "填充计划器", - "itemGroup.buildcraft.boards": "Buildcraft工具人", - "itemGroup.buildcraft.main": "Buildcraft", - "itemGroup.buildcraft.pipes": "Buildcraft管道", - "itemGroup.buildcraft.facades": "Buildcraft伪装板", - "itemGroup.buildcraft.gates": "Buildcraft门", - "tile.architectBlock.name": "建筑工作台", - "tile.architectBlock.tip": "生存模式不可用", - "tile.assemblyTableBlock.name": "装配台", - "tile.assemblyWorkbenchBlock.name": "高级工作台", - "tile.autoWorkbenchBlock.name": "自动合成台", - "tile.blockFuel.name": "燃油", - "tile.chuteBlock.name": "滑槽", - "tile.blockOil.name": "原油", - "tile.builderBlock.name": "建筑机", - "tile.builderBlock.tip": "生存模式不可用", - "tile.chargingTableBlock.name": "充能台", - "tile.chargingTableBlock.tip": "没法用它充能", - "tile.constructionMarkerBlock.name": "建设标", - "tile.engineCreative.name": "创造引擎", - "tile.engineIron.name": "燃油引擎", - "tile.engineStone.name": "斯特林引擎", - "tile.engineWood.name": "红石引擎", - "tile.fillerBlock.name": "填充机", - "tile.filteredBufferBlock.name": "过滤缓存器", - "tile.fillerBlock.tip": "生存模式不可用。", - "tile.floodGateBlock.name": "液闸", - "tile.frameBlock.name": "框架", - "tile.integrationTableBlock.name": "集成台", - "tile.integrationTableBlock.tip": "没有合成配方来使用", - "tile.laserBlock.name": "镭射器", - "tile.libraryBlock.name": "电子档案馆", - "tile.machineBlock.name": "采石场", - "tile.quarryBlock.name": "Quarry", - "tile.markerBlock.name": "地标", - "tile.miningWellBlock.name": "矿井", - "tile.packagerBlock.name": "配方封包器", - "tile.pathMarkerBlock.name": "路径标", - "tile.plainPipeBlock.name": "采矿管道", - "tile.programmingTableBlock.name": "编程台", - "tile.programmingTableBlock.tip": "BC1.12.2的工具人咕了", - "tile.pumpBlock.name": "液泵", - "tile.refineryBlock.name": "精炼厂", - "tile.requester.name": "请求机", - "tile.spring.oil.name": "油泉", - "tile.spring.water.name": "水泉", - "tile.stampingTableBlock.name": "压印台", - "tile.tankBlock.name": "储罐", - "tile.zonePlan.name": "区域规划机", - "tile.zonePlannerBlock.tip": "BC1.12.2的工具人咕了", - "tile.distiller.name": "蒸馏器", - "tile.heat_exchange.name": "热交换器", - "tile.decorated.blueprint.name": "蓝图 (装饰)", - "tile.decorated.template.name": "模板 (装饰)", - "tile.decorated.laser_back.name": "激光 (装饰)", - "tile.architect.rotate": "旋转:开", - "tile.architect.norotate": "旋转:关", - "tile.architect.allowCreative": "模式:创造", - "tile.architect.noallowCreative": "模式:生存", - "tile.architect.tooltip.allowCreative.1": "上帝模式允许使用所有方块,仅限上帝模式!", - "tile.architect.tooltip.allowCreative.2": "生存模式将忽略所有不支持的方块", - "tile.architect.excavate": "挖掘:开", - "tile.architect.noexcavate": "挖掘:关", - "tip.gate.wires": "§9§o兼容管线:", - "tip.gate.wires.redstone": "红", - "tip.gate.wires.iron": "红,蓝", - "tip.gate.wires.gold": "红,蓝,绿", - "tip.gate.wires.quartz": "红,蓝,绿", - "tip.gate.wires.diamond": "红,蓝,绿,黄", - "tip.gate.wires.emerald": "红,蓝,绿,黄", - "tip.gate.expansions": "§9§o已安装扩展:", - "tip.PipeFluidsClay": "流体嵌入传送管道", - "tip.PipeFluidsDiamond": "分类流体", - "tip.PipeFluidsEmerald": "提取管道", - "tip.PipeFluidsIron": "阀门管道", - "tip.PipeFluidsSandstone": "只会连接其他管道", - "tip.PipeFluidsVoid": "销毁液体", - "tip.PipeFluidsWood": "提取管道", - "tip.PipeItemsClay": "嵌入传送管道", - "tip.PipeItemsDaizuli": "改变色标物品的运输路线", - "tip.PipeItemsDiamond": "分类物品", - "tip.PipeItemsEmerald": "循环提取管道", - "tip.PipeItemsEmzuli": "门控提取管道", - "tip.PipeItemsGold": "加速物品", - "tip.PipeItemsIron": "改变物品运输路线", - "tip.PipeItemsLapis": "彩色标记物品", - "tip.PipeItemsObsidian": "吸收物品", - "tip.PipeItemsSandstone": "只会连接其他管道", - "tip.PipeItemsVoid": "吃掉物品", - "tip.PipeItemsWood": "提取管道", - "tip.PipePowerEmerald": "能量输入管道", - "tip.PipePowerDiamond": "自定义限制管道", - "tip.PipePowerSandstone": "只能连接其他管道", - "tip.PipePowerWood": "能量输入管道", - "tip.PipeStructureCobblestone": "支撑类管道", - "tip.deprecated": "不可用", - "tip.gate.charged": "充能", - "tip.gate.fullcharge": "完全充能", - "tip.gate.nocharge": "未充能", - "tip.filler.excavate.on": "采掘", - "tip.filler.excavate.off": "不采掘", - "tip.filler.invert.on": "反转", - "tip.filler.invert.off": "不反转", - "tip.list.matches": "匹配", - "tip.shift.PipeFluidsDiamond": "界面接受任意流体容器", - "tip.shift.PipeFluidsEmerald": "界面接受任意流体容器", - "tip.shift.PipeItemsClay": "优先选择箱子和容器 \\ 随后选择管道", - "tip.shift.PipeItemsDaizuli": "潜行点击以切换颜色", - "tip.shift.PipeItemsEmzuli": "在界面中设定输出预过滤配置\n预设配置会将输出的物品染色\n通过门来切换输出预设", - "tip.shift.PipeItemsLapis": "潜行点击以切换颜色", - "tip.shift.PipeItemsObsidian": "用引擎供能\n能量越多-作用范围越远", - "tip.shift.PipePowerDiamond": "用扳手或门来切换输送限度", - "tip.PipeItemsEmerald.whitelist": "白名单", - "tip.PipeItemsEmerald.blacklist": "黑名单", - "tip.PipeItemsEmerald.roundrobin": "按序循环", - "tip.tool.add": "添加", - "tip.tool.fullscreen": "全屏", - "tip.tool.remove": "移除", - "achievement.woodenGearAchievement": "边缘略显粗糙", - "achievement.woodenGearAchievement.desc": "合成木齿轮", - "achievement.stoneGearAchievement": "坚若磐石", - "achievement.stoneGearAchievement.desc": "将木齿轮升级成石齿轮", - "achievement.ironGearAchievement": "会生锈吗?", - "achievement.ironGearAchievement.desc": "将石齿轮升级成铁齿轮", - "achievement.goldGearAchievement": "不,它不是用蜜做的", - "achievement.goldGearAchievement.desc": "将铁齿轮升级成金齿轮", - "achievement.diamondGearAchievement": "Oh shinny!", - "achievement.diamondGearAchievement.desc": "将金齿轮升级成钻石齿轮", - "achievement.wrenchAchievement": "敲敲就好!", - "achievement.wrenchAchievement.desc": "制作一柄扳手", - "achievement.engineAchievement1": "伟大的起点", - "achievement.engineAchievement1.desc": "合成出红石引擎", - "achievement.engineAchievement2": "高效率", - "achievement.engineAchievement2.desc": "合成出斯特林引擎", - "achievement.engineAchievement3": "能量之屋", - "achievement.engineAchievement3.desc": "合成出燃油引擎", - "achievement.aLotOfCraftingAchievement": "批量加工", - "achievement.aLotOfCraftingAchievement.desc": "合成出自动合成台", - "achievement.straightDownAchievement": "垂直向下", - "achievement.straightDownAchievement.desc": "制造出一台挖矿机", - "achievement.chunkDestroyerAchievement": "区块毁灭者", - "achievement.chunkDestroyerAchievement.desc": "合成出采石场", - "achievement.fasterFillingAchievement": "快捷过滤", - "achievement.fasterFillingAchievement.desc": "制造出过滤器", - "achievement.timeForSomeLogicAchievement": "是时候做点逻辑工作了", - "achievement.timeForSomeLogicAchievement.desc": "合成出芯片装配台", - "achievement.refineAndRedefineAchievement": "精炼并重定义", - "achievement.refineAndRedefineAchievement.desc": "制造出精炼厂", - "achievement.tinglyLaserAchievement": "灼人镭射", - "achievement.tinglyLaserAchievement.desc": "合成出镭射器", - "achievement.architectAchievement": "建筑师", - "achievement.architectAchievement.desc": "合成出建筑师工作台", - "achievement.builderAchievement": "我有更好的事情要做", - "achievement.builderAchievement.desc": "合成出建造机", - "achievement.blueprintAchievement": "建筑图纸", - "achievement.blueprintAchievement.desc": "合成出蓝图", - "achievement.templateAchievement": "基础", - "achievement.templateAchievement.desc": "合成出模板", - "achievement.blueprintLibraryAchievement": "创意永流传", - "achievement.blueprintLibraryAchievement.desc": "合成出蓝图档案馆", - "bc_update.new_version": "§c新版Buildcraft可用:版本为%s,适用于Minecraft %s", - "bc_update.download": "§c从http://www.mod-buildcraft.com/download下载", - "bc_update.once": "本信息默认仅显示一次", - "bc_update.again": "若想再次查看可输入指令“/buildcraft version”", - "bc_update.changelog": "输入指令“/buildcraft changelog”以查看日志", - "chat.buildcraft.quarry.tooSmall": "[BuildCraft] 采石场区域超出载入区块边界或太小%d %d(%d)", - "chat.buildcraft.quarry.chunkloadInfo": "[BuildCraft] 位于 %d %d %d 的采石场将保持%d个区块载入", - "command.buildcraft.version": "BuildCraft%s,适用于Minecraft %s(最新版本为:%s)。", - "command.buildcraft.changelog_header": "BuildCraft更新日志%s:", - "command.buildcraft.version.fail": "版本检查失败,请看日志文件", - "command.buildcraft.version.prerelease": "你正在使用预发布版本", - "command.buildcraft.aliases": "别名: %s", - "command.buildcraft.help": "输入“%s”查看帮助。", - "command.buildcraft.list": "可用命令:", - "command.buildcraft.permlevel": "权限等级:%s", - "command.buildcraft.noperms": "你没有使用该指令的权限。", - "command.buildcraft.buildcraft.help": "建筑相关指令集", - "command.buildcraft.buildcraft.format": "格式:/%s <子命令>", - "command.buildcraft.buildcraft.version.desc": "- %s : 版本信息", - "command.buildcraft.buildcraft.version.help": "显示当前及最新BC版本", - "command.buildcraft.buildcraft.version.format": "格式: /%s", - "command.buildcraft.buildcraft.changelog.desc": "- %s : 更新日志", - "command.buildcraft.buildcraft.changelog.help": "显示最新BC日志。", - "command.buildcraft.buildcraft.changelog.format": "格式: /%s", - "buildcraft.item.nonclean.usage": "Shift右键点击以清理", - "buildcraft.guide.book.meta.name": "BuildCraft 配置教程", - "buildcraft.guide_book.reloaded": "教程书已重载", - "buildcraft.guide.too_many_results": "无法显示更多内容: %s", - "buildcraft.guide.chapter_list": "章节", - "buildcraft.guide.contents.loaded_modules": "已加载的模块:", - "buildcraft.guide.contents.missing_modules": "缺失的模块:", - "buildcraft.guide.order.type_subtype": "按类型排列", - "buildcraft.guide.order.mod_type": "按mod排列", - "buildcraft.guide.order.alphabetical": "按字母排列", - "buildcraft.guide.recipe.create": "合成", - "buildcraft.guide.recipe.create.plural": "合成", - "buildcraft.guide.recipe.use": "使用", - "buildcraft.guide.recipe.use.plural": "使用", - "buildcraft.guide.chapter.contents": "内容", - "buildcraft.guide.contents.all_group": "其他", - "buildcraft.guide.contents.item_stacks": "物品和方块", - "buildcraft.guide.contents.triggers": "触发条件", - "buildcraft.guide.contents.actions": "动作", - "buildcraft.guide.chapter.type.unknown": "未知类型!", - "buildcraft.guide.chapter.subtype.unknown": "未知子类型!", - "buildcraft.guide.chapter.mod.unknown": "未知Mod!", - "buildcraft.guide.chapter.submod.unknown": "未知子Mod!", - "buildcraft.guide.meta.group.linking_to": "连接至", - "buildcraft.guide.meta.group.linked_from": "连接来自", - "buildcraft.guide.group.to.buildcraft.pipe_power_providers": "管道能量提供", - "buildcraft.guide.group.from.buildcraft.pipe_power_providers": "管道能量接收", - "buildcraft.guide.group.to.buildcraft.full_power_providers": "完整能量提供", - "buildcraft.guide.group.from.buildcraft.full_power_providers": "完整能量接收", - "buildcraft.guide.group.to.buildcraft.laser_power_providers": "激光能量提供", - "buildcraft.guide.group.from.buildcraft.laser_power_providers": "激光能量接收", - "buildcraft.guide.group.to.buildcraft.area_markers": "区域标记", - "buildcraft.guide.group.from.buildcraft.area_markers": "区域相关标记", - "buildcraft.help.tank.generic": "用一个空桶点击它,它里面的液体就会装进桶里", - "buildcraft.help.tank.title.tankFuel": "油储罐", - "buildcraft.help.tank.title.tankCoolant": "冷却液储罐", - "buildcraft.help.tank.title.tankResidue": "残渣储罐", - "buildcraft.help.tank.fuel": "此储罐无法装下燃料", - "buildcraft.help.tank.coolant": "可以接受任何种类的流体以及冰块", - "buildcraft.help.tank.residue": "燃料没被处理时,输出残渣", - "buildcraft.help.stone_engine.flame.title": "燃料剩余", - "buildcraft.help.stone_engine.fuel.title": "燃料输入", - "buildcraft.help.stone_engine.flame": "着火了,(帮助没写完)", - "buildcraft.help.stone_engine.fuel": "接受燃料类别和熔炉相同", - "command.buildcraft.buildcraft.op.desc": "- %s : Op FakePlayer", - "command.buildcraft.buildcraft.op.help": "给予BC模拟玩家(以采石场,工具人等名义执行动作)服务器op权限。", - "command.buildcraft.buildcraft.op.format": "格式: /%s", - "command.buildcraft.buildcraft.deop.desc": "- %s : Deop FakePlayer", - "command.buildcraft.buildcraft.deop.help": "撤销BC模拟玩家(以采石场,工具人等名义执行动作)服务器op权限。", - "command.buildcraft.buildcraft.deop.format": "格式: /%s", - "advancements.buildcraftcore.root.title": "BuildCraft", - "advancements.buildcraftcore.root.description": "满足你对工业科技的需求", - "advancements.buildcraftcore.guide.title": "如何实现……?", - "advancements.buildcraftcore.guide.description": "看看教程", - "advancements.buildcraftcore.gears.title": "做好准备", - "advancements.buildcraftcore.gears.description": "获得所有种类的齿轮", - "advancements.buildcraftcore.wrenched.title": "扳手!", - "advancements.buildcraftcore.wrenched.description": "成功使用扳手", - "advancements.buildcraftcore.freePowar.title": "动力自由!", - "advancements.buildcraftcore.freePowar.description": "产生自由的动力", - "advancements.buildcraftcore.list.title": "分门别类", - "advancements.buildcraftcore.list.description": "发现分类的高级功能", - "advancements.buildcraftcore.engine.title": "第一台引擎", - "advancements.buildcraftcore.engine.description": "获得第一台引擎", - "advancements.buildcraftcore.markers.title": "圈地", - "advancements.buildcraftcore.markers.description": "用地标画出一个区域", - "advancements.buildcraftcore.path_markers.title": "定义踪迹", - "advancements.buildcraftcore.path_markers.description": "定义足迹", - "advancements.buildcraftcore.paper.title": "集纸者", - "advancements.buildcraftcore.paper.description": "每张纸都用完", - "advancements.buildcraftenergy.poweringUp.title": "启动!", - "advancements.buildcraftenergy.poweringUp.description": "用红石信号启动斯特林/燃油引擎", - "advancements.buildcraftenergy.lava_power.title": "岩浆之力", - "advancements.buildcraftenergy.lava_power.description": "用岩浆来启动斯特林引擎", - "advancements.buildcraftenergy.to_much_power.title": "力量过多", - "advancements.buildcraftenergy.to_much_power.description": "引擎过热并用扳手拆掉", - "advancements.buildcraftenergy.ice_cool.title": "冰凉", - "advancements.buildcraftenergy.ice_cool.description": "冷却燃油引擎(先用其他方法,最后用水)", - "advancements.buildcraftenergy.sticky_dipping.title": "粘浸", - "advancements.buildcraftenergy.sticky_dipping.description": "石油原来这么黏啊……", - "advancements.buildcraftenergy.fine_riches.title": "大富豪", - "advancements.buildcraftenergy.fine_riches.description": "找到油田生物群系", - "advancements.buildcraftenergy.refine_and_redefine.title": "优化,再定义", - "advancements.buildcraftenergy.refine_and_redefine.description": "往储罐里放入各种燃油", - "advancements.buildcraftfactory.fluid_storage.title": "储存液体", - "advancements.buildcraftfactory.fluid_storage.description": "向储罐中加入液体", - "advancements.buildcraftfactory.lazy_crafting.title": "懒得合成", - "advancements.buildcraftfactory.lazy_crafting.description": "为自己建造自动合成台", - "advancements.buildcraftfactory.retired_hopper.title": "退休的漏斗", - "advancements.buildcraftfactory.retired_hopper.description": "将滑槽放回原位", - "advancements.buildcraftfactory.flooding_the_world.title": "淹没世界", - "advancements.buildcraftfactory.flooding_the_world.description": "用水泉淹没一片区域", - "advancements.buildcraftfactory.draining_the_world.title": "抽干世界", - "advancements.buildcraftfactory.draining_the_world.description": "使用水泵来吸水", - "advancements.buildcraftfactory.oil_platform.title": "石油平台", - "advancements.buildcraftfactory.oil_platform.description": "抽取油泉", - "advancements.buildcraftfactory.heating_and_distilling.title": "加热与蒸馏", - "advancements.buildcraftfactory.heating_and_distilling.description": "用蒸馏器和热交换器建造完整的炼油装置", - "advancements.buildcraftfactory.black_gold.title": "黑色的金子", - "advancements.buildcraftfactory.black_gold.description": "成功抽干大型油泉", - "advancements.buildcraftsilicon.laser_power.title": "激光力量", - "advancements.buildcraftsilicon.laser_power.description": "合成镭射器", - "advancements.buildcraftsilicon.precision_crafting.title": "准确合成", - "advancements.buildcraftsilicon.precision_crafting.description": "使用装配台进行合成", - "advancements.buildcrafttransport.pipe_dream.title": "管道之梦", - "advancements.buildcrafttransport.pipe_dream.description": "放置管道", - "advancements.buildcrafttransport.pipe_diversification.title": "多种多样的管道", - "advancements.buildcrafttransport.pipe_diversification.description": "放置物品,流体,能量和结构管道", - "advancements.buildcrafttransport.plugging_the_gap.title": "缩小差距", - "advancements.buildcrafttransport.plugging_the_gap.description": "塞上管道", - "advancements.buildcrafttransport.logic_transportation.title": "逻辑运输", - "advancements.buildcrafttransport.logic_transportation.description": "连接管道线", - "advancements.buildcrafttransport.extended_logic.title": "扩展逻辑", - "advancements.buildcrafttransport.extended_logic.description": "使用带有额外插槽的门", - "advancements.buildcrafttransport.sealing_fluids.title": "密封液", - "advancements.buildcrafttransport.sealing_fluids.description": "用仙人掌染成管道密封胶", - "advancements.buildcrafttransport.pipe_logic.title": "管道逻辑", - "advancements.buildcrafttransport.pipe_logic.description": "在管道上放置门", - "advancements.buildcrafttransport.all_plugged_up.title": "全插上了", - "advancements.buildcrafttransport.all_plugged_up.description": "将每个管道扩展物(门,滤镜……)都连接到管道", - "advancements.buildcrafttransport.pipe_fanatic.title": "我爱管道", - "advancements.buildcrafttransport.pipe_fanatic.description": "放置了各种类型的管道", - "advancements.buildcrafttransport.categorizing_with_colors.title": "用色彩分类", - "advancements.buildcrafttransport.categorizing_with_colors.description": "使用色彩功能设置分类系统", - "advancements.buildcrafttransport.colorful_electrician.title": "彩色管工", - "advancements.buildcrafttransport.colorful_electrician.description": "使用16种颜色来标记管道,提高管道系统的健壮性", - "advancements.buildcraftbuilders.shaping_the_world.title": "塑造世界", - "advancements.buildcraftbuilders.shaping_the_world.description": "合成并放置采石机", - "advancements.buildcraftbuilders.architect.title": "建筑师", - "advancements.buildcraftbuilders.architect.description": "用建筑工作台扫描区域,并把区域保存在蓝图/模板中", - "advancements.buildcraftbuilders.paving_the_way.title": "铺平道路", - "advancements.buildcraftbuilders.paving_the_way.description": "利用带有路径标记的建筑机来建造道路", - "advancements.buildcraftbuilders.diggy.title": "无底洞", - "advancements.buildcraftbuilders.diggy.description": "完成64x64的采石场", - "advancements.buildcraftbuilders.start_of_something_big.title": "整点大的", - "advancements.buildcraftbuilders.start_of_something_big.description": "使用建筑机构建超大型建筑", - "advancements.buildcraftbuilders.building_for_the_future.title": "为未来而建", - "advancements.buildcraftbuilders.building_for_the_future.description": "用填充机以实现长期自动化", - "advancements.buildcraftbuilders.destroying_the_world.title": "毁灭世界", - "advancements.buildcraftbuilders.destroying_the_world.description": "有两个或以上的采石场(64x64,全速运行)" -} \ No newline at end of file + "buildcraft.boardRobotClean": "清洁工具人", + "buildcraft.boardRobotPicker": "拾取工具人", + "buildcraft.boardRobotLumberjack": "伐木工具人", + "buildcraft.boardRobotPlanter": "种植工具人", + "buildcraft.boardRobotLeaveCutter": "剪叶工具人", + "buildcraft.boardRobotCarrier": "搬运工具人", + "buildcraft.boardRobotFluidCarrier": "储罐工具人", + "buildcraft.boardRobotBomber": "爆破工具人", + "buildcraft.boardRobotKnight": "骑士工具人", + "buildcraft.boardRobotMiner": "采掘工具人", + "buildcraft.boardRobotFarmer": "耕耘工具人", + "buildcraft.boardRobotHarvester": "收获工具人", + "buildcraft.boardRobotShovelman": "铲工工具人", + "buildcraft.boardRobotButcher": "屠宰工具人", + "buildcraft.boardRobotBuilder": "建筑工具人", + "buildcraft.boardRobotCrafter": "合成工具人", + "buildcraft.boardRobotDelivery": "配送工具人", + "buildcraft.boardRobotPump": "液泵工具人", + "buildcraft.boardRobotStripes": "条纹工具人", + "buildcraft.boardRobotBreaker": "破坏工具人", + "buildcraft.boardRobotPicker.desc": "拾取物品", + "buildcraft.boardRobotLumberjack.desc": "伐木", + "buildcraft.boardRobotPlanter.desc": "种植作物", + "buildcraft.boardRobotLeaveCutter.desc": "剪树叶", + "buildcraft.boardRobotCarrier.desc": "在容器间搬运物品", + "buildcraft.boardRobotFluidCarrier.desc": "在储罐间运输流体", + "buildcraft.boardRobotBomber.desc": "轰炸区域", + "buildcraft.boardRobotKnight.desc": "与怪物斗智斗勇", + "buildcraft.boardRobotMiner.desc": "挖掘矿物", + "buildcraft.boardRobotFarmer.desc": "锄地", + "buildcraft.boardRobotHarvester.desc": "收获成熟作物", + "buildcraft.boardRobotShovelman.desc": "铲地", + "buildcraft.boardRobotButcher.desc": "屠宰动物", + "buildcraft.boardRobotBuilder.desc": "修建房屋", + "buildcraft.boardRobotCrafter.desc": "合成物品", + "buildcraft.boardRobotDelivery.desc": "根据需求配送物品", + "buildcraft.boardRobotPump.desc": "泵出流体", + "buildcraft.boardRobotStripes.desc": "采掘石头", + "chat.gateCopier.clear": "门信息已清除。", + "chat.gateCopier.gateCopied": "复制门信息到拷贝器中。", + "chat.gateCopier.gatePasted": "粘贴拷贝器信息到门中。", + "chat.gateCopier.noGate": "该面未发现门!", + "chat.gateCopier.noInformation": "没有存储的门信息!", + "chat.gateCopier.warning.actionParameters": "§6警告:目标缺少执行参数!", + "chat.gateCopier.warning.logic": "§6警告:目标的逻辑类型不同!", + "chat.gateCopier.warning.load": "§6警告:门触发/操作配置可能丢失!", + "chat.gateCopier.warning.slots": "§6警告:目标槽数不足!", + "chat.gateCopier.warning.triggerParameters": "§6警告:目标的触发参数不足!", + "chat.pipe.power.iron.mode": "切换为%dRF/t限制", + "chat.pipe.power.iron.mode.numberless": "切换为%s限制", + "chat.pipe.power.iron.level.20": "极低", + "chat.pipe.power.iron.level.40": "低", + "chat.pipe.power.iron.level.80": "较低", + "chat.pipe.power.iron.level.160": "中等", + "chat.pipe.power.iron.level.320": "高", + "chat.pipe.power.iron.level.640": "较高", + "chat.pipe.power.iron.level.1280": "极高", + "chat.pipe.power.iron.level.2560": "满容量", + "color.clear": "颜色清除", + "color.black": "黑色", + "color.blue": "蓝色", + "color.brown": "棕色", + "color.cyan": "青色", + "color.gray": "灰色", + "color.green": "原谅色", + "color.light.blue": "浅蓝色", + "color.light.gray": "浅灰色", + "color.lime": "酸橙色", + "color.magenta": "品红色", + "color.orange": "橙色", + "color.pink": "粉色", + "color.purple": "紫色", + "color.red": "红色", + "color.white": "白色", + "color.yellow": "黄色", + "config.general": "常规", + "config.general.pipes": "管道", + "config.blueprints": "蓝图", + "config.builders": "建造", + "config.power": "耗能", + "config.experimental": "测试", + "config.display": "显示", + "config.performance": "性能", + "config.worldgen": "世界生成", + "config.network": "网络", + "config.buildcraft": "BuildCraft配置", + "config.blueprints.clientDatabaseDirectory": "客户端路径", + "config.blueprints.excludedMods": "排除模组", + "config.blueprints.excludedBlocks": "排除方块", + "config.builders.dropBrokenBlocks": "掉落方块", + "config.display.colorBlindMode": "色盲模式", + "config.display.hideFluidValues": "隐藏流体量", + "config.display.hidePowerValues": "隐藏能量", + "config.experimental.kinesisPowerLossOnTravel": "管道流失能量", + "config.general.boards.blacklist": "工具人黑名单", + "config.general.pumpsConsumeWater": "泵用水", + "config.general.updateCheck": "检查更新", + "config.general.fuel.fuel.combustion": "引擎燃油消耗倍数", + "config.general.fuel.oil.combustion": "引擎原油消耗倍数", + "config.general.fuel.fuel.combustion.energyOutput": "引擎燃油能量输出", + "config.general.fuel.oil.combustion.energyOutput": "引擎原油能量输出", + "config.general.itemLifespan": "物品存活时长(秒)", + "config.general.canEnginesExplode": "引擎爆炸", + "config.general.oilCanBurn": "原油是否可燃", + "config.general.oilIsDense": "原油是否稠密", + "config.general.pipes.baseFluidRate": "基本流动速率", + "config.general.pipes.facadeBlacklist": "伪装板黑名单", + "config.general.pipes.facadeBlacklistAsWhitelist": "反相伪装板黑名单", + "config.general.pipes.facadeNoLaserRecipe": "是否添加伪装板无镭射配方", + "config.general.pipes.hardness": "硬度", + "config.general.pipes.slimeballWaterproofRecipe": "是否添加鼻涕球合成密封剂配方", + "config.general.pumpsNeedRealPower": "泵是否需要真实能量", + "config.general.quarry": "采石场选项", + "config.general.quarry.oneTimeUse": "一次", + "config.general.quarry.doChunkLoading": "自动区块加载", + "config.general.markerRange": "地标标记范围", + "config.general.miningDepth": "最大相对挖掘深度", + "config.general.pumpDimensionControl": "泵作用范围控制", + "config.network.longUpdateFactor": "客户端同步因数(ticks)", + "config.network.updateFactor": "包发送因数(ticks)", + "config.power.miningUsageMultiplier": "挖掘能耗倍数", + "config.power.chipsetCostMultiplier": "芯片能耗倍数", + "config.power.gateCostMultiplier": "门能耗倍数", + "config.worldgen.enable": "激活", + "config.worldgen.generateWaterSprings": "生成水泉", + "config.worldgen.oilWellGenerationRate": "油井生成率", + "config.worldgen.spawnOilSprings": "生成油泉", + "config.worldgen.biomes.biomeOilDesert": "原油沙漠生物群系id", + "config.worldgen.biomes.biomeOilOcean": "原油海域生物群系id", + "config.worldgen.biomes.excessiveOilIDs": "原油极其丰富的生物群系", + "config.worldgen.biomes.excludeOilIDs": "无原油生物群系", + "config.worldgen.biomes.increasedOilIDs": "原油较丰富的生物群系", + "direction.north": "北面", + "direction.west": "西面", + "direction.east": "东面", + "direction.south": "南面", + "direction.up": "顶端", + "direction.down": "底端", + "direction.center": "中心", + "direction.center.0": "西北", + "direction.center.1": "北面", + "direction.center.2": "东北", + "direction.center.3": "西面", + "direction.center.4": "中心", + "direction.center.5": "东面", + "direction.center.6": "西南", + "direction.center.7": "南面", + "direction.center.8": "东南", + "buildcraft.fluid.empty": "空", + "buildcraft.fluid.static.milli.short": "%s mB", + "buildcraft.fluid.static.bucket.short": "%s B", + "buildcraft.fluid.static.milli.long": "%s 小桶", + "buildcraft.fluid.static.bucket.long": "%s 大桶", + "buildcraft.fluid.empty.milli.short": "0 / %s mB", + "buildcraft.fluid.empty.bucket.short": "0 / %s B", + "buildcraft.fluid.empty.milli.long": "空的 %s 小储罐", + "buildcraft.fluid.empty.bucket.long": "空的 %s 大储罐", + "buildcraft.fluid.full.milli.short": "%1$s / %1$s mB", + "buildcraft.fluid.full.bucket.short": "%1$s / %1$s B", + "buildcraft.fluid.full.milli.long": "满的 %s 小储罐", + "buildcraft.fluid.full.bucket.long": "满的 %s 大储罐", + "buildcraft.fluid.static.cap.milli.short": "%s / %s mB", + "buildcraft.fluid.static.cap.bucket.short": "%s / %s B", + "buildcraft.fluid.static.cap.milli.long": "%s 小桶 (在 %s 小储罐中)", + "buildcraft.fluid.static.cap.bucket.long": "%s 大桶 (在 %s 大储罐中)", + "buildcraft.fluid.flow.milli.short": "%s mB/t", + "buildcraft.fluid.flow.bucket.short": "%s B/s", + "buildcraft.fluid.flow.milli.long": "%s 小桶每刻", + "buildcraft.fluid.flow.bucket.long": "%s 大桶每秒", + "buildcraft.mj.static.long": "%s MC焦耳", + "buildcraft.mj.static.short": "%s MJ", + "buildcraft.mj.flow.long": "%s MC焦耳每刻", + "buildcraft.mj.flow.short": "%s MJ/t", + "buildcraft.mj.flow.seconds.long": "%s MC焦耳每秒", + "buildcraft.mj.flow.seconds.short": "%s MJ/s", + "fillerpattern.clear": "清除", + "fillerpattern.fill": "填充", + "fillerpattern.flatten": "平整", + "fillerpattern.horizon": "地平线", + "fillerpattern.pyramid": "金字塔", + "fillerpattern.stairs": "阶梯", + "fillerpattern.box": "盒状", + "fillerpattern.frame": "框架", + "fillerpattern.none": "空", + "fillerpattern.sphere_eighth": "八分之一球体", + "fillerpattern.sphere_quarter": "四分之一球体", + "fillerpattern.sphere_half": "半球", + "fillerpattern.sphere": "球", + "fillerpattern.2d_arc": "圆弧", + "fillerpattern.2d_semi_circle": "半圆", + "fillerpattern.2d_circle": "圆", + "fillerpattern.2d_triangle": "三角形", + "fillerpattern.2d_square": "正方形", + "fillerpattern.2d_pentagon": "五边形", + "fillerpattern.2d_hexagon": "六边形", + "fillerpattern.2d_octagon": "八边形", + "fillerpattern.parameter.hollow": "中空", + "fillerpattern.parameter.filled": "实心", + "fillerpattern.parameter.filled_outer": "包围", + "buildcraft.param.rotation.0": "不旋转", + "buildcraft.param.rotation.1": "90度旋转", + "buildcraft.param.rotation.2": "180度旋转", + "buildcraft.param.rotation.3": "270度旋转", + "buildcraft.param.axis.x": "X轴", + "buildcraft.param.axis.y": "Y轴", + "buildcraft.param.axis.z": "Z轴", + "fluid.oil": "原油", + "fluid.fuel": "燃油", + "fluid.oil_distilled": "蒸馏油", + "fluid.oil_heavy": "重油", + "fluid.oil_dense": "稠油", + "fluid.oil_residue": "残渣", + "fluid.tar": "焦油", + "fluid.fuel_mixed": "混合燃料", + "fluid.fuel_mixed_heavy": "混合重燃料", + "fluid.fuel_mixed_light": "混合轻燃料", + "fluid.fuel_dense": "浓燃料", + "fluid.fuel_light": "轻燃料", + "fluid.fuel_gaseous": "气态燃料", + "buildcraft.fluid.heat_0": "%s (§b冷§r)", + "buildcraft.fluid.heat_1": "%s (§6热§r)", + "buildcraft.fluid.heat_2": "%s (§c灼热§r)", + "buildcraft.christmas.fluid.oil": "生巧克力粉", + "buildcraft.christmas.fluid.fuel": "牛奶巧克力", + "buildcraft.christmas.fluid.oil_distilled": "混合巧克力", + "buildcraft.christmas.fluid.oil_heavy": "生巧克力", + "buildcraft.christmas.fluid.oil_dense": "香醇的生巧克力", + "buildcraft.christmas.fluid.oil_residue": "焦糖加多了", + "buildcraft.christmas.fluid.fuel_mixed_heavy": "深色巧克力粉", + "buildcraft.christmas.fluid.fuel_mixed_light": "浅色巧克力粉", + "buildcraft.christmas.fluid.fuel_dense": "黑巧克力", + "buildcraft.christmas.fluid.fuel_light": "牛奶巧克力", + "buildcraft.christmas.fluid.fuel_gaseous": "白巧克力", + "buildcraft.christmas.buildcraft.fluid.heat_0": "§b融化§r %s", + "buildcraft.christmas.buildcraft.fluid.heat_1": "§6沸腾§r %s", + "buildcraft.christmas.buildcraft.fluid.heat_2": "§c灼热§r %s", + "buildcraft.christmas.tile.engineIron.name": "巧克力引擎", + "gate.action.extraction": "%s提取预设", + "gate.action.pipe.item.color": "将物品颜色染为%s", + "gate.action.machine.on": "开", + "gate.action.machine.off": "关", + "gate.action.machine.loop": "循环", + "gate.action.pulsar.constant": "能量脉冲", + "gate.action.pulsar.single": "单次能量脉冲", + "gate.action.pipe.wire": "%s管线信号", + "gate.action.redstone.signal": "雷石东信号", + "gate.action.robot.goto_station": "前往转接坞", + "gate.action.pipe.valve.open": "打开", + "gate.action.pipe.valve.input_only": "仅输入", + "gate.action.pipe.valve.output_only": "仅输出", + "gate.action.pipe.valve.closed": "关掉", + "gate.action.station.provide_items": "提供物品", + "gate.action.station.accept_items": "接受物品", + "gate.action.station.request_items": "请求物品", + "gate.action.station.drop_items_in_pipe": "将物品传送到管道", + "gate.action.station.allow_craft": "允许合成", + "gate.action.station.provide_machine_request": "请求需要的物品", + "gate.action.station.accept_fluids": "接受流体", + "gate.action.station.povide_fluids": "提供流体", + "gate.action.robot.work_in_area": "工作区域", + "gate.action.robot.load_unload_area": "装载/卸载区域", + "gate.action.robot.wakeup": "唤醒", + "gate.action.station.forbid_robot": "禁用工具人", + "gate.action.station.force_robot": "强制工具人", + "gate.action.robot.filter": "过滤", + "gate.action.robot.filter_tool": "过滤工具", + "gate.action.pipe.direction": "面向 %s 方", + "gate.logic.and": "与", + "gate.logic.or": "或", + "gate.material.iron": "老铁", + "gate.material.nether_brick": "尼德兰砖", + "gate.material.gold": "黄油", + "gate.slots": "%s 位置", + "gate.params": "%s 位置参数", + "gate.params.trigger": "%s 触发参数", + "gate.params.action": "%s 运行参数", + "gate.side": "§7在 %s§7 方向", + "gate.name": "%s%s门", + "gate.name.basic": "基础门", + "gate.parameter.redstone.gateSideOnly": "仅限门侧", + "gate.trigger.true": "保持打开", + "gate.trigger.engine.blue": "引擎蓝色", + "gate.trigger.engine.green": "引擎绿色", + "gate.trigger.engine.yellow": "引擎黄色", + "gate.trigger.engine.red": "引擎红色", + "gate.trigger.engine.overheat": "引擎过热", + "gate.trigger.fluid.empty": "储罐空", + "gate.trigger.fluid.contains": "储罐有流体", + "gate.trigger.fluid.space": "储罐有空间", + "gate.trigger.fluid.full": "储罐满", + "gate.trigger.fluidlevel.below": "已使用空间 < %d%%", + "gate.trigger.inventory.empty": "容器空", + "gate.trigger.inventory.contains": "容器有物品", + "gate.trigger.inventory.space": "容器有空间", + "gate.trigger.inventory.full": "容器满", + "gate.trigger.inventorylevel.below": "已使用空间 < %d%%", + "gate.trigger.machine.done": "工作完成", + "gate.trigger.machine.scheduled": "有工作", + "gate.trigger.redstone.input.active": "雷石东信号开", + "gate.trigger.redstone.input.inactive": "雷石东信号关", + "gate.trigger.redstone.input.level": "雷石东信号强度%d", + "gate.trigger.redstone.input.equal": "雷石东信号相等", + "gate.trigger.redstone.input.greater": "雷石东信号大于", + "gate.trigger.redstone.input.less": "雷石东信号小于", + "gate.trigger.pipe.empty": "管道空", + "gate.trigger.pipe.containsItems": "物品经过", + "gate.trigger.pipe.containsFluids": "流体经过", + "gate.trigger.pipe.containsEnergy": "能量经过", + "gate.trigger.pipe.requestsEnergy": "能量需求", + "gate.trigger.pipe.tooMuchEnergy": "能量过载", + "gate.trigger.pipe.wire.active": "%s管线信号开", + "gate.trigger.pipe.wire.inactive": "%s管线信号关", + "gate.trigger.timer": "%s秒计时器", + "gate.trigger.robot.sleep": "休眠", + "gate.trigger.robot.in.station": "工具人入驻", + "gate.trigger.robot.linked": "转接坞连接", + "gate.trigger.robot.reserved": "转接坞预留", + "gate.trigger.machine.energyStored.high": "高能量存储", + "gate.trigger.machine.energyStored.low": "低能量存储", + "gate.trigger.machine.energyStored.below25": "能量储量 < 25%", + "gate.trigger.machine.energyStored.below50": "能量储量 < 50%", + "gate.trigger.machine.energyStored.below75": "能量储量 < 75%", + "gate.trigger.light.bright": "明亮", + "gate.trigger.light.dark": "黑暗", + "gate.trigger.time.0": "夜晚", + "gate.trigger.time.6": "早晨", + "gate.trigger.time.12": "下午", + "gate.trigger.time.18": "傍晚", + "gate.trigger.fuelLevelBelow": "燃料少于 %d%%", + "gate.trigger.coolantLevelBelow": "冷却液少于 %d%%", + "gui.fluidtank.empty": "空", + "gui.building.resources": "建筑材料", + "gui.building.fluids": "流体储罐", + "gui.del": "删除", + "gui.filling.resources": "填充材料", + "gui.inventory": "物品栏", + "gui.lock": "已锁定", + "gui.needed": "需要", + "gui.unlock": "未锁定", + "gui.energy": "能量", + "gui.currentOutput": "当前输出", + "gui.stored": "存储能量", + "gui.heat": "热量", + "gui.assemblyRate": "功率", + "gui.assemblyCurrentRequired": "需求能量", + "gui.clickcraft": "-点击以合成-", + "gui.list.nbt": "需要完全匹配\n§7(附魔,名称和存储的数据需要精确匹配)", + "gui.list.metadata": "模糊META数据", + "gui.list.oredict": "模糊矿物辞典", + "gui.pipes.emerald.title": "过滤", + "gui.pipes.emerald.blocking": "阻挡", + "gui.pipes.emerald.blocking.tip": "若过滤设置中有缺失对象则阻挡被抽取物品", + "gui.pipes.emerald.nonblocking": "不阻挡", + "gui.pipes.emerald.nonblocking.tip": "若过滤设置对象缺失则抽取下一个过滤设置对象", + "gui.pipes.emzuli.title": "抽取预设", + "gui.pipes.emzuli.paint": "染色物品 %s", + "gui.pipes.emzuli.nopaint": "不对物品染色", + "gui.ledger.ownership": "拥有者", + "gui.ledger.help": "帮助", + "gui.progress": "进度", + "gui.leftToBreak": "破坏", + "gui.leftToPlace": "放置", + "item.bucketFuel.name": "燃油桶", + "item.bucketOil.name": "原油桶", + "item.diamondShard.name": "祖安石片", + "item.woodenGearItem.name": "木齿轮", + "item.stoneGearItem.name": "石齿轮", + "item.ironGearItem.name": "老铁齿轮", + "item.goldGearItem.name": "黄油齿轮", + "item.diamondGearItem.name": "祖安石齿轮", + "item.templateItem.name": "模版", + "item.wrenchItem.name": "扳手", + "item.paintbrush.name": "颜料刷", + "item.pipeWaterproof.name": "管道密封剂", + "item.PipeWire.name": "管线", + "item.redstoneCrystal.name": "雷石东晶体", + "item.redstone_red_chipset.name": "雷石东芯片", + "item.redstone_iron_chipset.name": "老铁芯片", + "item.redstone_gold_chipset.name": "黄油芯片", + "item.redstone_diamond_chipset.name": "祖安石芯片", + "item.redstone_emerald_chipset.name": "原谅石芯片", + "item.redstone_pulsating_chipset.name": "脉冲芯片", + "item.redstone_quartz_chipset.name": "石英芯片", + "item.redstone_comp_chipset.name": "雷石东比较芯片", + "item.redstone_board.name": "雷石东板", + "item.robot.name": "工具人", + "item.tablet.name": "板", + "item.blueprintItem.name": "蓝图", + "item.schematicSingle.name": "单方块图纸", + "item.list.name": "列表", + "item.blueprint.unnamed": "<未命名蓝图>", + "item.blueprint.author": "作者:", + "item.blueprint.blank": "空白", + "item.blueprint.creative_only": "仅限上帝模式", + "item.blueprint.no_build": "无建筑", + "item.blueprint.incomplete": "未完成", + "item.mapLocation.name": "定位图纸", + "item.gateCopier.name": "门设拷贝器", + "item.plasticSheet.name": "塑料表格", + "item.markerConnector.name": "记号连接器", + "item.pulsar.name": "管道脉冲", + "item.fragile_fluid_shard.name": "脆弱的%s碎片", + "item.waterGel.name": "水凝胶剂", + "item.gel.name": "水凝胶", + "item.buildcraft_pipe_wood_item.name": "木质管道", + "item.buildcraft_pipe_cobblestone_item.name": "圆石管道", + "item.buildcraft_pipe_stone_item.name": "石头管道", + "item.buildcraft_pipe_andersite_item.name": "安山岩管道", + "item.buildcraft_pipe_andersite_polished_item.name": "磨光的安山岩管道", + "item.buildcraft_pipe_diorite_item.name": "DIO岩管道", + "item.buildcraft_pipe_diorite_polished_item.name": "磨光的DIO岩管道", + "item.buildcraft_pipe_granite_item.name": "花岗岩管道", + "item.buildcraft_pipe_granite_polished_item.name": "磨光的花岗岩管道", + "item.PipeItemsWood.name": "木质管道", + "item.PipeItemsCobblestone.name": "圆石管道", + "item.PipeItemsStone.name": "石头管道", + "item.PipeItemsAndesite.name": "安山岩管道", + "item.PipeItemsDiorite.name": "DIO岩管道", + "item.PipeItemsGranite.name": "花岗岩管道", + "item.PipeItemsQuartz.name": "石英管道", + "item.PipeItemsIron.name": "老铁管道", + "item.PipeItemsGold.name": "黄油管道", + "item.PipeItemsDiamond.name": "祖安石管道", + "item.PipeItemsObsidian.name": "黑曜石管道", + "item.PipeItemsWoodenDiamond.name": "木质祖安石管道", + "item.PipeItemsLapis.name": "蓝宝石管道", + "item.PipeItemsDaizuli.name": "靛金刚管道", + "item.PipeItemsEmzuli.name": "靛翡翠管道", + "item.PipeItemsClay.name": "土球球管道", + "item.PipeFluidsWood.name": "木质流体管道", + "item.PipeFluidsCobblestone.name": "圆石流体管道", + "item.PipeFluidsStone.name": "石头流体管道", + "item.PipeFluidsAndesite.name": "安山岩流体管道", + "item.PipeFluidsDiorite.name": "DIO岩流体管道", + "item.PipeFluidsGranite.name": "花岗岩流体管道", + "item.PipeFluidsIron.name": "老铁流体管道", + "item.PipeFluidsQuartz.name": "石英流体管道", + "item.PipeFluidsGold.name": "黄油流体管道", + "item.PipeFluidsWoodenDiamond.name": "木质祖安石流体管道", + "item.PipeFluidsDiamond.name": "祖安石流体管道", + "item.PipeFluidsClay.name": "土球球流体管道", + "item.PipePowerWood.name": "木质能量管道", + "item.PipePowerCobblestone.name": "圆石能量管道", + "item.PipePowerStone.name": "石头能量管道", + "item.PipePowerQuartz.name": "石英能量管道", + "item.PipePowerIron.name": "老铁能量管道", + "item.PipePowerGold.name": "黄油能量管道", + "item.PipePowerDiamond.name": "祖安石能量管道", + "item.PipePowerEmerald.name": "原谅石能量管道", + "item.PipeItemsStripes.name": "条纹管道", + "item.PipeStructureCobblestone.name": "圆石建筑管道", + "item.PipeItemsVoid.name": "虚空管道", + "item.PipeFluidsVoid.name": "虚空流体管道", + "item.PipeItemsSandstone.name": "沙石管道", + "item.PipeFluidsSandstone.name": "沙石流体管道", + "item.PipePowerSandstone.name": "沙石能量管道", + "item.PipeRobotStation.name": "工具人转接坞", + "item.Facade.name": "伪装板", + "item.Facade.state_hollow": "中空", + "item.FacadePhased.name": "多阶伪装板", + "item.FacadePhased.state": "%s: %s", + "item.FacadePhased.state_default": "默认:%s", + "item.FacadePhased.state_transparent": "透明度", + "item.PipePlug.name": "管塞", + "item.light_sensor.name": "光线感应器", + "item.Lens.name": "透镜", + "item.Filter.name": "滤镜", + "item.PipePowerAdapter.name": "能量接收器", + "item.debugger.name": "调试器", + "item.debugger.warning": "仅用于测试!会导致泄密。", + "item.package.name": "包", + "item.buildcraft.guide.name": "BuildCraft教程书", + "item.buildcraft.guide_note.name": "BuildCraft教程笔记", + "item.buildcraft.robot_goggles.name": "工具人风镜", + "item.buildcraft.filler_planner.name": "填充计划器", + "itemGroup.buildcraft.boards": "Buildcraft工具人", + "itemGroup.buildcraft.main": "Buildcraft", + "itemGroup.buildcraft.pipes": "Buildcraft管道", + "itemGroup.buildcraft.facades": "Buildcraft伪装板", + "itemGroup.buildcraft.gates": "Buildcraft门", + "tile.architectBlock.name": "建筑工作台", + "tile.architectBlock.tip": "生存模式不可用", + "tile.assemblyTableBlock.name": "装配台", + "tile.assemblyWorkbenchBlock.name": "高级工作台", + "tile.autoWorkbenchBlock.name": "自动合成台", + "tile.blockFuel.name": "燃油", + "tile.chuteBlock.name": "滑槽", + "tile.blockOil.name": "原油", + "tile.builderBlock.name": "建筑机", + "tile.builderBlock.tip": "生存模式不可用", + "tile.chargingTableBlock.name": "充能台", + "tile.chargingTableBlock.tip": "没法用它充能", + "tile.constructionMarkerBlock.name": "建设标", + "tile.engineCreative.name": "创造引擎", + "tile.engineIron.name": "燃油引擎", + "tile.engineStone.name": "斯特林引擎", + "tile.engineWood.name": "雷石东引擎", + "tile.fillerBlock.name": "填充机", + "tile.filteredBufferBlock.name": "过滤缓存器", + "tile.fillerBlock.tip": "生存模式不可用。", + "tile.floodGateBlock.name": "液闸", + "tile.frameBlock.name": "框架", + "tile.integrationTableBlock.name": "集成台", + "tile.integrationTableBlock.tip": "没有合成配方来使用", + "tile.laserBlock.name": "镭射器", + "tile.libraryBlock.name": "电子档案馆", + "tile.machineBlock.name": "采石场", + "tile.quarryBlock.name": "Quarry", + "tile.markerBlock.name": "地标", + "tile.miningWellBlock.name": "矿井", + "tile.packagerBlock.name": "配方封包器", + "tile.pathMarkerBlock.name": "路径标", + "tile.plainPipeBlock.name": "采矿管道", + "tile.programmingTableBlock.name": "编程台", + "tile.programmingTableBlock.tip": "BC1.12.2的工具人咕了", + "tile.pumpBlock.name": "液泵", + "tile.refineryBlock.name": "精炼厂", + "tile.requester.name": "请求机", + "tile.spring.oil.name": "油泉", + "tile.spring.water.name": "水泉", + "tile.stampingTableBlock.name": "压印台", + "tile.tankBlock.name": "储罐", + "tile.zonePlan.name": "区域规划机", + "tile.zonePlannerBlock.tip": "BC1.12.2的工具人咕了", + "tile.distiller.name": "蒸馏器", + "tile.heat_exchange.name": "热交换器", + "tile.decorated.blueprint.name": "蓝图 (装饰)", + "tile.decorated.template.name": "模板 (装饰)", + "tile.decorated.laser_back.name": "激光 (装饰)", + "tile.architect.rotate": "旋转:开", + "tile.architect.norotate": "旋转:关", + "tile.architect.allowCreative": "模式:创造", + "tile.architect.noallowCreative": "模式:生存", + "tile.architect.tooltip.allowCreative.1": "上帝模式允许使用所有方块,仅限上帝模式!", + "tile.architect.tooltip.allowCreative.2": "生存模式将忽略所有不支持的方块", + "tile.architect.excavate": "挖掘:开", + "tile.architect.noexcavate": "挖掘:关", + "tip.gate.wires": "§9§o兼容管线:", + "tip.gate.wires.redstone": "红", + "tip.gate.wires.iron": "红,蓝", + "tip.gate.wires.gold": "红,蓝,绿", + "tip.gate.wires.quartz": "红,蓝,绿", + "tip.gate.wires.diamond": "红,蓝,绿,黄", + "tip.gate.wires.emerald": "红,蓝,绿,黄", + "tip.gate.expansions": "§9§o已安装扩展:", + "tip.PipeFluidsClay": "流体嵌入传送管道", + "tip.PipeFluidsDiamond": "分类流体", + "tip.PipeFluidsEmerald": "提取管道", + "tip.PipeFluidsIron": "阀门管道", + "tip.PipeFluidsSandstone": "只会连接其他管道", + "tip.PipeFluidsVoid": "销毁液体", + "tip.PipeFluidsWood": "提取管道", + "tip.PipeItemsClay": "嵌入传送管道", + "tip.PipeItemsDaizuli": "改变色标物品的运输路线", + "tip.PipeItemsDiamond": "分类物品", + "tip.PipeItemsEmerald": "循环提取管道", + "tip.PipeItemsEmzuli": "门控提取管道", + "tip.PipeItemsGold": "加速物品", + "tip.PipeItemsIron": "改变物品运输路线", + "tip.PipeItemsLapis": "彩色标记物品", + "tip.PipeItemsObsidian": "吸收物品", + "tip.PipeItemsSandstone": "只会连接其他管道", + "tip.PipeItemsVoid": "吃掉物品", + "tip.PipeItemsWood": "提取管道", + "tip.PipePowerEmerald": "能量输入管道", + "tip.PipePowerDiamond": "自定义限制管道", + "tip.PipePowerSandstone": "只能连接其他管道", + "tip.PipePowerWood": "能量输入管道", + "tip.PipeStructureCobblestone": "支撑类管道", + "tip.deprecated": "不可用", + "tip.gate.charged": "充能", + "tip.gate.fullcharge": "完全充能", + "tip.gate.nocharge": "未充能", + "tip.filler.excavate.on": "采掘", + "tip.filler.excavate.off": "不采掘", + "tip.filler.invert.on": "反转", + "tip.filler.invert.off": "不反转", + "tip.list.matches": "匹配", + "tip.shift.PipeFluidsDiamond": "界面接受任意流体容器", + "tip.shift.PipeFluidsEmerald": "界面接受任意流体容器", + "tip.shift.PipeItemsClay": "优先选择胸部和容器 \\ 随后选择管道", + "tip.shift.PipeItemsDaizuli": "潜行点击以切换颜色", + "tip.shift.PipeItemsEmzuli": "在界面中设定输出预过滤配置\n预设配置会将输出的物品染色\n通过门来切换输出预设", + "tip.shift.PipeItemsLapis": "潜行点击以切换颜色", + "tip.shift.PipeItemsObsidian": "用引擎供能\n能量越多-作用范围越远", + "tip.shift.PipePowerDiamond": "用扳手或门来切换输送限度", + "tip.PipeItemsEmerald.whitelist": "白名单", + "tip.PipeItemsEmerald.blacklist": "黑名单", + "tip.PipeItemsEmerald.roundrobin": "按序循环", + "tip.tool.add": "添加", + "tip.tool.fullscreen": "全屏", + "tip.tool.remove": "移除", + "achievement.woodenGearAchievement": "边缘略显粗糙", + "achievement.woodenGearAchievement.desc": "合成木齿轮", + "achievement.stoneGearAchievement": "坚若磐石", + "achievement.stoneGearAchievement.desc": "将木齿轮升级成石齿轮", + "achievement.ironGearAchievement": "会生锈吗?", + "achievement.ironGearAchievement.desc": "将石齿轮升级成老铁齿轮", + "achievement.goldGearAchievement": "不,它不是用蜜做的", + "achievement.goldGearAchievement.desc": "将老铁齿轮升级成黄油齿轮", + "achievement.diamondGearAchievement": "Oh shinny!", + "achievement.diamondGearAchievement.desc": "将黄油齿轮升级成祖安石齿轮", + "achievement.wrenchAchievement": "敲敲就好!", + "achievement.wrenchAchievement.desc": "制作一柄扳手", + "achievement.engineAchievement1": "伟大的起点", + "achievement.engineAchievement1.desc": "合成出雷石东引擎", + "achievement.engineAchievement2": "高效率", + "achievement.engineAchievement2.desc": "合成出斯特林引擎", + "achievement.engineAchievement3": "能量之屋", + "achievement.engineAchievement3.desc": "合成出燃油引擎", + "achievement.aLotOfCraftingAchievement": "批量加工", + "achievement.aLotOfCraftingAchievement.desc": "合成出自动合成台", + "achievement.straightDownAchievement": "垂直向下", + "achievement.straightDownAchievement.desc": "制造出一台挖矿机", + "achievement.chunkDestroyerAchievement": "区块毁灭者", + "achievement.chunkDestroyerAchievement.desc": "合成出采石场", + "achievement.fasterFillingAchievement": "快捷过滤", + "achievement.fasterFillingAchievement.desc": "制造出过滤器", + "achievement.timeForSomeLogicAchievement": "是时候做点逻辑工作了", + "achievement.timeForSomeLogicAchievement.desc": "合成出芯片装配台", + "achievement.refineAndRedefineAchievement": "精炼并重定义", + "achievement.refineAndRedefineAchievement.desc": "制造出精炼厂", + "achievement.tinglyLaserAchievement": "灼人镭射", + "achievement.tinglyLaserAchievement.desc": "合成出镭射器", + "achievement.architectAchievement": "建筑师", + "achievement.architectAchievement.desc": "合成出建筑师工作台", + "achievement.builderAchievement": "我有更好的事情要做", + "achievement.builderAchievement.desc": "合成出建造机", + "achievement.blueprintAchievement": "建筑图纸", + "achievement.blueprintAchievement.desc": "合成出蓝图", + "achievement.templateAchievement": "基础", + "achievement.templateAchievement.desc": "合成出模板", + "achievement.blueprintLibraryAchievement": "创意永流传", + "achievement.blueprintLibraryAchievement.desc": "合成出蓝图档案馆", + "bc_update.new_version": "§c新版Buildcraft可用:版本为%s,适用于Minecraft %s", + "bc_update.download": "§c从http://www.mod-buildcraft.com/download下载", + "bc_update.once": "本信息默认仅显示一次", + "bc_update.again": "若想再次查看可输入指令“/buildcraft version”", + "bc_update.changelog": "输入指令“/buildcraft changelog”以查看日志", + "chat.buildcraft.quarry.tooSmall": "[BuildCraft] 采石场区域超出加载区块边界或太小%d %d(%d)", + "chat.buildcraft.quarry.chunkloadInfo": "[BuildCraft] 位于 %d %d %d 的采石场将保持%d个区块加载", + "command.buildcraft.version": "BuildCraft%s,适用于Minecraft %s(最新版本为:%s)。", + "command.buildcraft.changelog_header": "BuildCraft更新日志%s:", + "command.buildcraft.version.fail": "版本检查失败,请看日志文件", + "command.buildcraft.version.prerelease": "你正在使用预发布版本", + "command.buildcraft.aliases": "别名: %s", + "command.buildcraft.help": "输入“%s”查看帮助。", + "command.buildcraft.list": "可用命令:", + "command.buildcraft.permlevel": "权限等级:%s", + "command.buildcraft.noperms": "你没有使用该指令的权限。", + "command.buildcraft.buildcraft.help": "建筑相关指令集", + "command.buildcraft.buildcraft.format": "格式:/%s <子命令>", + "command.buildcraft.buildcraft.version.desc": "- %s : 版本信息", + "command.buildcraft.buildcraft.version.help": "显示当前及最新BC版本", + "command.buildcraft.buildcraft.version.format": "格式: /%s", + "command.buildcraft.buildcraft.changelog.desc": "- %s : 更新日志", + "command.buildcraft.buildcraft.changelog.help": "显示最新BC日志。", + "command.buildcraft.buildcraft.changelog.format": "格式: /%s", + "buildcraft.item.nonclean.usage": "Shift右键点击以清理", + "buildcraft.guide.book.meta.name": "BuildCraft 配置教程", + "buildcraft.guide_book.reloaded": "教程书已重载", + "buildcraft.guide.too_many_results": "无法显示更多内容: %s", + "buildcraft.guide.chapter_list": "章节", + "buildcraft.guide.contents.loaded_modules": "已加载的模块:", + "buildcraft.guide.contents.missing_modules": "缺失的模块:", + "buildcraft.guide.order.type_subtype": "按类型排列", + "buildcraft.guide.order.mod_type": "按mod排列", + "buildcraft.guide.order.alphabetical": "按字母排列", + "buildcraft.guide.recipe.create": "合成", + "buildcraft.guide.recipe.create.plural": "合成", + "buildcraft.guide.recipe.use": "使用", + "buildcraft.guide.recipe.use.plural": "使用", + "buildcraft.guide.chapter.contents": "内容", + "buildcraft.guide.contents.all_group": "其他", + "buildcraft.guide.contents.item_stacks": "物品和方块", + "buildcraft.guide.contents.triggers": "触发条件", + "buildcraft.guide.contents.actions": "动作", + "buildcraft.guide.chapter.type.unknown": "未知类型!", + "buildcraft.guide.chapter.subtype.unknown": "未知子类型!", + "buildcraft.guide.chapter.mod.unknown": "未知Mod!", + "buildcraft.guide.chapter.submod.unknown": "未知子Mod!", + "buildcraft.guide.meta.group.linking_to": "连接至", + "buildcraft.guide.meta.group.linked_from": "连接来自", + "buildcraft.guide.group.to.buildcraft.pipe_power_providers": "管道能量提供", + "buildcraft.guide.group.from.buildcraft.pipe_power_providers": "管道能量接收", + "buildcraft.guide.group.to.buildcraft.full_power_providers": "完整能量提供", + "buildcraft.guide.group.from.buildcraft.full_power_providers": "完整能量接收", + "buildcraft.guide.group.to.buildcraft.laser_power_providers": "激光能量提供", + "buildcraft.guide.group.from.buildcraft.laser_power_providers": "激光能量接收", + "buildcraft.guide.group.to.buildcraft.area_markers": "区域标记", + "buildcraft.guide.group.from.buildcraft.area_markers": "区域相关标记", + "buildcraft.help.tank.generic": "用一个空桶点击它,它里面的液体就会装进桶里", + "buildcraft.help.tank.title.tankFuel": "油储罐", + "buildcraft.help.tank.title.tankCoolant": "冷却液储罐", + "buildcraft.help.tank.title.tankResidue": "残渣储罐", + "buildcraft.help.tank.fuel": "此储罐无法装下燃料", + "buildcraft.help.tank.coolant": "可以接受任何种类的流体以及冰块", + "buildcraft.help.tank.residue": "燃料没被处理时,输出残渣", + "buildcraft.help.stone_engine.flame.title": "燃料剩余", + "buildcraft.help.stone_engine.fuel.title": "燃料输入", + "buildcraft.help.stone_engine.flame": "着火了,(帮助没写完)", + "buildcraft.help.stone_engine.fuel": "接受燃料类别和熔炉相同", + "command.buildcraft.buildcraft.op.desc": "- %s : Op FakePlayer", + "command.buildcraft.buildcraft.op.help": "给予BC模拟玩家(以采石场,工具人等名义执行动作)服务器op权限。", + "command.buildcraft.buildcraft.op.format": "格式: /%s", + "command.buildcraft.buildcraft.deop.desc": "- %s : Deop FakePlayer", + "command.buildcraft.buildcraft.deop.help": "撤销BC模拟玩家(以采石场,工具人等名义执行动作)服务器op权限。", + "command.buildcraft.buildcraft.deop.format": "格式: /%s", + "advancements.buildcraftcore.root.title": "BuildCraft", + "advancements.buildcraftcore.root.description": "满足你对工业科技的需求", + "advancements.buildcraftcore.guide.title": "如何实现……?", + "advancements.buildcraftcore.guide.description": "看看教程", + "advancements.buildcraftcore.gears.title": "做好准备", + "advancements.buildcraftcore.gears.description": "获得所有种类的齿轮", + "advancements.buildcraftcore.wrenched.title": "扳手!", + "advancements.buildcraftcore.wrenched.description": "成功使用扳手", + "advancements.buildcraftcore.freePowar.title": "动力自由!", + "advancements.buildcraftcore.freePowar.description": "产生自由的动力", + "advancements.buildcraftcore.list.title": "分门别类", + "advancements.buildcraftcore.list.description": "发现分类的高级功能", + "advancements.buildcraftcore.engine.title": "第一台引擎", + "advancements.buildcraftcore.engine.description": "获得第一台引擎", + "advancements.buildcraftcore.markers.title": "圈地", + "advancements.buildcraftcore.markers.description": "用地标画出一个区域", + "advancements.buildcraftcore.path_markers.title": "定义踪迹", + "advancements.buildcraftcore.path_markers.description": "定义足迹", + "advancements.buildcraftcore.paper.title": "集纸者", + "advancements.buildcraftcore.paper.description": "每张纸都用完", + "advancements.buildcraftenergy.poweringUp.title": "启动!", + "advancements.buildcraftenergy.poweringUp.description": "用雷石东信号启动斯特林/燃油引擎", + "advancements.buildcraftenergy.lava_power.title": "熔岩之力", + "advancements.buildcraftenergy.lava_power.description": "用熔岩来启动斯特林引擎", + "advancements.buildcraftenergy.to_much_power.title": "力量过多", + "advancements.buildcraftenergy.to_much_power.description": "引擎过热并用扳手拆掉", + "advancements.buildcraftenergy.ice_cool.title": "冰凉", + "advancements.buildcraftenergy.ice_cool.description": "冷却燃油引擎(先用其他方法,最后用水)", + "advancements.buildcraftenergy.sticky_dipping.title": "粘浸", + "advancements.buildcraftenergy.sticky_dipping.description": "石油原来这么黏啊……", + "advancements.buildcraftenergy.fine_riches.title": "大富豪", + "advancements.buildcraftenergy.fine_riches.description": "找到油田生物群系", + "advancements.buildcraftenergy.refine_and_redefine.title": "优化,再定义", + "advancements.buildcraftenergy.refine_and_redefine.description": "往储罐里放入各种燃油", + "advancements.buildcraftfactory.fluid_storage.title": "储存液体", + "advancements.buildcraftfactory.fluid_storage.description": "向储罐中加入液体", + "advancements.buildcraftfactory.lazy_crafting.title": "懒得合成", + "advancements.buildcraftfactory.lazy_crafting.description": "为自己建造自动合成台", + "advancements.buildcraftfactory.retired_hopper.title": "退休的漏斗", + "advancements.buildcraftfactory.retired_hopper.description": "将滑槽放回原位", + "advancements.buildcraftfactory.flooding_the_world.title": "淹没世界", + "advancements.buildcraftfactory.flooding_the_world.description": "用水泉淹没一片区域", + "advancements.buildcraftfactory.draining_the_world.title": "抽干世界", + "advancements.buildcraftfactory.draining_the_world.description": "使用水泵来吸水", + "advancements.buildcraftfactory.oil_platform.title": "石油平台", + "advancements.buildcraftfactory.oil_platform.description": "抽取油泉", + "advancements.buildcraftfactory.heating_and_distilling.title": "加热与蒸馏", + "advancements.buildcraftfactory.heating_and_distilling.description": "用蒸馏器和热交换器建造完整的炼油装置", + "advancements.buildcraftfactory.black_gold.title": "黑色的金子", + "advancements.buildcraftfactory.black_gold.description": "成功抽干大型油泉", + "advancements.buildcraftsilicon.laser_power.title": "激光力量", + "advancements.buildcraftsilicon.laser_power.description": "合成镭射器", + "advancements.buildcraftsilicon.precision_crafting.title": "准确合成", + "advancements.buildcraftsilicon.precision_crafting.description": "使用装配台进行合成", + "advancements.buildcrafttransport.pipe_dream.title": "管道之梦", + "advancements.buildcrafttransport.pipe_dream.description": "放置管道", + "advancements.buildcrafttransport.pipe_diversification.title": "多种多样的管道", + "advancements.buildcrafttransport.pipe_diversification.description": "放置物品,流体,能量和结构管道", + "advancements.buildcrafttransport.plugging_the_gap.title": "缩小差距", + "advancements.buildcrafttransport.plugging_the_gap.description": "塞上管道", + "advancements.buildcrafttransport.logic_transportation.title": "逻辑运输", + "advancements.buildcrafttransport.logic_transportation.description": "连接管道线", + "advancements.buildcrafttransport.extended_logic.title": "扩展逻辑", + "advancements.buildcrafttransport.extended_logic.description": "使用带有额外插槽的门", + "advancements.buildcrafttransport.sealing_fluids.title": "密封液", + "advancements.buildcrafttransport.sealing_fluids.description": "用仙人掌染成管道密封胶", + "advancements.buildcrafttransport.pipe_logic.title": "管道逻辑", + "advancements.buildcrafttransport.pipe_logic.description": "在管道上放置门", + "advancements.buildcrafttransport.all_plugged_up.title": "全插上了", + "advancements.buildcrafttransport.all_plugged_up.description": "将每个管道扩展物(门,滤镜……)都连接到管道", + "advancements.buildcrafttransport.pipe_fanatic.title": "我爱管道", + "advancements.buildcrafttransport.pipe_fanatic.description": "放置了各种类型的管道", + "advancements.buildcrafttransport.categorizing_with_colors.title": "用色彩分类", + "advancements.buildcrafttransport.categorizing_with_colors.description": "使用色彩功能设置分类系统", + "advancements.buildcrafttransport.colorful_electrician.title": "彩色管工", + "advancements.buildcrafttransport.colorful_electrician.description": "使用16种颜色来标记管道,提高管道系统的健壮性", + "advancements.buildcraftbuilders.shaping_the_world.title": "塑造世界", + "advancements.buildcraftbuilders.shaping_the_world.description": "合成并放置采石机", + "advancements.buildcraftbuilders.architect.title": "建筑师", + "advancements.buildcraftbuilders.architect.description": "用建筑工作台扫描区域,并把区域保存在蓝图/模板中", + "advancements.buildcraftbuilders.paving_the_way.title": "铺平道路", + "advancements.buildcraftbuilders.paving_the_way.description": "利用带有路径标记的建筑机来建造道路", + "advancements.buildcraftbuilders.diggy.title": "无底洞", + "advancements.buildcraftbuilders.diggy.description": "完成64x64的采石场", + "advancements.buildcraftbuilders.start_of_something_big.title": "整点大的", + "advancements.buildcraftbuilders.start_of_something_big.description": "使用建筑机构建超大型建筑", + "advancements.buildcraftbuilders.building_for_the_future.title": "为未来而建", + "advancements.buildcraftbuilders.building_for_the_future.description": "用填充机以实现长期自动化", + "advancements.buildcraftbuilders.destroying_the_world.title": "毁灭世界", + "advancements.buildcraftbuilders.destroying_the_world.description": "有两个或以上的采石场(64x64,全速运行)" +} diff --git a/mods/cloth-config2.json b/mods/cloth-config2.json index 6e5047af6..a8fa06ca6 100644 --- a/mods/cloth-config2.json +++ b/mods/cloth-config2.json @@ -1,47 +1,47 @@ { - "text.cloth-config.save_and_done": "完成", - "text.cloth-config.apply": "应用更改", - "text.cloth-config.quit_config": "更改尚未保存", - "text.cloth-config.quit_config_sure": "您确定要取消编辑吗?更改将不会被保存!", - "text.cloth-config.cancel_discard": "放弃变更", - "text.cloth-config.quit_discard": "放弃变更", - "text.cloth-config.config": "设置", - "text.cloth-config.multi_error": "多个问题!", - "text.cloth-config.not_editable": "不可编辑!", - "text.cloth-config.error.not_valid_number_int": "不是一个有效的数字! (整数)", - "text.cloth-config.error.not_valid_number_long": "不是一个有效的数字!(长整数)", - "text.cloth-config.error.not_valid_number_float": "不是一个有效的数字! (浮点数)", - "text.cloth-config.error.not_valid_number_double": "不是一个有效的数字! (Double)", - "text.cloth-config.error.too_large": "太大! (最大值: %d)", - "text.cloth-config.error.too_small": "太小! (最小值: %d)", - "text.cloth-config.error.color.no_alpha_allowed": "No Alpha Allowed!", - "text.cloth-config.error.color.invalid_alpha": "Not a valid value! (Alpha)", - "text.cloth-config.error.color.invalid_red": "Not a valid value! (Red)", - "text.cloth-config.error.color.invalid_green": "Not a valid value! (Green)", - "text.cloth-config.error.color.invalid_blue": "Not a valid value! (Blue)", - "text.cloth-config.error.color.invalid_color": "Not a valid color!", - "text.cloth-config.error.color.no_hash": "Not a valid color! (Missing #)", - "text.cloth-config.list.add": "插入", - "text.cloth-config.list.remove": "删除所选", - "text.cloth-config.error_cannot_save": "错误!", - "text.cloth-config.reset_value": "重置", - "text.cloth.reset_value": "重置", - "text.cloth-config.restart_required": "需要重启", - "text.cloth-config.restart_required_sub": "您修改的设置要求Minecraft重新启动。您想要继续吗?", - "text.cloth-config.exit_minecraft": "退出我的世界", - "text.cloth-config.ignore_restart": "忽略重启", - "text.cloth-config.boolean.value.true": "§a是", - "text.cloth-config.boolean.value.false": "§c否", - "text.cloth-config.dropdown.value.unknown": "§c没有建议项", - "modifier.cloth-config.alt": "Alt + %s", - "modifier.cloth-config.ctrl": "Ctrl + %s", - "modifier.cloth-config.shift": "Shift + %s", - "title.cloth-config.config": "Cloth Mod Config Config", - "category.cloth-config.scrolling": "Scrolling", - "category.cloth-config.testing": "Config Demo", - "option.cloth-config.scrollDuration": "Scroll Duration", - "option.cloth-config.scrollStep": "Scroll Step", - "option.cloth-config.bounceBackMultiplier": "Bounce Multiplier", - "option.cloth-config.setDefaultSmoothScroll": "Set Default Smooth Scroll", - "option.cloth-config.disableSmoothScroll": "Disable Smooth Scroll" + "text.cloth-config.save_and_done": "完成", + "text.cloth-config.apply": "应用更改", + "text.cloth-config.quit_config": "更改尚未保存", + "text.cloth-config.quit_config_sure": "您确定要取消编辑吗?更改将不会被保存!", + "text.cloth-config.cancel_discard": "放弃变更", + "text.cloth-config.quit_discard": "放弃变更", + "text.cloth-config.config": "设置", + "text.cloth-config.multi_error": "多个问题!", + "text.cloth-config.not_editable": "不可编辑!", + "text.cloth-config.error.not_valid_number_int": "不是一个有效的数字! (整数)", + "text.cloth-config.error.not_valid_number_long": "不是一个有效的数字!(长整数)", + "text.cloth-config.error.not_valid_number_float": "不是一个有效的数字! (浮点数)", + "text.cloth-config.error.not_valid_number_double": "不是一个有效的数字! (Double)", + "text.cloth-config.error.too_large": "太大! (最大值: %d)", + "text.cloth-config.error.too_small": "太小! (最小值: %d)", + "text.cloth-config.error.color.no_alpha_allowed": "No Alpha Allowed!", + "text.cloth-config.error.color.invalid_alpha": "Not a valid value! (Alpha)", + "text.cloth-config.error.color.invalid_red": "Not a valid value! (Red)", + "text.cloth-config.error.color.invalid_green": "Not a valid value! (Green)", + "text.cloth-config.error.color.invalid_blue": "Not a valid value! (Blue)", + "text.cloth-config.error.color.invalid_color": "Not a valid color!", + "text.cloth-config.error.color.no_hash": "Not a valid color! (Missing #)", + "text.cloth-config.list.add": "插入", + "text.cloth-config.list.remove": "删除所选", + "text.cloth-config.error_cannot_save": "错误!", + "text.cloth-config.reset_value": "重置", + "text.cloth.reset_value": "重置", + "text.cloth-config.restart_required": "需要重启", + "text.cloth-config.restart_required_sub": "您修改的设置要求Minecraft重新启动。您想要继续吗?", + "text.cloth-config.exit_minecraft": "退出我的世界", + "text.cloth-config.ignore_restart": "忽略重启", + "text.cloth-config.boolean.value.true": "§a是", + "text.cloth-config.boolean.value.false": "§c否", + "text.cloth-config.dropdown.value.unknown": "§c没有建议项", + "modifier.cloth-config.alt": "Alt + %s", + "modifier.cloth-config.ctrl": "Ctrl + %s", + "modifier.cloth-config.shift": "Shift + %s", + "title.cloth-config.config": "Cloth Mod Config Config", + "category.cloth-config.scrolling": "Scrolling", + "category.cloth-config.testing": "Config Demo", + "option.cloth-config.scrollDuration": "Scroll Duration", + "option.cloth-config.scrollStep": "Scroll Step", + "option.cloth-config.bounceBackMultiplier": "Bounce Multiplier", + "option.cloth-config.setDefaultSmoothScroll": "Set Default Smooth Scroll", + "option.cloth-config.disableSmoothScroll": "Disable Smooth Scroll" } diff --git a/mods/corail_woodcutter.json b/mods/corail_woodcutter.json index 0d898068b..6d490cdb5 100644 --- a/mods/corail_woodcutter.json +++ b/mods/corail_woodcutter.json @@ -1,12 +1,12 @@ { - "itemGroup.corail_woodcutter.main": "Corail Woodcutter", - "block.corail_woodcutter.oak_woodcutter": "橡木锯木机", - "block.corail_woodcutter.spruce_woodcutter": "云杉木锯木机", - "block.corail_woodcutter.birch_woodcutter": "白桦木锯木机", - "block.corail_woodcutter.jungle_woodcutter": "丛林木锯木机", - "block.corail_woodcutter.acacia_woodcutter": "金合欢木锯木机", - "block.corail_woodcutter.dark_oak_woodcutter": "深色橡木锯木机", - "block.corail_woodcutter.crimson_woodcutter": "Crimson Sawmill", - "block.corail_woodcutter.warped_woodcutter": "Warped Sawmill", - "container.corail_woodcutter.woodcutter": "锯木机" + "itemGroup.corail_woodcutter.main": "Corail锯木机", + "block.corail_woodcutter.oak_woodcutter": "橡木锯木机", + "block.corail_woodcutter.spruce_woodcutter": "云杉木锯木机", + "block.corail_woodcutter.birch_woodcutter": "白桦木锯木机", + "block.corail_woodcutter.jungle_woodcutter": "丛林木锯木机", + "block.corail_woodcutter.acacia_woodcutter": "相思木锯木机", + "block.corail_woodcutter.dark_oak_woodcutter": "巧克力锯木机", + "block.corail_woodcutter.crimson_woodcutter": "绯红木锯木机", + "block.corail_woodcutter.warped_woodcutter": "幽蓝木锯木机", + "container.corail_woodcutter.woodcutter": "锯木机" } diff --git a/mods/craftingpp.json b/mods/craftingpp.json index 67bf4ab4e..a0bdef325 100644 --- a/mods/craftingpp.json +++ b/mods/craftingpp.json @@ -1,826 +1,826 @@ { - "item.cpp.sheep_head":"§e咩咩头", - "item.cpp.chicken_head":"§e鸡头", - "item.cpp.pig_head":"§e猪头", - "item.cpp.cow_head":"§e牛头", - "item.cpp.bat_head":"§e野味头", - "item.cpp.squid_head":"§e八爪鱼头", - "item.cpp.cod_head":"§e鳕鱼头", - "item.cpp.salmon_head":"§e鲑鱼头", - "item.cpp.tropical_fish_head":"§e热带鱼头", - "item.cpp.pufferfish_head":"§e泡芙鱼头", - "item.cpp.snow_golem_head":"§e雪傀儡头", - "item.cpp.iron_golem_head":"§e铁憨憨头", - - "item.cpp.witch_head":"§e女巫头", - "item.cpp.villager_head":"§e村民头", - "item.cpp.wandering_trader_head":"§e流浪奸商头", - "item.cpp.evoker_head":"§e唤魔者头", - "item.cpp.vindicator_head":"§e卫道士头", - "item.cpp.pillager_head":"§e掠夺者头", - "item.cpp.illusioner_head":"§e影流之主之头", - "item.cpp.ravager_head":"§e无敌铁牛头", - "item.cpp.vex_head":"§e猥傀的头", - - "item.cpp.turtle_head":"§e王八头", - "item.cpp.panda_head":"§e滚滚头", - "item.cpp.dolphin_head":"§e海豚头", - "item.cpp.polar_bear_head":"§e北极熊头", - "item.cpp.wolf_head":"§eHld(大嘘)头", - "item.cpp.bee_head":"§e蜂子头", - - "item.cpp.horse_head":"§e马头", - "item.cpp.donkey_head":"§e阿米娅头", - "item.cpp.mule_head":"§e骡头", - "item.cpp.llama_head":"§e草泥马头", - "item.cpp.trader_llama_head":"§e行商草泥马头", - "item.cpp.skeleton_horse_skull":"§e骷髅马头颅", - "item.cpp.zombie_horse_head":"§e僵尸马头", - - "item.cpp.spider_head":"§e蜘蛛头", - "item.cpp.cave_spider_head":"§e洞穴蜘蛛头", - "item.cpp.zombie_villager_head":"§e僵尸村民头", - "item.cpp.drowned_head":"§e水猴子头", - "item.cpp.stray_skull":"§e流髑的头颅", - "item.cpp.slime_head":"§e萌王的头", - "item.cpp.husk_head":"§e尸壳的头", - "item.cpp.guardian_head":"§e痞老板头", - "item.cpp.elder_guardian_head":"§e远古痞老板头", - - "item.cpp.zombified_piglin_head":"§e僵硬的猪刚鬣头", - "item.cpp.piglin_head":"§e猪刚鬣头", - "item.cpp.blaze_head":"§e烈焰人头", - "item.cpp.ghast_head":"§e地狱轰炸机的头", - "item.cpp.magma_cube_head":"§e岩浆萌王头", - "item.cpp.phantom_head":"§eIcyPhantom的头", - "item.cpp.enderman_head":"§e小黑头", - "item.cpp.shulker_head":"§e潜影贝头", - "item.cpp.endermite_head":"§e末影螨头", - - "item.cpp.mooshroom_head.red":"§e红哞菇头", - "item.cpp.mooshroom_head.brown":"§e棕哞菇头", - "item.cpp.fox_head.red":"§e狐狸头", - "item.cpp.fox_head.snow":"§e雪狐头", - - "item.cpp.parrot_head.red":"§e红色咕咕咕头", - "item.cpp.parrot_head.blue":"§e蓝色咕咕咕头", - "item.cpp.parrot_head.green":"§e绿色咕咕咕头", - "item.cpp.parrot_head.cyan":"§e青色咕咕咕头", - "item.cpp.parrot_head.gray":"§e灰色咕咕咕头", - - "item.cpp.cat_head.tabby":"§e虎斑猫头", - "item.cpp.cat_head.tuxedo":"§e西服猫头", - "item.cpp.cat_head.red":"§e红虎斑猫头", - "item.cpp.cat_head.siamese":"§e暹罗猫头", - "item.cpp.cat_head.british_shorthair":"§e英国短毛猫头", - "item.cpp.cat_head.calico":"§e花猫头", - "item.cpp.cat_head.persian":"§e波斯猫头", - "item.cpp.cat_head.ragdoll":"§e布偶猫头", - "item.cpp.cat_head.white":"§e白猫头", - "item.cpp.cat_head.jellie":"§eJellie 猫头", - "item.cpp.cat_head.black":"§e黑猫头", - - "item.cpp.rabbit_head.brown":"§e棕色兔头", - "item.cpp.rabbit_head.white":"§e白色兔头", - "item.cpp.rabbit_head.black":"§e黑色兔头", - "item.cpp.rabbit_head.white_splotched":"§e斑点兔头", - "item.cpp.rabbit_head.gold":"§e金色兔头", - "item.cpp.rabbit_head.salt":"§e椒盐兔头", - "item.cpp.rabbit_head.toast":"§e吐司兔头", - "item.cpp.rabbit_head.killer_bunny":"§e杀手兔头", - - "item.cpp.wing_of_sky":"§e天空翅膀", - "item.cpp.heart_of_crystal":"§e水晶的心", - "item.cpp.limb_of_ridge":"§e山脉的肢", - "item.cpp.soul_of_dirt":"§e泥的魂", - "item.cpp.certification_of_earth":"§e土的证", - "item.cpp.nova_of_fire":"§e火的星", - "item.cpp.spirit_of_life":"§e命的灵", - "item.cpp.shard_of_the_darkness":"§r黑暗碎片", - "item.cpp.broken_spawner":"§r破损的产卵器(棒读)", - - "block.minecraft.petrified_oak_slab":"§r合成器", - "item.cpp.all_in_one_machine":"§r多功能一体机", - "item.cpp.trade_machine":"§r交♂易机", - "item.cpp.mob_projector":"§r生物投影仪", - "item.cpp.golden_anvil":"§r金哐当", - "item.cpp.beacon_enhancer":"§r培根方块增强器", - "item.cpp.item_processer":"§r物品处理机", - "item.cpp.empty_plugin":"§r空白插件", - "item.cpp.high_temperature_plugin":"§r好♂热插件", - "item.cpp.low_temperature_plugin":"§r好冷(抖抖抖抖)插件", - "item.cpp.high_pressure_plugin":"§r要被压扁惹.jpg插件", - "item.cpp.low_pressure_plugin":"§r要膨胀了.png插件", - "item.cpp.cobblestone_plugin":"§e圆石插件", - "item.cpp.stone_plugin":"§e石插件", - "item.cpp.blackstone_plugin":"§e非洲石头插件", - "item.cpp.netherrack_plugin":"§e尼德兰岩插件", - "item.cpp.end_stone_plugin":"§e奶酪插件", - - "item.cpp.process_shower":"§r进度条", - "item.cpp.output_slot":"§r输出", - "item.cpp.normal_temperature":"§r常温", - "item.cpp.high_temperature":"§r好♂热", - "item.cpp.low_temperature":"§r好冷(抖抖抖抖)", - "item.cpp.normal_pressure":"§r常压", - "item.cpp.high_pressure":"§r要被压扁惹.jpg", - "item.cpp.low_pressure":"§r要膨胀了.png", - "item.cpp.output_east":"§r向东输出", - "item.cpp.output_south":"§r向南输出", - "item.cpp.output_west":"§r向西输出", - "item.cpp.output_north":"§r向北输出", - "item.cpp.output_down":"§r向下输出", - "item.cpp.output_up":"§r向上输出", - "item.cpp.emerald_mode":"§r原谅石模式", - "item.cpp.experience_bottle_mode":"§r覆膜之瓶模式", - "item.cpp.burn_mode":"§r燃烧模式", - "item.cpp.copy_mode":"§r拷贝模式", - "item.cpp.xp_bar":"§r§6经验", - "item.cpp.value_bar":"§r§6价值", - "lore.cpp.switch":"§a点击切换", - "info.cpp.high_pressure_plugin":"§6[Crafting++]§r 要被压扁惹.jpg插件已安装", - "info.cpp.low_pressure_plugin":"§6[Crafting++]§r 要膨胀了.png插件已安装", - "info.cpp.high_temperature_plugin":"§6[Crafting++]§r 好♂热插件已安装", - "info.cpp.low_temperature_plugin":"§6[Crafting++]§r 好冷(抖抖抖抖)插件已安装", - "item.cpp.beacon_enhancer.hostile":"§r对敌对生物生效", - "item.cpp.beacon_enhancer.all_mobs":"§r对所有生物生效", - - "info.cpp.fire_resistance": "§r赴汤蹈火", - "info.cpp.water_breathing": "§r肺积水", - "info.cpp.night_vision": "§r夜视", - "info.cpp.invisibility": "§r透 明 人", - "info.cpp.saturation": "§r饱了", - "info.cpp.chain": "§r铁 索 连 环", - "info.cpp.slowness": "§r龟速", - "info.cpp.weakness": "§r肾虚", - "info.cpp.glowing": "§r电灯泡", - "info.cpp.poison": "§r有毒", - "info.cpp.wither": "§r死神来了", - "info.cpp.attract": "§r吸引", - - "item.cpp.ancient_scroll": "§e老头滚动条", - "enchantment.cpp.fortune": "§r欧气附加 III", - "enchantment.cpp.looting": "§r抢劫 III", - "enchantment.cpp.sweeping": "§r破碎之刃 III", - "enchantment.cpp.lure": "§r饵钓 III", - "enchantment.cpp.unbreaking": "§r续命 III", - "enchantment.cpp.respiration": "§r水下呼吸 III", - "enchantment.cpp.sharpness": "§r锋利 V", - "enchantment.cpp.power": "§rPowup333的祝福 V", - - "item.cpp.enchanted_iron":"§b附魔铁锭", - "item.cpp.enchanted_gold":"§b附魔黄油", - "item.cpp.enchanted_diamond":"§b附魔祖安石", - "item.cpp.coal_nugget":"§r非洲粒", - "item.cpp.cinder":"§r非洲渣", - "item.cpp.splint":"§r碎祖安", - "item.cpp.rare_earth_glass":"§r稀土玻璃", - "item.cpp.reinforced_glass":"§r钢化玻璃", - "item.cpp.silicon_plate":"§r硅板", - "item.cpp.moon_shard":"§d月之碎片", - "item.cpp.sun_shard":"§d日之碎片", - "item.cpp.moon_stone":"§d月石", - "item.cpp.sun_stone":"§d日石", - "item.cpp.clay_bucket":"§r粘土桶", - - "item.cpp.iron_dust":"§r铁粉", - "item.cpp.gold_dust":"§r金粉", - "item.cpp.carbon_dust":"§r非洲粉", - "item.cpp.diamond_dust":"§r祖安石粉", - "item.cpp.emerald_dust":"§r原谅石粉", - "item.cpp.quartz_dust":"§r石英粉", - "item.cpp.rare_earth_salt":"§r稀土盐", - "item.cpp.alkaloid_rare_earth":"§r碱性稀土", - "item.cpp.rare_earth_dust":"§r稀土粉", - "item.cpp.coarse_silicon":"§r粗硅", - "item.cpp.silicon_dust":"§r硅粉", - "item.cpp.steel_dust":"§r钢粉", - "item.cpp.fertilizer":"§r肥料", - - "item.cpp.acid":"§r柠檬水(但是浓了好几倍)", - "item.cpp.soda_water":"§r苏打水(迫真)", - "item.cpp.bionic_acid":"§r柠檬酸(确信)", - "item.cpp.alkaloid":"§r秋水仙素(大雾)", - "item.cpp.bottle_of_air":"§r装了个寂寞", - "item.cpp.bottle_of_salt":"§r一瓶盐", - "item.cpp.ammonia_refrigerant":"§r氨制冷剂", - - "item.cpp.blue_force_of_sky":"§6蓝色天之力", - "item.cpp.green_force_of_water":"§6绿色贴吧之力", - "info.cpp.green_force_of_water":"§6已切换为", - "item.cpp.cyan_force_of_mountain":"§6青色山之力", - "item.cpp.orange_force_of_dirt":"§6橙色泥之力", - "item.cpp.yellow_force_of_earth":"§6黄色地之力", - "item.cpp.red_force_of_fire":"§6红色火之力", - "item.cpp.purple_force_of_life":"§6紫色命之力", - "item.cpp.white_force_of_lightning":"§6白色电之力", - "item.cpp.black_force_of_moon":"§6黑色月之力", - "item.cpp.elements.fail":"§6[Crafting++]§r 人生的经验不足, 你需要至少%1$s§r点经验来执行该操作", - "item.cpp.blue_force_of_sky.info":"§6[Crafting++]§r ", - "item.cpp.blue_force_of_sky.clear":" 呜啦啦!天气放晴!", - "item.cpp.blue_force_of_sky.rain":" 呜啦啦!下雨吧!", - "item.cpp.blue_force_of_sky.thunder":" 呜啦啦!雷击吧!", - - "item.cpp.portable_crafting_table":"§r便捷式合成台", - "item.cpp.portable_crafting_machine":"§r便捷式合成器", - "item.cpp.dustbin":"§r乐色桶", - "item.cpp.muffler":"§r(哔——)", - "item.cpp.chest_dropper":"§r箱漏", - "item.cpp.magnet":"§r钕铁硼", - "item.cpp.magnet_closed":"§r钕铁硼(关闭)", - "item.cpp.time_conditioner":"§r时间调节器", - "item.cpp.time_contitioner.info":"§6[Crafting++]§r ", - "item.cpp.time_contitioner.accelerate":" 设置作物生长速度翻倍", - "item.cpp.time_contitioner.normal":" 设置作物生长速度为默认值", - "item.cpp.time_contitioner.uncycle":" 停止了日月循环", - "item.cpp.time_contitioner.cycle":" 开启了日月循环", - "item.cpp.time_checker":"§r报时器", - "info.cpp.time_checker.morning":"§6[Crafting++]§r 现在时间 06:00, 早上好呀awa", - "info.cpp.time_checker.noon":"§6[Crafting++]§r 现在时间 12:00, 一天过去一半啦", - "info.cpp.time_checker.afternoon":"§6[Crafting++]§r 现在时间 18:00, 太阳下山了", - "info.cpp.time_checker.evening":"§6[Crafting++]§r 现在时间 00:00, 还不睡觉等着犭", - "item.cpp.origin_of_the_world":"§r世界之烂橘子(怨念)", - "item.cpp.origin_of_the_world.no_spawn":"§6[Crafting++]§r 你尚未设置死去活来点, 将会被传送至产卵室附近", - "item.cpp.compressor":"§r压缩器", - "item.cpp.compressor.layer":"§6重", - "item.cpp.elder_s_words":"§r那个人的教诲", - "item.cpp.coordinate_recorder":"§r坐标记录仪", - "item.cpp.coordinate_recorder2":"§r坐标记录仪(已记录)", - "item.cpp.coordinate_recorder.info":"§6[Crafting++]§r 坐标已记录", - "item.cpp.sachet":"§r香囊", - "item.cpp.grafter":"§r剪枝器", - "item.cpp.glass_pickaxe":"§r玻璃镐", - "item.cpp.chest_transporter":"§r搬箱器", - "info.cpp.chest_transporter.no_nesting":"§6[Crafting++]§r 禁止套娃!§m禁止禁止套娃§r", - "item.cpp.firecrackers":"§r鞭炮", - "item.cpp.empty_bookshelf":"§r空书柜", - "item.cpp.bookshelf":"§r书柜", - "item.cpp.industrious_hand":"§b勤劳之手", - "item.cpp.break_hand":"§b破坏之手", - "item.cpp.smart_hand":"§b灵巧之手", - "item.cpp.angry_hand":"§b愤怒之手", - "item.cpp.toughen_hand":"§b历练之手", - "item.cpp.golem":"§b傀儡", - "item.cpp.golem_farmer":"§r傀儡农民", - "item.cpp.golem_miner":"§r傀儡矿工", - "item.cpp.golem_fisher":"§r傀儡渔夫", - "item.cpp.golem_warrior":"§r傀儡战士", - "item.cpp.golem_herder":"§r傀儡牧民", - - "item.cpp.china_flag":"§7中国国旗", - "item.cpp.usa_flag":"§7美国国旗", - "item.cpp.russia_flag":"§7俄罗斯国旗", - "item.cpp.uk_flag":"§7英国国旗", - "item.cpp.france_flag":"§7假的法国国旗", - "item.cpp.bilibili_logo":"§7哔哩哔哩标志", - "item.cpp.github_logo":"§7GayHub 标志", - "item.cpp.mcmod_logo":"§7MC百科标志", - "item.cpp.tcp_logo":"§7The Command Power 标志", - "item.cpp.cbl_logo":"§7Command Block Logic 标志", - "item.cpp.nf_logo":"§7Nuclear Fusion 标志", - - "item.cpp.donkey_meat":"§r生阿米娅肉", - "item.cpp.cooked_donkey_meat":"§r熟阿米娅肉", - "item.cpp.mule_meat":"§r生骡肉", - "item.cpp.cooked_mule_meat":"§r熟骡肉", - "item.cpp.horse_meat":"§r生马肉", - "item.cpp.cooked_horse_meat":"§r熟马肉", - "item.cpp.llama_meat":"§r生草泥马肉", - "item.cpp.cooked_llama_meat":"§r熟草泥马肉", - "item.cpp.bear_meat":"§r生熊肉", - "item.cpp.cooked_bear_meat":"§r熟熊肉", - "item.cpp.parrot_meat":"§r生咕咕咕肉", - "item.cpp.cooked_parrot_meat":"§r熟咕咕咕肉", - - "item.cpp.ketchup":"§r鲜血(迫真)", - "item.cpp.strawberry_jam":"§r草莓果酱", - "item.cpp.blueberry_jam":"§r蓝莓果酱", - "item.cpp.orange_jam":"§r香橙果酱", - "item.cpp.cherry_jam":"§r樱桃果酱", - "item.cpp.apple_jam":"§r苹果酱", - "item.cpp.yeast_powder":"§r酵母粉", - "item.cpp.butter":"§r黄油", - "item.cpp.cheese":"§r奶酪", - "item.cpp.raisin":"§r葡萄干", - "item.cpp.toffee_apple":"§r拔丝§m煎面§r苹果", - "item.cpp.candied_haw":"§r冰糖葫芦", - "item.cpp.cupcake":"§r纸杯蛋糕", - "item.cpp.cake_roll":"§r蛋糕卷", - "item.cpp.croissant":"§r可颂", - "item.cpp.caramel_pudding":"§r焦糖布丁", - "item.cpp.doughnut":"§r甜甜圈", - "item.cpp.purple_doughnut":"§r紫色甜甜圈", - "item.cpp.pink_doughnut":"§r粉色甜甜圈", - "item.cpp.white_doughnut":"§r白色甜甜圈", - "item.cpp.blue_doughnut":"§r蓝色甜甜圈", - "item.cpp.green_doughnut":"§r原谅色甜甜圈", - "item.cpp.honey_pancake":"§r甜蜜蜜煎饼", - "item.cpp.boiled_egg":"§r煮二胡卵子", - "item.cpp.baked_carrot":"§r烤胡萝北", - "item.cpp.bacon":"§r真·培根", - "item.cpp.vegetable_kebab":"§r烤蔬菜串", - "item.cpp.beef_kebab":"§r烤牛肉串", - "item.cpp.pork_kebab":"§r烤五花肉串", - "item.cpp.lamb_kebab":"§r烤羊肉串", - "item.cpp.chicken_kebab":"§r烤鸡肉串", - "item.cpp.raw_colorful_vegetable":"§r生缤纷菜蔬", - "item.cpp.colorful_vegetable":"§r缤纷菜蔬", - "item.cpp.raw_braised_pork_with_potatoes":"§r生育碧服务器排骨", - "item.cpp.braised_pork_with_potatoes":"§r育碧服务器排骨", - "item.cpp.raw_braised_beef_with_potatoes":"§r生育碧服务器牛肉", - "item.cpp.braised_beef_with_potatoes":"§r熟育碧服务器牛肉", - "item.cpp.raw_rabbit_stew":"§r生兔肉煲", - "item.cpp.rabbit_stew":"§r兔肉煲", - "item.cpp.dumpling":"§r饺子(睡觉的人可能会数)", - "item.cpp.meat_floss_bread":"§r肉松面包", - "item.cpp.christmas_roast_chicken":"§r烤鸡", - "item.cpp.fish_and_chips":"§r炸鱼薯条", - "item.cpp.burger":"§r汉堡", - "item.cpp.pizza":"§r披萨", - "item.cpp.sushi":"§r寿司", - "item.cpp.qingtuan":"§r青团", - "item.cpp.sakura_mochi":"§r樱饼", - "item.cpp.zongzi":"§r粽子", - "item.cpp.sandwich":"§r三明治", - "item.cpp.stargazy_pie":"§r仰望星空π", - "lore.cpp.speed":"§9Plash Speed (0:30)", - "lore.cpp.strength":"§9Powup333的祝福 (0:30)", - "lore.cpp.leap":"§9duang duang duang (0:30)", - - "item.cpp.apricot":"§r杏", - "item.cpp.banana":"§r香蕉", - "item.cpp.blueberry":"§r蓝莓", - "item.cpp.cherry":"§r樱桃", - "item.cpp.chinese_date":"§r枣", - "item.cpp.coconut":"§r椰子", - "item.cpp.golden_grape":"§r金葡萄", - "item.cpp.grape":"§r紫葡萄", - "item.cpp.grapefruit":"§r葡萄水果(棒读)", - "item.cpp.hawthorn":"§r山楂", - "item.cpp.lemon":"§r柠檬", - "item.cpp.longan":"§r龙(nóng)眼", - "item.cpp.loquat":"§r枇杷", - "item.cpp.lychee":"§r荔枝", - "item.cpp.mango":"§r李芒果(不是)", - "item.cpp.orange":"§r大橙子", - "item.cpp.payapa":"§r木瓜", - "item.cpp.peach":"§r你正在想的东西", - "item.cpp.pear":"§randylizi", - "item.cpp.persimmon":"§r柿子", - "item.cpp.plum":"§r小李子", - "item.cpp.pomegranate":"§r石榴", - "item.cpp.strawberry":"§r草莓", - "item.cpp.tomato":"§r血浆果(迫真)", - "item.cpp.citrus":"§r森林蝙蝠", - - "item.cpp.cold_drink":"§r冷饮", - "item.cpp.agentia_of_sky":"§r天空药剂", - "item.cpp.agentia_of_ocean":"§r贴吧药剂", - "item.cpp.agentia_of_ridge":"§r山脉药剂", - "item.cpp.agentia_of_dirt":"§r泥土药剂", - "item.cpp.agentia_of_earth":"§r大地药剂", - "item.cpp.agentia_of_fire":"§r火焰药剂", - "item.cpp.agentia_of_life":"§r生命药剂", - "item.cpp.agentia_of_lightness":"§r轻盈药剂", - "item.cpp.agentia_of_eyesight":"§r明目药剂", - "item.cpp.agentia_of_fire_shield":"§r炎盾药剂", - "item.cpp.agentia_of_waterless":"§r反贴吧药剂", - "item.cpp.agentia_of_transparentness":"§r透明药剂", - "item.cpp.agentia_of_bounce":"§r弹力药剂", - "item.cpp.agentia_of_agileness":"§r敏捷药剂", - "item.cpp.agentia_of_sharpness":"§r锋锐药剂", - "item.cpp.agentia_of_rejuveness":"§r回春药剂", - "item.cpp.agentia_of_blood":"§r血涌药剂", - "item.cpp.agentia_of_extremeness":"§r极限药剂", - "item.cpp.agentia_of_shield":"§r护盾药剂", - "item.cpp.agentia_of_tide":"§r潮汐药剂", - "item.cpp.agentia_of_chain":"§r连环药剂", - "lore.cpp.chain":"铁 索 连 环", - "title.effect.chain":"§r 铁 索 连 环 ", - - "item.cpp.lycoris_radiata_seeds":"§r彼岸花种子", - "item.cpp.trifolium_seeds":"§r白车轴种子", - "item.cpp.blackthorn_seeds":"§r黑荆棘种子", - "item.cpp.cattail_seeds":"§r香蒲草种子", - "item.cpp.marigold_seeds":"§r金盏花种子", - "item.cpp.hibiscus_seeds":"§r木槿花种子", - "item.cpp.hyacinth_seeds":"§r风信子种子", - "item.cpp.calamus_seeds":"§r菖蒲草种子", - "item.cpp.wild_lilium_seeds":"§r滇百合种子", - "item.cpp.bauhinia_seeds":"§r紫荆花种子", - "item.cpp.fluffy_grass_seeds":"§r蓬蓬草种子", - "item.cpp.gerbera_seeds":"§r大丁草种子", - "item.cpp.esparto_seeds":"§r芦苇草种子", - "item.cpp.glow_forsythia_seeds":"§r亮连翘种子", - "item.cpp.glazed_shade_seeds":"§r碎璃草种子", - "item.cpp.stelera_seeds":"§r狼毒花种子", - "item.cpp.forage_crystal_seeds":"§r牧晶花种子", - "item.cpp.isorchid_seeds":"§r异绒兰种子", - "item.cpp.burning_chrysanthe_seeds":"§r焰光菊种子", - "item.cpp.oxalis_seeds":"§r酢浆草种子", - "item.cpp.lycoris_radiata":"§r彼岸花", - "item.cpp.trifolium":"§r白车轴", - "item.cpp.blackthorn":"§r黑荆棘", - "item.cpp.cattail":"§r香蒲草", - "item.cpp.marigold":"§r金盏花", - "item.cpp.hibiscus":"§r木槿花", - "item.cpp.hyacinth":"§r风信子", - "item.cpp.calamus":"§r菖蒲草", - "item.cpp.wild_lilium":"§r滇百合", - "item.cpp.bauhinia":"§r紫荆花", - "item.cpp.fluffy_grass":"§r蓬蓬草", - "item.cpp.gerbera":"§r大丁草", - "item.cpp.esparto":"§r芦苇草", - "item.cpp.glow_forsythia":"§r亮连翘", - "item.cpp.glazed_shade":"§r碎璃草", - "item.cpp.stelera":"§r狼毒花", - "item.cpp.forage_crystal":"§r牧晶花", - "item.cpp.isorchid":"§r异绒兰", - "item.cpp.burning_chrysanthe":"§r焰光菊", - "item.cpp.oxalis":"§r酢浆草", - - "item.cpp.calliopsis":"§r波斯菊", - "item.cpp.cyclamen":"§r仙客来", - "item.cpp.iris":"§r鸢尾", - "item.cpp.lilium_pumilum":"§r山丹丹§m的那个开花呦§r", - "item.cpp.snowdrop":"§r雪滴花", - "item.cpp.narcissus":"§r水仙", - "item.cpp.cole_flower":"§r油菜花", - "item.cpp.lupine":"§r§m闪闪的泪光§r鲁冰花", - "item.cpp.crocu":"§r番红花", - "item.cpp.pansy":"§r三色堇", - "item.cpp.arabia_speedwell":"§r阿拉伯婆婆纳,湖人最爱", - "item.cpp.silene_pendula":"§r矮雪轮", - "item.cpp.artemisia_argyi":"§r艾草", - "item.cpp.blue_rose":"§r蓝色妖姬", - - "item.cpp.rice":"§r稻谷", - "item.cpp.fruit_sapling":"§r水果树宝宝", - "item.cpp.ore_sapling":"§r矿石树宝宝", - "item.cpp.wool_sapling":"§r羊毛树宝宝", - "item.cpp.sakura_sapling":"§r樱花树宝宝", - "item.cpp.fruit_leaves":"§r水果树树叶", - "item.cpp.ore_leaves":"§r矿石树树叶", - "item.cpp.wool_leaves":"§r羊毛树树叶", - "item.cpp.sakura_leaves":"§r樱花树树叶", - "item.cpp.poinsettia":"§r圣诞花", - "item.cpp.christmas_tree":"§r圣诞树", - - "item.cpp.sorcerer_stone":"§r贤者之石", - "item.cpp.sealing_wand":"§6封印之杖", - "item.cpp.star_wand":"§6星之杖", - "item.cpp.dream_wand":"§6梦之杖", - "item.cpp.wand_of_the_darkness":"§r中二制杖", - "item.cpp.temperancer":"§r节制器", - "item.cpp.temperancer_closed":"§r节制器 (关闭)", - "item.cpp.broom":"§r扫帚", - "item.cpp.shooting_star":"§r流星丸", - "item.cpp.zombie_spawner":"§r僵尸产卵器(棒读)", - "item.cpp.skeleton_spawner":"§r骷髅产卵器(棒读)", - "item.cpp.creeper_spawner":"§r爪巴者产卵器(棒读)", - "item.cpp.spider_spawner":"§r蜘蛛产卵器(棒读)", - "item.cpp.cave_spider_spawner":"§r洞穴蜘蛛产卵器(棒读)", - "item.cpp.blaze_spawner":"§r烈焰人产卵器(棒读)", - "item.cpp.silverfish_spawner":"§r蠹虫产卵器(棒读)", - "info.cpp.rituals.fail":"§6[Crafting++]§r 仪式失败, 请检查材料", - "info.cpp.rituals.start":"§6[Crafting++]§r 仪式开始, 魔法正在凝聚……", - "info.cpp.rituals.finish":"§6[Crafting++]§r 仪式完成", - "info.cpp.rituals.break":"§6[Crafting++]§r 仪式中断", - "item.cpp.sakura":"§r木之本樱", - - "lore.cpp.stored_effects.speed":"§7附有 §6Plash Speed", - "lore.cpp.stored_effects.haste":"§7附有 §6冲冲冲", - "lore.cpp.stored_effects.strength":"§7附有 §6Powup333的祝福", - "lore.cpp.stored_effects.jump_boost":"§7附有 §6duang duang duang", - "lore.cpp.stored_effects.regeneration":"§7附有 §6回血", - "lore.cpp.stored_effects.resistance":"§7附有 §6无敌(大嘘)", - "lore.cpp.stored_effects.fire_resistance":"§7附有 §6赴汤蹈火", - "lore.cpp.stored_effects.water_breathing":"§7附有 §6肺积水", - "lore.cpp.stored_effects.invisibility":"§7附有 §6透 明 人", - "lore.cpp.stored_effects.night_vision":"§7附有 §6夜视", - "lore.cpp.stored_effects.saturation":"§7附有 §6饱了", - "lore.cpp.stored_effects.slow_falling":"§7附有 §6羽落", - "lore.cpp.stored_effects.conduit_power":"§7附有 §6超勇能量", - "lore.cpp.stored_effects.chain":"§7附有 §6铁 索 连 环", - - "item.cpp.purple_eye":"§r紫色美瞳", - "item.cpp.lash":"§r假睫毛", - "item.cpp.cat_breed":"§r猫胡子", - "item.cpp.red_lip":"§r烈焰红唇", - "item.cpp.garland":"§r花环", - "item.cpp.black_framed_glasses":"§r黑框眼镜", - "item.cpp.orange_framed_glasses":"§r橙框眼镜", - "item.cpp.joking_glasses":"§r愚弄眼镜", - "item.cpp.minion_goggles":"§r小黄人眼罩", - "item.cpp.pants":"§r胖次§mprprprpr", - "item.cpp.empire_hat":"§r冕旒", - "item.cpp.glass_helmet":"§r玻璃头盔", - "item.cpp.glow_hat":"§r荧光帽", - "item.cpp.green_hat":"§r原谅帽", - "item.cpp.black_hat":"§r非酋帽", - "item.cpp.nurse_hat":"§r护士帽", - "item.cpp.jacket":"§r皮夹克", - "item.cpp.red_coat":"§r红色外套", - "item.cpp.tight_leather_leggings":"§r紧身皮裤", - "item.cpp.blue_jeans":"§r牛仔裤", - "item.cpp.snow_boots":"§r雪地靴", - - "item.cpp.classical_painting":"§r经 典 名 画", - "item.cpp.spring_festival_decorations":"§r春节装饰", - "item.cpp.white_sign":"§r白色搞事牌", - "item.cpp.orange_sign":"§r橙色搞事牌", - "item.cpp.magenta_sign":"§r品红色搞事牌", - "item.cpp.light_blue_sign":"§r淡蓝色搞事牌", - "item.cpp.yellow_sign":"§r黄色搞事牌", - "item.cpp.lime_sign":"§r黄绿色搞事牌", - "item.cpp.pink_sign":"§r粉色搞事牌", - "item.cpp.gray_sign":"§r灰色搞事牌", - "item.cpp.light_gray_sign":"§r淡灰色搞事牌", - "item.cpp.cyan_sign":"§r青色搞事牌", - "item.cpp.purple_sign":"§r紫色搞事牌", - "item.cpp.blue_sign":"§r蓝色搞事牌", - "item.cpp.brown_sign":"§r棕色搞事牌", - "item.cpp.green_sign":"§r原谅色搞事牌", - "item.cpp.red_sign":"§r红色搞事牌", - "item.cpp.black_sign":"§r黑色搞事牌", - "item.cpp.glass_sign":"§r玻璃搞事牌", - "item.cpp.santa_gift":"§r圣诞礼物", - "item.cpp.character.01":"§r纸片人:樱之宫莓香", - "item.cpp.character.02":"§r纸片人:日向夏帆", - "item.cpp.character.03":"§r纸片人:星川麻冬", - "item.cpp.character.04":"§r纸片人:天野美雨", - "item.cpp.character.05":"§r纸片人:神崎日照", - "item.cpp.character.06":"§r纸片人:鹿目圆香", - "item.cpp.character.07":"§r纸片人:晓美焰", - "item.cpp.character.08":"§r纸片人:美树沙耶香", - "item.cpp.character.09":"§r纸片人:巴麻美", - "item.cpp.character.10":"§r纸片人:佐仓杏子", - "item.cpp.character.11":"§r纸片人:篝敦子", - "item.cpp.character.12":"§r纸片人:洛蒂·杨森", - "item.cpp.character.13":"§r纸片人:苏西·曼芭芭拉", - "item.cpp.character.14":"§r纸片人:夏莉欧·杜诺尔", - "item.cpp.character.15":"§r纸片人:春风DoReMi", - "item.cpp.character.16":"§r纸片人:藤原羽月", - "item.cpp.character.17":"§r纸片人:妹尾爱子", - "item.cpp.character.18":"§r纸片人:木之本樱", - "item.cpp.character.19":"§r纸片猫:小起", - "item.cpp.character.20":"§r纸片人:宫永咲", - "item.cpp.character.21":"§r纸片人:原村和", - "item.cpp.character.22":"§r纸片人:片冈优希", - "item.cpp.character.23":"§r纸片人:染谷真子", - "item.cpp.character.24":"§r纸片人:竹井久", - "item.cpp.character.25":"§r纸片人:龙门渕透华", - "item.cpp.character.26":"§r纸片人:天江衣", - "item.cpp.character.27":"§r纸片人:福路美穗子", - "item.cpp.character.28":"§r纸片人:濑川音符", - "item.cpp.character.29":"§r纸片人:飞鸟桃子", - "item.cpp.character.30":"§r纸片人:卷机山花", - "item.cpp.character.31":"§r纸片人:保登心爱", - "item.cpp.character.32":"§r纸片人:香风智乃", - "item.cpp.character.33":"§r纸片人:天天座理世", - "item.cpp.character.34":"§r纸片人:宇治松千夜", - "item.cpp.character.35":"§r纸片人:桐间纱路", - "item.cpp.character.36":"§r纸片人:条河麻耶", - "item.cpp.character.37":"§r纸片人:奈津惠", - "item.cpp.character.38":"§r纸片人:青山Blue Mountain", - "item.cpp.character.39":"§r纸片人:一姬", - "item.cpp.character.40":"§r纸片人:八木唯", - "item.cpp.character.41":"§r纸片人:三上千织", - "item.cpp.character.42":"§r纸片人:藤田佳奈", - "item.cpp.character.43":"§r纸片人:相原舞", - "item.cpp.character.44":"§r纸片人:九条璃雨", - "item.cpp.character.45":"§r纸片人:泽尼娅", - "item.cpp.character.46":"§r纸片人:轻库娘", - "item.cpp.character.47":"§r纸片人:二之宫花", - "item.cpp.character.48":"§r纸片人:白石奈奈", - "item.cpp.character.49":"§r纸片人:小鸟游雏田", - "item.cpp.character.50":"§r纸片人:五十岚阳菜", - "item.cpp.character.51":"§r纸片人:凉宫杏树", - "item.cpp.character.52":"§r纸片人:親分", - "item.cpp.character.53":"§r纸片人:本间向日葵", - "item.cpp.character.54":"§r纸片人:屑女仆", - "item.cpp.character.55":"§r纸片人:阿夸", - "item.cpp.character.56":"§r纸片人:新科娘", - "item.cpp.character.57":"§r纸片人:森永みう", - "item.cpp.character.58":"§r纸片人:fbkfbkfbk啊啊啊啊啊啊啊", - "item.cpp.character.59":"§r纸片人:白咲花", - "item.cpp.character.60":"§r纸片人:星野日向", - "item.cpp.character.61":"§r纸片人:姬坂乃爱", - "item.cpp.character.62":"§r纸片人:祢豆子", - "item.cpp.character.63":"§r纸片人:木下优子", - "item.cpp.character.64":"§r纸片人:七海千秋", - - "advancements.cpp.root.title":"§eCrafting++", - "advancements.cpp.root.description":"§d感谢您的使用~", - "advancements.cpp.egg.title":"先有鸡还是先有蛋?", - "advancements.cpp.egg.description":"是先有蛋", - "advancements.cpp.dark_animal.title":"这是异变!", - "advancements.cpp.dark_animal.description":"杀死一只异变生物", - "advancements.cpp.transporter.title":"搬运工", - "advancements.cpp.transporter.description":"破坏一个刷怪笼", - "advancements.cpp.zombie.title":"僵尸博士的复仇", - "advancements.cpp.zombie.description":"制作僵尸刷怪蛋", - "advancements.cpp.mob_projector.title":"生物培育", - "advancements.cpp.mob_projector.description":"繁殖怪物?", - "advancements.cpp.broadcast_age.title":"广播纪元", - "advancements.cpp.broadcast_age.description":"向全地图的宣告", - - "advancements.cpp.broom.title":"Tia Fraere!", - "advancements.cpp.broom.description":"这能叫飞?", - "advancements.cpp.dark_wand.title":"成为库洛缺德", - "advancements.cpp.dark_wand.description":"黑暗权杖", - "advancements.cpp.mahoushoujo.title":"成为马猴烧酒", - "advancements.cpp.mahoushoujo.description":"魔杖可是标配", - "advancements.cpp.star_wand.title":"Release!", - "advancements.cpp.star_wand.description":"星之杖", - "advancements.cpp.dream_wand.title":"膜法少女", - "advancements.cpp.dream_wand.description":"梦之杖", - "advancements.cpp.fat.title":"我是不是该减肥了?", - "advancements.cpp.fat.description":"体重翻倍了你也减不下去", - - "advancements.cpp.meow.title":"喵", - "advancements.cpp.meow.description":"一起喵喵喵喵喵", - "advancements.cpp.artist.title":"艺术家", - "advancements.cpp.artist.description":"My name is Van", - "advancements.cpp.gardener.title":"剪刀手·爱德华", - "advancements.cpp.gardener.description":"要想富, 少生孩子多种树", - "advancements.cpp.forgive.title":"§a当然是选择原谅她啦!", - "advancements.cpp.forgive.description":"§a戴上你的原谅帽", - - "advancements.cpp.robber.title":"装完逼还想跑?", - "advancements.cpp.robber.description":"土著的愤怒", - "advancements.cpp.fighter.title":"战斗民族", - "advancements.cpp.fighter.description":"打死一头熊", - "advancements.cpp.sponge.title":"海绵宝宝", - "advancements.cpp.sponge.description":"我们去抓水母吧", - "advancements.cpp.sponge.squidward_tentacles":"§r章鱼哥", - "advancements.cpp.shining.title":"闪灵", - "advancements.cpp.shining.description":"杀死卫道士", - "advancements.cpp.undead.title":"不朽", - "advancements.cpp.undead.description":"肉山大魔王", - "advancements.cpp.all_head.title":"已经没什么好害怕的了", - "advancements.cpp.all_head.description":"学姐, 你的头掉了(§m为什么迫害学姐§r)", - - "advancements.cpp.xp_bottle.title":"人生经验", - "advancements.cpp.xp_bottle.description":"不在书里, 而在瓶子里", - "advancements.cpp.drops.title":"没见过的掉落物", - "advancements.cpp.drops.description":"获得生物的稀有掉落物", - "advancements.cpp.elements.title":"元素之力", - "advancements.cpp.elements.description":"试试就逝世!", - "advancements.cpp.weather.title":"呼风唤雨、驱雷掣电", - "advancements.cpp.weather.description":"调节天气", - "advancements.cpp.red_book.title":"红宝书", - "advancements.cpp.red_book.description":"获得年长者之教诲", - "advancements.cpp.arguments.title":"参数测定", - "advancements.cpp.arguments.description":"使用多功能一体机熔炼矿石", - "advancements.cpp.doraemon.title":"叮当猫的口袋", - "advancements.cpp.doraemon.description":"八重……算了, 三重吧", - - "advancements.cpp.salt.title":"重口味", - "advancements.cpp.salt.description":"我喂自己带盐", - "advancements.cpp.raw_meal.title":"心急吃不了热饭菜", - "advancements.cpp.raw_meal.description":"醒醒, 这不是寿司", - "advancements.cpp.doh.title":"Do'h!", - "advancements.cpp.doh.description":"甜甜圈,甜甜圈,甜甜圈!", - - "info.cpp.load1":"§6[Crafting++] §r原版模组《更多的合成》已成功加载, 作者ruhuasiyu§m简称rua§r§6, RubberTree§m吃货§r§6等. 更多内容请", - "info.cpp.load2":"§e点击此处进入wiki", - "info.cpp.load3":"§r. 资源包版本为 1.11, 数据包版本为", - "info.cpp.load4":"§r请检查是否一致.", - "info.cpp.skyisland":"§6[Crafting++] §r空岛模式已开启.", - "info.cpp.config":"§6配置参数", - "info.cpp.resourcepack":"§6Crafting++ v1.11 数据包", - "title.actionbar.fat":"§6[Crafting++]§r 你的体重指数为", - "title.actionbar.fat0":", 过瘦, 吃点好的!", - "title.actionbar.fat1":", 偏瘦, 多吃点", - "title.actionbar.fat2":", 正常(大嘘)", - "title.actionbar.fat3":", 偏胖, 有在减肥吗?", - "title.actionbar.fat4":", 过胖, 你个肥宅!", - - "item.cpp.block_breaker":"方块破坏器", - "item.cpp.block_breaker.finished":"§6[Crafting++]§r 方块破坏器已放置", - "item.cpp.fermenter.finished":"§6[Crafting++]§r 发酵桶已放置", - - "filled_map.end_city":"末地城地图", - "filled_map.fortress":"尼德兰要塞地图", - "filled_map.mineshaft":"废弃矿井地图", - "filled_map.ocean_ruins":"海底废墟地图", - "filled_map.shipwreck":"沉船地图", - "filled_map.stronghold":"要塞地图", - "filled_map.desert_pyramid":"沙子漠神殿地图", - "filled_map.igloo":"雪屋地图", - "filled_map.jungle_pyramid":"丛林神庙地图", - "filled_map.swamp_hut":"沼泽小屋地图", - "filled_map.village":"村庄地图", - "filled_map.pillager_outpost":"掠夺者前哨站地图", - "filled_map.nether_fossil":"尼德兰化石地图", - "filled_map.bastion_remnant":"堡垒遗迹地图", - "filled_map.ruined_portal":"废弃传送门地图", - - "title.cpp.1":"§6【傲视群雄】§r", - "title.cpp.2":"§6【八面威风】§r", - "title.cpp.3":"§d【闭月羞花】§r", - "title.cpp.4":"§d【冰肌玉骨】§r", - "title.cpp.5":"§d【冰清玉洁】§r", - "title.cpp.6":"§d【绰约多姿】§r", - "title.cpp.7":"§6【超凡入圣】§r", - "title.cpp.8":"§d【超凡脱俗】§r", - "title.cpp.9":"§d【沉鱼落雁】§r", - "title.cpp.10":"§d【齿白唇红】§r", - "title.cpp.11":"§6【出类拔萃】§r", - "title.cpp.12":"§6【出神入化】§r", - "title.cpp.13":"§d【出水芙蓉】§r", - "title.cpp.14":"§6【打酱油的】§r", - "title.cpp.15":"§d【大家闺秀】§r", - "title.cpp.16":"§d【淡妆浓抹】§r", - "title.cpp.17":"§6【道貌岸然】§r", - "title.cpp.18":"§6【登峰造极】§r", - "title.cpp.19":"§6【登堂入室】§r", - "title.cpp.20":"§d【婀娜多姿】§r", - "title.cpp.21":"§d【二八佳人】§r", - "title.cpp.22":"§6【返璞归真】§r", - "title.cpp.23":"§d【粉白黛黑】§r", - "title.cpp.24":"§d【风度翩翩】§r", - "title.cpp.25":"§6【蜂目豺声】§r", - "title.cpp.26":"§d【傅粉何郎】§r", - "title.cpp.27":"§d【傅粉施朱】§r", - "title.cpp.28":"§6【盖世无双】§r", - "title.cpp.29":"§6【刚正不阿】§r", - "title.cpp.30":"§6【高风亮节】§r", - "title.cpp.31":"§6【姑射神人】§r", - "title.cpp.32":"§d【蜂子头头】§r", - "title.cpp.33":"§d【国色天香】§r", - "title.cpp.34":"§6【撼天动地】§r", - "title.cpp.35":"§d【鹤发童颜】§r", - "title.cpp.36":"§6【鹤立鸡群】§r", - "title.cpp.37":"§6【虎背熊腰】§r", - "title.cpp.38":"§d【花容月貌】§r", - "title.cpp.39":"§d【环肥燕瘦】§r", - "title.cpp.40":"§6【技冠群雄】§r", - "title.cpp.41":"§d【娇小玲珑】§r", - "title.cpp.42":"§6【惊世骇俗】§r", - "title.cpp.43":"§6【举世无双】§r", - "title.cpp.44":"§6【绝代佳人】§r", - "title.cpp.45":"§6【空前绝后】§r", - "title.cpp.46":"§d【梨花带雨】§r", - "title.cpp.47":"§6【林下风气】§r", - "title.cpp.48":"§d【伶牙俐齿】§r", - "title.cpp.49":"§d【凌波仙子】§r", - "title.cpp.50":"§6【炉火纯青】§r", - "title.cpp.51":"§d【眉目如画】§r", - "title.cpp.52":"§d【眉清目秀】§r", - "title.cpp.53":"§d【美如冠玉】§r", - "title.cpp.54":"§d【靡颜腻理】§r", - "title.cpp.55":"§d【明眸皓齿】§r", - "title.cpp.56":"§6【齐天大圣】§r", - "title.cpp.57":"§d【千娇百媚】§r", - "title.cpp.58":"§d【螓首蛾眉】§r", - "title.cpp.59":"§d【倾城倾国】§r", - "title.cpp.60":"§6【容光焕发】§r", - "title.cpp.61":"§6【融会贯通】§r", - "title.cpp.62":"§d【如花似玉】§r", - "title.cpp.63":"§6【身材魁梧】§r", - "title.cpp.64":"§6【深不可测】§r", - "title.cpp.65":"§6【深藏不露】§r", - "title.cpp.66":"§6【神功盖世】§r", - "title.cpp.67":"§6【神乎其技】§r", - "title.cpp.68":"§6【世外仙人】§r", - "title.cpp.69":"§d【双瞳剪水】§r", - "title.cpp.70":"§d【松形鹤骨】§r", - "title.cpp.71":"§6【所向披靡】§r", - "title.cpp.72":"§6【天人合一】§r", - "title.cpp.73":"§6【铁齿铜牙】§r", - "title.cpp.74":"§d【亭亭玉立】§r", - "title.cpp.75":"§6【头童齿豁】§r", - "title.cpp.76":"§6【威镇寰宇】§r", - "title.cpp.77":"§6【稳如老狗】§r", - "title.cpp.78":"§6【无与伦比】§r", - "title.cpp.79":"§6【雾鬓风鬟】§r", - "title.cpp.80":"§6【仙风道骨】§r", - "title.cpp.81":"§6【仙姿佚貌】§r", - "title.cpp.82":"§d【小家碧玉】§r", - "title.cpp.83":"§d【小巧玲珑】§r", - "title.cpp.84":"§6【心领神会】§r", - "title.cpp.85":"§d【秀色可餐】§r", - "title.cpp.86":"§d【秀外惠中】§r", - "title.cpp.87":"§d【夭桃秾李】§r", - "title.cpp.88":"§6【一表非凡】§r", - "title.cpp.89":"§6【翻译鬼才】§r", - "title.cpp.90":"§6【一代宗师】§r", - "title.cpp.91":"§d【一笑千金】§r", - "title.cpp.92":"§d【一笑倾城】§r", - "title.cpp.93":"§6【衣冠楚楚】§r", - "title.cpp.94":"§6【仪态万方】§r", - "title.cpp.95":"§6【玉树临风】§r", - "title.cpp.96":"§d【月里嫦娥】§r", - "title.cpp.97":"§6【王者归来】§r", - "title.cpp.98":"§6【震古铄今】§r", - "title.cpp.99":"§d【掷果潘安】§r", - "title.cpp.100":"§d【朱唇皓齿】§r", - "title.cpp.999":"§d【更多的合成作者】§r", - - "container.isLocked": "%s正在工作!", - "item.minecraft.potion.effect.empty": "§r申必药水", - "item.minecraft.splash_potion.effect.empty": "§r喷溅型申必药水", - "item.minecraft.lingering_potion.effect.empty": "§r滞留型申必药水" -} \ No newline at end of file + "item.cpp.sheep_head": "§e咩咩头", + "item.cpp.chicken_head": "§e鸡头", + "item.cpp.pig_head": "§e猪头", + "item.cpp.cow_head": "§e牛头", + "item.cpp.bat_head": "§e野味头", + "item.cpp.squid_head": "§e八爪鱼头", + "item.cpp.cod_head": "§e《使命召唤》头", + "item.cpp.salmon_head": "§e鲑鱼头", + "item.cpp.tropical_fish_head": "§e小鱼君头", + "item.cpp.pufferfish_head": "§e泡芙鱼头", + "item.cpp.snow_golem_head": "§e雪人头", + "item.cpp.iron_golem_head": "§e铁憨憨头", + + "item.cpp.witch_head": "§e女巫头", + "item.cpp.villager_head": "§e奸商头", + "item.cpp.wandering_trader_head": "§e流浪奸商头", + "item.cpp.evoker_head": "§e唤魔者头", + "item.cpp.vindicator_head": "§e卫道士头", + "item.cpp.pillager_head": "§e掠夺者头", + "item.cpp.illusioner_head": "§e影流之主之头", + "item.cpp.ravager_head": "§e无敌铁牛头", + "item.cpp.vex_head": "§e猥傀头", + + "item.cpp.turtle_head": "§e王八头", + "item.cpp.panda_head": "§e滚滚头", + "item.cpp.dolphin_head": "§e海豚头", + "item.cpp.polar_bear_head": "§e北极熊头", + "item.cpp.wolf_head": "§eHld头", + "item.cpp.bee_head": "§e蜂子头", + + "item.cpp.horse_head": "§e马头", + "item.cpp.donkey_head": "§e阿米娅头", + "item.cpp.mule_head": "§e骡头", + "item.cpp.llama_head": "§e草泥马头", + "item.cpp.trader_llama_head": "§e行商草泥马头", + "item.cpp.skeleton_horse_skull": "§e骷髅马头颅", + "item.cpp.zombie_horse_head": "§e僵尸马头", + + "item.cpp.spider_head": "§e蜘蛛头", + "item.cpp.cave_spider_head": "§e洞穴蜘蛛头", + "item.cpp.zombie_villager_head": "§e僵尸村民头", + "item.cpp.drowned_head": "§e水猴子头", + "item.cpp.stray_skull": "§e冷冻骷髅头颅", + "item.cpp.slime_head": "§e萌王的头", + "item.cpp.husk_head": "§e尸壳的头", + "item.cpp.guardian_head": "§e痞老板头", + "item.cpp.elder_guardian_head": "§e远古痞老板头", + + "item.cpp.zombified_piglin_head": "§e僵硬的猪刚鬣头", + "item.cpp.piglin_head": "§e猪刚鬣头", + "item.cpp.blaze_head": "§e棒子人头", + "item.cpp.ghast_head": "§e地狱轰炸机的头", + "item.cpp.magma_cube_head": "§e岩浆萌王头", + "item.cpp.phantom_head": "§eIcyPhantom的头", + "item.cpp.enderman_head": "§e小黑头", + "item.cpp.shulker_head": "§e潜影贝头", + "item.cpp.endermite_head": "§e末影螨头", + + "item.cpp.mooshroom_head.red": "§e红叉剋头", + "item.cpp.mooshroom_head.brown": "§e棕叉剋头", + "item.cpp.fox_head.red": "§e狐狸头", + "item.cpp.fox_head.snow": "§e雪狐狸头", + + "item.cpp.parrot_head.red": "§e红色咕咕头", + "item.cpp.parrot_head.blue": "§e蓝色咕咕头", + "item.cpp.parrot_head.green": "§e绿色咕咕头", + "item.cpp.parrot_head.cyan": "§e青色咕咕头", + "item.cpp.parrot_head.gray": "§e灰色咕咕头", + + "item.cpp.cat_head.tabby": "§e虎斑猫头", + "item.cpp.cat_head.tuxedo": "§e西服猫头", + "item.cpp.cat_head.red": "§e红虎斑猫头", + "item.cpp.cat_head.siamese": "§e暹罗猫头", + "item.cpp.cat_head.british_shorthair": "§e英国短毛猫头", + "item.cpp.cat_head.calico": "§e花猫头", + "item.cpp.cat_head.persian": "§e波斯猫头", + "item.cpp.cat_head.ragdoll": "§e布偶猫头", + "item.cpp.cat_head.white": "§e白猫头", + "item.cpp.cat_head.jellie": "§eJellie 猫头", + "item.cpp.cat_head.black": "§e黑猫头", + + "item.cpp.rabbit_head.brown": "§e棕色兔头", + "item.cpp.rabbit_head.white": "§e白色兔头", + "item.cpp.rabbit_head.black": "§e黑色兔头", + "item.cpp.rabbit_head.white_splotched": "§e斑点兔头", + "item.cpp.rabbit_head.gold": "§e金色兔头", + "item.cpp.rabbit_head.salt": "§e椒盐兔头", + "item.cpp.rabbit_head.toast": "§e吐司兔头", + "item.cpp.rabbit_head.killer_bunny": "§e杀手兔头", + + "item.cpp.wing_of_sky": "§e天空翅膀", + "item.cpp.heart_of_crystal": "§e水晶的心", + "item.cpp.limb_of_ridge": "§e山脉的肢", + "item.cpp.soul_of_dirt": "§e泥的魂", + "item.cpp.certification_of_earth": "§e土的证", + "item.cpp.nova_of_fire": "§e火的星", + "item.cpp.spirit_of_life": "§e命的灵", + "item.cpp.shard_of_the_darkness": "§r黑暗碎片", + "item.cpp.broken_spawner": "§r破损的产卵器", + + "block.minecraft.petrified_oak_slab": "§r合成器", + "item.cpp.all_in_one_machine": "§r多功能一体机", + "item.cpp.trade_machine": "§r交♂易机", + "item.cpp.mob_projector": "§r生物投影仪", + "item.cpp.golden_anvil": "§r金哐当", + "item.cpp.beacon_enhancer": "§r培根方块增强器", + "item.cpp.item_processer": "§r物品处理机", + "item.cpp.empty_plugin": "§r空白插件", + "item.cpp.high_temperature_plugin": "§r好♂热插件", + "item.cpp.low_temperature_plugin": "§r好冷(抖抖抖抖)插件", + "item.cpp.high_pressure_plugin": "§r要被压扁惹.jpg插件", + "item.cpp.low_pressure_plugin": "§r要膨胀了.png插件", + "item.cpp.cobblestone_plugin": "§e圆石插件", + "item.cpp.stone_plugin": "§e石插件", + "item.cpp.blackstone_plugin": "§e非洲石头插件", + "item.cpp.netherrack_plugin": "§e尼德兰岩插件", + "item.cpp.end_stone_plugin": "§e奶酪插件", + + "item.cpp.process_shower": "§r进度条", + "item.cpp.output_slot": "§r输出", + "item.cpp.normal_temperature": "§r常温", + "item.cpp.high_temperature": "§r好♂热", + "item.cpp.low_temperature": "§r好冷(抖抖抖抖)", + "item.cpp.normal_pressure": "§r常压", + "item.cpp.high_pressure": "§r要被压扁惹.jpg", + "item.cpp.low_pressure": "§r要膨胀了.png", + "item.cpp.output_east": "§r向东输出", + "item.cpp.output_south": "§r向南输出", + "item.cpp.output_west": "§r向西输出", + "item.cpp.output_north": "§r向北输出", + "item.cpp.output_down": "§r向下输出", + "item.cpp.output_up": "§r向上输出", + "item.cpp.emerald_mode": "§r原谅石模式", + "item.cpp.experience_bottle_mode": "§r覆膜之瓶模式", + "item.cpp.burn_mode": "§r燃烧模式", + "item.cpp.copy_mode": "§r拷贝模式", + "item.cpp.xp_bar": "§r§6经验", + "item.cpp.value_bar": "§r§6价值", + "lore.cpp.switch": "§a点击切换", + "info.cpp.high_pressure_plugin": "§6[Crafting++]§r 要被压扁惹.jpg插件已安装", + "info.cpp.low_pressure_plugin": "§6[Crafting++]§r 要膨胀了.png插件已安装", + "info.cpp.high_temperature_plugin": "§6[Crafting++]§r 好♂热插件已安装", + "info.cpp.low_temperature_plugin": "§6[Crafting++]§r 好冷(抖抖抖抖)插件已安装", + "item.cpp.beacon_enhancer.hostile": "§r对敌对生物生效", + "item.cpp.beacon_enhancer.all_mobs": "§r对所有生物生效", + + "info.cpp.fire_resistance": "§r赴汤蹈火", + "info.cpp.water_breathing": "§r肺积水", + "info.cpp.night_vision": "§r夜视", + "info.cpp.invisibility": "§r透 明 人", + "info.cpp.saturation": "§r饱了", + "info.cpp.chain": "§r铁 索 连 环", + "info.cpp.slowness": "§r龟速", + "info.cpp.weakness": "§r肾虚", + "info.cpp.glowing": "§r电灯泡", + "info.cpp.poison": "§r有毒", + "info.cpp.wither": "§r死神来了", + "info.cpp.attract": "§r吸引", + + "item.cpp.ancient_scroll": "§e老头滚动条", + "enchantment.cpp.fortune": "§r欧气附加 III", + "enchantment.cpp.looting": "§r抢劫 III", + "enchantment.cpp.sweeping": "§r破碎之刃 III", + "enchantment.cpp.lure": "§r饵钓 III", + "enchantment.cpp.unbreaking": "§r续命 III", + "enchantment.cpp.respiration": "§r水下呼吸 III", + "enchantment.cpp.sharpness": "§r锋利 V", + "enchantment.cpp.power": "§rPowup333的祝福 V", + + "item.cpp.enchanted_iron": "§b附魔老铁元宝", + "item.cpp.enchanted_gold": "§b附魔黄油", + "item.cpp.enchanted_diamond": "§b附魔祖安石", + "item.cpp.coal_nugget": "§r非洲粒", + "item.cpp.cinder": "§r非洲渣", + "item.cpp.splint": "§r碎祖安", + "item.cpp.rare_earth_glass": "§r稀土玻璃", + "item.cpp.reinforced_glass": "§r中国制造的钢化玻璃", + "item.cpp.silicon_plate": "§r硅板", + "item.cpp.moon_shard": "§d月之碎片", + "item.cpp.sun_shard": "§d日之碎片", + "item.cpp.moon_stone": "§d月石", + "item.cpp.sun_stone": "§d日石", + "item.cpp.clay_bucket": "§r土球球桶", + + "item.cpp.iron_dust": "§r老铁粉", + "item.cpp.gold_dust": "§r黄油粉", + "item.cpp.carbon_dust": "§r非洲粉", + "item.cpp.diamond_dust": "§r祖安石粉", + "item.cpp.emerald_dust": "§r原谅石粉", + "item.cpp.quartz_dust": "§r石英粉", + "item.cpp.rare_earth_salt": "§r稀土盐", + "item.cpp.alkaloid_rare_earth": "§r碱性稀土", + "item.cpp.rare_earth_dust": "§r稀土粉", + "item.cpp.coarse_silicon": "§r粗硅", + "item.cpp.silicon_dust": "§r硅粉", + "item.cpp.steel_dust": "§r钢粉", + "item.cpp.fertilizer": "§r肥料", + + "item.cpp.acid": "§r柠檬水(但是浓了好几倍)", + "item.cpp.soda_water": "§r苏打水(迫真)", + "item.cpp.bionic_acid": "§r柠檬酸(确信)", + "item.cpp.alkaloid": "§r秋水仙素(大雾)", + "item.cpp.bottle_of_air": "§r装了个寂寞", + "item.cpp.bottle_of_salt": "§r一瓶盐", + "item.cpp.ammonia_refrigerant": "§r氨制冷剂", + + "item.cpp.blue_force_of_sky": "§6蓝色天之力", + "item.cpp.green_force_of_water": "§6绿色贴吧之力", + "info.cpp.green_force_of_water": "§6已切换为", + "item.cpp.cyan_force_of_mountain": "§6青色山之力", + "item.cpp.orange_force_of_dirt": "§6橙色泥之力", + "item.cpp.yellow_force_of_earth": "§6黄色地之力", + "item.cpp.red_force_of_fire": "§6红色火之力", + "item.cpp.purple_force_of_life": "§6紫色命之力", + "item.cpp.white_force_of_lightning": "§6白色电之力", + "item.cpp.black_force_of_moon": "§6黑色月之力", + "item.cpp.elements.fail": "§6[Crafting++]§r 人生的经验不足, 你需要至少%1$s§r点经验来执行该操作", + "item.cpp.blue_force_of_sky.info": "§6[Crafting++]§r ", + "item.cpp.blue_force_of_sky.clear": " 呜啦啦!天气放晴!", + "item.cpp.blue_force_of_sky.rain": " 呜啦啦!下雨吧!", + "item.cpp.blue_force_of_sky.thunder": " 呜啦啦!雷击吧!", + + "item.cpp.portable_crafting_table": "§r便捷式合成台", + "item.cpp.portable_crafting_machine": "§r便捷式合成器", + "item.cpp.dustbin": "§r乐色桶", + "item.cpp.muffler": "§r(哔——)", + "item.cpp.chest_dropper": "§r箱漏", + "item.cpp.magnet": "§r钕铁硼", + "item.cpp.magnet_closed": "§r钕铁硼(关掉)", + "item.cpp.time_conditioner": "§r时间调节器", + "item.cpp.time_contitioner.info": "§6[Crafting++]§r ", + "item.cpp.time_contitioner.accelerate": " 设置作物生长速度翻倍", + "item.cpp.time_contitioner.normal": " 设置作物生长速度为默认值", + "item.cpp.time_contitioner.uncycle": " 停止了日月循环", + "item.cpp.time_contitioner.cycle": " 打开了日月循环", + "item.cpp.time_checker": "§r报时器", + "info.cpp.time_checker.morning": "§6[Crafting++]§r 现在时间 06:00, 早上好呀awa", + "info.cpp.time_checker.noon": "§6[Crafting++]§r 现在时间 12:00, 一天过去一半啦", + "info.cpp.time_checker.afternoon": "§6[Crafting++]§r 现在时间 18:00, 太阳下山了", + "info.cpp.time_checker.evening": "§6[Crafting++]§r 现在时间 00:00, 还不睡觉等着犭", + "item.cpp.origin_of_the_world": "§r世界之烂橘子(怨念)", + "item.cpp.origin_of_the_world.no_spawn": "§6[Crafting++]§r 你尚未设置死去活来点, 将会被传送至产卵室附近", + "item.cpp.compressor": "§r压缩器", + "item.cpp.compressor.layer": "§6重", + "item.cpp.elder_s_words": "§r那个人的教诲", + "item.cpp.coordinate_recorder": "§r坐标记录仪", + "item.cpp.coordinate_recorder2": "§r坐标记录仪(已记录)", + "item.cpp.coordinate_recorder.info": "§6[Crafting++]§r 坐标已记录", + "item.cpp.sachet": "§r香囊", + "item.cpp.grafter": "§r剪枝器", + "item.cpp.glass_pickaxe": "§r玻璃镐", + "item.cpp.chest_transporter": "§r搬箱器", + "info.cpp.chest_transporter.no_nesting": "§6[Crafting++]§r 禁止套娃!§m禁止禁止套娃§r", + "item.cpp.firecrackers": "§r真·鞭炮", + "item.cpp.empty_bookshelf": "§r空书山", + "item.cpp.bookshelf": "§r书山", + "item.cpp.industrious_hand": "§b勤劳之手", + "item.cpp.break_hand": "§b破坏之手", + "item.cpp.smart_hand": "§b灵巧之手", + "item.cpp.angry_hand": "§b愤怒之手", + "item.cpp.toughen_hand": "§b历练之手", + "item.cpp.golem": "§b傀儡", + "item.cpp.golem_farmer": "§r傀儡农民", + "item.cpp.golem_miner": "§r傀儡矿工", + "item.cpp.golem_fisher": "§r傀儡渔夫", + "item.cpp.golem_warrior": "§r傀儡战士", + "item.cpp.golem_herder": "§r傀儡牧民", + + "item.cpp.china_flag": "§7中国国旗", + "item.cpp.usa_flag": "§7美国国旗", + "item.cpp.russia_flag": "§7俄罗斯国旗", + "item.cpp.uk_flag": "§7英国国旗", + "item.cpp.france_flag": "§7假的法国国旗", + "item.cpp.bilibili_logo": "§7哔哩哔哩标志", + "item.cpp.github_logo": "§7GayHub 标志", + "item.cpp.mcmod_logo": "§7MC百科标志", + "item.cpp.tcp_logo": "§7The Command Power 标志", + "item.cpp.cbl_logo": "§7Command Block Logic 标志", + "item.cpp.nf_logo": "§7Nuclear Fusion 标志", + + "item.cpp.donkey_meat": "§r生阿米娅肉", + "item.cpp.cooked_donkey_meat": "§r熟阿米娅肉", + "item.cpp.mule_meat": "§r生骡肉", + "item.cpp.cooked_mule_meat": "§r熟骡肉", + "item.cpp.horse_meat": "§r生马肉", + "item.cpp.cooked_horse_meat": "§r熟马肉", + "item.cpp.llama_meat": "§r生草泥马肉", + "item.cpp.cooked_llama_meat": "§r熟草泥马肉", + "item.cpp.bear_meat": "§r生熊肉", + "item.cpp.cooked_bear_meat": "§r熟熊肉", + "item.cpp.parrot_meat": "§r生咕咕咕肉", + "item.cpp.cooked_parrot_meat": "§r熟咕咕咕肉", + + "item.cpp.ketchup": "§r鲜血(迫真)", + "item.cpp.strawberry_jam": "§r草莓果酱", + "item.cpp.blueberry_jam": "§r蓝莓果酱", + "item.cpp.orange_jam": "§r香橙果酱", + "item.cpp.cherry_jam": "§r樱桃果酱", + "item.cpp.apple_jam": "§r苹果酱", + "item.cpp.yeast_powder": "§r酵母粉", + "item.cpp.butter": "§r黄油", + "item.cpp.cheese": "§r奶酪", + "item.cpp.raisin": "§r葡萄干", + "item.cpp.toffee_apple": "§r拔丝§m煎面§r苹果", + "item.cpp.candied_haw": "§r冰糖葫芦", + "item.cpp.cupcake": "§r纸杯蛋糕", + "item.cpp.cake_roll": "§r蛋糕卷", + "item.cpp.croissant": "§r可颂", + "item.cpp.caramel_pudding": "§r焦糖布丁", + "item.cpp.doughnut": "§r甜甜圈", + "item.cpp.purple_doughnut": "§r紫色甜甜圈", + "item.cpp.pink_doughnut": "§r粉色甜甜圈", + "item.cpp.white_doughnut": "§r白色甜甜圈", + "item.cpp.blue_doughnut": "§r蓝色甜甜圈", + "item.cpp.green_doughnut": "§r原谅色甜甜圈", + "item.cpp.honey_pancake": "§r甜蜜蜜煎饼", + "item.cpp.boiled_egg": "§r煮蛋", + "item.cpp.baked_carrot": "§r烤胡萝北", + "item.cpp.bacon": "§r真·培根", + "item.cpp.vegetable_kebab": "§r烤蔬菜串", + "item.cpp.beef_kebab": "§r烤牛肉串", + "item.cpp.pork_kebab": "§r烤五花肉串", + "item.cpp.lamb_kebab": "§r烤羊肉串", + "item.cpp.chicken_kebab": "§r烤鸡肉串", + "item.cpp.raw_colorful_vegetable": "§r生缤纷菜蔬", + "item.cpp.colorful_vegetable": "§r缤纷菜蔬", + "item.cpp.raw_braised_pork_with_potatoes": "§r生育碧服务器排骨", + "item.cpp.braised_pork_with_potatoes": "§r育碧服务器排骨", + "item.cpp.raw_braised_beef_with_potatoes": "§r生育碧服务器牛肉", + "item.cpp.braised_beef_with_potatoes": "§r熟育碧服务器牛肉", + "item.cpp.raw_rabbit_stew": "§r生兔肉煲", + "item.cpp.rabbit_stew": "§r兔肉煲", + "item.cpp.dumpling": "§r饺子(睡觉的人可能会数)", + "item.cpp.meat_floss_bread": "§r肉松面包", + "item.cpp.christmas_roast_chicken": "§r烤鸡", + "item.cpp.fish_and_chips": "§r炸鱼薯条", + "item.cpp.burger": "§r汉堡", + "item.cpp.pizza": "§r披萨", + "item.cpp.sushi": "§r寿司", + "item.cpp.qingtuan": "§r青团", + "item.cpp.sakura_mochi": "§r樱饼", + "item.cpp.zongzi": "§r粽子", + "item.cpp.sandwich": "§r三明治", + "item.cpp.stargazy_pie": "§r仰望星空π", + "lore.cpp.speed": "§9Plash Speed (0:30)", + "lore.cpp.strength": "§9Powup333的祝福 (0:30)", + "lore.cpp.leap": "§9duang duang duang (0:30)", + + "item.cpp.apricot": "§r杏", + "item.cpp.banana": "§r香蕉", + "item.cpp.blueberry": "§r蓝莓", + "item.cpp.cherry": "§r樱桃", + "item.cpp.chinese_date": "§r枣", + "item.cpp.coconut": "§r椰子", + "item.cpp.golden_grape": "§r金葡萄", + "item.cpp.grape": "§r紫葡萄", + "item.cpp.grapefruit": "§r葡萄水果(棒读)", + "item.cpp.hawthorn": "§r山楂", + "item.cpp.lemon": "§r柠檬", + "item.cpp.longan": "§r龙(nóng)眼", + "item.cpp.loquat": "§r枇杷", + "item.cpp.lychee": "§r荔枝", + "item.cpp.mango": "§r李芒果(不是)", + "item.cpp.orange": "§r大橙子", + "item.cpp.payapa": "§r木瓜", + "item.cpp.peach": "§r你正在想的东西", + "item.cpp.pear": "§randylizi", + "item.cpp.persimmon": "§r柿子", + "item.cpp.plum": "§r小李子", + "item.cpp.pomegranate": "§r石榴", + "item.cpp.strawberry": "§r草莓", + "item.cpp.tomato": "§r血浆果(迫真)", + "item.cpp.citrus": "§r森林蝙蝠", + + "item.cpp.cold_drink": "§r冷饮", + "item.cpp.agentia_of_sky": "§r天空药剂", + "item.cpp.agentia_of_ocean": "§r贴吧药剂", + "item.cpp.agentia_of_ridge": "§r山脉药剂", + "item.cpp.agentia_of_dirt": "§r泥土药剂", + "item.cpp.agentia_of_earth": "§r大地药剂", + "item.cpp.agentia_of_fire": "§r火焰药剂", + "item.cpp.agentia_of_life": "§r生命药剂", + "item.cpp.agentia_of_lightness": "§r轻盈药剂", + "item.cpp.agentia_of_eyesight": "§r明目药剂", + "item.cpp.agentia_of_fire_shield": "§r炎盾药剂", + "item.cpp.agentia_of_waterless": "§r反贴吧药剂", + "item.cpp.agentia_of_transparentness": "§r透明药剂", + "item.cpp.agentia_of_bounce": "§r弹力药剂", + "item.cpp.agentia_of_agileness": "§r敏捷药剂", + "item.cpp.agentia_of_sharpness": "§r锋锐药剂", + "item.cpp.agentia_of_rejuveness": "§r回春药剂", + "item.cpp.agentia_of_blood": "§r血涌药剂", + "item.cpp.agentia_of_extremeness": "§r极限药剂", + "item.cpp.agentia_of_shield": "§r护盾药剂", + "item.cpp.agentia_of_tide": "§r潮汐药剂", + "item.cpp.agentia_of_chain": "§r连环药剂", + "lore.cpp.chain": "铁 索 连 环", + "title.effect.chain": "§r 铁 索 连 环 ", + + "item.cpp.lycoris_radiata_seeds": "§r彼岸花种子", + "item.cpp.trifolium_seeds": "§r白车轴种子", + "item.cpp.blackthorn_seeds": "§r黑荆棘种子", + "item.cpp.cattail_seeds": "§r香蒲草种子", + "item.cpp.marigold_seeds": "§r金盏花种子", + "item.cpp.hibiscus_seeds": "§r木槿花种子", + "item.cpp.hyacinth_seeds": "§r风信子种子", + "item.cpp.calamus_seeds": "§r菖蒲草种子", + "item.cpp.wild_lilium_seeds": "§r滇百合种子", + "item.cpp.bauhinia_seeds": "§r紫荆花种子", + "item.cpp.fluffy_grass_seeds": "§r蓬蓬草种子", + "item.cpp.gerbera_seeds": "§r大丁草种子", + "item.cpp.esparto_seeds": "§r芦苇草种子", + "item.cpp.glow_forsythia_seeds": "§r亮连翘种子", + "item.cpp.glazed_shade_seeds": "§r碎璃草种子", + "item.cpp.stelera_seeds": "§r狼毒花种子", + "item.cpp.forage_crystal_seeds": "§r牧晶花种子", + "item.cpp.isorchid_seeds": "§r异绒兰种子", + "item.cpp.burning_chrysanthe_seeds": "§r焰光菊种子", + "item.cpp.oxalis_seeds": "§r酢浆草种子", + "item.cpp.lycoris_radiata": "§r彼岸花", + "item.cpp.trifolium": "§r白车轴", + "item.cpp.blackthorn": "§r黑荆棘", + "item.cpp.cattail": "§r香蒲草", + "item.cpp.marigold": "§r金盏花", + "item.cpp.hibiscus": "§r木槿花", + "item.cpp.hyacinth": "§r风信子", + "item.cpp.calamus": "§r菖蒲草", + "item.cpp.wild_lilium": "§r滇百合", + "item.cpp.bauhinia": "§r紫荆花", + "item.cpp.fluffy_grass": "§r蓬蓬草", + "item.cpp.gerbera": "§r大丁草", + "item.cpp.esparto": "§r芦苇草", + "item.cpp.glow_forsythia": "§r亮连翘", + "item.cpp.glazed_shade": "§r碎璃草", + "item.cpp.stelera": "§r狼毒花", + "item.cpp.forage_crystal": "§r牧晶花", + "item.cpp.isorchid": "§r异绒兰", + "item.cpp.burning_chrysanthe": "§r焰光菊", + "item.cpp.oxalis": "§r酢浆草", + + "item.cpp.calliopsis": "§r波斯菊", + "item.cpp.cyclamen": "§r仙客来", + "item.cpp.iris": "§r鸢尾", + "item.cpp.lilium_pumilum": "§r山丹丹§m的那个开花呦§r", + "item.cpp.snowdrop": "§r雪滴花", + "item.cpp.narcissus": "§r水仙", + "item.cpp.cole_flower": "§r油菜花", + "item.cpp.lupine": "§r§m闪闪的泪光§r鲁冰花", + "item.cpp.crocu": "§r番红花", + "item.cpp.pansy": "§r三色堇", + "item.cpp.arabia_speedwell": "§r阿拉伯婆婆纳,湖人最爱", + "item.cpp.silene_pendula": "§r矮雪轮", + "item.cpp.artemisia_argyi": "§r艾草", + "item.cpp.blue_rose": "§r蓝色妖姬", + + "item.cpp.rice": "§r稻谷", + "item.cpp.fruit_sapling": "§r水果树宝宝", + "item.cpp.ore_sapling": "§r矿石树宝宝", + "item.cpp.wool_sapling": "§r羊毛树宝宝", + "item.cpp.sakura_sapling": "§r樱花树宝宝", + "item.cpp.fruit_leaves": "§r水果树树叶", + "item.cpp.ore_leaves": "§r矿石树树叶", + "item.cpp.wool_leaves": "§r羊毛树树叶", + "item.cpp.sakura_leaves": "§r樱花树树叶", + "item.cpp.poinsettia": "§r圣诞花", + "item.cpp.christmas_tree": "§r圣诞树", + + "item.cpp.sorcerer_stone": "§r贤者之石", + "item.cpp.sealing_wand": "§6封印之杖", + "item.cpp.star_wand": "§6星之杖", + "item.cpp.dream_wand": "§6梦之杖", + "item.cpp.wand_of_the_darkness": "§r中二制杖", + "item.cpp.temperancer": "§r节制器", + "item.cpp.temperancer_closed": "§r节制器 (关掉)", + "item.cpp.broom": "§r扫帚", + "item.cpp.shooting_star": "§r流星丸", + "item.cpp.zombie_spawner": "§r僵尸产卵器(棒读)", + "item.cpp.skeleton_spawner": "§r骷髅产卵器(棒读)", + "item.cpp.creeper_spawner": "§r爪巴者产卵器(棒读)", + "item.cpp.spider_spawner": "§r蜘蛛产卵器(棒读)", + "item.cpp.cave_spider_spawner": "§r洞穴蜘蛛产卵器(棒读)", + "item.cpp.blaze_spawner": "§r烈焰人产卵器(棒读)", + "item.cpp.silverfish_spawner": "§r蠹虫产卵器(棒读)", + "info.cpp.rituals.fail": "§6[Crafting++]§r 仪式失败, 请检查材料", + "info.cpp.rituals.start": "§6[Crafting++]§r 仪式开始, 魔法正在凝聚……", + "info.cpp.rituals.finish": "§6[Crafting++]§r 仪式完成", + "info.cpp.rituals.break": "§6[Crafting++]§r 仪式中断", + "item.cpp.sakura": "§r木之本樱", + + "lore.cpp.stored_effects.speed": "§7附有 §6Plash Speed", + "lore.cpp.stored_effects.haste": "§7附有 §6冲冲冲", + "lore.cpp.stored_effects.strength": "§7附有 §6Powup333的祝福", + "lore.cpp.stored_effects.jump_boost": "§7附有 §6duang duang duang", + "lore.cpp.stored_effects.regeneration": "§7附有 §6回血", + "lore.cpp.stored_effects.resistance": "§7附有 §6无敌(大嘘)", + "lore.cpp.stored_effects.fire_resistance": "§7附有 §6赴汤蹈火", + "lore.cpp.stored_effects.water_breathing": "§7附有 §6肺积水", + "lore.cpp.stored_effects.invisibility": "§7附有 §6透 明 人", + "lore.cpp.stored_effects.night_vision": "§7附有 §6夜视", + "lore.cpp.stored_effects.saturation": "§7附有 §6饱了", + "lore.cpp.stored_effects.slow_falling": "§7附有 §6羽落", + "lore.cpp.stored_effects.conduit_power": "§7附有 §6超勇能量", + "lore.cpp.stored_effects.chain": "§7附有 §6铁 索 连 环", + + "item.cpp.purple_eye": "§r紫色美瞳", + "item.cpp.lash": "§r假睫毛", + "item.cpp.cat_breed": "§r猫胡子", + "item.cpp.red_lip": "§r烈焰红唇", + "item.cpp.garland": "§r花环", + "item.cpp.black_framed_glasses": "§r黑框眼镜", + "item.cpp.orange_framed_glasses": "§r橙框眼镜", + "item.cpp.joking_glasses": "§r愚弄眼镜", + "item.cpp.minion_goggles": "§r小黄人眼罩", + "item.cpp.pants": "§r胖次§mprprprpr", + "item.cpp.empire_hat": "§r冕旒", + "item.cpp.glass_helmet": "§r玻璃头盔", + "item.cpp.glow_hat": "§r荧光帽", + "item.cpp.green_hat": "§r原谅帽", + "item.cpp.black_hat": "§r非酋帽", + "item.cpp.nurse_hat": "§r护士帽", + "item.cpp.jacket": "§r皮夹克", + "item.cpp.red_coat": "§r红色外套", + "item.cpp.tight_leather_leggings": "§r紧身皮裤", + "item.cpp.blue_jeans": "§r牛仔裤", + "item.cpp.snow_boots": "§r雪地靴", + + "item.cpp.classical_painting": "§r经 典 名 画", + "item.cpp.spring_festival_decorations": "§r春节装饰", + "item.cpp.white_sign": "§r白色搞事牌", + "item.cpp.orange_sign": "§r橙色搞事牌", + "item.cpp.magenta_sign": "§r品红色搞事牌", + "item.cpp.light_blue_sign": "§r淡蓝色搞事牌", + "item.cpp.yellow_sign": "§r黄色搞事牌", + "item.cpp.lime_sign": "§r黄绿色搞事牌", + "item.cpp.pink_sign": "§r粉色搞事牌", + "item.cpp.gray_sign": "§r灰色搞事牌", + "item.cpp.light_gray_sign": "§r淡灰色搞事牌", + "item.cpp.cyan_sign": "§r青色搞事牌", + "item.cpp.purple_sign": "§r紫色搞事牌", + "item.cpp.blue_sign": "§r蓝色搞事牌", + "item.cpp.brown_sign": "§r棕色搞事牌", + "item.cpp.green_sign": "§r原谅色搞事牌", + "item.cpp.red_sign": "§r红色搞事牌", + "item.cpp.black_sign": "§r黑色搞事牌", + "item.cpp.glass_sign": "§r玻璃搞事牌", + "item.cpp.santa_gift": "§r圣诞礼物", + "item.cpp.character.01": "§r纸片人:樱之宫莓香", + "item.cpp.character.02": "§r纸片人:日向夏帆", + "item.cpp.character.03": "§r纸片人:星川麻冬", + "item.cpp.character.04": "§r纸片人:天野美雨", + "item.cpp.character.05": "§r纸片人:神崎日照", + "item.cpp.character.06": "§r纸片人:鹿目圆香", + "item.cpp.character.07": "§r纸片人:晓美焰", + "item.cpp.character.08": "§r纸片人:美树沙耶香", + "item.cpp.character.09": "§r纸片人:巴麻美", + "item.cpp.character.10": "§r纸片人:佐仓杏子", + "item.cpp.character.11": "§r纸片人:篝敦子", + "item.cpp.character.12": "§r纸片人:洛蒂·杨森", + "item.cpp.character.13": "§r纸片人:苏西·曼芭芭拉", + "item.cpp.character.14": "§r纸片人:夏莉欧·杜诺尔", + "item.cpp.character.15": "§r纸片人:春风DoReMi", + "item.cpp.character.16": "§r纸片人:藤原羽月", + "item.cpp.character.17": "§r纸片人:妹尾爱子", + "item.cpp.character.18": "§r纸片人:木之本樱", + "item.cpp.character.19": "§r纸片猫:小起", + "item.cpp.character.20": "§r纸片人:宫永咲", + "item.cpp.character.21": "§r纸片人:原村和", + "item.cpp.character.22": "§r纸片人:片冈优希", + "item.cpp.character.23": "§r纸片人:染谷真子", + "item.cpp.character.24": "§r纸片人:竹井久", + "item.cpp.character.25": "§r纸片人:龙门渕透华", + "item.cpp.character.26": "§r纸片人:天江衣", + "item.cpp.character.27": "§r纸片人:福路美穗子", + "item.cpp.character.28": "§r纸片人:濑川音符", + "item.cpp.character.29": "§r纸片人:飞鸟桃子", + "item.cpp.character.30": "§r纸片人:卷机山花", + "item.cpp.character.31": "§r纸片人:保登心爱", + "item.cpp.character.32": "§r纸片人:香风智乃", + "item.cpp.character.33": "§r纸片人:天天座理世", + "item.cpp.character.34": "§r纸片人:宇治松千夜", + "item.cpp.character.35": "§r纸片人:桐间纱路", + "item.cpp.character.36": "§r纸片人:条河麻耶", + "item.cpp.character.37": "§r纸片人:奈津惠", + "item.cpp.character.38": "§r纸片人:青山Blue Mountain", + "item.cpp.character.39": "§r纸片人:一姬", + "item.cpp.character.40": "§r纸片人:八木唯", + "item.cpp.character.41": "§r纸片人:三上千织", + "item.cpp.character.42": "§r纸片人:藤田佳奈", + "item.cpp.character.43": "§r纸片人:相原舞", + "item.cpp.character.44": "§r纸片人:九条璃雨", + "item.cpp.character.45": "§r纸片人:泽尼娅", + "item.cpp.character.46": "§r纸片人:轻库娘", + "item.cpp.character.47": "§r纸片人:二之宫花", + "item.cpp.character.48": "§r纸片人:白石奈奈", + "item.cpp.character.49": "§r纸片人:小鸟游雏田", + "item.cpp.character.50": "§r纸片人:五十岚阳菜", + "item.cpp.character.51": "§r纸片人:凉宫杏树", + "item.cpp.character.52": "§r纸片人:親分", + "item.cpp.character.53": "§r纸片人:本间向日葵", + "item.cpp.character.54": "§r纸片人:屑女仆", + "item.cpp.character.55": "§r纸片人:阿夸", + "item.cpp.character.56": "§r纸片人:新科娘", + "item.cpp.character.57": "§r纸片人:森永みう", + "item.cpp.character.58": "§r纸片人:fbkfbkfbk啊啊啊啊啊啊啊", + "item.cpp.character.59": "§r纸片人:白咲花", + "item.cpp.character.60": "§r纸片人:星野日向", + "item.cpp.character.61": "§r纸片人:姬坂乃爱", + "item.cpp.character.62": "§r纸片人:祢豆子", + "item.cpp.character.63": "§r纸片人:木下优子", + "item.cpp.character.64": "§r纸片人:七海千秋", + + "advancements.cpp.root.title": "§eCrafting++", + "advancements.cpp.root.description": "§d感谢您的使用~", + "advancements.cpp.egg.title": "先有鸡还是先有蛋?", + "advancements.cpp.egg.description": "是先有蛋", + "advancements.cpp.dark_animal.title": "这是异变!", + "advancements.cpp.dark_animal.description": "杀死一只异变生物", + "advancements.cpp.transporter.title": "搬运工", + "advancements.cpp.transporter.description": "破坏一个刷怪笼", + "advancements.cpp.zombie.title": "僵尸博士的复仇", + "advancements.cpp.zombie.description": "制作僵尸刷怪蛋", + "advancements.cpp.mob_projector.title": "生物培育", + "advancements.cpp.mob_projector.description": "繁殖怪物?", + "advancements.cpp.broadcast_age.title": "广播纪元", + "advancements.cpp.broadcast_age.description": "向全地图的宣告", + + "advancements.cpp.broom.title": "Tia Fraere!", + "advancements.cpp.broom.description": "这能叫飞?", + "advancements.cpp.dark_wand.title": "成为库洛缺德", + "advancements.cpp.dark_wand.description": "黑暗权杖", + "advancements.cpp.mahoushoujo.title": "成为马猴烧酒", + "advancements.cpp.mahoushoujo.description": "魔杖可是标配", + "advancements.cpp.star_wand.title": "Release!", + "advancements.cpp.star_wand.description": "星之杖", + "advancements.cpp.dream_wand.title": "膜法少女", + "advancements.cpp.dream_wand.description": "梦之杖", + "advancements.cpp.fat.title": "我是不是该减肥了?", + "advancements.cpp.fat.description": "体重翻倍了你也减不下去", + + "advancements.cpp.meow.title": "喵", + "advancements.cpp.meow.description": "一起喵喵喵喵喵", + "advancements.cpp.artist.title": "艺术家", + "advancements.cpp.artist.description": "My name is Van", + "advancements.cpp.gardener.title": "剪刀手·爱德华", + "advancements.cpp.gardener.description": "要想富, 少生孩子多种树", + "advancements.cpp.forgive.title": "§a当然是选择原谅她啦!", + "advancements.cpp.forgive.description": "§a戴上你的原谅帽", + + "advancements.cpp.robber.title": "装完逼还想跑?", + "advancements.cpp.robber.description": "土著的愤怒", + "advancements.cpp.fighter.title": "战斗民族", + "advancements.cpp.fighter.description": "打死一头熊", + "advancements.cpp.sponge.title": "海绵宝宝", + "advancements.cpp.sponge.description": "我们去抓水母吧", + "advancements.cpp.sponge.squidward_tentacles": "§r章鱼哥", + "advancements.cpp.shining.title": "闪灵", + "advancements.cpp.shining.description": "杀死卫道士", + "advancements.cpp.undead.title": "不朽", + "advancements.cpp.undead.description": "肉山大魔王", + "advancements.cpp.all_head.title": "已经没什么好害怕的了", + "advancements.cpp.all_head.description": "学姐, 你的头掉了(§m为什么迫害学姐§r)", + + "advancements.cpp.xp_bottle.title": "人生经验", + "advancements.cpp.xp_bottle.description": "不在书里, 而在瓶子里", + "advancements.cpp.drops.title": "没见过的掉落物", + "advancements.cpp.drops.description": "获得生物的稀有掉落物", + "advancements.cpp.elements.title": "元素之力", + "advancements.cpp.elements.description": "试试就逝世!", + "advancements.cpp.weather.title": "呼风唤雨、驱雷掣电", + "advancements.cpp.weather.description": "调节天气", + "advancements.cpp.red_book.title": "红宝书", + "advancements.cpp.red_book.description": "获得年长者之教诲", + "advancements.cpp.arguments.title": "参数测定", + "advancements.cpp.arguments.description": "使用多功能一体机熔炼矿石", + "advancements.cpp.doraemon.title": "叮当猫的口袋", + "advancements.cpp.doraemon.description": "八重……算了, 三重吧", + + "advancements.cpp.salt.title": "重口味", + "advancements.cpp.salt.description": "我喂自己带盐", + "advancements.cpp.raw_meal.title": "心急吃不了热饭菜", + "advancements.cpp.raw_meal.description": "醒醒, 这不是寿司", + "advancements.cpp.doh.title": "Do'h!", + "advancements.cpp.doh.description": "甜甜圈,甜甜圈,甜甜圈!", + + "info.cpp.load1": "§6[Crafting++] §r原版模组《更多的合成》已成功加载, 作者ruhuasiyu§m简称rua§r§6, RubberTree§m吃货§r§6等. 更多内容请", + "info.cpp.load2": "§e点击此处进入wiki", + "info.cpp.load3": "§r. 资源包版本为 1.11, 数据包版本为", + "info.cpp.load4": "§r请检查是否一致.", + "info.cpp.skyisland": "§6[Crafting++] §r空岛模式已打开.", + "info.cpp.config": "§6配置参数", + "info.cpp.resourcepack": "§6Crafting++ v1.11 数据包", + "title.actionbar.fat": "§6[Crafting++]§r 你的体重指数为", + "title.actionbar.fat0": ", 过瘦, 吃点好的!", + "title.actionbar.fat1": ", 偏瘦, 多吃点", + "title.actionbar.fat2": ", 正常(大嘘)", + "title.actionbar.fat3": ", 偏胖, 有在减肥吗?", + "title.actionbar.fat4": ", 过胖, 你个肥宅!", + + "item.cpp.block_breaker": "方块破坏器", + "item.cpp.block_breaker.finished": "§6[Crafting++]§r 方块破坏器已放置", + "item.cpp.fermenter.finished": "§6[Crafting++]§r 发酵桶已放置", + + "filled_map.end_city": "蒙达鲁克硫斯伯古比奇巴勒城映射", + "filled_map.fortress": "尼德兰要塞映射", + "filled_map.mineshaft": "废弃矿井映射", + "filled_map.ocean_ruins": "海底废墟映射", + "filled_map.shipwreck": "沉船映射", + "filled_map.stronghold": "要塞映射", + "filled_map.desert_pyramid": "沙子漠神殿映射", + "filled_map.igloo": "雪屋映射", + "filled_map.jungle_pyramid": "丛林神庙映射", + "filled_map.swamp_hut": "沼泽小屋映射", + "filled_map.village": "村庄映射", + "filled_map.pillager_outpost": "掠夺者前哨站映射", + "filled_map.nether_fossil": "尼德兰化石映射", + "filled_map.bastion_remnant": "堡垒遗迹映射", + "filled_map.ruined_portal": "废弃门户映射", + + "title.cpp.1": "§6【傲视群雄】§r", + "title.cpp.2": "§6【八面威风】§r", + "title.cpp.3": "§d【闭月羞花】§r", + "title.cpp.4": "§d【冰肌玉骨】§r", + "title.cpp.5": "§d【冰清玉洁】§r", + "title.cpp.6": "§d【绰约多姿】§r", + "title.cpp.7": "§6【超凡入圣】§r", + "title.cpp.8": "§d【超凡脱俗】§r", + "title.cpp.9": "§d【沉鱼落雁】§r", + "title.cpp.10": "§d【齿白唇红】§r", + "title.cpp.11": "§6【出类拔萃】§r", + "title.cpp.12": "§6【出神入化】§r", + "title.cpp.13": "§d【出水芙蓉】§r", + "title.cpp.14": "§6【打酱油的】§r", + "title.cpp.15": "§d【大家闺秀】§r", + "title.cpp.16": "§d【淡妆浓抹】§r", + "title.cpp.17": "§6【道貌岸然】§r", + "title.cpp.18": "§6【登峰造极】§r", + "title.cpp.19": "§6【登堂入室】§r", + "title.cpp.20": "§d【婀娜多姿】§r", + "title.cpp.21": "§d【二八佳人】§r", + "title.cpp.22": "§6【返璞归真】§r", + "title.cpp.23": "§d【粉白黛黑】§r", + "title.cpp.24": "§d【风度翩翩】§r", + "title.cpp.25": "§6【蜂目豺声】§r", + "title.cpp.26": "§d【傅粉何郎】§r", + "title.cpp.27": "§d【傅粉施朱】§r", + "title.cpp.28": "§6【盖世无双】§r", + "title.cpp.29": "§6【刚正不阿】§r", + "title.cpp.30": "§6【高风亮节】§r", + "title.cpp.31": "§6【姑射神人】§r", + "title.cpp.32": "§d【蜂子头头】§r", + "title.cpp.33": "§d【国色天香】§r", + "title.cpp.34": "§6【撼天动地】§r", + "title.cpp.35": "§d【鹤发童颜】§r", + "title.cpp.36": "§6【鹤立鸡群】§r", + "title.cpp.37": "§6【虎背熊腰】§r", + "title.cpp.38": "§d【花容月貌】§r", + "title.cpp.39": "§d【环肥燕瘦】§r", + "title.cpp.40": "§6【技冠群雄】§r", + "title.cpp.41": "§d【娇小玲珑】§r", + "title.cpp.42": "§6【惊世骇俗】§r", + "title.cpp.43": "§6【举世无双】§r", + "title.cpp.44": "§6【绝代佳人】§r", + "title.cpp.45": "§6【空前绝后】§r", + "title.cpp.46": "§d【梨花带雨】§r", + "title.cpp.47": "§6【林下风气】§r", + "title.cpp.48": "§d【伶牙俐齿】§r", + "title.cpp.49": "§d【凌波仙子】§r", + "title.cpp.50": "§6【炉火纯青】§r", + "title.cpp.51": "§d【眉目如画】§r", + "title.cpp.52": "§d【眉清目秀】§r", + "title.cpp.53": "§d【美如冠玉】§r", + "title.cpp.54": "§d【靡颜腻理】§r", + "title.cpp.55": "§d【明眸皓齿】§r", + "title.cpp.56": "§6【齐天大圣】§r", + "title.cpp.57": "§d【千娇百媚】§r", + "title.cpp.58": "§d【螓首蛾眉】§r", + "title.cpp.59": "§d【倾城倾国】§r", + "title.cpp.60": "§6【容光焕发】§r", + "title.cpp.61": "§6【融会贯通】§r", + "title.cpp.62": "§d【如花似玉】§r", + "title.cpp.63": "§6【身材魁梧】§r", + "title.cpp.64": "§6【深不可测】§r", + "title.cpp.65": "§6【深藏不露】§r", + "title.cpp.66": "§6【神功盖世】§r", + "title.cpp.67": "§6【神乎其技】§r", + "title.cpp.68": "§6【世外仙人】§r", + "title.cpp.69": "§d【双瞳剪水】§r", + "title.cpp.70": "§d【松形鹤骨】§r", + "title.cpp.71": "§6【所向披靡】§r", + "title.cpp.72": "§6【天人合一】§r", + "title.cpp.73": "§6【铁齿铜牙】§r", + "title.cpp.74": "§d【亭亭玉立】§r", + "title.cpp.75": "§6【头童齿豁】§r", + "title.cpp.76": "§6【威镇寰宇】§r", + "title.cpp.77": "§6【稳如老狗】§r", + "title.cpp.78": "§6【无与伦比】§r", + "title.cpp.79": "§6【雾鬓风鬟】§r", + "title.cpp.80": "§6【仙风道骨】§r", + "title.cpp.81": "§6【仙姿佚貌】§r", + "title.cpp.82": "§d【小家碧玉】§r", + "title.cpp.83": "§d【小巧玲珑】§r", + "title.cpp.84": "§6【心领神会】§r", + "title.cpp.85": "§d【秀色可餐】§r", + "title.cpp.86": "§d【秀外惠中】§r", + "title.cpp.87": "§d【夭桃秾李】§r", + "title.cpp.88": "§6【一表非凡】§r", + "title.cpp.89": "§6【翻译鬼才】§r", + "title.cpp.90": "§6【一代宗师】§r", + "title.cpp.91": "§d【一笑千金】§r", + "title.cpp.92": "§d【一笑倾城】§r", + "title.cpp.93": "§6【衣冠楚楚】§r", + "title.cpp.94": "§6【仪态万方】§r", + "title.cpp.95": "§6【玉树临风】§r", + "title.cpp.96": "§d【月里嫦娥】§r", + "title.cpp.97": "§6【王者归来】§r", + "title.cpp.98": "§6【震古铄今】§r", + "title.cpp.99": "§d【掷果潘安】§r", + "title.cpp.100": "§d【朱唇皓齿】§r", + "title.cpp.999": "§d【更多的合成作者】§r", + + "container.isLocked": "%s正在工作!", + "item.minecraft.potion.effect.empty": "§r申必溶液", + "item.minecraft.splash_potion.effect.empty": "§r喷溅型申必溶液", + "item.minecraft.lingering_potion.effect.empty": "§r滞留型申必溶液" +} diff --git a/mods/create.json b/mods/create.json new file mode 100644 index 000000000..cf316f834 --- /dev/null +++ b/mods/create.json @@ -0,0 +1,2425 @@ +{ + "block.create.acacia_window": "相思木窗户", + "block.create.acacia_window_pane": "相思木窗户板", + "block.create.adjustable_chain_gearshift": "可调节链式传动箱", + "block.create.analog_lever": "模拟控制杆", + "block.create.andesite_belt_funnel": "安山岩传送带漏斗", + "block.create.andesite_casing": "安山机壳", + "block.create.andesite_encased_cogwheel": "安山齿轮箱", + "block.create.andesite_encased_large_cogwheel": "安山大齿轮箱", + "block.create.andesite_encased_shaft": "安山传动杆箱", + "block.create.andesite_funnel": "安山岩漏斗", + "block.create.andesite_pillar": "安山岩柱", + "block.create.andesite_tunnel": "安山岩隧道", + "block.create.asurine": "皓蓝石", + "block.create.asurine_pillar": "皓蓝石柱", + "block.create.basin": "工作盆", + "block.create.belt": "传送带", + "block.create.birch_window": "白桦木窗户", + "block.create.birch_window_pane": "白桦木窗户板", + "block.create.black_nixie_tube": "黑色辉光管", + "block.create.black_sail": "黑色风帆", + "block.create.black_seat": "黑色坐垫", + "block.create.black_toolbox": "黑色工具箱", + "block.create.black_valve_handle": "黑色阀门手轮", + "block.create.blaze_burner": "棒子人燃烧室", + "block.create.blue_nixie_tube": "蓝色辉光管", + "block.create.blue_sail": "蓝色风帆", + "block.create.blue_seat": "蓝色坐垫", + "block.create.blue_toolbox": "蓝色工具箱", + "block.create.blue_valve_handle": "蓝色阀门手轮", + "block.create.brass_belt_funnel": "黄铜传送带漏斗", + "block.create.brass_block": "黄铜块", + "block.create.brass_casing": "黄铜机壳", + "block.create.brass_encased_cogwheel": "黄铜齿轮箱", + "block.create.brass_encased_large_cogwheel": "黄铜大齿轮箱", + "block.create.brass_encased_shaft": "黄铜传动杆箱", + "block.create.brass_funnel": "黄铜漏斗", + "block.create.brass_tunnel": "黄铜隧道", + "block.create.brown_nixie_tube": "棕色辉光管", + "block.create.brown_sail": "棕色风帆", + "block.create.brown_seat": "棕色坐垫", + "block.create.brown_toolbox": "棕色工具箱", + "block.create.brown_valve_handle": "棕色阀门手轮", + "block.create.calcite_pillar": "凯尔希柱", + "block.create.cart_assembler": "《我的世界》装配站", + "block.create.chocolate": "真·巧克力", + "block.create.chute": "溜槽", + "block.create.clockwork_bearing": "发条轴承", + "block.create.clutch": "离合器", + "block.create.cogwheel": "齿轮", + "block.create.content_observer": "物品侦测器", + "block.create.controller_rail": "控制铁轨", + "block.create.copper_backtank": "铜制背罐", + "block.create.copper_casing": "铜机壳", + "block.create.copper_shingle_slab": "铜砖块台阶", + "block.create.copper_shingle_stairs": "铜砖块楼梯", + "block.create.copper_shingles": "铜砖块", + "block.create.copper_tile_slab": "铜瓦块台阶", + "block.create.copper_tile_stairs": "铜瓦块楼梯", + "block.create.copper_tiles": "铜瓦块", + "block.create.copper_valve_handle": "铜阀门手轮", + "block.create.creative_crate": "创造板条箱", + "block.create.creative_fluid_tank": "创造流体储罐", + "block.create.creative_motor": "创造马达", + "block.create.crimsite": "绯红岩", + "block.create.crimsite_pillar": "绯红岩柱", + "block.create.crimson_window": "绯红木窗户", + "block.create.crimson_window_pane": "绯红木窗户板", + "block.create.crushing_wheel": "粉碎轮", + "block.create.crushing_wheel_controller": "粉碎轮控制器", + "block.create.cuckoo_clock": "咕咕闹钟", + "block.create.cut_andesite": "使用了切割工艺进行加工的安山岩", + "block.create.cut_andesite_brick_slab": "使用了切割工艺进行加工的安山岩砖块台阶", + "block.create.cut_andesite_brick_stairs": "使用了切割工艺进行加工的安山岩砖块楼梯", + "block.create.cut_andesite_brick_wall": "使用了切割工艺进行加工的安山岩砖块墙", + "block.create.cut_andesite_bricks": "使用了切割工艺进行加工的安山岩砖块", + "block.create.cut_andesite_slab": "使用了切割工艺进行加工的安山岩台阶", + "block.create.cut_andesite_stairs": "使用了切割工艺进行加工的安山岩楼梯", + "block.create.cut_andesite_wall": "使用了切割工艺进行加工的安山岩墙", + "block.create.cut_asurine": "使用了切割工艺进行加工的皓蓝石", + "block.create.cut_asurine_brick_slab": "使用了切割工艺进行加工的皓蓝石砖块台阶", + "block.create.cut_asurine_brick_stairs": "使用了切割工艺进行加工的皓蓝石砖块楼梯", + "block.create.cut_asurine_brick_wall": "使用了切割工艺进行加工的皓蓝石砖块墙", + "block.create.cut_asurine_bricks": "使用了切割工艺进行加工的皓蓝石砖块", + "block.create.cut_asurine_slab": "使用了切割工艺进行加工的皓蓝石台阶", + "block.create.cut_asurine_stairs": "使用了切割工艺进行加工的皓蓝石楼梯", + "block.create.cut_asurine_wall": "使用了切割工艺进行加工的皓蓝石墙", + "block.create.cut_calcite": "使用了切割工艺进行加工的凯尔希", + "block.create.cut_calcite_brick_slab": "使用了切割工艺进行加工的凯尔希砖块台阶", + "block.create.cut_calcite_brick_stairs": "使用了切割工艺进行加工的凯尔希砖块楼梯", + "block.create.cut_calcite_brick_wall": "使用了切割工艺进行加工的凯尔希砖块墙", + "block.create.cut_calcite_bricks": "使用了切割工艺进行加工的凯尔希砖块", + "block.create.cut_calcite_slab": "使用了切割工艺进行加工的凯尔希台阶", + "block.create.cut_calcite_stairs": "使用了切割工艺进行加工的凯尔希楼梯", + "block.create.cut_calcite_wall": "使用了切割工艺进行加工的凯尔希墙", + "block.create.cut_crimsite": "使用了切割工艺进行加工的绯红岩", + "block.create.cut_crimsite_brick_slab": "使用了切割工艺进行加工的绯红岩砖块台阶", + "block.create.cut_crimsite_brick_stairs": "使用了切割工艺进行加工的绯红岩砖块楼梯", + "block.create.cut_crimsite_brick_wall": "使用了切割工艺进行加工的绯红岩砖块墙", + "block.create.cut_crimsite_bricks": "使用了切割工艺进行加工的绯红岩砖块", + "block.create.cut_crimsite_slab": "使用了切割工艺进行加工的绯红岩台阶", + "block.create.cut_crimsite_stairs": "使用了切割工艺进行加工的绯红岩楼梯", + "block.create.cut_crimsite_wall": "使用了切割工艺进行加工的绯红岩墙", + "block.create.cut_deepslate": "使用了切割工艺进行加工的深♂石", + "block.create.cut_deepslate_brick_slab": "使用了切割工艺进行加工的深♂石砖块台阶", + "block.create.cut_deepslate_brick_stairs": "使用了切割工艺进行加工的深♂石砖块楼梯", + "block.create.cut_deepslate_brick_wall": "使用了切割工艺进行加工的深♂石砖块墙", + "block.create.cut_deepslate_bricks": "使用了切割工艺进行加工的深♂石砖块", + "block.create.cut_deepslate_slab": "使用了切割工艺进行加工的深♂石台阶", + "block.create.cut_deepslate_stairs": "使用了切割工艺进行加工的深♂石楼梯", + "block.create.cut_deepslate_wall": "使用了切割工艺进行加工的深♂石墙", + "block.create.cut_diorite": "使用了切割工艺进行加工的DIO岩", + "block.create.cut_diorite_brick_slab": "使用了切割工艺进行加工的DIO岩砖块台阶", + "block.create.cut_diorite_brick_stairs": "使用了切割工艺进行加工的DIO岩砖块楼梯", + "block.create.cut_diorite_brick_wall": "使用了切割工艺进行加工的DIO岩砖块墙", + "block.create.cut_diorite_bricks": "使用了切割工艺进行加工的DIO岩砖块", + "block.create.cut_diorite_slab": "使用了切割工艺进行加工的DIO岩台阶", + "block.create.cut_diorite_stairs": "使用了切割工艺进行加工的DIO岩楼梯", + "block.create.cut_diorite_wall": "使用了切割工艺进行加工的DIO岩墙", + "block.create.cut_dripstone": "使用了切割工艺进行加工的滴水石头", + "block.create.cut_dripstone_brick_slab": "使用了切割工艺进行加工的滴水石砖块台阶", + "block.create.cut_dripstone_brick_stairs": "使用了切割工艺进行加工的滴水石砖块楼梯", + "block.create.cut_dripstone_brick_wall": "使用了切割工艺进行加工的滴水石砖块墙", + "block.create.cut_dripstone_bricks": "使用了切割工艺进行加工的滴水石砖块", + "block.create.cut_dripstone_slab": "使用了切割工艺进行加工的滴水石台阶", + "block.create.cut_dripstone_stairs": "使用了切割工艺进行加工的滴水石楼梯", + "block.create.cut_dripstone_wall": "使用了切割工艺进行加工的滴水石墙", + "block.create.cut_granite": "使用了切割工艺进行加工的花岗岩", + "block.create.cut_granite_brick_slab": "使用了切割工艺进行加工的花岗岩砖块台阶", + "block.create.cut_granite_brick_stairs": "使用了切割工艺进行加工的花岗岩砖块楼梯", + "block.create.cut_granite_brick_wall": "使用了切割工艺进行加工的花岗岩砖块墙", + "block.create.cut_granite_bricks": "使用了切割工艺进行加工的花岗岩砖块", + "block.create.cut_granite_slab": "使用了切割工艺进行加工的花岗岩台阶", + "block.create.cut_granite_stairs": "使用了切割工艺进行加工的花岗岩楼梯", + "block.create.cut_granite_wall": "使用了切割工艺进行加工的花岗岩墙", + "block.create.cut_limestone": "使用了切割工艺进行加工的石灰岩", + "block.create.cut_limestone_brick_slab": "使用了切割工艺进行加工的石灰岩砖块台阶", + "block.create.cut_limestone_brick_stairs": "使用了切割工艺进行加工的石灰岩砖块楼梯", + "block.create.cut_limestone_brick_wall": "使用了切割工艺进行加工的石灰岩砖块墙", + "block.create.cut_limestone_bricks": "使用了切割工艺进行加工的石灰岩砖块", + "block.create.cut_limestone_slab": "使用了切割工艺进行加工的石灰岩台阶", + "block.create.cut_limestone_stairs": "使用了切割工艺进行加工的石灰岩楼梯", + "block.create.cut_limestone_wall": "使用了切割工艺进行加工的石灰岩墙", + "block.create.cut_ochrum": "使用了切割工艺进行加工的赭金砂", + "block.create.cut_ochrum_brick_slab": "使用了切割工艺进行加工的赭金砂砖块台阶", + "block.create.cut_ochrum_brick_stairs": "使用了切割工艺进行加工的赭金砂砖块楼梯", + "block.create.cut_ochrum_brick_wall": "使用了切割工艺进行加工的赭金砂砖块墙", + "block.create.cut_ochrum_bricks": "使用了切割工艺进行加工的赭金砂砖块", + "block.create.cut_ochrum_slab": "使用了切割工艺进行加工的赭金砂台阶", + "block.create.cut_ochrum_stairs": "使用了切割工艺进行加工的赭金砂楼梯", + "block.create.cut_ochrum_wall": "使用了切割工艺进行加工的赭金砂墙", + "block.create.cut_scorchia": "使用了切割工艺进行加工的焦黑熔渣", + "block.create.cut_scorchia_brick_slab": "使用了切割工艺进行加工的焦黑熔渣砖块台阶", + "block.create.cut_scorchia_brick_stairs": "使用了切割工艺进行加工的焦黑熔渣砖块楼梯", + "block.create.cut_scorchia_brick_wall": "使用了切割工艺进行加工的焦黑熔渣砖块墙", + "block.create.cut_scorchia_bricks": "使用了切割工艺进行加工的焦黑熔渣砖块", + "block.create.cut_scorchia_slab": "使用了切割工艺进行加工的焦黑熔渣台阶", + "block.create.cut_scorchia_stairs": "使用了切割工艺进行加工的焦黑熔渣楼梯", + "block.create.cut_scorchia_wall": "使用了切割工艺进行加工的焦黑熔渣墙", + "block.create.cut_scoria": "使用了切割工艺进行加工的熔渣", + "block.create.cut_scoria_brick_slab": "使用了切割工艺进行加工的熔渣砖块台阶", + "block.create.cut_scoria_brick_stairs": "使用了切割工艺进行加工的熔渣砖块楼梯", + "block.create.cut_scoria_brick_wall": "使用了切割工艺进行加工的熔渣砖块墙", + "block.create.cut_scoria_bricks": "使用了切割工艺进行加工的熔渣砖块", + "block.create.cut_scoria_slab": "使用了切割工艺进行加工的熔渣台阶", + "block.create.cut_scoria_stairs": "使用了切割工艺进行加工的熔渣楼梯", + "block.create.cut_scoria_wall": "使用了切割工艺进行加工的熔渣墙", + "block.create.cut_tuff": "使用了切割工艺进行加工的凝灰岩", + "block.create.cut_tuff_brick_slab": "使用了切割工艺进行加工的凝灰岩砖块台阶", + "block.create.cut_tuff_brick_stairs": "使用了切割工艺进行加工的凝灰岩砖块楼梯", + "block.create.cut_tuff_brick_wall": "使用了切割工艺进行加工的凝灰岩砖块墙", + "block.create.cut_tuff_bricks": "使用了切割工艺进行加工的凝灰岩砖块", + "block.create.cut_tuff_slab": "使用了切割工艺进行加工的凝灰岩台阶", + "block.create.cut_tuff_stairs": "使用了切割工艺进行加工的凝灰岩楼梯", + "block.create.cut_tuff_wall": "使用了切割工艺进行加工的凝灰岩墙", + "block.create.cut_veridium": "使用了切割工艺进行加工的辉绿矿", + "block.create.cut_veridium_brick_slab": "使用了切割工艺进行加工的辉绿矿砖块台阶", + "block.create.cut_veridium_brick_stairs": "使用了切割工艺进行加工的辉绿矿砖块楼梯", + "block.create.cut_veridium_brick_wall": "使用了切割工艺进行加工的辉绿矿砖块墙", + "block.create.cut_veridium_bricks": "使用了切割工艺进行加工的辉绿矿砖块", + "block.create.cut_veridium_slab": "使用了切割工艺进行加工的辉绿矿台阶", + "block.create.cut_veridium_stairs": "使用了切割工艺进行加工的辉绿矿楼梯", + "block.create.cut_veridium_wall": "使用了切割工艺进行加工的辉绿矿墙", + "block.create.cyan_nixie_tube": "青色辉光管", + "block.create.cyan_sail": "青色风帆", + "block.create.cyan_seat": "青色坐垫", + "block.create.cyan_toolbox": "青色工具箱", + "block.create.cyan_valve_handle": "青色阀门手轮", + "block.create.dark_oak_window": "巧克力窗户", + "block.create.dark_oak_window_pane": "巧克力窗户板", + "block.create.deepslate_pillar": "深♂石柱", + "block.create.deepslate_zinc_ore": "深♂锌矿石", + "block.create.deployer": "机械手", + "block.create.depot": "置物台", + "block.create.diorite_pillar": "DIO岩柱", + "block.create.dripstone_pillar": "滴水石柱", + "block.create.encased_chain_drive": "链式传动箱", + "block.create.encased_fan": "鼓风机", + "block.create.encased_fluid_pipe": "流体管道箱", + "block.create.exposed_copper_shingle_slab": "经过了轻度的自然发生的氧化反应且内部材料为铜的砖块台阶", + "block.create.exposed_copper_shingle_stairs": "经过了轻度的自然发生的氧化反应且内部材料为铜的砖块楼梯", + "block.create.exposed_copper_shingles": "经过了轻度的自然发生的氧化反应且内部材料为铜的砖块", + "block.create.exposed_copper_tile_slab": "经过了轻度的自然发生的氧化反应且内部材料为铜的瓦块台阶", + "block.create.exposed_copper_tile_stairs": "经过了轻度的自然发生的氧化反应且内部材料为铜的瓦块楼梯", + "block.create.exposed_copper_tiles": "经过了轻度的自然发生的氧化反应且内部材料为铜的瓦块", + "block.create.fluid_pipe": "流体管道", + "block.create.fluid_tank": "流体储罐", + "block.create.fluid_valve": "流体阀门", + "block.create.flywheel": "飞轮", + "block.create.framed_glass": "边框玻璃", + "block.create.framed_glass_pane": "边框玻璃板", + "block.create.furnace_engine": "炉子引擎", + "block.create.gantry_carriage": "起重机取物器", + "block.create.gantry_shaft": "起重机杆", + "block.create.gearbox": "十字齿轮箱", + "block.create.gearshift": "反转齿轮箱", + "block.create.glass_fluid_pipe": "玻璃流体管道", + "block.create.granite_pillar": "花岗岩柱", + "block.create.gray_nixie_tube": "灰色辉光管", + "block.create.gray_sail": "灰色风帆", + "block.create.gray_seat": "灰色坐垫", + "block.create.gray_toolbox": "灰色工具箱", + "block.create.gray_valve_handle": "灰色阀门手轮", + "block.create.green_nixie_tube": "原谅色辉光管", + "block.create.green_sail": "原谅色风帆", + "block.create.green_seat": "原谅色坐垫", + "block.create.green_toolbox": "原谅色工具箱", + "block.create.green_valve_handle": "原谅色阀门手轮", + "block.create.hand_crank": "手摇曲柄", + "block.create.haunted_bell": "森魂钟", + "block.create.honey": "蜂蜜", + "block.create.horizontal_framed_glass": "竖直边框玻璃", + "block.create.horizontal_framed_glass_pane": "竖直边框玻璃板", + "block.create.hose_pulley": "软管滑轮", + "block.create.item_drain": "分液池", + "block.create.item_vault": "物品保险库", + "block.create.jungle_window": "丛林木窗户", + "block.create.jungle_window_pane": "丛林木窗户板", + "block.create.large_cogwheel": "大齿轮", + "block.create.layered_andesite": "层叠安山岩", + "block.create.layered_asurine": "层叠皓蓝石", + "block.create.layered_calcite": "层叠凯尔希", + "block.create.layered_crimsite": "层叠绯红岩", + "block.create.layered_deepslate": "层叠深♂石", + "block.create.layered_diorite": "层叠DIO岩", + "block.create.layered_dripstone": "层叠滴水石", + "block.create.layered_granite": "层叠花岗岩", + "block.create.layered_limestone": "层叠石灰岩", + "block.create.layered_ochrum": "层叠赭金砂", + "block.create.layered_scorchia": "层叠焦黑熔渣", + "block.create.layered_scoria": "层叠熔渣", + "block.create.layered_tuff": "层叠凝灰岩", + "block.create.layered_veridium": "层叠辉绿矿", + "block.create.lectern_controller": "遥控器百 家 讲 坛", + "block.create.light_blue_nixie_tube": "淡蓝色辉光管", + "block.create.light_blue_sail": "淡蓝色风帆", + "block.create.light_blue_seat": "淡蓝色坐垫", + "block.create.light_blue_toolbox": "淡蓝色工具箱", + "block.create.light_blue_valve_handle": "淡蓝色阀门手轮", + "block.create.light_gray_nixie_tube": "淡灰色辉光管", + "block.create.light_gray_sail": "淡灰色风帆", + "block.create.light_gray_seat": "淡灰色坐垫", + "block.create.light_gray_toolbox": "淡灰色工具箱", + "block.create.light_gray_valve_handle": "淡灰色阀门手轮", + "block.create.lime_nixie_tube": "酸橙色辉光管", + "block.create.lime_sail": "酸橙色风帆", + "block.create.lime_seat": "酸橙色坐垫", + "block.create.lime_toolbox": "酸橙色工具箱", + "block.create.lime_valve_handle": "酸橙色阀门手轮", + "block.create.limestone": "石灰岩", + "block.create.limestone_pillar": "石灰岩柱", + "block.create.linear_chassis": "机壳底盘", + "block.create.lit_blaze_burner": "棒子人燃烧室(已点燃)", + "block.create.magenta_nixie_tube": "品红色辉光管", + "block.create.magenta_sail": "品红色风帆", + "block.create.magenta_seat": "品红色坐垫", + "block.create.magenta_toolbox": "品红色工具箱", + "block.create.magenta_valve_handle": "品红色阀门手轮", + "block.create.mechanical_arm": "动力臂", + "block.create.mechanical_bearing": "动力轴承", + "block.create.mechanical_crafter": "动力合成器", + "block.create.mechanical_drill": "动力钻头", + "block.create.mechanical_harvester": "动力收割机", + "block.create.mechanical_mixer": "动力搅拌器", + "block.create.mechanical_piston": "动力活塞", + "block.create.mechanical_piston_head": "动力活塞头", + "block.create.mechanical_plough": "动力犁", + "block.create.mechanical_press": "动力辊压机", + "block.create.mechanical_pump": "动力泵", + "block.create.mechanical_saw": "动力锯", + "block.create.metal_bracket": "金属支架", + "block.create.millstone": "石磨", + "block.create.minecart_anchor": "《我的世界》锚", + "block.create.mysterious_cuckoo_clock": "咕咕闹钟", + "block.create.nixie_tube": "辉光管", + "block.create.nozzle": "分散网", + "block.create.oak_window": "橡木窗户", + "block.create.oak_window_pane": "橡木窗户板", + "block.create.ochrum": "赭金砂", + "block.create.ochrum_pillar": "赭金砂柱", + "block.create.orange_sail": "橙色风帆", + "block.create.orange_seat": "橙色坐垫", + "block.create.orange_toolbox": "橙色工具箱", + "block.create.orange_valve_handle": "橙色阀门手轮", + "block.create.ornate_iron_window": "华丽铁窗户", + "block.create.ornate_iron_window_pane": "华丽铁窗户板", + "block.create.oxidized_copper_shingle_slab": "氧化的铜砖块台阶", + "block.create.oxidized_copper_shingle_stairs": "氧化的铜砖块楼梯", + "block.create.oxidized_copper_shingles": "氧化的铜砖块", + "block.create.oxidized_copper_tile_slab": "氧化的铜瓦块台阶", + "block.create.oxidized_copper_tile_stairs": "氧化的铜瓦块楼梯", + "block.create.oxidized_copper_tiles": "氧化的铜瓦块", + "block.create.peculiar_bell": "奇异钟", + "block.create.pink_nixie_tube": "粉红色辉光管", + "block.create.pink_sail": "粉红色风帆", + "block.create.pink_seat": "粉红色坐垫", + "block.create.pink_toolbox": "粉红色工具箱", + "block.create.pink_valve_handle": "粉红色阀门手轮", + "block.create.piston_extension_pole": "活塞杆", + "block.create.polished_cut_andesite": "使用了打磨工艺进行加工的使用了切割工艺进行加工的安山岩", + "block.create.polished_cut_andesite_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的安山岩台阶", + "block.create.polished_cut_andesite_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的安山岩楼梯", + "block.create.polished_cut_andesite_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的安山岩墙", + "block.create.polished_cut_asurine": "使用了打磨工艺进行加工的使用了切割工艺进行加工的皓蓝石", + "block.create.polished_cut_asurine_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的皓蓝石台阶", + "block.create.polished_cut_asurine_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的皓蓝石楼梯", + "block.create.polished_cut_asurine_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的皓蓝石墙", + "block.create.polished_cut_calcite": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凯尔希", + "block.create.polished_cut_calcite_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凯尔希台阶", + "block.create.polished_cut_calcite_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凯尔希楼梯", + "block.create.polished_cut_calcite_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凯尔希墙", + "block.create.polished_cut_crimsite": "使用了打磨工艺进行加工的使用了切割工艺进行加工的绯红岩", + "block.create.polished_cut_crimsite_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的绯红岩台阶", + "block.create.polished_cut_crimsite_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的绯红岩楼梯", + "block.create.polished_cut_crimsite_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的绯红岩墙", + "block.create.polished_cut_deepslate": "使用了打磨工艺进行加工的使用了切割工艺进行加工的深♂石", + "block.create.polished_cut_deepslate_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的深♂石台阶", + "block.create.polished_cut_deepslate_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的深♂石楼梯", + "block.create.polished_cut_deepslate_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的深♂石墙", + "block.create.polished_cut_diorite": "使用了打磨工艺进行加工的使用了切割工艺进行加工的DIO岩", + "block.create.polished_cut_diorite_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的DIO岩台阶", + "block.create.polished_cut_diorite_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的DIO岩楼梯", + "block.create.polished_cut_diorite_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的DIO岩墙", + "block.create.polished_cut_dripstone": "使用了打磨工艺进行加工的使用了切割工艺进行加工的滴水石", + "block.create.polished_cut_dripstone_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的滴水石台阶", + "block.create.polished_cut_dripstone_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的滴水石楼梯", + "block.create.polished_cut_dripstone_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的滴水石墙", + "block.create.polished_cut_granite": "使用了打磨工艺进行加工的使用了切割工艺进行加工的花岗岩", + "block.create.polished_cut_granite_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的花岗岩台阶", + "block.create.polished_cut_granite_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的花岗岩楼梯", + "block.create.polished_cut_granite_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的花岗岩墙", + "block.create.polished_cut_limestone": "使用了打磨工艺进行加工的使用了切割工艺进行加工的石灰岩", + "block.create.polished_cut_limestone_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的石灰岩台阶", + "block.create.polished_cut_limestone_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的石灰岩楼梯", + "block.create.polished_cut_limestone_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的石灰岩墙", + "block.create.polished_cut_ochrum": "使用了打磨工艺进行加工的使用了切割工艺进行加工的赭金砂", + "block.create.polished_cut_ochrum_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的赭金砂台阶", + "block.create.polished_cut_ochrum_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的赭金砂楼梯", + "block.create.polished_cut_ochrum_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的赭金砂墙", + "block.create.polished_cut_scorchia": "使用了打磨工艺进行加工的使用了切割工艺进行加工的焦黑熔渣", + "block.create.polished_cut_scorchia_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的焦黑熔渣台阶", + "block.create.polished_cut_scorchia_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的焦黑熔渣楼梯", + "block.create.polished_cut_scorchia_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的焦黑熔渣墙", + "block.create.polished_cut_scoria": "使用了打磨工艺进行加工的使用了切割工艺进行加工的熔渣", + "block.create.polished_cut_scoria_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的熔渣台阶", + "block.create.polished_cut_scoria_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的熔渣楼梯", + "block.create.polished_cut_scoria_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的熔渣墙", + "block.create.polished_cut_tuff": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凝灰岩", + "block.create.polished_cut_tuff_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凝灰岩台阶", + "block.create.polished_cut_tuff_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凝灰岩楼梯", + "block.create.polished_cut_tuff_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的凝灰岩墙", + "block.create.polished_cut_veridium": "使用了打磨工艺进行加工的使用了切割工艺进行加工的辉绿矿", + "block.create.polished_cut_veridium_slab": "使用了打磨工艺进行加工的使用了切割工艺进行加工的辉绿矿台阶", + "block.create.polished_cut_veridium_stairs": "使用了打磨工艺进行加工的使用了切割工艺进行加工的辉绿矿楼梯", + "block.create.polished_cut_veridium_wall": "使用了打磨工艺进行加工的使用了切割工艺进行加工的辉绿矿墙", + "block.create.portable_fluid_interface": "移动式流体接口", + "block.create.portable_storage_interface": "移动式存储接口", + "block.create.powered_latch": "锁存器", + "block.create.powered_toggle_latch": "转换锁存器", + "block.create.pulley_magnet": "滑轮磁铁", + "block.create.pulse_extender": "脉冲延长器", + "block.create.pulse_repeater": "脉冲中继器", + "block.create.purple_nixie_tube": "紫色辉光管", + "block.create.purple_sail": "紫色风帆", + "block.create.purple_seat": "紫色坐垫", + "block.create.purple_toolbox": "紫色工具箱", + "block.create.purple_valve_handle": "紫色阀门手轮", + "block.create.radial_chassis": "旋转底盘", + "block.create.raw_zinc_block": "粗锌块", + "block.create.red_nixie_tube": "红色辉光管", + "block.create.red_sail": "红色风帆", + "block.create.red_seat": "红色坐垫", + "block.create.red_toolbox": "红色工具箱", + "block.create.red_valve_handle": "红色阀门手轮", + "block.create.redstone_contact": "接触式雷石东信号发生器", + "block.create.redstone_link": "无线雷石东信号终端", + "block.create.refined_radiance_casing": "光辉机壳", + "block.create.rope": "绳索", + "block.create.rope_pulley": "绳索滑轮", + "block.create.rotation_speed_controller": "转速控制器", + "block.create.sail_frame": "风帆框架", + "block.create.schematic_table": "蓝图桌", + "block.create.schematicannon": "蓝图加农炮", + "block.create.scorchia": "焦黑熔渣", + "block.create.scorchia_pillar": "焦黑熔渣柱", + "block.create.scoria": "熔渣", + "block.create.scoria_pillar": "熔渣柱", + "block.create.secondary_linear_chassis": "机壳底盘 2 号", + "block.create.sequenced_gearshift": "可编程齿轮箱", + "block.create.shadow_steel_casing": "暗影机壳", + "block.create.shaft": "传动杆", + "block.create.small_andesite_brick_slab": "安山岩小砖块台阶", + "block.create.small_andesite_brick_stairs": "安山岩小砖块楼梯", + "block.create.small_andesite_brick_wall": "安山岩小砖块墙", + "block.create.small_andesite_bricks": "安山岩小砖块", + "block.create.small_asurine_brick_slab": "皓蓝石小砖块台阶", + "block.create.small_asurine_brick_stairs": "皓蓝石小砖块楼梯", + "block.create.small_asurine_brick_wall": "皓蓝石小砖块墙", + "block.create.small_asurine_bricks": "皓蓝石小砖块", + "block.create.small_calcite_brick_slab": "凯尔希小砖块台阶", + "block.create.small_calcite_brick_stairs": "凯尔希小砖块楼梯", + "block.create.small_calcite_brick_wall": "凯尔希小砖块墙", + "block.create.small_calcite_bricks": "凯尔希小砖块", + "block.create.small_crimsite_brick_slab": "绯红岩小砖块台阶", + "block.create.small_crimsite_brick_stairs": "绯红岩小砖块楼梯", + "block.create.small_crimsite_brick_wall": "绯红岩小砖块墙", + "block.create.small_crimsite_bricks": "绯红岩小砖块", + "block.create.small_deepslate_brick_slab": "深♂石小砖块台阶", + "block.create.small_deepslate_brick_stairs": "深♂石小砖块楼梯", + "block.create.small_deepslate_brick_wall": "深♂石小砖块墙", + "block.create.small_deepslate_bricks": "深♂石小砖块", + "block.create.small_diorite_brick_slab": "DIO岩小砖块台阶", + "block.create.small_diorite_brick_stairs": "DIO岩小砖块楼梯", + "block.create.small_diorite_brick_wall": "DIO岩小砖块墙", + "block.create.small_diorite_bricks": "DIO岩小砖块", + "block.create.small_dripstone_brick_slab": "滴水石小砖块台阶", + "block.create.small_dripstone_brick_stairs": "滴水石小砖块楼梯", + "block.create.small_dripstone_brick_wall": "滴水石小砖块墙", + "block.create.small_dripstone_bricks": "滴水石小砖块", + "block.create.small_granite_brick_slab": "花岗岩小砖块台阶", + "block.create.small_granite_brick_stairs": "花岗岩小砖块楼梯", + "block.create.small_granite_brick_wall": "花岗岩小砖块墙", + "block.create.small_granite_bricks": "花岗岩小砖块", + "block.create.small_limestone_brick_slab": "石灰岩小砖块台阶", + "block.create.small_limestone_brick_stairs": "石灰岩小砖块楼梯", + "block.create.small_limestone_brick_wall": "石灰岩小砖块墙", + "block.create.small_limestone_bricks": "石灰岩小砖块", + "block.create.small_ochrum_brick_slab": "赭金砂小砖块台阶", + "block.create.small_ochrum_brick_stairs": "赭金砂小砖块楼梯", + "block.create.small_ochrum_brick_wall": "赭金砂小砖块墙", + "block.create.small_ochrum_bricks": "赭金砂小砖块", + "block.create.small_scorchia_brick_slab": "焦黑熔渣小砖块台阶", + "block.create.small_scorchia_brick_stairs": "焦黑熔渣小砖块楼梯", + "block.create.small_scorchia_brick_wall": "焦黑熔渣小砖块墙", + "block.create.small_scorchia_bricks": "焦黑熔渣小砖块", + "block.create.small_scoria_brick_slab": "熔渣小砖块台阶", + "block.create.small_scoria_brick_stairs": "熔渣小砖块楼梯", + "block.create.small_scoria_brick_wall": "熔渣小砖块墙", + "block.create.small_scoria_bricks": "熔渣小砖块", + "block.create.small_tuff_brick_slab": "凝灰岩小砖块台阶", + "block.create.small_tuff_brick_stairs": "凝灰岩小砖块楼梯", + "block.create.small_tuff_brick_wall": "凝灰岩小砖块墙", + "block.create.small_tuff_bricks": "凝灰岩小砖块", + "block.create.small_veridium_brick_slab": "辉绿矿小砖块台阶", + "block.create.small_veridium_brick_stairs": "辉绿矿小砖块楼梯", + "block.create.small_veridium_brick_wall": "辉绿矿小砖块墙", + "block.create.small_veridium_bricks": "辉绿矿小砖块", + "block.create.smart_chute": "智能溜槽", + "block.create.smart_fluid_pipe": "智能流体管道", + "block.create.speedometer": "速度表", + "block.create.spout": "注液器", + "block.create.spruce_window": "云杉木窗户", + "block.create.spruce_window_pane": "云杉木窗户板", + "block.create.sticker": "黏着器", + "block.create.sticky_mechanical_piston": "黏性动力活塞", + "block.create.stockpile_switch": "存量转换器", + "block.create.stressometer": "应力表", + "block.create.tiled_glass": "十字玻璃窗", + "block.create.tiled_glass_pane": "十字玻璃窗户板", + "block.create.tuff_pillar": "凝灰岩柱", + "block.create.turntable": "转盘", + "block.create.veridium": "辉绿矿", + "block.create.veridium_pillar": "辉绿矿柱", + "block.create.vertical_framed_glass": "竖直边框玻璃", + "block.create.vertical_framed_glass_pane": "竖直边框玻璃板", + "block.create.warped_window": "诡异木窗户", + "block.create.warped_window_pane": "诡异木窗户板", + "block.create.water_wheel": "水车", + "block.create.waxed_copper_shingle_slab": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的砖块台阶", + "block.create.waxed_copper_shingle_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的砖块楼梯", + "block.create.waxed_copper_shingles": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的砖块", + "block.create.waxed_copper_tile_slab": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的瓦块台阶", + "block.create.waxed_copper_tile_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的瓦块楼梯", + "block.create.waxed_copper_tiles": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的瓦块", + "block.create.waxed_exposed_copper_shingle_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜的砖块台阶", + "block.create.waxed_exposed_copper_shingle_stairs": "斑驳的以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜的砖块楼梯", + "block.create.waxed_exposed_copper_shingles": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜的砖块", + "block.create.waxed_exposed_copper_tile_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应铜瓦块台阶", + "block.create.waxed_exposed_copper_tile_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应铜瓦块楼梯", + "block.create.waxed_exposed_copper_tiles": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应铜瓦块", + "block.create.waxed_oxidized_copper_shingle_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的砖块台阶", + "block.create.waxed_oxidized_copper_shingle_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的砖块楼梯", + "block.create.waxed_oxidized_copper_shingles": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的砖块", + "block.create.waxed_oxidized_copper_tile_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的瓦块台阶", + "block.create.waxed_oxidized_copper_tile_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的瓦块楼梯", + "block.create.waxed_oxidized_copper_tiles": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的瓦块", + "block.create.waxed_weathered_copper_shingle_slab": "锈蚀的以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的砖块台阶", + "block.create.waxed_weathered_copper_shingle_stairs": "锈蚀的以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的砖块楼梯", + "block.create.waxed_weathered_copper_shingles": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的砖块", + "block.create.waxed_weathered_copper_tile_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的瓦块台阶", + "block.create.waxed_weathered_copper_tile_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的瓦块楼梯", + "block.create.waxed_weathered_copper_tiles": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的瓦块", + "block.create.weathered_copper_shingle_slab": "经过了中度的自然发生的氧化反应且内部材料为铜的砖块台阶", + "block.create.weathered_copper_shingle_stairs": "经过了中度的自然发生的氧化反应且内部材料为铜的砖块楼梯", + "block.create.weathered_copper_shingles": "经过了中度的自然发生的氧化反应且内部材料为铜的砖块", + "block.create.weathered_copper_tile_slab": "经过了中度的自然发生的氧化反应且内部材料为铜的瓦块台阶", + "block.create.weathered_copper_tile_stairs": "经过了中度的自然发生的氧化反应且内部材料为铜的瓦块楼梯", + "block.create.weathered_copper_tiles": "经过了中度的自然发生的氧化反应且内部材料为铜的瓦块", + "block.create.weighted_ejector": "弹射置物台", + "block.create.white_nixie_tube": "白色辉光管", + "block.create.white_sail": "白色风帆", + "block.create.white_seat": "白色坐垫", + "block.create.white_toolbox": "白色工具箱", + "block.create.white_valve_handle": "白色阀门手轮", + "block.create.windmill_bearing": "风车轴承", + "block.create.wooden_bracket": "木质支架", + "block.create.yellow_nixie_tube": "黄色辉光管", + "block.create.yellow_sail": "黄色风帆", + "block.create.yellow_seat": "黄色坐垫", + "block.create.yellow_toolbox": "黄色工具箱", + "block.create.yellow_valve_handle": "黄色阀门手轮", + "block.create.zinc_block": "锌块", + "block.create.zinc_ore": "锌矿石", + + "enchantment.create.capacity": "扩容", + "enchantment.create.potato_recovery": "育碧服务器回收", + + "entity.create.contraption": "装置", + "entity.create.crafting_blueprint": "合成蓝图", + "entity.create.gantry_contraption": "起重机装置", + "entity.create.potato_projectile": "被发射的育碧服务器", + "entity.create.seat": "坐垫", + "entity.create.stationary_contraption": "固定装置", + "entity.create.super_glue": "强力胶", + + "fluid.create.potion": "溶液", + "fluid.create.tea": "茶", + + "item.create.andesite_alloy": "安山合金", + "item.create.attribute_filter": "属性过滤器", + "item.create.bar_of_chocolate": "巧克力棒", + "item.create.belt_connector": "传送带", + "item.create.blaze_cake": "烈焰蛋糕", + "item.create.blaze_cake_base": "烈焰蛋糕胚", + "item.create.brass_hand": "黄铜手部零件", + "item.create.brass_ingot": "黄铜锭", + "item.create.brass_nugget": "黄铜粒", + "item.create.brass_sheet": "黄铜板", + "item.create.builders_tea": "建造工茶饮", + "item.create.chest_minecart_contraption": "装配过的动力《我的世界》", + "item.create.chocolate_bucket": "巧克力桶", + "item.create.chocolate_glazed_berries": "巧克力包层浆果", + "item.create.chromatic_compound": "异彩化合物", + "item.create.cinder_flour": "下界面粉", + "item.create.copper_backtank": "铜制背罐", + "item.create.copper_nugget": "铜粒", + "item.create.copper_sheet": "铜板", + "item.create.crafter_slot_cover": "合成器盖板", + "item.create.crafting_blueprint": "合成蓝图", + "item.create.creative_blaze_cake": "上帝模式烈焰蛋糕", + "item.create.crushed_aluminum_ore": "粉碎铝矿石", + "item.create.crushed_copper_ore": "粉碎铜矿石", + "item.create.crushed_gold_ore": "粉碎金矿石", + "item.create.crushed_iron_ore": "粉碎铁矿石", + "item.create.crushed_lead_ore": "粉碎铅矿石", + "item.create.crushed_nickel_ore": "粉碎镍矿石", + "item.create.crushed_osmium_ore": "粉碎锇矿石", + "item.create.crushed_platinum_ore": "粉碎铂矿石", + "item.create.crushed_quicksilver_ore": "粉碎水银矿石", + "item.create.crushed_silver_ore": "粉碎银矿石", + "item.create.crushed_tin_ore": "粉碎锡矿石", + "item.create.crushed_uranium_ore": "粉碎铀矿石", + "item.create.crushed_zinc_ore": "粉碎锌矿石", + "item.create.diving_boots": "潜水靴", + "item.create.diving_helmet": "潜水头盔", + "item.create.dough": "面团", + "item.create.electron_tube": "电子管", + "item.create.empty_blaze_burner": "空的棒子人燃烧室", + "item.create.empty_schematic": "空白蓝图", + "item.create.experience_nugget": "经验颗粒", + "item.create.extendo_grip": "伸缩机械手", + "item.create.filter": "过滤器", + "item.create.furnace_minecart_contraption": "装配过的动力《我的世界》", + "item.create.goggles": "工程师护目镜", + "item.create.golden_sheet": "黄油板", + "item.create.handheld_worldshaper": "手持式环境塑形器", + "item.create.honey_bucket": "蜂蜜桶", + "item.create.honeyed_apple": "蜜渍苹果", + "item.create.incomplete_cogwheel": "齿轮(半成品)", + "item.create.incomplete_large_cogwheel": "大齿轮(半成品)", + "item.create.incomplete_precision_mechanism": "精密构件(半成品)", + "item.create.iron_sheet": "老铁板", + "item.create.linked_controller": "无线雷石东遥控器", + "item.create.minecart_contraption": "装配过的《我的世界》", + "item.create.minecart_coupling": "《我的世界》连轴器", + "item.create.polished_rose_quartz": "使用了打磨工艺进行加工的玫瑰石英", + "item.create.potato_cannon": "育碧服务器加农炮", + "item.create.powdered_obsidian": "黑曜石粉末", + "item.create.precision_mechanism": "精密构件", + "item.create.propeller": "扇叶", + "item.create.raw_zinc": "粗锌", + "item.create.red_sand_paper": "红沙砂纸", + "item.create.refined_radiance": "光辉石", + "item.create.rose_quartz": "玫瑰石英", + "item.create.sand_paper": "砂纸", + "item.create.schematic": "蓝图", + "item.create.schematic_and_quill": "蓝图与笔", + "item.create.shadow_steel": "暗影钢", + "item.create.super_glue": "强力胶", + "item.create.sweet_roll": "甜甜卷", + "item.create.tree_fertilizer": "树木肥料", + "item.create.vertical_gearbox": "竖直十字齿轮箱", + "item.create.wand_of_symmetry": "对称之杖", + "item.create.wheat_flour": "小麦粉", + "item.create.whisk": "搅拌器", + "item.create.wrench": "扳手", + "item.create.zinc_ingot": "锌元宝", + "item.create.zinc_nugget": "锌粒", + + "advancement.create.root": "欢迎来到机械动力", + "advancement.create.root.desc": "是时候来制作一些超赞的机械装置了!", + "advancement.create.andesite_alloy": "头韵狂魔(Alliterations Aplenty)", + "advancement.create.andesite_alloy.desc": "机械动力的材料名字都很古怪,安山合金(Andesite Alloy)就是其中之一。", + "advancement.create.its_alive": "鲜活的机械生命", + "advancement.create.its_alive.desc": "首次激活动力学组件。", + "advancement.create.shifting_gears": "换挡,加速,起飞!", + "advancement.create.shifting_gears.desc": "将大齿轮连接到小齿轮上,可以改变装置的转速。", + "advancement.create.overstressed": "过载", + "advancement.create.overstressed.desc": "首次使能量网络过载。", + "advancement.create.belt": "海带传动", + "advancement.create.belt.desc": "用传送带连接两个传动杆", + "advancement.create.tunnel": "躲起来!", + "advancement.create.tunnel.desc": "用隧道装饰传送带。", + "advancement.create.splitter_tunnel": "分而治之", + "advancement.create.splitter_tunnel.desc": "用黄铜隧道设计一个分流器。", + "advancement.create.chute": "轰然倒塌", + "advancement.create.chute.desc": "放置一个溜槽(垂直版本的传送带)。", + "advancement.create.upward_chute": "空中劫持", + "advancement.create.upward_chute.desc": "目睹抛出的物品飞入带风扇的溜槽。", + "advancement.create.belt_funnel": "漏斗垂帘", + "advancement.create.belt_funnel.desc": "将侧向漏斗放在传送带或置物台的顶部,并观察到特殊纹理的漏斗。", + "advancement.create.belt_funnel_kiss": "鹦鹉和垂翼", + "advancement.create.belt_funnel_kiss.desc": "让两个安装在传送带上的漏斗深情相吻。", + "advancement.create.fan": "动力御气师", + "advancement.create.fan.desc": "飘在鼓风机吹出的气流上", + "advancement.create.fan_lava": "地热取暖", + "advancement.create.fan_lava.desc": "被熔炼气流烤的酥脆。", + "advancement.create.fan_water": "奇妙的洗涤流程", + "advancement.create.fan_water.desc": "在洗涤气流里洗了个澡。", + "advancement.create.fan_smoke": "动力风箱", + "advancement.create.fan_smoke.desc": "被吸烟气流熏得满脸黑。", + "advancement.create.wrench": "细节调整", + "advancement.create.wrench.desc": "做出一个方便调整方块的扳手", + "advancement.create.goggles": "应力,一目了然", + "advancement.create.goggles.desc": "做出一个能看到机器动能信息的工程师护目镜", + "advancement.create.speedometer": "精密的速度控制", + "advancement.create.speedometer.desc": "放置一个速度表,并且带上工程师护目镜来读取速度数据", + "advancement.create.stressometer": "精密的应力控制", + "advancement.create.stressometer.desc": "放置一个应力表,并且带上工程师护目镜来读取应力数据", + "advancement.create.aesthetics": "什么叫美学,这就叫美学!", + "advancement.create.aesthetics.desc": "将支架放在传动杆,管道和齿轮上。", + "advancement.create.reinforced": "什么叫强化,这就叫强化!", + "advancement.create.reinforced.desc": "在传动杆,管道和传送带上使用机壳加固。", + "advancement.create.water_wheel": "掌控水流", + "advancement.create.water_wheel.desc": "放置一个水车并且让它开始旋转", + "advancement.create.chocolate_wheel": "美味动力", + "advancement.create.chocolate_wheel.desc": "用熔融巧克力驱动水车。", + "advancement.create.lava_wheel": "风火轮", + "advancement.create.lava_wheel.desc": "按理说根本不可能运转得起来。", + "advancement.create.cuckoo": "到点儿了吗?", + "advancement.create.cuckoo.desc": "目睹咕咕钟提醒你该睡觉觉了。", + "advancement.create.millstone": "便携式粉碎机", + "advancement.create.millstone.desc": "放置一个石磨并且为其供能", + "advancement.create.windmill": "微风吹拂", + "advancement.create.windmill.desc": "组装风车。", + "advancement.create.maxed_windmill": "强风肆虐", + "advancement.create.maxed_windmill.desc": "组装最大强度的风车。", + "advancement.create.andesite_casing": "安山时代", + "advancement.create.andesite_casing.desc": "使用安山合金和木头来合成一个安山机壳", + "advancement.create.mechanical_drill": "坚如磐石,势如破竹", + "advancement.create.mechanical_drill.desc": "放置一个动力钻头并且为其供能", + "advancement.create.press": "'Duang!'", + "advancement.create.press.desc": "使用辊压机来辊压一些板子", + "advancement.create.polished_rose_quartz": "粉色祖安石", + "advancement.create.polished_rose_quartz.desc": "用砂纸将玫瑰石英打磨至透明", + "advancement.create.electron_tube": "哔~~ 哔~~", + "advancement.create.electron_tube.desc": "制作一个可用于合成高级机器的电子管", + "advancement.create.mechanical_saw": "一刀两断", + "advancement.create.mechanical_saw.desc": "放置一个动力锯并且为其供能", + "advancement.create.basin": "快到碗里来", + "advancement.create.basin.desc": "放置一个工作盆,并且往里面放些东西", + "advancement.create.mixer": "均匀搅拌", + "advancement.create.mixer.desc": "将搅拌机放在工作盆上方,并且使其搅拌盆内物品", + "advancement.create.blaze_burner": "活炉", + "advancement.create.blaze_burner.desc": "获得一个棒子人燃烧室。", + "advancement.create.compact": "快乐压缩", + "advancement.create.compact.desc": "使用辊压机在工作盆中压缩一些物品", + "advancement.create.brass": "真正的合金", + "advancement.create.brass.desc": "使用粉碎锌矿石和粉碎铜矿石来制作粉碎黄铜", + "advancement.create.brass_casing": "黄铜时代", + "advancement.create.brass_casing.desc": "用黄铜和木头制作一个黄铜机壳", + "advancement.create.copper_casing": "铜器时代", + "advancement.create.copper_casing.desc": "使用铜和木头制作一个铜制机壳", + "advancement.create.spout": "哗啦啦", + "advancement.create.spout.desc": "观察注液器灌满物品。", + "advancement.create.spout_potion": "环球酿造厂", + "advancement.create.spout_potion.desc": "观察注液器注入溶液到玻璃瓶。", + "advancement.create.chocolate": "幻想世界", + "advancement.create.chocolate.desc": "获取一桶熔融巧克力。", + "advancement.create.item_drain": "滚筒排液", + "advancement.create.item_drain.desc": "观察流体物品被分液池抽空。", + "advancement.create.chained_item_drain": "翻滚吧!", + "advancement.create.chained_item_drain.desc": "观察物品穿过多个链状分布的分液池。", + "advancement.create.glass_pipe": "流之观察者", + "advancement.create.glass_pipe.desc": "透过带窗的流体管道观察流体在管道中流淌。使用扳手可打开直线流体管道的窗户。", + "advancement.create.pipe_collision": "Never cross the Streams!", + "advancement.create.pipe_collision.desc": "观察两种流体在管道网络中相会。", + "advancement.create.pipe_spill": "漏水啦!", + "advancement.create.pipe_spill.desc": "观察管道的开口端将流体排放或放置到世界中。", + "advancement.create.hose_pulley": "工业泄漏", + "advancement.create.hose_pulley.desc": "放下一个软管滑轮,观察它排干或填充一大片液体。", + "advancement.create.infinite_water": "抽干大海", + "advancement.create.infinite_water.desc": "从大到足以被认为是无限的水源中抽水。", + "advancement.create.infinite_lava": "汲取行星核心", + "advancement.create.infinite_lava.desc": "从广阔的熔岩湖中抽出熔岩。", + "advancement.create.infinite_chocolate": "美梦不饶人", + "advancement.create.infinite_chocolate.desc": "从大到足以被被视为无限的巧克力海中抽取巧克力。", + "advancement.create.crafter": "自动化装配", + "advancement.create.crafter.desc": "放置一些机械合成台并且为其供能", + "advancement.create.clockwork_bearing": "巧械时钟", + "advancement.create.clockwork_bearing.desc": "组装安装在发条轴承上的装置。", + "advancement.create.nixie_tube": "花样符号", + "advancement.create.nixie_tube.desc": "获取并放下一对辉光管。", + "advancement.create.deployer": "我就指着你了咋地?", + "advancement.create.deployer.desc": "放置并且功能一个机械手。这可是你右手的完美复制品", + "advancement.create.speed_controller": "工程师的眼中钉", + "advancement.create.speed_controller.desc": "放置一个转速控制器,这是换档的终极装置。", + "advancement.create.flywheel": "工厂之心", + "advancement.create.flywheel.desc": "将引擎成功连接到飞轮。", + "advancement.create.overstress_flywheel": "压力山大", + "advancement.create.overstress_flywheel.desc": "过载炉子引擎。", + "advancement.create.precision_mechanism": "高新技术", + "advancement.create.precision_mechanism.desc": "装配一个精密构件。", + "advancement.create.mechanical_arm": "飞转的手!", + "advancement.create.mechanical_arm.desc": "制作机械臂,选择输入和输出,放置并给予它动力,然后看着它为你完成所有工作。", + "advancement.create.musical_arm": "没人能在我的 BGM 里打败我!", + "advancement.create.musical_arm.desc": "使用动力臂播放唱片。", + "advancement.create.arm_many_targets": "掌控全局", + "advancement.create.arm_many_targets.desc": "配置一个有十个或更多输出位置的机械臂。", + "advancement.create.arm_blaze_burner": "熊熊燃烧", + "advancement.create.arm_blaze_burner.desc": "指导机械臂给棒子人燃烧室投食。", + "advancement.create.fist_bump": "来碰个拳,哥们~", + "advancement.create.fist_bump.desc": "使两个机械手互相碰拳", + "advancement.create.crushing_wheel": "一对大家伙", + "advancement.create.crushing_wheel.desc": "制作一些能更快粉碎物品的粉碎轮", + "advancement.create.blaze_cake": "糖份超标", + "advancement.create.blaze_cake.desc": "给棒子人燃烧室烤一份特别蛋糕。", + "advancement.create.wand_of_symmetry": "简单的镜面几何学", + "advancement.create.wand_of_symmetry.desc": "制作一个对称之杖", + "advancement.create.extendo_grip": "biu biu biu!", + "advancement.create.extendo_grip.desc": "获得一个伸缩机械手", + "advancement.create.potato_cannon": "Fwoomp!", + "advancement.create.potato_cannon.desc": "用育碧服务器加农炮击杀一个生物。", + "advancement.create.dual_extendo_grip": "biu——biu——biu——", + "advancement.create.dual_extendo_grip.desc": "双持伸缩机械手,超人般的触碰距离。", + "advancement.create.eob": "Beta 版结束", + "advancement.create.eob.desc": "期待未来会有更多的内容。<3", + + "itemGroup.create.base": "机械动力", + "itemGroup.create.palettes": "机械动力丨建筑方块", + + "death.attack.create.crush": "%1$s被压扁了", + "death.attack.create.crush.player": "%1$s被%2$s推进了粉碎机", + "death.attack.create.fan_fire": "%1$s试图接受热风的洗礼", + "death.attack.create.fan_fire.player": "%2$s给了%1$s一次热风的洗礼", + "death.attack.create.fan_lava": "%1$s在接受热风的洗礼中浴火焚身", + "death.attack.create.fan_lava.player": "%1$s被%2$s火化了", + "death.attack.create.mechanical_drill": "%1$s被钻头钻的坏掉了", + "death.attack.create.mechanical_drill.player": "%1$s因为%2$s和钻头来了一次亲密接触", + "death.attack.create.mechanical_saw": "%1$s被圆锯切成了两截", + "death.attack.create.mechanical_saw.player": "%1$s被%2$s按在圆锯上切碎了", + "death.attack.create.potato_cannon": "%1$s被%2$s的育碧服务器糊了一脸", + "death.attack.create.potato_cannon.item": "%1$s被%2$s用%3$s射死了", + "death.attack.create.cuckoo_clock_explosion": "%1$s被咕咕钟炸得粉身碎骨", + "death.attack.create.cuckoo_clock_explosion.player": "%1$s被咕咕钟炸得粉身碎骨", + + "create.block.deployer.damage_source_name": "二五仔机械手", + "create.block.cart_assembler.invalid": "请将《我的世界》装配器放置在铁轨上", + + "create.menu.return": "返回上一级菜单", + "create.menu.configure": "配置...", + "create.menu.ponder_index": "思索内容清单", + "create.menu.only_ingame": "仅在游戏内暂停菜单中可用", + "create.menu.project_page": "在CurseForge上查看", + "create.menu.report_bugs": "报告Create的漏洞", + "create.menu.support": "支持我们", + + "create.recipe.crushing": "粉碎", + "create.recipe.milling": "研磨", + "create.recipe.fan_washing": "批量洗涤", + "create.recipe.fan_washing.fan": "在水后放置鼓风机", + "create.recipe.fan_smoking": "批量吸烟", + "create.recipe.fan_smoking.fan": "在火焰后放置鼓风机", + "create.recipe.fan_haunting": "UNLOCALIZED: Bulk Haunting", + "create.recipe.fan_haunting.fan": "UNLOCALIZED: Fan behind Soul Fire", + "create.recipe.fan_blasting": "批量熔炼", + "create.recipe.fan_blasting.fan": "在熔岩后放置鼓风机", + "create.recipe.pressing": "金属压片", + "create.recipe.mixing": "混合搅拌", + "create.recipe.deploying": "使用", + "create.recipe.automatic_shapeless": "自动搅拌", + "create.recipe.automatic_brewing": "自动酿造", + "create.recipe.packing": "压块塑形", + "create.recipe.automatic_packing": "自动打包", + "create.recipe.sawing": "切割", + "create.recipe.mechanical_crafting": "动力合成", + "create.recipe.automatic_shaped": "自动合成", + "create.recipe.block_cutting": "方块切割", + "create.recipe.wood_cutting": "木材切割", + "create.recipe.sandpaper_polishing": "砂纸打磨", + "create.recipe.mystery_conversion": "神秘转化", + "create.recipe.spout_filling": "注液", + "create.recipe.draining": "分液", + "create.recipe.sequenced_assembly": "序列组装", + "create.recipe.assembly.next": "下一步:%1$s", + "create.recipe.assembly.step": "第%1$s步:", + "create.recipe.assembly.progress": "组装进度:%1$s/%2$s", + "create.recipe.assembly.pressing": "进行辊压", + "create.recipe.assembly.spout_filling_fluid": "注入%1$s", + "create.recipe.assembly.deploying_item": "安装%1$s", + "create.recipe.assembly.cutting": "用动力锯切割", + "create.recipe.assembly.repeat": "该序列需要重复 %1$s 次", + "create.recipe.assembly.junk": "随机废料", + "create.recipe.processing.chance": "%1$s%%概率", + "create.recipe.deploying.not_consumed": "未消耗", + "create.recipe.heat_requirement.none": "无需加热", + "create.recipe.heat_requirement.heated": "加热", + "create.recipe.heat_requirement.superheated": "超级加热", + + "create.generic.range": "范围", + "create.generic.radius": "半径", + "create.generic.width": "宽度", + "create.generic.height": "高度", + "create.generic.length": "长度", + "create.generic.speed": "速度", + "create.generic.delay": "延时", + "create.generic.unit.ticks": "Ticks", + "create.generic.unit.seconds": "秒", + "create.generic.unit.minutes": "分钟", + "create.generic.unit.rpm": "RPM", + "create.generic.unit.stress": "su", + "create.generic.unit.degrees": "°", + "create.generic.unit.millibuckets": "%1$smB", + "create.generic.clockwise": "顺时针方向", + "create.generic.counter_clockwise": "逆时针方向", + + "create.action.scroll": "滚轮", + "create.action.confirm": "确认", + "create.action.abort": "退出", + "create.action.saveToFile": "保存", + "create.action.discard": "放弃", + + "create.keyinfo.toolmenu": "工具菜单", + "create.keyinfo.toolbelt": "使用附近的工具箱", + "create.keyinfo.scrollup": "(游戏中)向上鼠标滚轮", + "create.keyinfo.scrolldown": "(游戏中)向下鼠标滚轮", + + "create.gui.scrollInput.defaultTitle": "选择一个选项:", + "create.gui.scrollInput.scrollToModify": "滚动修改", + "create.gui.scrollInput.scrollToAdjustAmount": "滚动修改数量", + "create.gui.scrollInput.scrollToSelect": "滚动选择", + "create.gui.scrollInput.shiftScrollsFaster": "按住 Shift 滚动更快", + "create.gui.toolmenu.focusKey": "按住 [%1$s] 鼠标滚轮选择", + "create.gui.toolmenu.cycle": "[SCROLL] 循环", + + "create.toolbox.unequip": "收回: %1$s", + "create.toolbox.outOfRange": "收纳物品的工具箱不在范围内", + "create.toolbox.detach": "停止追踪并保留物品", + "create.toolbox.depositAll": "把物品收回附近所有的工具箱", + "create.toolbox.depositBox": "把物品收回工具箱", + + "create.gui.symmetryWand.mirrorType": "镜子类型", + "create.gui.symmetryWand.orientation": "方向", + + "create.symmetry.mirror.plane": "镜像", + "create.symmetry.mirror.doublePlane": "矩形", + "create.symmetry.mirror.triplePlane": "八角", + + "create.orientation.orthogonal": "垂直", + "create.orientation.diagonal": "对角线", + "create.orientation.horizontal": "水平", + "create.orientation.alongZ": "以z轴对齐", + "create.orientation.alongX": "以x轴对齐", + + "create.gui.terrainzapper.title": "手持式环境塑形器", + "create.gui.terrainzapper.searchDiagonal": "对角线延伸", + "create.gui.terrainzapper.searchFuzzy": "忽略质料分界", + "create.gui.terrainzapper.patternSection": "样式", + "create.gui.terrainzapper.pattern.solid": "填满", + "create.gui.terrainzapper.pattern.checkered": "棋盘格", + "create.gui.terrainzapper.pattern.inversecheckered": "反转棋盘格", + "create.gui.terrainzapper.pattern.chance25": "随机填充 25%", + "create.gui.terrainzapper.pattern.chance50": "随机填充 50%", + "create.gui.terrainzapper.pattern.chance75": "随机填充 75%", + "create.gui.terrainzapper.placement": "放置模式", + "create.gui.terrainzapper.placement.merged": "结合", + "create.gui.terrainzapper.placement.attached": "依附", + "create.gui.terrainzapper.placement.inserted": "插入", + "create.gui.terrainzapper.brush": "塑形类型", + "create.gui.terrainzapper.brush.cuboid": "矩形体", + "create.gui.terrainzapper.brush.sphere": "球体", + "create.gui.terrainzapper.brush.cylinder": "圆柱体", + "create.gui.terrainzapper.brush.surface": "表面", + "create.gui.terrainzapper.brush.cluster": "簇状", + "create.gui.terrainzapper.tool": "填充类型", + "create.gui.terrainzapper.tool.fill": "填充", + "create.gui.terrainzapper.tool.place": "复写", + "create.gui.terrainzapper.tool.replace": "替换", + "create.gui.terrainzapper.tool.clear": "清除", + "create.gui.terrainzapper.tool.overlay": "覆盖", + "create.gui.terrainzapper.tool.flatten": "平整", + + "create.terrainzapper.shiftRightClickToSet": "按住 Shift 右击以设置塑形类型", + "create.terrainzapper.usingBlock": "使用:%1$s", + "create.terrainzapper.leftClickToSet": "鼠标左击一个方块以设置填充材料", + + "create.minecart_coupling.two_couplings_max": "《我的世界》无法被连接两个以上的《我的世界》连轴器", + "create.minecart_coupling.unloaded": "有一部分火车存在于未加载区块中", + "create.minecart_coupling.no_loops": "《我的世界》连轴器不能连成一个环", + "create.minecart_coupling.removed": "从《我的世界》上移除所有《我的世界》连轴器", + "create.minecart_coupling.too_far": "《我的世界》距离你太远了", + + "create.contraptions.movement_mode": "运动模式", + "create.contraptions.movement_mode.move_place": "停止时总是将装置方块化", + "create.contraptions.movement_mode.move_place_returned": "停止时只在初始位置才将装置方块化", + "create.contraptions.movement_mode.move_never_place": "只有在动力方块摧毁后才将装置方块化", + "create.contraptions.movement_mode.rotate_place": "停止时总是将装置方块化", + "create.contraptions.movement_mode.rotate_place_returned": "停止时只在接近初始角度才将装置方块化", + "create.contraptions.movement_mode.rotate_never_place": "只有在旋转轴摧毁后才将装置方块化", + "create.contraptions.cart_movement_mode": "《我的世界》运动模式", + "create.contraptions.cart_movement_mode.rotate": "始终面朝前进方向", + "create.contraptions.cart_movement_mode.rotate_paused": "《我的世界》转向时机器停止工作", + "create.contraptions.cart_movement_mode.rotation_locked": "旋转锁定", + "create.contraptions.windmill.rotation_direction": "旋转方向", + "create.contraptions.clockwork.clock_hands": "钟表指针", + "create.contraptions.clockwork.hour_first": "时针优先", + "create.contraptions.clockwork.minute_first": "分针优先", + "create.contraptions.clockwork.hour_first_24": "24 小时制优先", + + "create.logistics.filter": "过滤器", + "create.logistics.recipe_filter": "配方过滤器", + "create.logistics.fluid_filter": "流体过滤器", + "create.logistics.firstFrequency": "频率 #1", + "create.logistics.secondFrequency": "频率 #2", + "create.logistics.filter.apply": "已将过滤应用于%1$s。", + "create.logistics.filter.apply_click_again": "已将过滤应用于%1$s,再次点击可将手持物品数量复制到过滤器上。", + "create.logistics.filter.apply_count": "已将提取数量应用至过滤器。", + + "create.gui.goggles.generator_stats": "应力发生器状态:", + "create.gui.goggles.kinetic_stats": "动力学状态:", + "create.gui.goggles.at_current_speed": "当前速度应力值", + "create.gui.goggles.pole_length": "活塞杆长度:", + "create.gui.goggles.fluid_container": "流体容器信息:", + "create.gui.goggles.fluid_container.capacity": "容量:", + "create.gui.assembly.exception": "无法组装该装置:", + "create.gui.assembly.exception.unmovableBlock": "无法移动的方块:(%4$s)位于 [%1$s,%2$s,%3$s]", + "create.gui.assembly.exception.chunkNotLoaded": "位于 [%1$s,%2$s,%3$s] 的方块未处于加载区块", + "create.gui.assembly.exception.structureTooLarge": "装置中的方块数量过多。\n配置的最大值为:%1$s", + "create.gui.assembly.exception.tooManyPistonPoles": "活塞加装的活塞杆数量过多。\n配置的最大值为:%1$s", + "create.gui.assembly.exception.noPistonPoles": "活塞缺失部分活塞杆", + "create.gui.assembly.exception.not_enough_sails": "相接的结构所包含的类风帆方块的数量不足:%1$s。\n至少需要 %2$s", + "create.gui.gauge.info_header": "仪表信息:", + "create.gui.speedometer.title": "旋转速度", + "create.gui.stressometer.title": "网络应力", + "create.gui.stressometer.capacity": "剩余应力量", + "create.gui.stressometer.overstressed": "应力过载", + "create.gui.stressometer.no_rotation": "无旋转", + "create.gui.contraptions.not_fast_enough": "显然%1$s没有达到足够的工作转速。", + "create.gui.contraptions.network_overstressed": "显然装置过载,减速网络中的高应力消耗装置或者添加更多的应力发生装置", + "create.gui.adjustable_crate.title": "板条箱", + "create.gui.adjustable_crate.storageSpace": "储存空间", + "create.gui.stockpile_switch.title": "储存开关", + "create.gui.stockpile_switch.invert_signal": "反转信号", + "create.gui.stockpile_switch.move_to_lower_at": "移至下线%1$s%%", + "create.gui.stockpile_switch.move_to_upper_at": "移至上线%1$s%%", + "create.gui.sequenced_gearshift.title": "可编程齿轮箱", + "create.gui.sequenced_gearshift.instruction": "指令", + "create.gui.sequenced_gearshift.instruction.turn_angle.descriptive": "以特定的角度进行旋转", + "create.gui.sequenced_gearshift.instruction.turn_angle": "旋转", + "create.gui.sequenced_gearshift.instruction.turn_angle.angle": "角度", + "create.gui.sequenced_gearshift.instruction.turn_distance.descriptive": "开始驱动活塞/软管滑轮/起重机", + "create.gui.sequenced_gearshift.instruction.turn_distance": "驱动活塞", + "create.gui.sequenced_gearshift.instruction.turn_distance.distance": "距离", + "create.gui.sequenced_gearshift.instruction.delay.descriptive": "时间延迟", + "create.gui.sequenced_gearshift.instruction.delay": "延迟", + "create.gui.sequenced_gearshift.instruction.delay.duration": "时长", + "create.gui.sequenced_gearshift.instruction.end.descriptive": "结束", + "create.gui.sequenced_gearshift.instruction.end": "停止", + "create.gui.sequenced_gearshift.instruction.await.descriptive": "等待新的雷石东脉冲", + "create.gui.sequenced_gearshift.instruction.await": "等待", + "create.gui.sequenced_gearshift.speed": "速度,速度方向", + "create.gui.sequenced_gearshift.speed.forward": "一倍速,正向", + "create.gui.sequenced_gearshift.speed.forward_fast": "两倍速,正向", + "create.gui.sequenced_gearshift.speed.back": "一倍速,反向", + "create.gui.sequenced_gearshift.speed.back_fast": "两倍速,反向", + + "create.schematicAndQuill.dimensions": "蓝图尺寸:%1$sx%2$sx%3$s", + "create.schematicAndQuill.firstPos": "第一个位置。", + "create.schematicAndQuill.secondPos": "第二个位置。", + "create.schematicAndQuill.noTarget": "按住 Ctrl 选择空气方块。", + "create.schematicAndQuill.abort": "删除选择。", + "create.schematicAndQuill.title": "蓝图名:", + "create.schematicAndQuill.convert": "立即保存并部署", + "create.schematicAndQuill.fallbackName": "我的蓝图", + "create.schematicAndQuill.saved": "另存为%1$s", + + "create.schematic.invalid": "[!] 无效的物品 - 使用蓝图桌来替换", + "create.schematic.position": "位置", + "create.schematic.rotation": "旋转", + "create.schematic.rotation.none": "无", + "create.schematic.rotation.cw90": "顺时针90", + "create.schematic.rotation.cw180": "顺时针180", + "create.schematic.rotation.cw270": "顺时针270", + "create.schematic.mirror": "镜像", + "create.schematic.mirror.none": "无", + "create.schematic.mirror.frontBack": "前后", + "create.schematic.mirror.leftRight": "左右", + "create.schematic.tool.deploy": "部署", + "create.schematic.tool.move": "移动 XZ", + "create.schematic.tool.movey": "移动 Y", + "create.schematic.tool.rotate": "旋转", + "create.schematic.tool.print": "打印", + "create.schematic.tool.flip": "翻转", + "create.schematic.tool.deploy.description.0": "将结构移到某个位置。", + "create.schematic.tool.deploy.description.1": "在地面上单击鼠标右击以放置。", + "create.schematic.tool.deploy.description.2": "按住 Ctrl 以固定距离选择。", + "create.schematic.tool.deploy.description.3": "按住 Ctrl 鼠标滚动更改距离。", + "create.schematic.tool.move.description.0": "水平移动蓝图", + "create.schematic.tool.move.description.1": "选定蓝图,然后按住 Ctrl 鼠标滚动移动。", + "create.schematic.tool.move.description.2": "", + "create.schematic.tool.move.description.3": "", + "create.schematic.tool.movey.description.0": "垂直移动蓝图", + "create.schematic.tool.movey.description.1": "按住 Ctrl 鼠标滚动上下移动", + "create.schematic.tool.movey.description.2": "", + "create.schematic.tool.movey.description.3": "", + "create.schematic.tool.rotate.description.0": "围绕蓝图中心旋转蓝图。", + "create.schematic.tool.rotate.description.1": "按住 Ctrl 鼠标滚动旋转90度", + "create.schematic.tool.rotate.description.2": "", + "create.schematic.tool.rotate.description.3": "", + "create.schematic.tool.print.description.0": "立即将结构放置在世界上", + "create.schematic.tool.print.description.1": "右击确认当前位置。", + "create.schematic.tool.print.description.2": "该工具仅适用于上帝模式。", + "create.schematic.tool.print.description.3": "", + "create.schematic.tool.flip.description.0": "沿你选择的面翻转蓝图。", + "create.schematic.tool.flip.description.1": "指向蓝图,然后按住 Ctrl 鼠标滚动将其翻转。", + "create.schematic.tool.flip.description.2": "", + "create.schematic.tool.flip.description.3": "", + + "create.schematics.synchronizing": "正在同步..", + "create.schematics.uploadTooLarge": "你的蓝图超出了服务器指定的限制。", + "create.schematics.maxAllowedSize": "允许的最大蓝图文件大小为:", + + "create.gui.schematicTable.refresh": "刷新文件", + "create.gui.schematicTable.open_folder": "打开文件夹", + "create.gui.schematicTable.title": "蓝图桌", + "create.gui.schematicTable.availableSchematics": "可用蓝图", + "create.gui.schematicTable.noSchematics": "没有保存的蓝图", + "create.gui.schematicTable.uploading": "正在上传...", + "create.gui.schematicTable.finished": "上传完成!", + "create.gui.schematicannon.title": "蓝图加农炮", + "create.gui.schematicannon.listPrinter": "物品清单打印机", + "create.gui.schematicannon.gunpowderLevel": "炮灰%1$s%%", + "create.gui.schematicannon.shotsRemaining": "燃料余量:%1$s", + "create.gui.schematicannon.shotsRemainingWithBackup": "燃料储备:%1$s", + "create.gui.schematicannon.optionEnabled": "当前启用", + "create.gui.schematicannon.optionDisabled": "当前禁用", + "create.gui.schematicannon.showOptions": "显示蓝图加农炮设置", + "create.gui.schematicannon.option.dontReplaceSolid": "不要替换方块", + "create.gui.schematicannon.option.replaceWithSolid": "用固体方块替换工作区域内的方块", + "create.gui.schematicannon.option.replaceWithAny": "用任何方块替换工作区域内的方块", + "create.gui.schematicannon.option.replaceWithEmpty": "用空气替换工作区域内的方块", + "create.gui.schematicannon.option.skipMissing": "跳过缺少的方块", + "create.gui.schematicannon.option.skipTileEntities": "保护存储方块", + "create.gui.schematicannon.slot.gunpowder": "向蓝图加农炮添加炮灰以提供动力", + "create.gui.schematicannon.slot.listPrinter": "在此处放置书以打印蓝图所需的材料清单", + "create.gui.schematicannon.slot.schematic": "在此处添加你的蓝图,务必确保其已经被部署在了特定位置", + "create.gui.schematicannon.option.skipMissing.description": "如果缺失材料,蓝图加农炮将忽略当前缺失材料并且使用其他已有材料继续工作", + "create.gui.schematicannon.option.skipTileEntities.description": "蓝图将避免更换存储方块,如胸部。", + "create.gui.schematicannon.option.dontReplaceSolid.description": "蓝图加农炮将不会替换工作范围内的任何固体方块。", + "create.gui.schematicannon.option.replaceWithSolid.description": "蓝图加农炮会使用所提供的固体方块来替换工作区域内的其他固体方块", + "create.gui.schematicannon.option.replaceWithAny.description": "蓝图加农炮会使用任何所提供的方块来替换工作区域内的固体方块", + "create.gui.schematicannon.option.replaceWithEmpty.description": "蓝图加农炮将清理和替换工作区域内所有原本的方块。", + + "create.schematicannon.status.idle": "闲置中", + "create.schematicannon.status.ready": "准备中", + "create.schematicannon.status.running": "运行中", + "create.schematicannon.status.finished": "已完成", + "create.schematicannon.status.paused": "已暂停", + "create.schematicannon.status.stopped": "已停止", + "create.schematicannon.status.noGunpowder": "炮灰已耗尽", + "create.schematicannon.status.targetNotLoaded": "目标未被加载", + "create.schematicannon.status.targetOutsideRange": "目标太远", + "create.schematicannon.status.searching": "正在搜索", + "create.schematicannon.status.skipping": "正在跳过", + "create.schematicannon.status.missingBlock": "缺少方块:", + "create.schematicannon.status.placing": "建筑中", + "create.schematicannon.status.clearing": "清除方块中", + "create.schematicannon.status.schematicInvalid": "蓝图无效", + "create.schematicannon.status.schematicNotPlaced": "蓝图未部署", + "create.schematicannon.status.schematicExpired": "蓝图文件已过期", + + "create.materialChecklist": "材料清单", + "create.materialChecklist.blocksNotLoaded": "*免责声明*\n\n由于相关区块没有被加载,材料列表可能不准确。", + + "create.gui.filter.deny_list": "黑名单", + "create.gui.filter.deny_list.description": "只通过不在黑名单中的物品,如果黑名单为空,所有物品都可以通过", + "create.gui.filter.allow_list": "白名单", + "create.gui.filter.allow_list.description": "只通过在白名单中的物品,如果白名单为空,所有物品都无法通过", + "create.gui.filter.respect_data": "匹配物品属性", + "create.gui.filter.respect_data.description": "只有物品的耐久、覆膜等其他属性相同时才可以匹配", + "create.gui.filter.ignore_data": "忽视物品属性", + "create.gui.filter.ignore_data.description": "匹配时忽视物品的耐久、覆膜等其他属性", + + "create.item_attributes.placeable": "可放置", + "create.item_attributes.placeable.inverted": "不可放置", + "create.item_attributes.consumable": "可食用", + "create.item_attributes.consumable.inverted": "不可食用", + "create.item_attributes.fluid_container": "可储存流体", + "create.item_attributes.fluid_container.inverted": "不可储存流体", + "create.item_attributes.enchanted": "已被覆膜", + "create.item_attributes.enchanted.inverted": "未被覆膜", + "create.item_attributes.max_enchanted": "已达到最高覆膜等级", + "create.item_attributes.max_enchanted.inverted": "并未达到最高覆膜等级", + "create.item_attributes.renamed": "有自定义名称", + "create.item_attributes.renamed.inverted": "无自定义名称", + "create.item_attributes.damaged": "已损坏", + "create.item_attributes.damaged.inverted": "未损坏", + "create.item_attributes.badly_damaged": "严重受损", + "create.item_attributes.badly_damaged.inverted": "未严重受损", + "create.item_attributes.not_stackable": "无法堆叠", + "create.item_attributes.not_stackable.inverted": "可堆叠", + "create.item_attributes.equipable": "可装备", + "create.item_attributes.equipable.inverted": "不可装备", + "create.item_attributes.furnace_fuel": "可作为燃料", + "create.item_attributes.furnace_fuel.inverted": "不可作为燃料", + "create.item_attributes.washable": "可被洗涤", + "create.item_attributes.washable.inverted": "不可被洗涤", + "create.item_attributes.hauntable": "UNLOCALIZED: can be Haunted", + "create.item_attributes.hauntable.inverted": "UNLOCALIZED: cannot be Haunted", + "create.item_attributes.crushable": "可被粉碎", + "create.item_attributes.crushable.inverted": "不可被粉碎", + "create.item_attributes.smeltable": "可被炉子烧制", + "create.item_attributes.smeltable.inverted": "不可被炉子烧制", + "create.item_attributes.smokable": "可被吸烟", + "create.item_attributes.smokable.inverted": "不可被吸烟", + "create.item_attributes.blastable": "可被炼金机冶炼", + "create.item_attributes.blastable.inverted": "不可被炼金机冶炼", + "create.item_attributes.shulker_level": "傻瓜盒子是%1$s的", + "create.item_attributes.shulker_level.inverted": "傻瓜盒子不是%1$s的", + "create.item_attributes.shulker_level.full": "满", + "create.item_attributes.shulker_level.empty": "空", + "create.item_attributes.shulker_level.partial": "部分填充", + "create.item_attributes.in_tag": "标签是%1$s", + "create.item_attributes.in_tag.inverted": "标签不是%1$s", + "create.item_attributes.in_item_group": "属于%1$s", + "create.item_attributes.in_item_group.inverted": "不属于%1$s", + "create.item_attributes.added_by": "由%1$s添加", + "create.item_attributes.added_by.inverted": "不由%1$s添加", + "create.item_attributes.has_enchant": "有覆膜效果%1$s", + "create.item_attributes.has_enchant.inverted": "没有覆膜效果%1$s", + "create.item_attributes.color": "染色为%1$s", + "create.item_attributes.color.inverted": "未被染成%1$s", + "create.item_attributes.has_fluid": "含有%1$s", + "create.item_attributes.has_fluid.inverted": "不含有%1$s", + "create.item_attributes.has_name": "有自定义名称%1$s", + "create.item_attributes.has_name.inverted": "没有自定义名称%1$s", + "create.item_attributes.book_author": "由%1$s编写", + "create.item_attributes.book_author.inverted": "不是由%1$s编写", + "create.item_attributes.book_copy_original": "是初版", + "create.item_attributes.book_copy_original.inverted": "不是初版", + "create.item_attributes.book_copy_first": "是第一代拷贝", + "create.item_attributes.book_copy_first.inverted": "不是第一代拷贝", + "create.item_attributes.book_copy_second": "是第二代拷贝", + "create.item_attributes.book_copy_second.inverted": "不是第二代拷贝", + "create.item_attributes.book_copy_tattered": "拷贝次数已不可查", + "create.item_attributes.book_copy_tattered.inverted": "不是拷贝次数已不可查", + "create.item_attributes.astralsorcery_amulet": "璀璨棱镜增强%1$s", + "create.item_attributes.astralsorcery_amulet.inverted": "璀璨棱镜未增强%1$s", + "create.item_attributes.astralsorcery_constellation": "与%1$s共鸣", + "create.item_attributes.astralsorcery_constellation.inverted": "不与%1$s共鸣", + "create.item_attributes.astralsorcery_crystal": "有水晶石属性%1$s", + "create.item_attributes.astralsorcery_crystal.inverted": "没有水晶石属性%1$s", + "create.item_attributes.astralsorcery_perk_gem": "带有有星能力属性%1$s", + "create.item_attributes.astralsorcery_perk_gem.inverted": "不带有星能力属性%1$s", + + "create.gui.attribute_filter.no_selected_attributes": "未选择任何属性", + "create.gui.attribute_filter.selected_attributes": "已选择的属性:", + "create.gui.attribute_filter.add_attribute": "向列表中添加属性", + "create.gui.attribute_filter.add_inverted_attribute": "向列表中添加相反属性", + "create.gui.attribute_filter.allow_list_disjunctive": "任意匹配白名单(任何)", + "create.gui.attribute_filter.allow_list_disjunctive.description": "只要有其中一项属性符合,就可以通过", + "create.gui.attribute_filter.allow_list_conjunctive": "全匹配白名单(全部)", + "create.gui.attribute_filter.allow_list_conjunctive.description": "只有所有属性都匹配才可以通过", + "create.gui.attribute_filter.deny_list": "黑名单", + "create.gui.attribute_filter.deny_list.description": "只要没有上述属性,就可以通过", + "create.gui.attribute_filter.add_reference_item": "添加参考物品", + + "create.tooltip.holdForDescription": "按住 [%1$s] 可查看概要", + "create.tooltip.holdForControls": "按住 [%1$s] 可查看控制方法", + "create.tooltip.keyShift": "Shift", + "create.tooltip.keyCtrl": "Ctrl", + "create.tooltip.speedRequirement": "需求转速:%1$s", + "create.tooltip.speedRequirement.none": "无", + "create.tooltip.speedRequirement.medium": "适当", + "create.tooltip.speedRequirement.high": "快", + "create.tooltip.stressImpact": "应力影响:%1$s", + "create.tooltip.stressImpact.low": "低", + "create.tooltip.stressImpact.medium": "中", + "create.tooltip.stressImpact.high": "高", + "create.tooltip.stressImpact.overstressed": "过载", + "create.tooltip.capacityProvided": "应力量:%1$s", + "create.tooltip.capacityProvided.low": "小", + "create.tooltip.capacityProvided.medium": "中", + "create.tooltip.capacityProvided.high": "大", + "create.tooltip.generationSpeed": "产生于%1$s %2$s", + "create.tooltip.analogStrength": "模拟信号强度:%1$s/15", + + "create.mechanical_arm.extract_from": "从%1$s中拿取物品", + "create.mechanical_arm.deposit_to": "将物品存储至%1$s", + "create.mechanical_arm.summary": "动力臂当前有 %1$s 个输入,%2$s 个输出。", + "create.mechanical_arm.points_outside_range": "由于距离限制,选定的交互点%1$s已被移除。", + + "create.weighted_ejector.target_set": "目标已选取", + "create.weighted_ejector.target_not_valid": "弹射至临近方块(目标无效)", + "create.weighted_ejector.no_target": "弹射至临近方块(未选择目标)", + "create.weighted_ejector.targeting": "弹射至 [%1$s,%2$s,%3$s]", + "create.weighted_ejector.stack_size": "弹射物品堆数量", + + "create.logistics.when_multiple_outputs_available": "当多个输出可用时", + + "create.mechanical_arm.selection_mode.round_robin": "轮询调度", + "create.mechanical_arm.selection_mode.forced_round_robin": "强制轮询调度", + "create.mechanical_arm.selection_mode.prefer_first": "第一目标优先", + + "create.tunnel.selection_mode.split": "分流", + "create.tunnel.selection_mode.forced_split": "强制分流", + "create.tunnel.selection_mode.round_robin": "轮询调度", + "create.tunnel.selection_mode.forced_round_robin": "强制轮询调度", + "create.tunnel.selection_mode.prefer_nearest": "最近优先", + "create.tunnel.selection_mode.randomize": "随机", + "create.tunnel.selection_mode.synchronize": "同步输入", + + "create.tooltip.chute.header": "溜槽信息", + "create.tooltip.chute.items_move_down": "物品下行", + "create.tooltip.chute.items_move_up": "物品上行", + "create.tooltip.chute.no_fans_attached": "未安装鼓风机", + "create.tooltip.chute.fans_push_up": "鼓风机从下方进行推动", + "create.tooltip.chute.fans_push_down": "鼓风机从上方进行推动", + "create.tooltip.chute.fans_pull_up": "鼓风机从上方进行吸引", + "create.tooltip.chute.fans_pull_down": "鼓风机从下方进行吸引", + "create.tooltip.chute.contains": "内含物品:%1$s x%2$s", + "create.tooltip.brass_tunnel.contains": "目前分配:", + "create.tooltip.brass_tunnel.contains_entry": "> %1$s x%2$s", + "create.tooltip.brass_tunnel.retrieve": "鼠标右击取出", + + "create.linked_controller.bind_mode": "绑定模式激活", + "create.linked_controller.press_keybind": "按下%1$s、%2$s、%3$s、%4$s、%5$s或%6$s,可以将该频率绑定到按下的按键上。", + "create.linked_controller.key_bound": "该频率已绑定到%1$s", + "create.linked_controller.frequency_slot_1": "按键绑定:%1$s, 频率 #1", + "create.linked_controller.frequency_slot_2": "按键绑定:%1$s, 频率 #2", + + "create.crafting_blueprint.crafting_slot": "原料槽", + "create.crafting_blueprint.filter_items_viable": "可以使用过滤器", + "create.crafting_blueprint.display_slot": "展示槽", + "create.crafting_blueprint.inferred": "已根据合成配方自动设定", + "create.crafting_blueprint.manually_assigned": "手动设定", + "create.crafting_blueprint.secondary_display_slot": "次要展示槽", + "create.crafting_blueprint.optional": "可选", + + "create.potato_cannon.ammo.attack_damage": "%1$s 攻击伤害", + "create.potato_cannon.ammo.reload_ticks": "%1$s 装弹时间(Ticks)", + "create.potato_cannon.ammo.knockback": "%1$s 击退", + + "create.hint.hose_pulley.title": "无限供应", + "create.hint.hose_pulley": "目标液体对象被视为无限量的。", + "create.hint.mechanical_arm_no_targets.title": "没有目标", + "create.hint.mechanical_arm_no_targets": "看起来这个_动力臂_没有被分配给任何_目标_。在手持机械臂的同时,右击选取传送带、置物台、漏斗或其他设备来设置目标。", + "create.hint.empty_bearing.title": "更新轴承", + "create.hint.empty_bearing": "_空手右击_轴承,可以将你新建造的结构_接到_轴承上。", + "create.hint.full_deployer.title": "机械手物品溢出", + "create.hint.full_deployer": "_机械手_包含_过剩的物品,_需要被_提取。你需要_使用_料斗,__漏斗_或其他方法将溢出释放出来。", + + "create.gui.config.overlay1": "Hi :)", + "create.gui.config.overlay2": "这是一个实例层", + "create.gui.config.overlay3": "点击拖拽你的鼠标", + "create.gui.config.overlay4": "来将它移动到前方", + "create.gui.config.overlay5": "ESC退出当前界面", + "create.gui.config.overlay6": "并保存新的位置", + "create.gui.config.overlay7": "输入/create overlay reset", + "create.gui.config.overlay8": "重置到默认位置", + + "create.command.killTPSCommand": "killtps", + "create.command.killTPSCommand.status.slowed_by.0": "[Create]: 服务器现在的 TPS 速度被降低为 %s ms :o", + "create.command.killTPSCommand.status.slowed_by.1": "[Create]: 服务器现在的 TPS 速度被降低为 >:)", + "create.command.killTPSCommand.status.slowed_by.2": "[Create]: 服务器恢复到正常的 TPS 速度 :D", + "create.command.killTPSCommand.status.usage.0": "[Create]: 用 /killtps stop 来让服务器的 TPS 速度变回正常", + "create.command.killTPSCommand.status.usage.1": "[Create]: 用 /killtps start 来手动降低服务器 TPS 速度", + "create.command.killTPSCommand.argument.tickTime": "tickTime", + + "create.contraption.minecart_contraption_too_big": "这一《我的世界》装置似乎太大了,无法变为拾捡状态", + "create.contraption.minecart_contraption_illegal_pickup": "一股神秘的力量将这一装置与世界牢牢绑定在了一起。", + + "create.subtitle.contraption_disassemble": "结构:停止移动", + "create.subtitle.peculiar_bell_use": "奇异钟:鸣响", + "create.subtitle.mixing": "搅拌器:搅拌声", + "create.subtitle.mechanical_press_activation_belt": "辊压机:撞击传送带", + "create.subtitle.fwoomp": "育碧服务器加农炮:发射", + "create.subtitle.worldshaper_place": "环境塑型器:放置方块", + "create.subtitle.sanding_long": "打磨噪音", + "create.subtitle.crushing_1": "磨碎声", + "create.subtitle.depot_slide": "物品:滑入", + "create.subtitle.saw_activate_stone": "动力锯:切割", + "create.subtitle.blaze_munch": "棒子人:咀嚼", + "create.subtitle.funnel_flap": "漏斗:垂帘碰撞", + "create.subtitle.schematicannon_finish": "蓝图加农炮:叮", + "create.subtitle.haunted_bell_use": "森魂钟:鸣响", + "create.subtitle.scroll_value": "拨码输入:咔哒", + "create.subtitle.crafter_craft": "动力合成器:合成中", + "create.subtitle.controller_put": "遥控器:放进百 家 讲 坛", + "create.subtitle.cranking": "手摇曲柄:转动", + "create.subtitle.wrench_remove": "组件:被破坏", + "create.subtitle.sanding_short": "打磨噪音", + "create.subtitle.cogs": "齿轮:嘎吱作响", + "create.subtitle.slime_added": "萌王:挤碎声", + "create.subtitle.wrench_rotate": "扳手:拧动", + "create.subtitle.potato_hit": "育碧服务器:击中", + "create.subtitle.saw_activate_wood": "动力锯:切割", + "create.subtitle.haunted_bell_convert": "奇异钟:转化", + "create.subtitle.deny": "提示声:出错", + "create.subtitle.controller_click": "遥控器:按下按钮", + "create.subtitle.schematicannon_launch_block": "蓝图加农炮:发射", + "create.subtitle.copper_armor_equip": "潜水装备:铿锵", + "create.subtitle.controller_take": "百 家 讲 坛:取走物品", + "create.subtitle.mechanical_press_activation": "辊压机:工作中", + "create.subtitle.contraption_assemble": "结构:开始移动", + "create.subtitle.crafter_click": "动力合成器:咔哒声", + "create.subtitle.depot_plop": "物品:着地", + "create.subtitle.confirm": "提示声:接受", + + "item.create.example_item.tooltip": "EXAMPLE ITEM (just a marker that this tooltip exists)", + "item.create.example_item.tooltip.summary": "A brief description of the item._Underscores_highlight a term.", + "item.create.example_item.tooltip.condition1": "When this", + "item.create.example_item.tooltip.behaviour1": "Then this item does this。(behaviours show on shift)", + "item.create.example_item.tooltip.condition2": "And When this", + "item.create.example_item.tooltip.behaviour2": "You can add as many behaviours as you like", + "item.create.example_item.tooltip.control1": "When Ctrl pressed", + "item.create.example_item.tooltip.action1": "These controls are displayed.", + + "block.create.wooden_bracket.tooltip": "木质支架", + "block.create.wooden_bracket.tooltip.summary": "用这种给人温馨感的木质支架_装饰_你的_传动杆_,_齿轮_和_管道_吧。", + + "block.create.metal_bracket.tooltip": "金属支架", + "block.create.metal_bracket.tooltip.summary": "用这种工业风格的金属支架_装饰_你的_传动杆_,_齿轮_和_管道_吧。", + + "block.create.seat.tooltip": "坐垫", + "block.create.seat.tooltip.summary": "坐下来享受旅程吧!坐垫将会把玩家固定在一个移动装置上。也可以用来作为居家装饰,毕竟他有许多颜色。", + "block.create.seat.tooltip.condition1": "右击坐垫", + "block.create.seat.tooltip.behaviour1": "会使得玩家坐在_坐垫_上,按下左 Shift 可离开_坐垫_。", + + "item.create.blaze_cake.tooltip": "烈焰蛋糕", + "item.create.blaze_cake.tooltip.summary": "为辛勤劳作的_棒子人_精心准备的美味。让他们兴奋起来吧!", + + "item.create.wand_of_symmetry.tooltip": "对称之杖", + "item.create.wand_of_symmetry.tooltip.summary": "完美地镜面复制工作区域内的方块到另一边", + "item.create.wand_of_symmetry.tooltip.condition1": "当在快捷栏时", + "item.create.wand_of_symmetry.tooltip.behaviour1": "持续进行镜面复制。", + "item.create.wand_of_symmetry.tooltip.control1": "当右击地面时", + "item.create.wand_of_symmetry.tooltip.action1": "_创建_或_移动_镜面。", + "item.create.wand_of_symmetry.tooltip.control2": "当右击空气时", + "item.create.wand_of_symmetry.tooltip.action2": "_删除_镜面。", + "item.create.wand_of_symmetry.tooltip.control3": "当潜行右击时", + "item.create.wand_of_symmetry.tooltip.action3": "打开_配置界面_。", + + "item.create.handheld_worldshaper.tooltip": "手持式环境塑形器", + "item.create.handheld_worldshaper.tooltip.summary": "_创造_大陆和山脉的手持工具", + "item.create.handheld_worldshaper.tooltip.control1": "当左击方块时", + "item.create.handheld_worldshaper.tooltip.action1": "将工具放置的方块设置为该方块。", + "item.create.handheld_worldshaper.tooltip.control2": "当右击方块时", + "item.create.handheld_worldshaper.tooltip.action2": "_放置_或_替换_目标方块。", + "item.create.handheld_worldshaper.tooltip.control3": "当潜行右击时", + "item.create.handheld_worldshaper.tooltip.action3": "打开工具的_配置界面_。", + + "item.create.tree_fertilizer.tooltip": "树木肥料", + "item.create.tree_fertilizer.tooltip.summary": "由多种矿物质复合而成的强大生长剂,能够加速普通树种的生长速度。", + "item.create.tree_fertilizer.tooltip.condition1": "在树苗上使用时", + "item.create.tree_fertilizer.tooltip.behaviour1": "使得该树_无视_它的_生长空间条件_,立刻长大。", + + "item.create.extendo_grip.tooltip": "伸缩机械手", + "item.create.extendo_grip.tooltip.summary": "biubiubiu! 大幅度_增加了_使用者的_触碰距离_。", + "item.create.extendo_grip.tooltip.condition1": "放置于副手栏时", + "item.create.extendo_grip.tooltip.behaviour1": "增加_主手_所使用物品的_接触距离_。", + "item.create.extendo_grip.tooltip.condition2": "当装备铜制背罐时", + "item.create.extendo_grip.tooltip.behaviour2": "使用罐中_气压_来_抵消_伸缩机械手的_耐久_损耗。", + + "item.create.potato_cannon.tooltip": "育碧服务器加农炮", + "item.create.potato_cannon.tooltip.summary": "噗!把你亲手栽培的蔬菜砸向你的敌人。可以使用_铜制背罐_供能。", + "item.create.potato_cannon.tooltip.condition1": "当右击时", + "item.create.potato_cannon.tooltip.behaviour1": "_发射_你_物品栏_中任一可作为弹药的物品。", + "item.create.potato_cannon.tooltip.condition2": "当装备铜制背罐时", + "item.create.potato_cannon.tooltip.behaviour2": "使用罐中_气压_来_抵消_育碧服务器加农炮的_耐久_损耗。", + + "item.create.filter.tooltip": "过滤器", + "item.create.filter.tooltip.summary": "可用于_精确_控制物流设备的_输出_以及_输入_,使得通过的物品流与_一组_物品或者数个_相嵌套的过滤器_相匹配。", + "item.create.filter.tooltip.condition1": "放置于过滤插槽中时", + "item.create.filter.tooltip.behaviour1": "根据_过滤器_的配置,来_决定_物品流是否能够通过。", + "item.create.filter.tooltip.condition2": "当右击时", + "item.create.filter.tooltip.behaviour2": "打开_配置面板_。", + + "item.create.attribute_filter.tooltip": "属性过滤器", + "item.create.attribute_filter.tooltip.summary": "可用于_精确_控制物流设备的_输出_以及_输入_,使得通过的物品流与_一组_物品_属性_以及_分类_相匹配。", + "item.create.attribute_filter.tooltip.condition1": "放置于过滤插槽中时", + "item.create.attribute_filter.tooltip.behaviour1": "根据_过滤器_的配置,来_决定_物品流是否能够通过。", + "item.create.attribute_filter.tooltip.condition2": "当右击时", + "item.create.attribute_filter.tooltip.behaviour2": "打开_配置面板_。", + + "item.create.empty_schematic.tooltip": "空白蓝图", + "item.create.empty_schematic.tooltip.summary": "可作为合成材料或在_蓝图桌_使用", + + "item.create.schematic.tooltip": "蓝图", + "item.create.schematic.tooltip.summary": "可将结构部署并放置到世界中,将蓝图全息影像部署完毕后,使用_蓝图加农炮_进行结构建造。", + "item.create.schematic.tooltip.condition1": "当手持蓝图时", + "item.create.schematic.tooltip.behaviour1": "可以使用屏幕上的工具调整位置", + "item.create.schematic.tooltip.control1": "当潜行右击时", + "item.create.schematic.tooltip.action1": "打开一个用于输入_精确坐标_的界面。", + + "item.create.schematic_and_quill.tooltip": "蓝图与笔", + "item.create.schematic_and_quill.tooltip.summary": "用于将世界中的结构保存到 .nbt 文件。", + "item.create.schematic_and_quill.tooltip.condition1": "第一步", + "item.create.schematic_and_quill.tooltip.behaviour1": "手持蓝图与笔右击选择两个对角点", + "item.create.schematic_and_quill.tooltip.condition2": "第二步", + "item.create.schematic_and_quill.tooltip.behaviour2": "对准选定区域,按住 Ctrl 键并滑动鼠标滚轮,可以调整选区的大小,右击保存。", + "item.create.schematic_and_quill.tooltip.control1": "右击", + "item.create.schematic_and_quill.tooltip.action1": "选取一个对角点/确认保存。", + "item.create.schematic_and_quill.tooltip.control2": "按住 Ctrl ", + "item.create.schematic_and_quill.tooltip.action2": "可在_空中_选择点,_滑动滚轮_可调整距离。", + "item.create.schematic_and_quill.tooltip.control3": "当潜行右击时", + "item.create.schematic_and_quill.tooltip.action3": "_重置_并删除选区。", + + "block.create.schematicannon.tooltip": "蓝图加农炮", + "block.create.schematicannon.tooltip.summary": "发射方块,重新构建已在世界中部署的_蓝图_,会使用相邻胸部中的物品进行填充,_炮灰_作为燃料。", + "block.create.schematicannon.tooltip.condition1": "当右击时", + "block.create.schematicannon.tooltip.behaviour1": "打开_界面_", + + "block.create.schematic_table.tooltip": "蓝图桌", + "block.create.schematic_table.tooltip.summary": "将保存的蓝图图写入_空白蓝图_", + "block.create.schematic_table.tooltip.condition1": "放入空白蓝图时", + "block.create.schematic_table.tooltip.behaviour1": "可从 Schematics 文件夹中上传所选文件。", + + "item.create.goggles.tooltip": "工程师护目镜", + "item.create.goggles.tooltip.summary": "一副可以扩增显示_动力学信息_的实用眼镜。", + "item.create.goggles.tooltip.condition1": "当装备时", + "item.create.goggles.tooltip.behaviour1": "根据对应动力组件的_转速等级_,显示它的_颜色指示器_,也会显示这个组件的_应力影响_以及_应力量_。", + "item.create.goggles.tooltip.condition2": "当看向仪表时", + "item.create.goggles.tooltip.behaviour2": "将会显示与仪表相连的网络的_转速_、_应力_等详细信息。", + "item.create.goggles.tooltip.condition3": "当看向流体容器时", + "item.create.goggles.tooltip.behaviour3": "显示出方块的_容量_细节,以及其中包含的所有_流体_。", + + "item.create.wrench.tooltip": "扳手", + "item.create.wrench.tooltip.summary": "操控动力组件的使用工具。可用于_旋转_,_拆除_以及_配置_组件。", + "item.create.wrench.tooltip.control1": "当右击_动力方块_时", + "item.create.wrench.tooltip.action1": "以点击的面为轴心_旋转_点击的方块", + "item.create.wrench.tooltip.control2": "当潜行右击时", + "item.create.wrench.tooltip.action2": "会_拆除动力组件_并将其移动到你的背包中。", + + "block.create.nozzle.tooltip": "分散网", + "block.create.nozzle.tooltip.summary": "依附在鼓风机上,能够将鼓风机的效果分散到_各个方向_。", + + "block.create.cuckoo_clock.tooltip": "咕咕闹钟", + "block.create.cuckoo_clock.tooltip.summary": "精致的工艺品,能够记录时间", + "block.create.cuckoo_clock.tooltip.condition1": "接入动力时", + "block.create.cuckoo_clock.tooltip.behaviour1": "显示_当前时间_并且一天会咕咕两次。_中午_咕咕一次,_黄昏可以睡觉_的时候咕咕一次 ", + + "block.create.turntable.tooltip": "转盘", + "block.create.turntable.tooltip.summary": "让旋转力给你带来一场刺激的旋转风车体验。", + + "block.create.toolbox.tooltip": "工具箱", + "block.create.toolbox.tooltip.summary": "每个发明家最亲爱的伙伴!可以方便地大量_收纳__8种_不同的物品类型。", + "block.create.toolbox.tooltip.condition1": "当拾起时", + "block.create.toolbox.tooltip.behaviour1": "_保留_库存_内容_。", + "block.create.toolbox.tooltip.condition2": "当放置在范围内时 ", + "block.create.toolbox.tooltip.behaviour2": "_附近_的_玩家_可以按下_使用附近的工具箱__快捷键_来_远程_访问它的库存。", + "block.create.toolbox.tooltip.condition3": "当右击时", + "block.create.toolbox.tooltip.behaviour3": "打开_工具箱界面_。", + + "block.create.stockpile_switch.tooltip": "存量转换器", + "block.create.stockpile_switch.tooltip.summary": "根据连接的容器中_储存物品_的数量切换雷石东信号强度。自带有过滤槽,与_比较器_不同的是,你可以配置_存量转换器_信号反转的_阈值_。", + "block.create.stockpile_switch.tooltip.condition1": "当右击时", + "block.create.stockpile_switch.tooltip.behaviour1": "打开_配置界面_。", + + "block.create.content_observer.tooltip": "物品侦测器", + "block.create.content_observer.tooltip.summary": "_检测_与配置过的_过滤器_匹配的_容器_、_管道_或_传送带_中的_物品_或_流体_。", + "block.create.content_observer.tooltip.condition1": "当检测容器时", + "block.create.content_observer.tooltip.behaviour1": "如果检测的容器内有_匹配_的_物品_,发出_雷石东信号_。", + "block.create.content_observer.tooltip.condition2": "当检测漏斗时 ", + "block.create.content_observer.tooltip.behaviour2": "如果一个_匹配_的_物品_通过,则发出一个_雷石东脉冲_。", + + "block.create.creative_crate.tooltip": "创造板条箱", + "block.create.creative_crate.tooltip.summary": "这种_储存容器_可以无限地复制任何物品。它还可以移除附近的_蓝图加农炮_的材料需求。", + "block.create.creative_crate.tooltip.condition1": "当标记了物品时", + "block.create.creative_crate.tooltip.behaviour1": "任何从容器中_提取_的物品都是_无限量的_,而任何_放置_到容器中的物品都会被_送入虚空_", + + "item.create.creative_blaze_cake.tooltip": "创造蛋糕", + "item.create.creative_blaze_cake.tooltip.summary": "为_棒子人燃烧室_特制的小食,可以让你_控制燃烧室的热量等级_。吃下这个蛋糕之后,棒子人燃烧室将_不再耗尽燃料_。", + "item.create.creative_blaze_cake.tooltip.condition1": "对着棒子人燃烧室使用", + "item.create.creative_blaze_cake.tooltip.behaviour1": "_锁定_棒子人燃烧室的热量等级。如果再次使用,会使得燃烧室的热量等级开始_循环_变化。", + + "block.create.controller_rail.tooltip": "控制铁轨", + "block.create.controller_rail.tooltip.summary": "一种_单向动力铁轨_,能够_精细控制_《我的世界》的_移动速度_。", + "block.create.controller_rail.tooltip.condition1": "当接受雷石东信号时", + "block.create.controller_rail.tooltip.behaviour1": "根据_信号强度__加速_或_减速_通过的_《我的世界》_。还会将雷石东信号传递到相邻的控制铁轨。为两个控制铁轨提供不同强度的雷石东信号将导致信号强度在它们之间的控制铁轨上过渡。", + + "item.create.sand_paper.tooltip": "砂纸", + "item.create.sand_paper.tooltip.summary": "用来_打磨_物品的砂纸,可以用_机械手_来实现自动化。", + "item.create.sand_paper.tooltip.condition1": "使用时", + "item.create.sand_paper.tooltip.behaviour1": "打磨_副手_上或者_准心所指_的物品。", + + "item.create.builders_tea.tooltip": "建造工茶饮", + "item.create.builders_tea.tooltip.summary": "饮下这杯完美茶饮,打开神清气爽的一天。可以恢复_饥饿值_并获得_急迫_效果。", + + "item.create.refined_radiance.tooltip": "光辉石", + "item.create.refined_radiance.tooltip.summary": "一种用_光辉_锻造的化合物材料。", + "item.create.refined_radiance.tooltip.condition1": "尚未完工", + "item.create.refined_radiance.tooltip.behaviour1": "该材料在未来可能会有更多的用途。", + + "item.create.shadow_steel.tooltip": "暗影钢", + "item.create.shadow_steel.tooltip.summary": "一种用_虚空_锻造的化合物材料。", + "item.create.shadow_steel.tooltip.condition1": "尚未完工", + "item.create.shadow_steel.tooltip.behaviour1": "该材料在未来可能会有更多的用途。", + + "item.create.linked_controller.tooltip": "无线雷石东遥控器", + "item.create.linked_controller.tooltip.summary": "提供_六个_可以绑定_无线雷石东_频道的按钮,用于_遥控_附近的_无线雷石东信号终端_。", + "item.create.linked_controller.tooltip.condition1": "右击时", + "item.create.linked_controller.tooltip.behaviour1": "_拿起_或_放下_遥控器。拿起遥控器时,_控制移动_将被用来_操作遥控器_,而不是移动玩家。", + "item.create.linked_controller.tooltip.condition2": "潜行右击时", + "item.create.linked_controller.tooltip.behaviour2": "打开手动_配置界面_。", + "item.create.linked_controller.tooltip.condition3": "右击无线雷石东信号终端时", + "item.create.linked_controller.tooltip.behaviour3": "启用_绑定模式_,按下_六个按键_中的一个,即可将此按键与_无线雷石东信号终端的频率_绑定。", + "item.create.linked_controller.tooltip.condition4": "右击百 家 讲 坛时", + "item.create.linked_controller.tooltip.behaviour4": "将遥控器放在百 家 讲 坛上以便使用(潜行右击来取回遥控器)。", + + "item.create.diving_helmet.tooltip": "潜水头盔", + "item.create.diving_helmet.tooltip.summary": "与_铜制背罐_配合使用,为穿戴者提供在_水下_行动一段时间所需的_空气_。", + "item.create.diving_helmet.tooltip.condition1": "戴在头上时", + "item.create.diving_helmet.tooltip.behaviour1": "提供_水下呼吸_效果。缓慢消耗背罐中的_压缩空气_。", + + "item.create.copper_backtank.tooltip": "铜制背罐", + "item.create.copper_backtank.tooltip.summary": "一个可以_背在背上_的_铜罐_,用于携带一定量的压缩空气。", + "item.create.copper_backtank.tooltip.condition1": "背在背上时", + "item.create.copper_backtank.tooltip.behaviour1": "为其他需要_压缩空气_的装备提供所需的空气。", + "item.create.copper_backtank.tooltip.condition2": "当放下并接入动力时", + "item.create.copper_backtank.tooltip.behaviour2": "基于转速从周围环境中_收集_并_加压空气_。", + + "item.create.diving_boots.tooltip": "潜水靴", + "item.create.diving_boots.tooltip.summary": "一双_沉重的靴子_,让穿戴者可以更方便的探索海底。", + "item.create.diving_boots.tooltip.condition1": "穿在脚上时", + "item.create.diving_boots.tooltip.behaviour1": "穿戴者_下沉更快_并_无法游泳_。穿戴者可以在水下_行走_和_跳跃_。穿戴者不会被_传送带_移走。", + + "item.create.crafting_blueprint.tooltip": "合成蓝图", + "item.create.crafting_blueprint.tooltip.summary": "_放在_墙上,便可用它来设置特定的_原料排布_,以便更快地制作物品。每个格子都可以设定一个配方。", + "item.create.crafting_blueprint.condition1": "当右击空的格子时", + "item.create.crafting_blueprint.behaviour1": "打开一个_配方设置界面_,用于_设置_一个_合成配方_以及展示的物品。", + "item.create.crafting_blueprint.condition2": "当右击设置好的格子时", + "item.create.crafting_blueprint.behaviour2": "使用_物品栏_中的物品制作_设置的配方_。_潜行_可以一次合成_一组_。", + + "item.create.minecart_coupling.tooltip": "《我的世界》连轴器", + "item.create.minecart_coupling.tooltip.summary": "将多个_《我的世界》_或_连接运输装置_链接在一起,构成雄伟的火车。", + "item.create.minecart_coupling.tooltip.condition1": "作用与《我的世界》时", + "item.create.minecart_coupling.tooltip.behaviour1": "将两个《我的世界》耦合在一起,在移动时将它们保持_恒定的距离_。", + + "item.create.experience_nugget.tooltip": "经验颗粒", + "item.create.experience_nugget.tooltip.summary": "_叮!_从你的奇妙发明中汲取_灵感_", + "item.create.experience_nugget.tooltip.condition1": "当使用时", + "item.create.experience_nugget.tooltip.behaviour1": "_吸收_其中包含的_经验值_。", + + "block.create.peculiar_bell.tooltip": "奇异钟", + "block.create.peculiar_bell.tooltip.summary": "装饰用的_黄铜质钟_。放在_灵魂火_的正上方可能会产生意料之外的后果......", + + "block.create.haunted_bell.tooltip": "森魂钟", + "block.create.haunted_bell.tooltip.summary": "_被诅咒_的钟,来自下界的迷失的灵魂缠绕于其上。", + "block.create.haunted_bell.tooltip.condition1": "当手持或鸣响时", + "block.create.haunted_bell.tooltip.behaviour1": "标识出附近可能生成_敌对生物_的_亮度不足_之处。", + + "create.ponder.hold_to_ponder": "按住 [%1$s] 开始思索", + "create.ponder.subject": "情景主题", + "create.ponder.pondering": "思索...", + "create.ponder.identify_mode": "名称显示模式开,[%1$s]来继续思索", + "create.ponder.associated": "关联词条", + "create.ponder.close": "思索结束", + "create.ponder.identify": "显示方块名称", + "create.ponder.next": "下一情景", + "create.ponder.previous": "前一情景", + "create.ponder.replay": "重放", + "create.ponder.think_back": "回想", + "create.ponder.slow_text": "舒适阅读", + "create.ponder.exit": "退出", + "create.ponder.welcome": "欢迎来到思索界面", + "create.ponder.categories": "机械动力中包含的条目", + "create.ponder.index_description": "点击一个图标来查看相关的物品和方块。", + "create.ponder.index_title": "思索索引", + "create.ponder.shared.rpm16": "16 RPM", + "create.ponder.shared.behaviour_modify_wrench": "可以用扳手调整它的行为。", + "create.ponder.shared.storage_on_contraption": "与装置相接的存储空间,会自动将装置遇到的掉落物拾取到空间内。", + "create.ponder.shared.sneak_and": "潜行 +", + "create.ponder.shared.rpm8": "8 RPM", + "create.ponder.shared.ctrl_and": "Ctrl +", + "create.ponder.shared.rpm32": "32 RPM", + "create.ponder.shared.rpm16_source": "动力源:16 RPM", + "create.ponder.shared.movement_anchors": "有了底盘和强力胶,移动起大型结构轻轻松松。", + "create.ponder.tag.redstone": "逻辑组件", + "create.ponder.tag.redstone.description": "这些组件会在雷石东工程中发挥大用处。", + "create.ponder.tag.contraption_assembly": "方块连接功能", + "create.ponder.tag.contraption_assembly.description": "将各个组件连接以便同时运动的工具以及组件", + "create.ponder.tag.fluids": "流体操纵器械", + "create.ponder.tag.fluids.description": "这些组件可以用于传递流体,以及利用流体进行工作。", + "create.ponder.tag.decoration": "装饰", + "create.ponder.tag.decoration.description": "装饰是这些组件的常见用法。", + "create.ponder.tag.windmill_sails": "风车轴承的帆", + "create.ponder.tag.windmill_sails.description": "在进行风车组装时会被算入风车旋转力的方块,这些方块的效能都是一样的。", + "create.ponder.tag.arm_targets": "机械臂的工作目标", + "create.ponder.tag.arm_targets.description": "该组件可做为机械臂的输入或者输出点。", + "create.ponder.tag.kinetic_appliances": "动力设备", + "create.ponder.tag.kinetic_appliances.description": "这些组件可以利用旋转力进行工作。", + "create.ponder.tag.kinetic_sources": "动力源", + "create.ponder.tag.kinetic_sources.description": "能够发生动力的组件。", + "create.ponder.tag.movement_anchor": "运动源泉", + "create.ponder.tag.movement_anchor.description": "有了它,运动装置才得以可能,它可以以数种方式使相接的结构运动起来。", + "create.ponder.tag.kinetic_relays": "动力方块", + "create.ponder.tag.kinetic_relays.description": "用于传递旋转力的组件。", + "create.ponder.tag.contraption_actor": "装置执行组件", + "create.ponder.tag.contraption_actor.description": "能在移动的装置上执行特殊功能的组件", + "create.ponder.tag.creative": "上帝模式", + "create.ponder.tag.creative.description": "总有些东西是生存模式得不到的。", + "create.ponder.tag.logistics": "物品运输", + "create.ponder.tag.logistics.description": "该组件可以协助物品运输", + + "create.ponder.analog_lever.header": "使用模拟控制杆控制信号发送", + "create.ponder.analog_lever.text_1": "要想使得雷石东信号源信号强度精确且占地面积小,模拟控制杆不可少。", + "create.ponder.analog_lever.text_2": "右击可以提升输出模拟信号的强度", + "create.ponder.analog_lever.text_3": "潜行右击将会减少输出模拟信号的强度", + + "create.ponder.andesite_tunnel.header": "安山隧道用法", + "create.ponder.andesite_tunnel.text_1": "安山隧道可用于遮掩传送带", + "create.ponder.andesite_tunnel.text_2": "只要在漏斗的侧边加装上安山隧道...", + "create.ponder.andesite_tunnel.text_3": "...路过的所有物品堆都会被精准地拣出一个物品", + "create.ponder.andesite_tunnel.text_4": "剩下的物品则不受影响,继续前进", + + "create.ponder.basin.header": "工作盆内物品处理", + "create.ponder.basin.text_1": "一个可以对放入的物品以及流体进行处理的盆", + "create.ponder.basin.text_2": "处理完毕后,工作盆会尝试从它的底面进行产物输出", + "create.ponder.basin.text_3": "若在正确的位置上放置了有效的组件,工作盆会显示出一个输出龙头", + "create.ponder.basin.text_4": "有多种设备可以引发工作盆的这一行为", + "create.ponder.basin.text_5": "产物会被输出到盆下方的存储空间内", + "create.ponder.basin.text_6": "如果没有显示出输出龙头,那么盆内的产物将会一直留存在盆内", + "create.ponder.basin.text_7": "这在产物需要作为新一轮处理的原料时相当有用", + "create.ponder.basin.text_8": "需要输出的产物仍需从盆内取出", + "create.ponder.basin.text_9": "若是加装过滤,那么你便无需担心会将未被处理的物品抽取出来了", + + "create.ponder.bearing_modes.header": "动力轴承的运动模式", + "create.ponder.bearing_modes.text_1": "停止时,轴承会控制结构以特定的角度停在最近的与格相对齐之处", + "create.ponder.bearing_modes.text_2": "你可以调整整个结构永不方块化,或者仅在结构的起始位置方块化", + + "create.ponder.belt_casing.header": "带机壳的传送带", + "create.ponder.belt_casing.text_1": "你可以用黄铜或者安山机壳装饰你的传送带", + "create.ponder.belt_casing.text_2": "使用扳手即可移除机壳", + + "create.ponder.belt_connector.header": "传送带用法", + "create.ponder.belt_connector.text_1": "手持传送带右击两根传动杆,可以将两根杆连接起来。", + "create.ponder.belt_connector.text_2": "如果不小心选错了,潜行右击即可取消选择", + "create.ponder.belt_connector.text_3": "你也可以在传送带的中间加装额外的传动杆", + "create.ponder.belt_connector.text_4": "通过传送带相连的传动杆,会以相同的转速以及方向进行旋转", + "create.ponder.belt_connector.text_5": "加装的传动杆可以用扳手拆下来", + "create.ponder.belt_connector.text_6": "传送带亦可染色", + + "create.ponder.belt_directions.header": "传送带的有效连接方向", + "create.ponder.belt_directions.text_1": "传送带的连接方向并不是任意的", + "create.ponder.belt_directions.text_2": "1. 可以水平连接", + "create.ponder.belt_directions.text_3": "2. 可以对角连接", + "create.ponder.belt_directions.text_4": "3. 可以垂直连接", + "create.ponder.belt_directions.text_5": "4. 还可以水平连接竖直放置的传动杆", + "create.ponder.belt_directions.text_6": "以上为所有可能的连接方向。传送带的连接范围为 2 到 20 格", + + "create.ponder.belt_transport.header": "在物流中使用传送带", + "create.ponder.belt_transport.text_1": "运动的传送带可以运输物品以及其他实体", + "create.ponder.belt_transport.text_2": "空手右击传送带,即可将其上的物品拿下来。", + + "create.ponder.blaze_burner.header": "棒子人燃烧室补喂", + "create.ponder.blaze_burner.text_1": "棒子人燃烧室可以为工作盆的物品处理提供热量", + "create.ponder.blaze_burner.text_2": "因而,你需要喂给室内的棒子人一些可燃物品", + "create.ponder.blaze_burner.text_3": "如果喂给了它烈焰蛋糕,它还能达到更强的热力等级", + "create.ponder.blaze_burner.text_4": "你可以用机械手或者机械臂进行自动化补喂", + + "create.ponder.brass_funnel.header": "黄铜漏斗", + "create.ponder.brass_funnel.text_1": "安山岩漏斗一次只能提取出一个物品。", + "create.ponder.brass_funnel.text_2": "黄铜漏斗可以一次提取一组物品。", + "create.ponder.brass_funnel.text_3": "对着过滤槽滑动滚轮,还可以精确调节黄铜漏斗的提取数量。", + "create.ponder.brass_funnel.text_4": "对着过滤槽使用某个物品,可以限制漏斗的行为,使其只传输匹配的物品。", + + "create.ponder.brass_tunnel.header": "黄铜隧道用法", + "create.ponder.brass_tunnel.text_1": "黄铜隧道可以遮掩住你的传送带", + "create.ponder.brass_tunnel.text_2": "隧道的每一个开口面都有过滤槽", + "create.ponder.brass_tunnel.text_3": "在输入处的过滤槽仅会阻挡住不匹配的物品", + "create.ponder.brass_tunnel.text_4": "输出处的过滤槽可用于以种类为依据的物品整理", + "create.ponder.brass_tunnel.text_5": "如果有数种匹配的物品通过,那么隧道的分配模式将会决定这些物品何去何从", + "create.ponder.brass_tunnel.text_6": "连接了平行传送带的黄铜隧道,会将隧道、传送带组成一个组", + "create.ponder.brass_tunnel.text_7": "输入组内的物品会被分配到所有组内连接的对象中", + "create.ponder.brass_tunnel.text_8": "在这一情况下,你仍可以将物品直接输入到隧道方块中", + + "create.ponder.brass_tunnel_modes.header": "黄铜隧道的分配模式", + "create.ponder.brass_tunnel_modes.text_1": "使用扳手即可调节隧道的分配模式", + "create.ponder.brass_tunnel_modes.text_10": "“同步输入”是黄铜隧道的一种特殊设定", + "create.ponder.brass_tunnel_modes.text_11": "只有在组内全部的隧道都有一个等待通过的物品时,物品才能通过此隧道", + "create.ponder.brass_tunnel_modes.text_12": "这确保了所有受影响的传送带能够以相同的速率进行物品补给", + "create.ponder.brass_tunnel_modes.text_2": "“分流”会尝试将物品堆分流传输到可用的输出端", + "create.ponder.brass_tunnel_modes.text_3": "如果某个输出端无法容纳更多的物品,那么此出口不纳入分流的运算中", + "create.ponder.brass_tunnel_modes.text_4": "“强制分流”不会跳过某个输出端,而是一直等待着此输出端能够容纳更多物品,才会继续物品传输", + "create.ponder.brass_tunnel_modes.text_5": "“轮询调度”会保持物品堆完整,循环检索各个输出口,满足条件后将物品堆全部送入 ", + "create.ponder.brass_tunnel_modes.text_6": "与分流类似,如果输出口无法容纳更多物品,那它会被跳过", + "create.ponder.brass_tunnel_modes.text_7": "“强制轮询调度”不会跳过输出口", + "create.ponder.brass_tunnel_modes.text_8": "“最近优先”会将物品优先送入距离输入口更近的输出口", + "create.ponder.brass_tunnel_modes.text_9": "“随机”会随机选择一个输出口,一次性送入所有物品", + + "create.ponder.cart_assembler.header": "使用《我的世界》装配站控制结构移动", + "create.ponder.cart_assembler.text_1": "《我的世界》装配站会将它所连接的结构安装到《我的世界》上", + "create.ponder.cart_assembler.text_2": "若没有通入雷石东信号,它会将《我的世界》装置解散为方块的形式", + "create.ponder.cart_assembler.text_3": "对着《我的世界》使用你的扳手,装置会变为可搬运的形式", + + "create.ponder.cart_assembler_dual.header": "组装连接运输装置", + "create.ponder.cart_assembler_dual.text_1": "若两个装配《我的世界》分享了同一个结构", + "create.ponder.cart_assembler_dual.text_2": "给其中的任意一方的《我的世界》装配站通入雷石东信号,都会创建出连接运输装置", + "create.ponder.cart_assembler_dual.text_3": "两辆《我的世界》的此时行为与用《我的世界》连轴器连接在一起时十分相似", + + "create.ponder.cart_assembler_modes.header": "《我的世界》装置的方向设定", + "create.ponder.cart_assembler_modes.text_1": "《我的世界》装置会随着《我的世界》的运动而发生转向", + "create.ponder.cart_assembler_modes.text_2": "《我的世界》装置上的箭头表明了哪一侧是“前面”", + "create.ponder.cart_assembler_modes.text_3": "如果装配站的配置为“旋转锁定”,那么装置的方向将不会改变", + + "create.ponder.cart_assembler_rails.header": "另外几种《我的世界》以及铁轨", + "create.ponder.cart_assembler_rails.text_1": "放置在普通轨道上的《我的世界》装配站并不会影响路过《我的世界》装置的运动", + "create.ponder.cart_assembler_rails.text_2": "如果放置在充能或控制铁轨上且没有通入雷石东信号,那么路过的《我的世界》将会停在此处", + "create.ponder.cart_assembler_rails.text_3": "另外的几种《我的世界》可以当作锚来使用", + "create.ponder.cart_assembler_rails.text_4": "炉子《我的世界》会试图始终保持燃烧状态,并试图从路过的存储空间内抽取燃料", + + "create.ponder.chain_drive.header": "使用链式传动箱传动旋转力", + "create.ponder.chain_drive.text_1": "同一行上的链式传动箱会相互间传递旋转", + "create.ponder.chain_drive.text_2": "所有以此种方式连接的传动杆都会以相同的方向进行旋转", + "create.ponder.chain_drive.text_3": "同一行的传动箱内的任意一个传动箱,旋转 90 度之后仍可以正常工作", + + "create.ponder.chain_gearshift.header": "利用可调节链式传动箱进行转速调节", + "create.ponder.chain_gearshift.text_1": "未充能的可调节链式传动箱与普通链式传动箱无异", + "create.ponder.chain_gearshift.text_2": "当被充能时,它将会把旋转力以双倍转速传动至其他链式传动箱", + "create.ponder.chain_gearshift.text_3": "若被充能的可调节传动箱并不是动力输入端,则它会减半转速", + "create.ponder.chain_gearshift.text_4": "在这两种情况中,同一组的其他链式传动箱的转速都为被充能的可调节链式传动箱的两倍", + "create.ponder.chain_gearshift.text_5": "转速的倍率可在 x1 和 x2 间根据雷石东信号的强弱来精确调整", + "create.ponder.chain_gearshift.text_6": "12 RPM", + + "create.ponder.chute.header": "使用溜槽向下运输物品", + "create.ponder.chute.text_1": "溜槽可在两个存储空间之间垂直传送物品", + "create.ponder.chute.text_2": "使用扳手右击可以在溜槽上设置观察窗", + "create.ponder.chute.text_3": "对着另一个溜槽的侧面放置另一个溜槽,将会放置下一个呈对角状的溜槽", + + "create.ponder.chute_upward.header": "使用溜槽向上运输物品", + "create.ponder.chute_upward.text_1": "在溜槽上或下方使用鼓风机时,物品会根据风的方向向上或下移动", + "create.ponder.chute_upward.text_2": "佩戴工程师护目镜时,你可以看见物品的移动方向", + "create.ponder.chute_upward.text_3": "在溜槽“被挡住的”底端,物品只能从侧边进行提取或输入", + + "create.ponder.clockwork_bearing.header": "使用发条轴承来使结构运动", + "create.ponder.clockwork_bearing.text_1": "发条轴承黏附其正前方的方块", + "create.ponder.clockwork_bearing.text_2": "当接受旋转力时,其附着结构会根据游戏内时间来进行旋转", + "create.ponder.clockwork_bearing.text_3": "3:00", + "create.ponder.clockwork_bearing.text_4": "4:00", + "create.ponder.clockwork_bearing.text_5": "右击可以激活/停止结构运动", + "create.ponder.clockwork_bearing.text_6": "在时针前方可添加第二个结构", + "create.ponder.clockwork_bearing.text_7": "请确保这两个结构没有互相被例如强力胶等方式黏附", + "create.ponder.clockwork_bearing.text_8": "第二个结构将会作为分针进行旋转", + + "create.ponder.clutch.header": "使用离合器控制旋转力", + "create.ponder.clutch.text_1": "离合器能将旋转力直线传递", + "create.ponder.clutch.text_2": "当被雷石东充能,离合器会断开动力传递", + + "create.ponder.cog_speedup.header": "使用齿轮来换挡变速", + "create.ponder.cog_speedup.text_1": "大齿轮与小齿轮可以斜向传递动力", + "create.ponder.cog_speedup.text_2": "从大齿轮传递动力至小齿轮时,转速翻倍", + "create.ponder.cog_speedup.text_3": "从小齿轮传递动力至大齿轮时,转速减半", + + "create.ponder.cogwheel.header": "使用齿轮来传递旋转力", + "create.ponder.cogwheel.text_1": "齿轮会将动力传递至临近的齿轮", + "create.ponder.cogwheel.text_2": "以此方式连接的齿轮,旋转方向相反", + + "create.ponder.cogwheel_casing.header": "装壳齿轮", + "create.ponder.cogwheel_casing.text_1": "黄铜机壳或安山机壳可用于装饰齿轮", + "create.ponder.cogwheel_casing.text_2": "在装壳后添加的组件将不会与传动轴相连", + "create.ponder.cogwheel_casing.text_3": "扳手可用于切换连接", + + "create.ponder.creative_fluid_tank.header": "创造流体储罐", + "create.ponder.creative_fluid_tank.text_1": "创造流体储罐可以提供无限量的流体", + "create.ponder.creative_fluid_tank.text_2": "使用一个含有流体的容器右击它,即可指定它提供特定的流体", + "create.ponder.creative_fluid_tank.text_3": "流体管道可以从中无限提取指定的流体", + "create.ponder.creative_fluid_tank.text_4": "任何被输入创造流体储罐的液体都将被销毁", + + "create.ponder.creative_motor.header": "使用创造马达发生旋转", + "create.ponder.creative_motor.text_1": "创造马达不仅能够手动调配输出旋转力,而且体积相当小巧", + "create.ponder.creative_motor.text_2": "对其背侧面板滚动滑轮,可以改变马达的输出旋转转速", + + "create.ponder.crushing_wheels.header": "使用粉碎轮处理物品", + "create.ponder.crushing_wheels.text_1": "一对粉碎轮,磨物快又准", + "create.ponder.crushing_wheels.text_2": "接入的旋转必须使得这两个轮子从上到下啮合转动", + "create.ponder.crushing_wheels.text_3": "扔入或者放入的物品都会被粉碎处理", + "create.ponder.crushing_wheels.text_4": "你也可以使用自动化方案进行物品的输入以及拾取", + + "create.ponder.deployer.header": "使用机械手", + "create.ponder.deployer.text_1": "接入旋转力,机械手便可以模仿玩家的交互行为", + "create.ponder.deployer.text_10": "对着机械手的前部右击,即可将手上的物品给予它使用", + "create.ponder.deployer.text_11": "物品也可以自动化输入到机械手内", + "create.ponder.deployer.text_12": "机械手附带一个过滤槽", + "create.ponder.deployer.text_13": "当设定了过滤后,只有当它的手中物品与过滤相匹配时,它才会工作", + "create.ponder.deployer.text_14": "只有与过滤匹配的物品才可输入...", + "create.ponder.deployer.text_15": "...只有不匹配的物品方可被抽取出来", + "create.ponder.deployer.text_2": "它只会与它正前方两格处的位置进行交互", + "create.ponder.deployer.text_3": "放在在它面前的方块不会阻拦它的工作", + "create.ponder.deployer.text_4": "机械手可以:", + "create.ponder.deployer.text_5": "放置方块", + "create.ponder.deployer.text_6": "使用物品", + "create.ponder.deployer.text_7": "激活方块", + "create.ponder.deployer.text_8": "采收方块", + "create.ponder.deployer.text_9": "以及攻击生物", + + "create.ponder.deployer_contraption.header": "在装置上使用机械手", + "create.ponder.deployer_contraption.text_1": "当机械手在移动的装置上时...", + "create.ponder.deployer_contraption.text_2": "机械手会对每一个经过的方块使用装置中任意容器内的物品", + "create.ponder.deployer_contraption.text_3": "可以通过过滤槽来指定其从存储空间中抽取的物品", + + "create.ponder.deployer_modes.header": "机械手的模式", + "create.ponder.deployer_modes.text_1": "在默认情况下,机械手模仿玩家的右击交互", + "create.ponder.deployer_modes.text_2": "使用扳手可以将模式调整为模仿玩家的左击交互", + + "create.ponder.deployer_processing.header": "使用机械手处理物品", + "create.ponder.deployer_processing.text_1": "当机械手持有合适的物品时,它可以自动处理下方的物品", + "create.ponder.deployer_processing.text_2": "物品可以被丢在机械手下方,或放在置物台上", + "create.ponder.deployer_processing.text_3": "当传送带上的物品经过机械手下方时...", + "create.ponder.deployer_processing.text_4": "...机械手会使物品停下,然后处理这个物品", + + "create.ponder.deployer_redstone.header": "使用雷石东控制机械手", + "create.ponder.deployer_redstone.text_1": "当被雷石东充能时,机械手会停止工作", + "create.ponder.deployer_redstone.text_2": "在停止工作前,机械手会完成当前正在进行的工作周期", + "create.ponder.deployer_redstone.text_3": "因此,通入单次负雷石东脉冲可以精确控制机械手,使其每次只进行单个周期的工作", + + "create.ponder.depot.header": "使用置物台", + "create.ponder.depot.text_1": "置物台可以被当成一个“静止的”传送带原件使用", + "create.ponder.depot.text_2": "右击可以手动放置或取下物品", + "create.ponder.depot.text_3": "与传送带一样,它也可以将其内的物品转送到其他设备中进行加工...", + "create.ponder.depot.text_4": "...同时物品也可以被机械手存取", + + "create.ponder.empty_blaze_burner.header": "使用空的棒子人燃烧室", + "create.ponder.empty_blaze_burner.text_1": "手持空的棒子人燃烧室右击棒子人来抓取棒子人", + "create.ponder.empty_blaze_burner.text_2": "或者,也可以通过右击棒子人刷怪笼来填充激活棒子人燃烧室", + "create.ponder.empty_blaze_burner.text_3": "这样,你便有了一个可供部分机器加工的热源", + "create.ponder.empty_blaze_burner.text_4": "如果是为了美观,空的棒子人燃烧室也可以被打火石点燃", + "create.ponder.empty_blaze_burner.text_5": "你可以使用注入了灵魂的物品转化这种火焰", + "create.ponder.empty_blaze_burner.text_6": "但是,没有棒子人,这样的火焰并不足以用于工业级加热工作", + + "create.ponder.encased_fluid_pipe.header": "流体管道箱", + "create.ponder.encased_fluid_pipe.text_1": "铜机壳可以用于装饰流体管道", + "create.ponder.encased_fluid_pipe.text_2": "除了遮掩流体管道之外,装箱的流体管道将不会改变其连接状态", + "create.ponder.encased_fluid_pipe.text_3": "它将不会对旁边新增加或移除的管道做出反应", + + "create.ponder.fan_direction.header": "鼓风机的气流", + "create.ponder.fan_direction.text_1": "鼓风机使用旋转力来制造气流", + "create.ponder.fan_direction.text_2": "流速以及方向由所接收旋转力的强弱以及方向而定", + + "create.ponder.fan_processing.header": "使用鼓风机加工物品", + "create.ponder.fan_processing.text_1": "当气流吹过熔岩时,气流会被加热", + "create.ponder.fan_processing.text_2": "热气流中的物品会被冶炼", + "create.ponder.fan_processing.text_3": "但在气流中的食物会被直接烧成灰", + "create.ponder.fan_processing.text_4": "而想要烹饪食物,必须要通过吹过火焰的气流来吸烟食物", + "create.ponder.fan_processing.text_5": "当气流吹过水后,便可用于洗涤物品", + "create.ponder.fan_processing.text_6": "这种加工方法可以做到不少有趣的事情", + "create.ponder.fan_processing.text_7": "鼓风机的转速对加工的速度没有影响,只影响气流的吹拂距离", + "create.ponder.fan_processing.text_8": "而那些放置在置物台或者传送带上的物品,鼓风机也是可以处理的", + + "create.ponder.fan_source.header": "使用鼓风机来产生旋转力", + "create.ponder.fan_source.text_1": "如鼓风机的扇叶向下朝着热源放置,鼓风机可以借此产生旋转力", + "create.ponder.fan_source.text_2": "当鼓风机接受雷石东信号后,它便会向外供给旋转力", + + "create.ponder.fluid_pipe_flow.header": "使用管道运输流体", + "create.ponder.fluid_pipe_flow.text_1": "流体管道可以用于连接两个或多个流体容器", + "create.ponder.fluid_pipe_flow.text_2": "使用扳手,可以为直管道安装观察窗", + "create.ponder.fluid_pipe_flow.text_3": "带有观察窗的管道不会建立侧向管道连接", + "create.ponder.fluid_pipe_flow.text_4": "使用动力泵,流体管道可以传输流体", + "create.ponder.fluid_pipe_flow.text_5": "一开始,流体不会真正地被抽出", + "create.ponder.fluid_pipe_flow.text_6": "只有当管道内的液体流彻底连通之后,流体才会开始逐渐从一个容器中转移到另一个", + "create.ponder.fluid_pipe_flow.text_7": "这意味着流体管道本身并不真正存储任何流体", + + "create.ponder.fluid_pipe_interaction.header": "抽取和填充流体容器", + "create.ponder.fluid_pipe_interaction.text_1": "流体管道的末端可以与许多种容器连接", + "create.ponder.fluid_pipe_interaction.text_2": "任何可以容纳流体的容器都可以被填充或从中抽取", + "create.ponder.fluid_pipe_interaction.text_3": "开放的管道口可以吸走流体源方块...", + "create.ponder.fluid_pipe_interaction.text_4": "...或者将流体源排放出来", + "create.ponder.fluid_pipe_interaction.text_5": "管道也可以从许多种其他方块中直接抽取流体", + + "create.ponder.fluid_tank_sizes.header": "流体储罐的大小", + "create.ponder.fluid_tank_sizes.text_1": "流体储罐可以多格连接,提供更大的存储量", + "create.ponder.fluid_tank_sizes.text_2": "流体储罐最大横截面为 3x3...", + "create.ponder.fluid_tank_sizes.text_3": "...并且可以超过 30 格高", + "create.ponder.fluid_tank_sizes.text_4": "使用扳手可以打开或关掉观察窗", + + "create.ponder.fluid_tank_storage.header": "使用流体储罐存储流体", + "create.ponder.fluid_tank_storage.text_1": "流体储罐可以存储大量的流体", + "create.ponder.fluid_tank_storage.text_2": "流体管道可以在流体储罐的任何一面将流体输入/输出", + "create.ponder.fluid_tank_storage.text_3": "使用比较器可以检测储罐中的流体储量", + "create.ponder.fluid_tank_storage.text_4": "在生存模式中,无法直接用容器向储罐中存入流体,或是取出流体", + "create.ponder.fluid_tank_storage.text_5": "要装满/倒空流体容器,可以使用工作盆,分液池或注液器。", + + "create.ponder.flywheel.header": "使用飞轮来产生旋转力", + "create.ponder.flywheel.text_1": "飞轮和炉子引擎必须配套使用,方可产生旋转力", + "create.ponder.flywheel.text_2": "如此产生的旋转力具有非常大的应力值", + "create.ponder.flywheel.text_3": "使用炼金机会使得引擎的效率翻倍", + + "create.ponder.funnel_compat.header": "漏斗的兼容性", + "create.ponder.funnel_compat.text_1": "漏斗可以与一些其他组件互动", + "create.ponder.funnel_compat.text_2": "动力锯", + "create.ponder.funnel_compat.text_3": "置物台", + "create.ponder.funnel_compat.text_4": "分液池", + + "create.ponder.funnel_direction.header": "物流方向", + "create.ponder.funnel_direction.text_1": "直接放置时,漏斗会将物品从容器中取出", + "create.ponder.funnel_direction.text_2": "潜行时放置时,漏斗会将物品置入容器中", + "create.ponder.funnel_direction.text_3": "使用扳手可以改变漏斗的存/取模式", + "create.ponder.funnel_direction.text_4": "对大多数朝向放置的漏斗都具有此特性", + "create.ponder.funnel_direction.text_5": "在传送带末端放置的漏斗会根据传送带的传动方向存/取物品", + + "create.ponder.funnel_intro.header": "使用漏斗", + "create.ponder.funnel_intro.text_1": "用漏斗来存取物品栏内的物品,可谓又快又好", + + "create.ponder.funnel_redstone.header": "雷石东信号控制", + "create.ponder.funnel_redstone.text_1": "雷石东信号会使漏斗停止工作", + + "create.ponder.funnel_transfer.header": "直接运输", + "create.ponder.funnel_transfer.text_1": "漏斗无法将物品传输到非开放式的物品栏中", + "create.ponder.funnel_transfer.text_2": "溜槽和智能溜槽更适用于这样的场景", + "create.ponder.funnel_transfer.text_3": "水平传输也是如此,也许传送带更方便快捷", + + "create.ponder.furnace_engine.header": "使用炉子引擎生产旋转力", + "create.ponder.furnace_engine.text_1": "炉子引擎会在与其相连炉子工作时生产旋转力", + "create.ponder.furnace_engine.text_2": "如此产生的旋转力具有非常大的应力值", + "create.ponder.furnace_engine.text_3": "使用炼金机会使得引擎的效率翻倍", + + "create.ponder.gantry_carriage.header": "使用起重机取物器", + "create.ponder.gantry_carriage.text_1": "起重机取物器可以被放置在起重机杆上,并且可以沿着起重机杆运动", + "create.ponder.gantry_carriage.text_2": "起重机可以移动其黏附的方块", + + "create.ponder.gantry_cascaded.header": "串联起重机", + "create.ponder.gantry_cascaded.text_1": "无需强力胶,取物器便可与起重机杆相连", + "create.ponder.gantry_cascaded.text_2": "即使是在移动的起重机杆上也是如此", + "create.ponder.gantry_cascaded.text_3": "因此,起重机系统可以串联起来,如此可以影响到多轴向的运动", + + "create.ponder.gantry_direction.header": "起重机移动方向", + "create.ponder.gantry_direction.text_1": "起重机杆可以有相反的方向", + "create.ponder.gantry_direction.text_2": "取物器的移动方向取决于起重机杆的方向", + "create.ponder.gantry_direction.text_3": "......以及起重机杆的旋转方向", + "create.ponder.gantry_direction.text_4": "在旋转传递中,此规则同样适用", + + "create.ponder.gantry_redstone.header": "起重机的力传递", + "create.ponder.gantry_redstone.text_1": "被雷石东信号激活的起重机,将不会移动其上的取物器", + "create.ponder.gantry_redstone.text_2": "作为替代,杆上的旋转力会传递到取物器的输出杆上", + + "create.ponder.gantry_shaft.header": "使用起重机杆", + "create.ponder.gantry_shaft.text_1": "起重机杆组成了起重机系统的基础。与其相接的载物器可以沿着杆进行移动。", + "create.ponder.gantry_shaft.text_2": "起重机系统可以移动与其相接的方块。", + + "create.ponder.gearbox.header": "使用十字齿轮箱传递旋转力", + "create.ponder.gearbox.text_1": "更改旋转轴,很容易使得整个旋转体系变得臃肿不堪", + "create.ponder.gearbox.text_2": "十字齿轮箱则是替代方案,它的体积更为小巧紧", + "create.ponder.gearbox.text_3": "侧边连接的传动杆,旋转方向与输入端一致", + "create.ponder.gearbox.text_4": "直线连接的传动杆,旋转方向会被反转", + + "create.ponder.gearshift.header": "使用反转齿轮箱控制旋转力", + "create.ponder.gearshift.text_1": "反转齿轮箱可以直线传输旋转", + "create.ponder.gearshift.text_2": "通入雷石东信号后,输出端的旋转方向会被反转", + + "create.ponder.hand_crank.header": "使用手摇曲柄产生旋转力", + "create.ponder.hand_crank.text_1": "玩家可以使用手摇曲柄来手动产生旋转力", + "create.ponder.hand_crank.text_2": "按住右键可以逆时针旋转它", + "create.ponder.hand_crank.text_3": "它产生的转速相对较高", + "create.ponder.hand_crank.text_4": "潜行长按右键可以顺时针旋转它", + + "create.ponder.hose_pulley.header": "使用软管滑轮抽取或排放流体", + "create.ponder.hose_pulley.text_1": "软管滑轮可以用于方便地对一个较大区域进行抽取液体或填满液体的操作", + "create.ponder.hose_pulley.text_2": "通过输入动力可以调节软管末端的高度", + "create.ponder.hose_pulley.text_3": "翻转动力输入的方向可以收起软管", + "create.ponder.hose_pulley.text_4": "管道可以连接在另一侧", + "create.ponder.hose_pulley.text_5": "连接的管道可以将流体输入到软管滑轮中,软管会在下方排出口处放置流体源...", + "create.ponder.hose_pulley.text_6": "...或者提供吸力来抽取世界中的流体", + "create.ponder.hose_pulley.text_7": "软管滑轮的抽取/排放速度取决于连接管道中流体的流速", + + "create.ponder.hose_pulley_infinite.header": "被动抽取或排放从大体量流体中", + "create.ponder.hose_pulley_infinite.text_1": "当软管被放进足够大的流体中时...", + "create.ponder.hose_pulley_infinite.text_2": "...它在抽取或排放液体时将不会影响流体源", + "create.ponder.hose_pulley_infinite.text_3": "可以从这些软管滑轮中无限量地抽取或向其排放流体", + + "create.ponder.hose_pulley_level.header": "软管滑轮的排水/抽水机制", + "create.ponder.hose_pulley_level.text_1": "当软管彻底收回时,软管滑轮无法工作。", + "create.ponder.hose_pulley_level.text_2": "抽取流体的顺序为从上到下", + "create.ponder.hose_pulley_level.text_3": "流体表面最终将会被抽取到刚好低于软管开口", + "create.ponder.hose_pulley_level.text_4": "填充流体的顺序为从下到上", + "create.ponder.hose_pulley_level.text_5": "流体最多只能被填充至软管开口所在的高度", + + "create.ponder.item_drain.header": "使用分液池提取物品中的流体", + "create.ponder.item_drain.text_1": "分液池可以提取物品中的流体", + "create.ponder.item_drain.text_2": "右击可以将手持物品中的流体倒入分液池中", + "create.ponder.item_drain.text_3": "当物品从侧面输入时...", + "create.ponder.item_drain.text_4": "...物品将会经过分液池顶部,并在此过程中将其包含的液体排入分液池内", + "create.ponder.item_drain.text_5": "流体管道可以从分液池中抽取液体", + + "create.ponder.item_vault_sizes.header": "物品保险库的尺寸", + "create.ponder.item_vault_sizes.text_1": "可以组合物品保险库以增加总容量", + "create.ponder.item_vault_sizes.text_2": "它们的直径最多可以有 3 个方块宽……", + "create.ponder.item_vault_sizes.text_3": "……长度最多为直径的 3 倍", + + "create.ponder.item_vault_storage.header": "在保险库中存储物品", + "create.ponder.item_vault_storage.text_1": "物品保险库可用于存储大量物品", + "create.ponder.item_vault_storage.text_2": "但是,不能手动添加或获取物品", + "create.ponder.item_vault_storage.text_3": "任何用于物品传输的组件都可以用于添加……", + "create.ponder.item_vault_storage.text_4": "……和从该容器中取出物品", + + "create.ponder.large_cogwheel.header": "使用大齿轮传递旋转力", + "create.ponder.large_cogwheel.text_1": "大齿轮可以以特定的角度相互连接", + "create.ponder.large_cogwheel.text_2": "可以利用大齿轮变更旋转轴向", + + "create.ponder.linear_chassis_attachment.header": "使用机壳底盘黏合方块", + "create.ponder.linear_chassis_attachment.text_1": "它的开放面可以变为黏性面", + "create.ponder.linear_chassis_attachment.text_2": "再次点击黏性面,可以将它的相反面也变得具有黏性", + "create.ponder.linear_chassis_attachment.text_3": "空手潜行右击可以移除此面的黏性物", + "create.ponder.linear_chassis_attachment.text_4": "黏性面可以将此面前方的一长条方块黏住", + "create.ponder.linear_chassis_attachment.text_5": "使用扳手可以精确控制底盘的影响范围", + "create.ponder.linear_chassis_attachment.text_6": "按住 Ctrl 滑动滚轮,你可以一次性调节所有底盘的影响范围", + "create.ponder.linear_chassis_attachment.text_7": "若想让底盘的其他面也能粘方块,你需要用到强力胶", + "create.ponder.linear_chassis_attachment.text_8": "利用这些机制,任何形状的机制都可以像装置那样移动", + + "create.ponder.linear_chassis_group.header": "成组移动机壳底盘", + "create.ponder.linear_chassis_group.text_1": "相邻的机壳底盘可以相互连接在一起", + "create.ponder.linear_chassis_group.text_2": "其中的一个底盘若被移动,其余的底盘也会跟着移动", + "create.ponder.linear_chassis_group.text_3": "不同种类的底盘,或者是朝向不一致的底盘,将不会相连", + + "create.ponder.mechanical_arm.header": "配置动力臂", + "create.ponder.mechanical_arm.text_1": "你得在放置动力臂之前就配置好它的输入以及输出端", + "create.ponder.mechanical_arm.text_2": "手持动力臂右击某个存储空间,可以将其指定为目标", + "create.ponder.mechanical_arm.text_3": "再次右击可以将其在输入端(蓝色)以及输出端(橙色)之间切换", + "create.ponder.mechanical_arm.text_4": "左击此组件可以移除选择", + "create.ponder.mechanical_arm.text_5": "将动力臂放下来后,它会将此前选择的方块作为目标", + "create.ponder.mechanical_arm.text_6": "在有效范围内,机械臂可以有任意数量的输出以及输入端", + "create.ponder.mechanical_arm.text_7": "然而,并不是所有的存储空间可以被直接交互", + "create.ponder.mechanical_arm.text_8": "在此情况下,漏斗和置物台可以解决此问题", + + "create.ponder.mechanical_arm_filtering.header": "过滤动力臂的输出端", + "create.ponder.mechanical_arm_filtering.text_1": "输入", + "create.ponder.mechanical_arm_filtering.text_2": "输出", + "create.ponder.mechanical_arm_filtering.text_3": "有时,你会想着利用某种过滤限制动力臂的目标", + "create.ponder.mechanical_arm_filtering.text_4": "动力臂自身并不提供任何过滤选项", + "create.ponder.mechanical_arm_filtering.text_5": "然而,若将黄铜漏斗作为目标,则漏斗的过滤槽则可以应用至动力臂上", + "create.ponder.mechanical_arm_filtering.text_6": "动力臂足够智能,它不会去拿取那些它无法分配的物品", + + "create.ponder.mechanical_arm_modes.header": "动力臂的分配模式", + "create.ponder.mechanical_arm_modes.text_1": "输入", + "create.ponder.mechanical_arm_modes.text_2": "输出", + "create.ponder.mechanical_arm_modes.text_3": "若动力臂必须在数个有效的输出端之间作出选择...", + "create.ponder.mechanical_arm_modes.text_4": "...它会依照自己的设定选择特定的行为", + "create.ponder.mechanical_arm_modes.text_5": "手持扳手对其滑动滚轮,可以改变其配置", + "create.ponder.mechanical_arm_modes.text_6": "轮询调度模式很好理解,即循环输出至所有有效的输出端", + "create.ponder.mechanical_arm_modes.text_7": "如果某个输出端无法容纳更多物品,则它会被跳过", + "create.ponder.mechanical_arm_modes.text_8": "强制轮询调度不会跳过任何输出端,动力臂会一直等待,直到输出端有空位容纳物品输入", + "create.ponder.mechanical_arm_modes.text_9": "最近优先模式会使得动力臂先将物品输出至更早被选择的输出端", + + "create.ponder.mechanical_arm_redstone.header": "利用雷石东信号控制动力臂", + "create.ponder.mechanical_arm_redstone.text_1": "通入雷石东信号后,动力臂会停止工作", + "create.ponder.mechanical_arm_redstone.text_2": "在停止工作前,它会完成当前正在进行的工作周期", + "create.ponder.mechanical_arm_redstone.text_3": "因此,通入单次负雷石东脉冲可以精确控制动力臂,使其每次只进行单个周期的工作", + + "create.ponder.mechanical_bearing.header": "使用动力轴承移动结构", + "create.ponder.mechanical_bearing.text_1": "动力轴承会与其前方的方块黏合在一起", + "create.ponder.mechanical_bearing.text_2": "接收到旋转力后,它会将这一黏合结构组装为旋转装置", + + "create.ponder.mechanical_crafter.header": "设置动力合成器", + "create.ponder.mechanical_crafter.text_1": "动力合成器阵列可用于自动化任何合成配方的制作", + "create.ponder.mechanical_crafter.text_2": "使用扳手可以调控合成器的合成通路", + "create.ponder.mechanical_crafter.text_3": "所有的合成通路必须汇集到任意一侧的一个出口,整套合成器方可算是设置正确", + "create.ponder.mechanical_crafter.text_4": "输出产物会被放入位于出口的存储空间中", + "create.ponder.mechanical_crafter.text_5": "动力合成器的运转需要旋转力的供应", + "create.ponder.mechanical_crafter.text_6": "右击合成器正面,可以手动放入物品", + "create.ponder.mechanical_crafter.text_7": "一旦合成通路上的所有合成槽位都有了物品,合成就会开始", + "create.ponder.mechanical_crafter.text_8": "而对于那些没有完全占满所有合成器槽位的配方,你可以通入雷石东信号强制打开合成", + + "create.ponder.mechanical_crafter_connect.header": "为合成器连接物品栏", + "create.ponder.mechanical_crafter_connect.text_1": "合成器可以自动接受向其输入的物品", + "create.ponder.mechanical_crafter_connect.text_2": "对其背面使用扳手,可以连接合成器", + "create.ponder.mechanical_crafter_connect.text_3": "所有相连的合成器可以访问同一个位置的输入", + + "create.ponder.mechanical_crafter_covers.header": "盖住动力合成器的合成槽", + "create.ponder.mechanical_crafter_covers.text_1": "有些配方需要额外的合成器,来补足合成通路上的间隙", + "create.ponder.mechanical_crafter_covers.text_2": "使用合成槽盖板,合成器会在合成进行时的行为就如同一个空的合成槽位", + "create.ponder.mechanical_crafter_covers.text_3": "被盖住的合成器并不会阻断共享输入端的影响", + + "create.ponder.mechanical_drill.header": "使用动力钻头破坏方块", + "create.ponder.mechanical_drill.text_1": "当向其通入旋转力后,动力钻头会破坏它面前的方块", + "create.ponder.mechanical_drill.text_2": "它的挖掘速度取决于通入的旋转力转速", + + "create.ponder.mechanical_drill_contraption.header": "在装置中使用动力钻头", + "create.ponder.mechanical_drill_contraption.text_1": "在运动装置中使用动力钻头时...", + "create.ponder.mechanical_drill_contraption.text_2": "...它会破坏掉它撞上的方块", + + "create.ponder.mechanical_harvester.header": "在装置中使用动力收割机", + "create.ponder.mechanical_harvester.text_1": "在运动装置中使用动力收割机时...", + "create.ponder.mechanical_harvester.text_2": "它会采收其路径上的作物,并重置这些作物的生长进度", + + "create.ponder.mechanical_mixer.header": "使用动力搅拌器处理物品", + "create.ponder.mechanical_mixer.text_1": "使用搅拌器和工作盆,你可以自动化某些合成配方", + "create.ponder.mechanical_mixer.text_2": "有效配方包括各种无序合成配方,以及一些额外的配方", + "create.ponder.mechanical_mixer.text_3": "一些配方可能需要使用棒子人燃烧室提供热量", + "create.ponder.mechanical_mixer.text_4": "过滤槽可用于解决两个配方相互冲突的情况", + + "create.ponder.mechanical_piston.header": "使用动力活塞移动结构", + "create.ponder.mechanical_piston.text_1": "动力活塞可以移动它前方的方块", + "create.ponder.mechanical_piston.text_2": "移动速度和方向取决于通入活塞的旋转力", + "create.ponder.mechanical_piston.text_3": "黏性动力活塞可以将相接的方块拉回来", + + "create.ponder.mechanical_piston_modes.header": "动力活塞的移动模式", + "create.ponder.mechanical_piston_modes.text_1": "一旦活塞停下,被移动的结构就会回退到方块状态", + "create.ponder.mechanical_piston_modes.text_2": "你也可以将其配置为从不方块化,或者只在起始位置方块化", + + "create.ponder.mechanical_plough.header": "在装置中使用动力犁", + "create.ponder.mechanical_plough.text_1": "在运动装置中使用动力犁时...", + "create.ponder.mechanical_plough.text_2": "...它会破坏掉那些不具有固体碰撞箱的方块", + "create.ponder.mechanical_plough.text_3": "此外,动力犁可以耕地", + "create.ponder.mechanical_plough.text_4": "...它也可以在不伤害实体的情况下推动它们", + + "create.ponder.mechanical_press.header": "使用动力辊压机处理物品", + "create.ponder.mechanical_press.text_1": "动力辊压机可以处理位于其下方的物品", + "create.ponder.mechanical_press.text_2": "在其下方丢入物品,或者将物品放在置物台上,都算作有效的物品输入", + "create.ponder.mechanical_press.text_3": "若物品位于传送带上...", + "create.ponder.mechanical_press.text_4": "辊压机会使物品停下,然后自动处理这一物品", + + "create.ponder.mechanical_press_compacting.header": "使用动力辊压机压缩物品", + "create.ponder.mechanical_press_compacting.text_1": "对放置于工作盆内的物品进行辊压,可以将这些物品压缩在一起", + "create.ponder.mechanical_press_compacting.text_2": "压缩意指任何同种物品填满了 2x2 或者 3x3 网格的配方,以及一些额外的配方", + "create.ponder.mechanical_press_compacting.text_3": "一些配方可能需要棒子人燃烧室提供热量", + "create.ponder.mechanical_press_compacting.text_4": "过滤槽可用于解决两个配方相互冲突的情况", + + "create.ponder.mechanical_pump_flow.header": "使用动力泵传输流体", + "create.ponder.mechanical_pump_flow.text_1": "动力泵可以控制管道网络中的流体", + "create.ponder.mechanical_pump_flow.text_2": "当接入动力时,其上的箭头指示流体流向", + "create.ponder.mechanical_pump_flow.text_3": "泵后的管道网络正在抽取流体...", + "create.ponder.mechanical_pump_flow.text_4": "...而泵前的网络则把这些液体排到世界当中", + "create.ponder.mechanical_pump_flow.text_5": "反转动力方向将会改变流体流向", + "create.ponder.mechanical_pump_flow.text_6": "使用扳手可以手动改变动力泵的朝向", + + "create.ponder.mechanical_pump_speed.header": "动力泵的传输机制", + "create.ponder.mechanical_pump_speed.text_1": "动力泵的压力最多沿管线传递 16 格,与输入动力无关", + "create.ponder.mechanical_pump_speed.text_2": "提高输入动力,可以加快流的蔓延速度...", + "create.ponder.mechanical_pump_speed.text_3": "...以及流体的传输速度", + "create.ponder.mechanical_pump_speed.text_4": "同一管道网络中的多个并联动力泵,它们的传输量可以叠加", + "create.ponder.mechanical_pump_speed.text_5": "使泵的传输方向相互交替,可以方便地控制流体流向", + + "create.ponder.mechanical_saw_breaker.header": "使用动力锯伐木", + "create.ponder.mechanical_saw_breaker.text_1": "向其通入旋转力后,动力锯可以直接砍伐掉它面前的树木", + "create.ponder.mechanical_saw_breaker.text_2": "想要一次性砍掉整棵树,锯子必须破坏掉树与地面连接的最后一个方块", + + "create.ponder.mechanical_saw_contraption.header": "在装置中使用动力锯", + "create.ponder.mechanical_saw_contraption.text_1": "若在运动装置中使用动力锯...", + "create.ponder.mechanical_saw_contraption.text_2": "...它会将撞到它的树木破坏掉", + + "create.ponder.mechanical_saw_processing.header": "使用动力锯处理物品", + "create.ponder.mechanical_saw_processing.text_1": "面向朝上的动力锯可以将物品处理为其变种", + "create.ponder.mechanical_saw_processing.text_2": "处理过后的物品的弹出方向始终与通入锯中的旋转转向相反", + "create.ponder.mechanical_saw_processing.text_3": "锯子可以与传送带放置在一条直线上,相互配合工作", + "create.ponder.mechanical_saw_processing.text_4": "若输入原料有多种可能产物,你可以用动力锯上的过滤槽指定只产出某种产物", + "create.ponder.mechanical_saw_processing.text_5": "若没有使用过滤槽,动力锯会在各产物中按顺序循环输出", + + "create.ponder.millstone.header": "使用石磨处理物品", + "create.ponder.millstone.text_1": "石磨会对输入的物品进行使用了打磨工艺进行加工的", + "create.ponder.millstone.text_2": "在其侧边使用齿轮与其相耦合,方可为其通入动力", + "create.ponder.millstone.text_3": "顶部可以丢入或者塞入物品", + "create.ponder.millstone.text_4": "一段时间过后,右击石磨可以拿出其中的产物", + "create.ponder.millstone.text_5": "产物的提取也是可以自动化的", + + "create.ponder.nixie_tube.header": "使用辉光管", + "create.ponder.nixie_tube.text_1": "通入雷石东信号后,辉光管会显示出雷石东信号的强度", + "create.ponder.nixie_tube.text_2": "在着它使用更改过名称的命名牌,可以自定义它的显示文本", + "create.ponder.nixie_tube.text_3": "使用染料右击,便可更改辉光管的显示颜色", + + "create.ponder.piston_pole.header": "活塞延长杆", + "create.ponder.piston_pole.text_1": "若无相接的延长杆,动力活塞无法移动其他方块", + "create.ponder.piston_pole.text_2": "在其背面安装的延长杆长度,决定了活塞的推动范围", + + "create.ponder.portable_fluid_interface.header": "装置流体交换", + "create.ponder.portable_fluid_interface.text_1": "管道无法与运动装置内的流体储罐直接交互", + "create.ponder.portable_fluid_interface.text_2": "这一组件可以在不停止装置的情况下与装置内的流体存储进行交互", + "create.ponder.portable_fluid_interface.text_3": "放置第二个接口时,记得要与装置接口相隔 1 格或者 2 格的距离", + "create.ponder.portable_fluid_interface.text_4": "当它们彼此经过时,它们会连接在一起", + "create.ponder.portable_fluid_interface.text_5": "连接状态下,固定侧接口便会作为整个装置的流体存储代理", + "create.ponder.portable_fluid_interface.text_6": "流体可被泵入到装置内....", + "create.ponder.portable_fluid_interface.text_7": "...或是从装置中抽取出来", + "create.ponder.portable_fluid_interface.text_8": "如果一小段时间内没有流体交换,接口将会断开连接,然后装置重新开始运动", + + "create.ponder.portable_storage_interface.header": "装置存储交换", + "create.ponder.portable_storage_interface.text_1": "玩家无法与运动装置内的存储空间进行交互", + "create.ponder.portable_storage_interface.text_2": "这一组件可以在不停止装置的情况下与装置内的存储空间进行交互", + "create.ponder.portable_storage_interface.text_3": "放置第二个接口时,记得要与装置接口相隔 1 格或者 2 格的距离", + "create.ponder.portable_storage_interface.text_4": "当它们彼此经过时,它们会连接在一起", + "create.ponder.portable_storage_interface.text_5": "连接状态下,固定侧接口便会作为整个装置的存储空间代理", + "create.ponder.portable_storage_interface.text_6": "物品可被输入到装置内...", + "create.ponder.portable_storage_interface.text_7": "...或是从装置中提取出来", + "create.ponder.portable_storage_interface.text_8": "如果一小段时间内没有物品交换,接口将会断开连接,然后装置重新开始运动", + + "create.ponder.portable_storage_interface_redstone.header": "雷石东控制", + "create.ponder.portable_storage_interface_redstone.text_1": "通入雷石东信号可以阻止固定侧接口的连接行为", + + "create.ponder.powered_latch.header": "使用锁存器控制信号", + "create.ponder.powered_latch.text_1": "锁存器是一种可以用雷石东信号控制的控制杆", + "create.ponder.powered_latch.text_2": "后方输入的信号会将其设为打开状态", + "create.ponder.powered_latch.text_3": "侧边输入的信号会将其设为关掉状态", + "create.ponder.powered_latch.text_4": "你也可以手动切换其状态", + + "create.ponder.powered_toggle_latch.header": "使用转换锁存器控制信号", + "create.ponder.powered_toggle_latch.text_1": "转换锁存器是一种可以用雷石东信号控制的控制杆", + "create.ponder.powered_toggle_latch.text_2": "后方信号输入可以改变它的状态", + "create.ponder.powered_toggle_latch.text_3": "...打开或者是关掉", + "create.ponder.powered_toggle_latch.text_4": "你也可以手动切换其状态", + + "create.ponder.pulse_extender.header": "使用脉冲延长器控制信号", + "create.ponder.pulse_extender.text_1": "脉冲延长器可以延长通过的信号", + "create.ponder.pulse_extender.text_2": "它会在短暂延迟后激活……", + "create.ponder.pulse_extender.text_3": "……并在配置的持续时间后取消激活", + "create.ponder.pulse_extender.text_4": "通过鼠标滚轮,可以配置持续时间", + "create.ponder.pulse_extender.text_5": "配置的持续时间最长可达 30 分钟", + + "create.ponder.pulse_repeater.header": "使用脉冲中继器控制信号", + "create.ponder.pulse_repeater.text_1": "脉冲中继器会将所有通入的雷石东信号缩减为一次脉冲", + "create.ponder.pulse_repeater.text_2": "通过鼠标滚轮,可以配置充能时间", + "create.ponder.pulse_repeater.text_3": "配置的延迟范围最长可达 30 分钟", + + "create.ponder.radial_chassis.header": "使用旋转底盘黏着方块", + "create.ponder.radial_chassis.text_1": "同一行上的旋转底盘会相互连接在一起", + "create.ponder.radial_chassis.text_2": "当其中的一个底盘被装置带动时,其余的底盘也会被带动", + "create.ponder.radial_chassis.text_3": "底盘的侧边可以变为黏性面", + "create.ponder.radial_chassis.text_4": "再次点击黏性面,可以让其所有面都变得带黏性", + "create.ponder.radial_chassis.text_5": "空手潜行右击可以移除其上的黏性物", + "create.ponder.radial_chassis.text_6": "若有物品与底盘的黏性面相接触...", + "create.ponder.radial_chassis.text_7": "...底盘便会与同层且位于半径内的所有可及方块黏着在一起", + "create.ponder.radial_chassis.text_8": "使用扳手可以精确指定底盘的影响范围", + "create.ponder.radial_chassis.text_9": "黏性面一侧的不可及方块不会被黏着", + + "create.ponder.redstone_contact.header": "接触式雷石东信号发生器", + "create.ponder.redstone_contact.text_1": "当两个接触式雷石东信号发生器面对面时,它们会发出雷石东信号", + "create.ponder.redstone_contact.text_2": "并且,若有一方位于运动装置上,此特性也能正常生效", + + "create.ponder.redstone_link.header": "使用无线雷石东信号终端", + "create.ponder.redstone_link.text_1": "无线雷石东信号终端可以无线传输雷石东信号", + "create.ponder.redstone_link.text_2": "潜行右击可以改变其接收模式", + "create.ponder.redstone_link.text_3": "手持扳手右击也可以", + "create.ponder.redstone_link.text_4": "接收端会发出由传输端发来的信号,有效距离为 128 格", + "create.ponder.redstone_link.text_5": "在它们所带的槽位中放上物品,可以为它们指定频道", + "create.ponder.redstone_link.text_6": "只有频道相互匹配的终端方可互通", + + "create.ponder.rope_pulley.header": "使用绳索滑轮移动结构", + "create.ponder.rope_pulley.text_1": "绳索滑轮在接受旋转力时可以垂直移动方块结构", + "create.ponder.rope_pulley.text_2": "移动的方向及速度取决于提供的转速", + + "create.ponder.rope_pulley_attachment.header": "绳索滑轮与装置一同运动", + "create.ponder.rope_pulley_attachment.text_1": "当绳索滑轮本身在装置中被带动时...", + "create.ponder.rope_pulley_attachment.text_2": "...它附着在滑轮上的结构会被滑轮拉着一同移动", + "create.ponder.rope_pulley_attachment.text_3": "注意,只有绳索滑轮停止工作时才能被移动", + + "create.ponder.rope_pulley_modes.header": "绳索滑轮的运动模式", + "create.ponder.rope_pulley_modes.text_1": "当绳索滑轮停止运动时,它所附属的移动结构便会方块化", + "create.ponder.rope_pulley_modes.text_2": "你可以调整整个结构永不方块化,或者仅在结构的初始位置方块化", + + "create.ponder.rotation_speed_controller.header": "使用转速控制器", + "create.ponder.rotation_speed_controller.text_1": "转速控制器将旋转力从其转轴传递至它上方的大齿轮", + "create.ponder.rotation_speed_controller.text_2": "在其侧面滚动鼠标滚轮,可以调节输出转速", + + "create.ponder.sail.header": "使用风帆来组装风车", + "create.ponder.sail.text_1": "风帆是制作风车的趁手材料", + "create.ponder.sail.text_2": "无需强力胶等黏附手段,它们便可自行互相连结", + "create.ponder.sail.text_3": "手持染料右击可对其染色", + "create.ponder.sail.text_4": "手持夹子右击可剪除帆布,使其变回风帆框架", + + "create.ponder.sail_frame.header": "使用风帆框架来组装风车", + "create.ponder.sail_frame.text_1": "风帆框架是制作风车的趁手材料", + "create.ponder.sail_frame.text_2": "无需强力胶等黏附手段,它们便可自行互相连结", + + "create.ponder.sequenced_gearshift.header": "使用可编程齿轮箱来控制转速", + "create.ponder.sequenced_gearshift.text_1": "可编程齿轮箱能够根据玩家设置的预设时序表来传递旋转", + "create.ponder.sequenced_gearshift.text_2": "对其右击可以打开设置面板", + "create.ponder.sequenced_gearshift.text_3": "接受雷石东信号时,它会开始执行其内部已配置好的时序指令表", + "create.ponder.sequenced_gearshift.text_4": "当完成时序指令表后,它会进入待机状态,再次接受雷石东信号后,它才会再次执行时序指令表内容", + "create.ponder.sequenced_gearshift.text_5": "雷石东比较器可以读取当前时序指令表完成进度", + + "create.ponder.shaft.header": "使用传动杆传递旋转力", + "create.ponder.shaft.text_1": "传动杆能直线传递旋转力", + + "create.ponder.shaft_casing.header": "传动杆箱", + "create.ponder.shaft_casing.text_1": "安山或黄铜机壳,装饰传动杆的好伙伴", + + "create.ponder.smart_chute.header": "使用智能溜槽过滤物品", + "create.ponder.smart_chute.text_1": "智能溜槽是垂直溜槽的升级控制版", + "create.ponder.smart_chute.text_2": "当在其过滤槽内指定了物品后,溜槽只会传输这一指定标记的物品", + "create.ponder.smart_chute.text_3": "使用鼠标滚轮可以指定被过滤的物品数量", + "create.ponder.smart_chute.text_4": "通入雷石东信号,智能溜槽将会完全暂停工作", + + "create.ponder.smart_pipe.header": "使用智能流体管道控制流体流动", + "create.ponder.smart_pipe.text_1": "智能流体管道可以限制通过它的流体种类", + "create.ponder.smart_pipe.text_2": "当紧邻流体源放置时,管道只会抽取设置的流体种类", + "create.ponder.smart_pipe.text_3": "使用任何包含流体的容器右击过滤槽,可以标记过滤的流体", + "create.ponder.smart_pipe.text_4": "当放在管道网络中时,只有匹配过滤器的流体才能通过此管道", + + "create.ponder.speedometer.header": "使用速度表来监测转速", + "create.ponder.speedometer.text_1": "速度表能显示相接组件的转速", + "create.ponder.speedometer.text_2": "当佩戴工程师护目镜时,可以看到仪表所显示的更详细的数据", + "create.ponder.speedometer.text_3": "雷石东比较器可以根据速度表的数值输出不同强弱的雷石东信号", + + "create.ponder.spout_filling.header": "使用注液器填充物品", + "create.ponder.spout_filling.text_1": "注液器可以将流体装入下方经过且可以接受该流体的物品", + "create.ponder.spout_filling.text_2": "注液器的流体存储无法直接手动交互", + "create.ponder.spout_filling.text_3": "使用管道可以将流体输入到注液器内", + "create.ponder.spout_filling.text_4": "输入的物品可以被放置在其下方的置物台上", + "create.ponder.spout_filling.text_5": "当传送带上的物品经过注液器下方时...", + "create.ponder.spout_filling.text_6": "注液器会使物品停下,然后自动处理这一物品", + + "create.ponder.stabilized_bearings.header": "装置固定朝向", + "create.ponder.stabilized_bearings.text_1": "当动力轴承在结构被带动时...", + "create.ponder.stabilized_bearings.text_2": "...它会确保它转盘的垂直朝向不变", + "create.ponder.stabilized_bearings.text_3": "跟默认的一样,动力轴承会黏着它前方的方块", + "create.ponder.stabilized_bearings.text_4": "这种情况下,它所黏着的子装置的垂直朝向也不会改变", + + "create.ponder.sticker.header": "使用黏着器来黏附方块", + "create.ponder.sticker.text_1": "你可以用雷石东信号来控制黏着器的行为", + "create.ponder.sticker.text_2": "当接受雷石东信号时,黏着器会黏着前方的方块", + "create.ponder.sticker.text_3": "如果黏着器以装置的形式移动,那么被黏着的方块也会一同移动", + "create.ponder.sticker.text_4": "再次接受雷石东信号时,它会断开与方块的黏连", + + "create.ponder.stressometer.header": "使用应力表来监测应力", + "create.ponder.stressometer.text_1": "应力表能显示当前动能网络内的应力信息", + "create.ponder.stressometer.text_2": "当佩戴工程师护目镜时,可以看到仪表所显示的更详细的数据", + "create.ponder.stressometer.text_3": "雷石东比较器可以根据应力表的数值输出不同强弱的雷石东信号", + + "create.ponder.super_glue.header": "使用强力胶来黏附方块", + "create.ponder.super_glue.text_1": "强力胶可以在任意两个方块间使用", + "create.ponder.super_glue.text_2": "当被粘合的方块被组装为装置时,他们会一起运动", + "create.ponder.super_glue.text_3": "当强力胶在副手时...", + "create.ponder.super_glue.text_4": "...新放置的方块会自动被黏附在所放置方块的面上", + "create.ponder.super_glue.text_5": "左击可以清除强力胶", + + "create.ponder.valve_handle.header": "使用阀门手轮产生旋转力", + "create.ponder.valve_handle.text_1": "玩家可以手动使用阀门手轮来产生旋转力", + "create.ponder.valve_handle.text_2": "右击可使它逆时针旋转", + "create.ponder.valve_handle.text_3": "它的转速慢而精确", + "create.ponder.valve_handle.text_4": "潜行右击可使它顺时针旋转", + "create.ponder.valve_handle.text_5": "可以通过染色来美化阀门手轮", + + "create.ponder.valve_pipe.header": "使用阀门管道控制液体流", + "create.ponder.valve_pipe.text_1": "阀门管道可以控制管道网络中流体的蔓延", + "create.ponder.valve_pipe.text_2": "通过其上的传动杆输入动力可以控制它的开关", + "create.ponder.valve_pipe.text_3": "提供向“打开”方向的旋转力会打开阀门,使得流体可以通过", + "create.ponder.valve_pipe.text_4": "提供另一方向的旋转力可以关掉阀门,阻止流体通过", + + "create.ponder.water_wheel.header": "使用水车产生旋转力", + "create.ponder.water_wheel.text_1": "水车利用临近的水流来进行应力发生", + "create.ponder.water_wheel.text_2": "水车接触水流的面越多,它的转速越高", + "create.ponder.water_wheel.text_3": "水车叶片应逆着水流方向摆放", + "create.ponder.water_wheel.text_4": "如果顺着水流摆放,它的效率则会降低", + + "create.ponder.weighted_ejector.header": "使用弹射置物台", + "create.ponder.weighted_ejector.text_1": "手持弹射置物台时,潜行时右击可以设置弹射目标位置", + "create.ponder.weighted_ejector.text_10": "现在,只有等被放置的物品数量等于所设定数量时,弹射置物台才会弹射物品", + "create.ponder.weighted_ejector.text_11": "当其他实体站在弹射置物台上时会被直接弹射", + "create.ponder.weighted_ejector.text_2": "现在,放置下的弹射置物台会将物品弹射至目标位置", + "create.ponder.weighted_ejector.text_3": "限制范围内的任意距离和高度均可作为有效目标地点", + "create.ponder.weighted_ejector.text_4": "但是,目标位置与置物台的连线,必须垂直于置物台的侧面", + "create.ponder.weighted_ejector.text_5": "如果没有设置有效目标位置,弹射置物台会直接将其前方一格设为默认目标位置", + "create.ponder.weighted_ejector.text_6": "提供旋转力可为其蓄力", + "create.ponder.weighted_ejector.text_7": "蓄力完毕后,放置在它上方的物品会被立刻弹射出去", + "create.ponder.weighted_ejector.text_8": "如果目标为容器,则弹射置物台会等待容器有位置后再弹射物品", + "create.ponder.weighted_ejector.text_9": "使用扳手可以调整弹射所要求的物品数量", + + "create.ponder.weighted_ejector_redstone.header": "使用雷石东控制弹射置物台", + "create.ponder.weighted_ejector_redstone.text_1": "当被雷石东充能时,弹射置物台停止工作", + "create.ponder.weighted_ejector_redstone.text_2": "此外,置物台弹射的瞬间可以被侦测器侦测", + + "create.ponder.weighted_ejector_tunnel.header": "使用弹射置物台来分流物品", + "create.ponder.weighted_ejector_tunnel.text_1": "与黄铜隧道搭配使用时,弹射置物台可以将物品以特定数量进行分流", + "create.ponder.weighted_ejector_tunnel.text_2": "首先,将黄铜隧道调整为“最近优先”模式,从而让它优先侧面输出", + "create.ponder.weighted_ejector_tunnel.text_3": "置物台上所设置的物品数量则为被分流出去的物品数量", + "create.ponder.weighted_ejector_tunnel.text_4": "当所设置的物品数量被分流出去后...", + "create.ponder.weighted_ejector_tunnel.text_5": "...剩余的物品则会继续前进", + + "create.ponder.windmill_source.header": "使用风车轴承产生旋转力", + "create.ponder.windmill_source.text_1": "在风车轴承会黏附它前方的方块", + "create.ponder.windmill_source.text_2": "如果有足够多的风帆方块黏附于其上,那么整体结构便可被视为风车", + "create.ponder.windmill_source.text_3": "右击启动后,风车轴承会开始产生旋转力", + "create.ponder.windmill_source.text_4": "产生的转速取决于风帆方块的数量", + "create.ponder.windmill_source.text_5": "使用扳手可以调整风车的旋转方向", + "create.ponder.windmill_source.text_6": "任何时候右击轴承,都可以将其停止,这样方便于你修改风车的结构", + + "create.ponder.windmill_structure.header": "风车装置", + "create.ponder.windmill_structure.text_1": "任何有至少 8 个风帆方块的结构,都被视为一个有效的风车" +} diff --git a/mods/diggusmaximus.json b/mods/diggusmaximus.json index 3b9d6a7c7..1effbdf21 100644 --- a/mods/diggusmaximus.json +++ b/mods/diggusmaximus.json @@ -1,24 +1,24 @@ { - "key.categories.diggusmaximus": "Diggus最大值", - "key.diggusmaximus.excavate": "挖掘", - "key.diggusmaximus.config.category": "设置", - "key.diggusmaximus.config.enabled": "允许", - "key.diggusmaximus.config.hotkey": "键位绑定", - "key.diggusmaximus.config.minediag": "斜向矿道", - "key.diggusmaximus.config.maxmine": "最大采集方块数量", - "key.diggusmaximus.config.maxdistance": "最大距离", - "key.diggusmaximus.config.autopickup": "自动拾取", - "key.diggusmaximus.config.requirestool": "工具需求", - "key.diggusmaximus.config.toolduribility": "工具耐久", - "key.diggusmaximus.config.stopontoolbreak": "工具损坏时停止", - "key.diggusmaximus.config.dontbreaktool": "工具损坏前停止", - "key.diggusmaximus.config.playerexhaustion": "玩家饥饿", - "key.diggusmaximus.config.toollist": "其他工具列表", - "key.diggusmaximus.config.blacklistcat": "黑名单", - "key.diggusmaximus.config.invertlist": "使用白名单", - "key.diggusmaximus.config.blacklist": "黑名单方块", - "key.diggusmaximus.config.groupcat": "方块分类", - "key.diggusmaximus.config.taggrouping": "使用标签分类", - "key.diggusmaximus.config.customgrouping": "使用自定义分类", - "key.diggusmaximus.config.grouplist": "自定义组(使用英文逗号分隔方块ID)" -} \ No newline at end of file + "key.categories.diggusmaximus": "Diggus最大值", + "key.diggusmaximus.excavate": "挖掘", + "key.diggusmaximus.config.category": "设置", + "key.diggusmaximus.config.enabled": "允许", + "key.diggusmaximus.config.hotkey": "键位绑定", + "key.diggusmaximus.config.minediag": "斜向矿道", + "key.diggusmaximus.config.maxmine": "最大采集方块数量", + "key.diggusmaximus.config.maxdistance": "最大距离", + "key.diggusmaximus.config.autopickup": "自动拾取", + "key.diggusmaximus.config.requirestool": "工具需求", + "key.diggusmaximus.config.toolduribility": "工具耐久", + "key.diggusmaximus.config.stopontoolbreak": "工具损坏时停止", + "key.diggusmaximus.config.dontbreaktool": "工具损坏前停止", + "key.diggusmaximus.config.playerexhaustion": "玩家饥饿", + "key.diggusmaximus.config.toollist": "其他工具列表", + "key.diggusmaximus.config.blacklistcat": "黑名单", + "key.diggusmaximus.config.invertlist": "使用白名单", + "key.diggusmaximus.config.blacklist": "黑名单方块", + "key.diggusmaximus.config.groupcat": "方块分类", + "key.diggusmaximus.config.taggrouping": "使用标签分类", + "key.diggusmaximus.config.customgrouping": "使用自定义分类", + "key.diggusmaximus.config.grouplist": "自定义组(使用英文逗号分隔方块ID)" +} diff --git a/mods/durabilityviewer.json b/mods/durabilityviewer.json index f474211f8..287ae4fc8 100644 --- a/mods/durabilityviewer.json +++ b/mods/durabilityviewer.json @@ -1,6 +1,6 @@ -{ - "key.categories.durabilityviewer":"耐久指示器", - "key.durabilityviewer.showhide":"显示/隐藏 耐久显示", - "tooltip.durability":"耐久度 %s", - "durabilityviewer.subtitle.toolBreaking":"物品即将损坏" +{ + "key.categories.durabilityviewer": "耐久指示器", + "key.durabilityviewer.showhide": "显示/隐藏 耐久显示", + "tooltip.durability": "耐久度 %s", + "durabilityviewer.subtitle.toolBreaking": "物品即将损坏" } diff --git a/mods/dynamicfps.json b/mods/dynamicfps.json index b8b998378..6b8ec3323 100644 --- a/mods/dynamicfps.json +++ b/mods/dynamicfps.json @@ -1,4 +1,4 @@ { - "key.dynamicfps.toggle": "硬核掉帧", - "gui.dynamicfps.hud.reducing": "动态FPS:强制每秒1帧" + "key.dynamicfps.toggle": "硬核掉帧", + "gui.dynamicfps.hud.reducing": "动态FPS:强制每秒1帧" } diff --git a/mods/expandedstorage.json b/mods/expandedstorage.json index 235ce4338..f5babf697 100644 --- a/mods/expandedstorage.json +++ b/mods/expandedstorage.json @@ -1,33 +1,33 @@ { - "container.expandedstorage.wood_chest": "木箱", - "container.expandedstorage.iron_chest": "铁箱", - "container.expandedstorage.gold_chest": "金箱", - "container.expandedstorage.diamond_chest": "钻石箱", - "container.expandedstorage.obsidian_chest": "黑曜石箱", - "block.expandedstorage.wood_chest": "木箱", - "block.expandedstorage.iron_chest": "铁箱", - "block.expandedstorage.gold_chest": "金箱", - "block.expandedstorage.diamond_chest": "钻石箱", - "block.expandedstorage.obsidian_chest": "黑曜石箱", - "block.expandedstorage.old_wood_chest": "旧木箱", - "block.expandedstorage.old_iron_chest": "旧铁箱", - "block.expandedstorage.old_gold_chest": "旧金箱", - "block.expandedstorage.old_diamond_chest": "旧钻石箱", - "block.expandedstorage.old_obsidian_chest": "旧黑曜石箱", - "item.expandedstorage.wood_to_iron_conversion_kit": "升级:木>铁", - "item.expandedstorage.wood_to_gold_conversion_kit": "升级:木>金", - "item.expandedstorage.wood_to_diamond_conversion_kit": "升级:木>钻石", - "item.expandedstorage.wood_to_obsidian_conversion_kit": "升级:木>黑曜石", - "item.expandedstorage.iron_to_gold_conversion_kit": "升级:铁>金", - "item.expandedstorage.iron_to_diamond_conversion_kit": "升级:铁>钻石", - "item.expandedstorage.iron_to_obsidian_conversion_kit": "升级:铁>黑曜石", - "item.expandedstorage.gold_to_diamond_conversion_kit": "升级:金>钻石", - "item.expandedstorage.gold_to_obsidian_conversion_kit": "升级:金>黑曜石", - "item.expandedstorage.diamond_to_obsidian_conversion_kit": "升级:钻石>黑曜石", - "item.expandedstorage.chest_mutator": "箱子改变器", - "tooltip.expandedstorage.chest_mutator.merge": "合并", - "tooltip.expandedstorage.chest_mutator.unmerge": "拆分", - "tooltip.expandedstorage.chest_mutator.rotate": "旋转", - "tooltip.expandedstorage.chest_mutator.invalid": "不可用", - "tooltip.expandedstorage.tool_mode": "工具模式: %s" + "container.expandedstorage.wood_chest": "木胸部", + "container.expandedstorage.iron_chest": "老铁胸部", + "container.expandedstorage.gold_chest": "黄油胸部", + "container.expandedstorage.diamond_chest": "祖安石胸部", + "container.expandedstorage.obsidian_chest": "黑曜石胸部", + "block.expandedstorage.wood_chest": "木胸部", + "block.expandedstorage.iron_chest": "老铁胸部", + "block.expandedstorage.gold_chest": "黄油胸部", + "block.expandedstorage.diamond_chest": "祖安石胸部", + "block.expandedstorage.obsidian_chest": "黑曜石胸部", + "block.expandedstorage.old_wood_chest": "旧木胸部", + "block.expandedstorage.old_iron_chest": "旧老铁胸部", + "block.expandedstorage.old_gold_chest": "旧黄油胸部", + "block.expandedstorage.old_diamond_chest": "旧祖安石胸部", + "block.expandedstorage.old_obsidian_chest": "旧黑曜石胸部", + "item.expandedstorage.wood_to_iron_conversion_kit": "升级:木>老铁", + "item.expandedstorage.wood_to_gold_conversion_kit": "升级:木>黄油", + "item.expandedstorage.wood_to_diamond_conversion_kit": "升级:木>祖安石", + "item.expandedstorage.wood_to_obsidian_conversion_kit": "升级:木>黑曜石", + "item.expandedstorage.iron_to_gold_conversion_kit": "升级:老铁>黄油", + "item.expandedstorage.iron_to_diamond_conversion_kit": "升级:老铁>祖安石", + "item.expandedstorage.iron_to_obsidian_conversion_kit": "升级:老铁>黑曜石", + "item.expandedstorage.gold_to_diamond_conversion_kit": "升级:黄油>祖安石", + "item.expandedstorage.gold_to_obsidian_conversion_kit": "升级:黄油>黑曜石", + "item.expandedstorage.diamond_to_obsidian_conversion_kit": "升级:祖安石>黑曜石", + "item.expandedstorage.chest_mutator": "胸部改变器", + "tooltip.expandedstorage.chest_mutator.merge": "合并", + "tooltip.expandedstorage.chest_mutator.unmerge": "拆分", + "tooltip.expandedstorage.chest_mutator.rotate": "旋转", + "tooltip.expandedstorage.chest_mutator.invalid": "不可用", + "tooltip.expandedstorage.tool_mode": "工具模式: %s" } diff --git a/mods/firefly8.json b/mods/firefly8.json new file mode 100644 index 000000000..280004c21 --- /dev/null +++ b/mods/firefly8.json @@ -0,0 +1,109 @@ +{ + "item.firefly8.tinted_glass_bottle": "见光死玻璃瓶", + "item.firefly8.tinted_potion": "申必溶液", + "item.firefly8.tinted_honey_bottle": "申必溶液", + "item.firefly8.tinted_splash_potion": "喷溅型申必溶液", + "item.firefly8.tinted_lingering_potion": "滞留型申必溶液", + "item.firefly8.firefly_spawn_egg": "萤火虫幼体", + "item.firefly8.xdi8aho": "灯\uDB87\uDC30", + "item.firefly8.tinted_dragon_breath": "申必溶液", + "item.firefly8.tinted_firefly_bottle": "瓶装萤火虫", + "item.firefly8.bundler": "之前的库存栏", + + "item.firefly8.indium_ingot": "铟元宝", + "item.firefly8.indium_nugget": "铟粒", + "item.firefly8.indium_axe": "铟斧", + "item.firefly8.indium_hoe": "铟锄", + "item.firefly8.indium_pickaxe": "铟镐", + "item.firefly8.indium_shovel": "铟锹", + "item.firefly8.indium_sword": "铟剑", + "item.firefly8.indium_chisel": "凿子", + + "item.firefly8.tinted_firefly_bottle.too_many": "1个瓶子最多可容纳5只萤火虫", + "item.firefly8.tinted_firefly_bottle.empty": "瓶子里没有萤火虫", + + "xdi8.totem.attribute": "图腾属性:", + "xdi8.totem.attribute.firefly8:xdi8": "\uDB86\uDF2B\uDB86\uDF71\uDB86\uDF8D\uDB86\uDF89", + + "itemGroup.firefly8.firefly8": "灯\uDB87\uDC30", + "entity.firefly8.firefly": "萤火虫", + + "menu.firefly8.xdi8_table": "灯法台", + + "block.firefly8.xdi8aho_portal_core": "灯\uDB87\uDC30门户核心", + "block.firefly8.xdi8aho_torch_top": "灯\uDB87\uDC30焰心", + "block.firefly8.xdi8aho_portal": "灯\uDB87\uDC30门户方块", + "block.firefly8.xdi8aho_back_portal_core": "返回门户核心", + "block.firefly8.xdi8aho_back_portal_fire": "归途圣\uDB87\uDC30", + "block.firefly8.xdi8_table": "灯法台", + + "block.firefly8.indium_block": "铟块", + "block.firefly8.indium_ore": "铟矿石", + "block.firefly8.deepslate_indium_ore": "深♂铟矿石", + "block.firefly8.symbol_stone_bricks": "符文石砖", + + "block.firefly8.symbol_stone": "符文石", + "block.firefly8.symbol_stone.chiseling": "雕刻", + "block.firefly8.dark_symbol_stone": "暗符文石", + "block.firefly8.symbol_stone.letter": "符文: %s", + "block.firefly8.symbol_stone_nn": "符文: N(仅创造模式)", + + "block.firefly8.cedar_button": "红杉木按钮", + "block.firefly8.cedar_door": "红杉木门", + "block.firefly8.cedar_fence": "红杉木栅栏", + "block.firefly8.cedar_fence_gate": "红杉木栅栏门", + "block.firefly8.cedar_leaves": "红杉树叶", + "block.firefly8.cedar_log": "红杉原木", + "block.firefly8.stripped_cedar_log": "去皮红杉原木", + "block.firefly8.cedar_planks": "红杉木板", + "block.firefly8.cedar_pressure_plate": "红杉木压力板", + "block.firefly8.cedar_sapling": "红杉树苗", + "block.firefly8.cedar_sign": "红杉木告示牌", + "block.firefly8.cedar_slab": "红杉木台阶", + "block.firefly8.cedar_stairs": "红杉木楼梯", + "block.firefly8.cedar_trapdoor": "红杉木活板门", + "block.firefly8.cedar_wood": "红杉木", + "block.firefly8.stripped_cedar_wood": "去皮红杉木", + + "commands.bindxdi8portal.success": "已为 %1$s 绑定门户", + "commands.bindxdi8portal.failure": "无法将 %1$s 的门户绑定至 %2$s / (%3$s)", + "commands.unbindxdi8portal.0": "未选中玩家", + "commands.unbindxdi8portal.1": "已为 %s 解绑门户", + "commands.unbindxdi8portal.more": "已为 %d 名玩家解绑门户", + + "modmenu.descriptionTranslation.firefly8": "萤火虫,提着灯,\n在月色里,轻轻的眨着眼睛,\n在黑夜里等待,寻找一份光明。", + "modmenu.summaryTranslation.firefly8": "灯\uDB87\uDC30 - 萤火虫", + "modmenu.descriptionTranslation.xdi8": "希顶 Mod", + "modmenu.summaryTranslation.xdi8": "灯\uDB87\uDC30", + + "advancements.firefly8.tinted_glass_bottle.title":"瓶装黑灯瞎\uDB87\uDC30", + "advancements.firefly8.tinted_glass_bottle.description":"获取见光死玻璃瓶", + "advancements.firefly8.tinted_firefly_bottle.title":"一萤熄火个虫子", + "advancements.firefly8.tinted_firefly_bottle.description":"用见光死玻璃瓶装一只萤火虫", + "advancements.firefly8.enter_xdi8.title":"向库页岛前进!", + "advancements.firefly8.enter_xdi8.description":"激活灯\uDB87\uDC30传送门,并试着进入", + "advancements.firefly8.die_in_xdi8.title":"还是撤退要紧", + "advancements.firefly8.die_in_xdi8.description":"不慎在希顶维度死亡", + "advancements.firefly8.bundler.title":"梅开二度", + "advancements.firefly8.bundler.description":"再一次死亡,然后拿起你的收纳袋走人", + "advancements.firefly8.chisel.title":"雕刻工作", + "advancements.firefly8.chisel.description":"获取一把凿子", + "advancements.firefly8.get_symbol_stone.title":"翻译错误石", + "advancements.firefly8.get_symbol_stone.description":"获取一块符文石……还是符号石?", + "advancements.firefly8.get_all_symbol_stones.title":"希顶语学家", + "advancements.firefly8.get_all_symbol_stones.description":"收集所有的45个符文石", + "advancements.firefly8.indium_ingot.title":"来软的", + "advancements.firefly8.indium_ingot.description":"获取铟元宝", + "advancements.firefly8.indium_tools.title":"灯\uDB87\uDC30首席", + "advancements.firefly8.indium_tools.description":"合成所有铟工具", + "advancements.firefly8.xdi8_totem.title":"我的灯\uDB87\uDC30", + "advancements.firefly8.xdi8_totem.description":"获取希顶图腾", + "advancements.firefly8.xdi8aho.title": "灯\uDB87\uDC30", + "advancements.firefly8.xdi8aho.description": "萤,提灯", + + "biome.firefly8.frozen_peaks": "灯\uDB87\uDC31冰封山峰", + "biome.firefly8.jagged_peaks": "灯\uDB87\uDC31尖峭山峰", + "biome.firefly8.meadow": "灯\uDB87\uDC31草甸", + "biome.firefly8.plains": "灯\uDB87\uDC31平原", + "biome.firefly8.swamp": "灯\uDB87\uDC31沼泽" +} diff --git a/mods/glassdoor.json b/mods/glassdoor.json index 71cf38f88..c8ba160fc 100644 --- a/mods/glassdoor.json +++ b/mods/glassdoor.json @@ -1,9 +1,9 @@ { - "block.glassdoor.oak_glassdoor": "橡木玻璃门", - "block.glassdoor.spruce_glassdoor": "云杉木玻璃门", - "block.glassdoor.birch_glassdoor": "白桦木玻璃门", - "block.glassdoor.acacia_glassdoor": "金合欢木玻璃门", - "block.glassdoor.jungle_glassdoor": "丛林木玻璃门", - "block.glassdoor.dark_oak_glassdoor": "深色橡木玻璃门", - "block.glassdoor.iron_glassdoor": "铁玻璃门" -} \ No newline at end of file + "block.glassdoor.oak_glassdoor": "橡木玻璃门", + "block.glassdoor.spruce_glassdoor": "云杉木玻璃门", + "block.glassdoor.birch_glassdoor": "白桦木玻璃门", + "block.glassdoor.acacia_glassdoor": "相思木玻璃门", + "block.glassdoor.jungle_glassdoor": "丛林木玻璃门", + "block.glassdoor.dark_oak_glassdoor": "巧克力玻璃门", + "block.glassdoor.iron_glassdoor": "老铁玻璃门" +} diff --git a/mods/hwyla.json b/mods/hwyla.json index ad1ec4b25..b15b23986 100644 --- a/mods/hwyla.json +++ b/mods/hwyla.json @@ -1,80 +1,80 @@ { - "tooltip.waila.crop_growth": "增长率: %s", - "tooltip.waila.crop_mature": "满的", - "tooltip.waila.empty": "空的", - "tooltip.waila.delay": "延迟: %d", - "tooltip.waila.mode": "模式: %s", - "tooltip.waila.mode_comparator": "加法模式", - "tooltip.waila.mode_subtractor": "减法模式", - "tooltip.waila.state": "状态: %s", - "tooltip.waila.state_on": "开", - "tooltip.waila.state_off": "关", - "tooltip.waila.power": "红石强度: %d", - "tooltip.waila.health": "%s/%s 血量", - "tooltip.waila.sneak_for_details": "潜行获取详细信息", + "tooltip.waila.crop_growth": "增长率: %s", + "tooltip.waila.crop_mature": "满的", + "tooltip.waila.empty": "空的", + "tooltip.waila.delay": "延迟: %d", + "tooltip.waila.mode": "模式: %s", + "tooltip.waila.mode_comparator": "加法模式", + "tooltip.waila.mode_subtractor": "减法模式", + "tooltip.waila.state": "状态: %s", + "tooltip.waila.state_on": "开", + "tooltip.waila.state_off": "关", + "tooltip.waila.power": "雷石东强度: %d", + "tooltip.waila.health": "%s/%s 血量", + "tooltip.waila.sneak_for_details": "潜行获取详细信息", - "gui.waila.configuration": "%s 配置", - "gui.waila.waila_settings": "%s 设置", - "gui.waila.plugin_settings": "插件设置", + "gui.waila.configuration": "%s 配置", + "gui.waila.waila_settings": "%s 设置", + "gui.waila.plugin_settings": "插件设置", - "key.waila.config": "打开配置", - "key.waila.show_overlay": "显示光照", - "key.waila.toggle_liquid": "切换液体", + "key.waila.config": "打开配置", + "key.waila.show_overlay": "显示光照", + "key.waila.toggle_liquid": "切换液体", - "command.waila.dump_success": "将所有处理程序转储到waila_handlers.md", + "command.waila.dump_success": "将所有处理程序转储到waila_handlers.md", - "config.waila.general": "常规", - "config.waila.display_tooltip": "显示工具提示", - "config.waila.display_tooltip_desc": "收集数据并呈现工具提示", - "config.waila.display_fluids": "显示流体", - "config.waila.display_fluids_desc": "尝试显示流体", - "config.waila.sneaky_details": "潜行详细信息", - "config.waila.sneaky_details_desc": "潜行显示详细信息", - "config.waila.display_mode": "显示模式", - "config.waila.display_mode_desc": "工具提示显示\n绑定快捷键切换显示\n必须保证开启热键", - "config.waila.display_mode_toggle": "切换", - "config.waila.display_mode_hold_key": "保持", - "config.waila.hide_from_players": "从玩家列表中隐藏", - "config.waila.hide_from_players_desc": "在玩家列表打开时隐藏工具提示", - "config.waila.hide_from_debug": "隐藏调试信息", - "config.waila.hide_from_debug_desc": "在“调试”菜单打开时隐藏工具提示", - "config.waila.display_item": "物品显示", - "config.waila.display_item_desc": "显示掉落物信息", - "config.waila.tts": "启用TTS", - "config.waila.tts_desc": "使用系统的文本到语音处理器读取方块和实体名称", + "config.waila.general": "常规", + "config.waila.display_tooltip": "显示工具提示", + "config.waila.display_tooltip_desc": "收集数据并呈现工具提示", + "config.waila.display_fluids": "显示流体", + "config.waila.display_fluids_desc": "尝试显示流体", + "config.waila.sneaky_details": "潜行详细信息", + "config.waila.sneaky_details_desc": "潜行显示详细信息", + "config.waila.display_mode": "显示模式", + "config.waila.display_mode_desc": "工具提示显示\n绑定快捷键切换显示\n必须保证打开热键", + "config.waila.display_mode_toggle": "切换", + "config.waila.display_mode_hold_key": "保持", + "config.waila.hide_from_players": "从玩家列表中隐藏", + "config.waila.hide_from_players_desc": "在玩家列表打开时隐藏工具提示", + "config.waila.hide_from_debug": "隐藏调试信息", + "config.waila.hide_from_debug_desc": "在“调试”菜单打开时隐藏工具提示", + "config.waila.display_item": "物品显示", + "config.waila.display_item_desc": "显示掉落物信息", + "config.waila.tts": "启用TTS", + "config.waila.tts_desc": "使用系统的文本到语音处理器读取方块和实体名称", - "config.waila.overlay": "覆盖", - "config.waila.overlay_pos_x": "水平比率", - "config.waila.overlay_pos_y": "垂直比率", - "config.waila.overlay_scale": "显示比例", + "config.waila.overlay": "覆盖", + "config.waila.overlay_pos_x": "水平比率", + "config.waila.overlay_pos_y": "垂直比率", + "config.waila.overlay_scale": "显示比例", - "config.waila.overlay_color": "颜色", - "config.waila.overlay_alpha": "Alpha", - "config.waila.overlay_theme": "主题", + "config.waila.overlay_color": "颜色", + "config.waila.overlay_alpha": "Alpha", + "config.waila.overlay_theme": "主题", - "config.waila.formatting": "格式化", - "config.waila.format_mod_name": "Mod名称", - "config.waila.format_block_name": "方块名称", - "config.waila.format_fluid_name": "流体名称", - "config.waila.format_entity_name": "实体名称", - "config.waila.format_registry_name": "注册表名", + "config.waila.formatting": "格式化", + "config.waila.format_mod_name": "Mod名称", + "config.waila.format_block_name": "方块名称", + "config.waila.format_fluid_name": "流体名称", + "config.waila.format_entity_name": "实体名称", + "config.waila.format_registry_name": "注册表名", - "config.waila.plugin_minecraft": "Minecraft", - "config.waila.plugin_minecraft.display_furnace_contents": "熔炉内容", - "config.waila.plugin_minecraft.hide_infestations": "隐藏方块感染", - "config.waila.plugin_minecraft.spawner_type": "生成器类型", - "config.waila.plugin_minecraft.crop_progress": "作物进度", - "config.waila.plugin_minecraft.lever": "杠杆状态", - "config.waila.plugin_minecraft.repeater": "中继器延迟", - "config.waila.plugin_minecraft.comparator": "比较器模式", - "config.waila.plugin_minecraft.redstone": "红石能量等级", - "config.waila.plugin_minecraft.jukebox": "活动记录", + "config.waila.plugin_minecraft": "Minecraft", + "config.waila.plugin_minecraft.display_furnace_contents": "熔炉内容", + "config.waila.plugin_minecraft.hide_infestations": "隐藏方块感染", + "config.waila.plugin_minecraft.spawner_type": "产 卵 器类型", + "config.waila.plugin_minecraft.crop_progress": "作物进度", + "config.waila.plugin_minecraft.lever": "控制杆状态", + "config.waila.plugin_minecraft.repeater": "直放站延迟", + "config.waila.plugin_minecraft.comparator": "康帕托模式", + "config.waila.plugin_minecraft.redstone": "雷石东能量等级", + "config.waila.plugin_minecraft.jukebox": "活动记录", - "config.waila.plugin_waila": "Waila", - "config.waila.plugin_waila.show_registry": "显示注册表名", - "config.waila.plugin_waila.show_entities": "显示实体", - "config.waila.plugin_waila.show_entity_hp": "显示实体生命值", - "config.waila.plugin_waila.show_states": "显示状态", + "config.waila.plugin_waila": "Waila", + "config.waila.plugin_waila.show_registry": "显示注册表名", + "config.waila.plugin_waila.show_entities": "显示实体", + "config.waila.plugin_waila.show_entity_hp": "显示实体生命值", + "config.waila.plugin_waila.show_states": "显示状态", - "entity.minecraft.villager.none": "Nitwit" -} \ No newline at end of file + "entity.minecraft.villager.none": "憨憨" +} diff --git a/mods/illuminations.json b/mods/illuminations.json index 0c7e73f4f..ea1f2b189 100644 --- a/mods/illuminations.json +++ b/mods/illuminations.json @@ -1,5 +1,5 @@ { - "item.illuminations.bug_net": "虫网", - "item.illuminations.firefly": "萤火虫", - "block.illuminations.firefly_in_a_bottle": "瓶装萤火虫" + "item.illuminations.bug_net": "虫网", + "item.illuminations.firefly": "萤火虫", + "block.illuminations.firefly_in_a_bottle": "瓶装萤火虫" } diff --git a/mods/immersive_engineering.json b/mods/immersive_engineering.json new file mode 100644 index 000000000..e2b798313 --- /dev/null +++ b/mods/immersive_engineering.json @@ -0,0 +1,1201 @@ +{ + "advancement.immersiveengineering.connect_wire": "电杆上的鸟儿", + "advancement.immersiveengineering.connect_wire.desc": "连接电线", + "advancement.immersiveengineering.craft_buzzsaw": "伐木工", + "advancement.immersiveengineering.craft_buzzsaw.desc": "制造一把光头强电锯", + "advancement.immersiveengineering.craft_chemthrower": "自 求 多 福", + "advancement.immersiveengineering.craft_chemthrower.desc": "制作化学喷射器", + "advancement.immersiveengineering.craft_drill": "储能镐", + "advancement.immersiveengineering.craft_drill.desc": "制作采矿机械钻", + "advancement.immersiveengineering.craft_hammer": "哇!锤子!", + "advancement.immersiveengineering.craft_hammer.desc": "制作出一把攻城狮锤", + "advancement.immersiveengineering.craft_heater": "传播温暖", + "advancement.immersiveengineering.craft_heater.desc": "制作一个外置加热器", + "advancement.immersiveengineering.craft_pump": "压力作用", + "advancement.immersiveengineering.craft_pump.desc": "制作一个流体泵", + "advancement.immersiveengineering.craft_railgun": "财富的赠送", + "advancement.immersiveengineering.craft_railgun.desc": "制作一个磁轨炮", + "advancement.immersiveengineering.craft_revolver": "来吧让我高兴高兴", + "advancement.immersiveengineering.craft_revolver.desc": "制作一把左轮手枪", + "advancement.immersiveengineering.craft_skyhook": "登记者,抓稳了!", + "advancement.immersiveengineering.craft_skyhook.desc": "制作攻城狮天钩", + "advancement.immersiveengineering.craft_wolfpack": "迫害之美", + "advancement.immersiveengineering.craft_wolfpack.desc": "制造灰多洛群弹", + "advancement.immersiveengineering.craft_workbench": "铁匠时间", + "advancement.immersiveengineering.craft_workbench.desc": "制作一个攻城狮装配台", + "advancement.immersiveengineering.make_steel": "新材料发现", + "advancement.immersiveengineering.make_steel.desc": "获得烧焦的铁砖", + "advancement.immersiveengineering.mb_arcfurnace": "最热话题", + "advancement.immersiveengineering.mb_arcfurnace.desc": "搭建电弧炉多方块结构", + "advancement.immersiveengineering.mb_blastfurnace": "真正的热门话题", + "advancement.immersiveengineering.mb_blastfurnace.desc": "搭建高炉多方块结构", + "advancement.immersiveengineering.mb_crusher": "危险机械", + "advancement.immersiveengineering.mb_crusher.desc": "搭建粉碎机多方块结构", + "advancement.immersiveengineering.mb_dieselgen": "污染环境", + "advancement.immersiveengineering.mb_dieselgen.desc": "搭建柴油吐电器多方块结构", + "advancement.immersiveengineering.mb_excavator": "深入地心", + "advancement.immersiveengineering.mb_excavator.desc": "搭建斗轮式挖掘机多方块结构", + "advancement.immersiveengineering.mb_improvedblastfurnace": "精炼的抑术", + "advancement.immersiveengineering.mb_improvedblastfurnace.desc": "搭建强化高炉多方块结构", + "advancement.immersiveengineering.mb_metalpress": "挤压物质", + "advancement.immersiveengineering.mb_metalpress.desc": "搭建金属冲压机多方块结构", + "advancement.immersiveengineering.mb_silo": "金属板掩盖的秘密仓库", + "advancement.immersiveengineering.mb_silo.desc": "搭建筒仓多方块结构", + "advancement.immersiveengineering.open_manual": "去读手册!", + "advancement.immersiveengineering.open_manual.desc": "获得攻城狮手册", + "advancement.immersiveengineering.place_conveyor": "到处都是路", + "advancement.immersiveengineering.place_conveyor.desc": "放置电梯", + "advancement.immersiveengineering.place_floodlight": "啊这!光啊!", + "advancement.immersiveengineering.place_floodlight.desc": "放置一个泛光灯", + "advancement.immersiveengineering.place_windmill": "风车的土地", + "advancement.immersiveengineering.place_windmill.desc": "放置一个风车", + "advancement.immersiveengineering.root": "沉没工程(沉浸工程)", + "advancement.immersiveengineering.root.desc": "请阅读下面的嗦呡书", + "advancement.immersiveengineering.secret_birthdayparty": "Grunt生日派对", + "advancement.immersiveengineering.secret_birthdayparty.desc": "擦亮火柴...", + "advancement.immersiveengineering.secret_drillbreak": "超级...钻头...破坏者!!!", + "advancement.immersiveengineering.secret_drillbreak.desc": "你·以·为·我·是·谁?!", + "advancement.immersiveengineering.secret_luckofthedraw": "抽奖的运气", + "advancement.immersiveengineering.secret_luckofthedraw.desc": "全有即全无", + "advancement.immersiveengineering.secret_ravenholm": "我们不去圣地...", + "advancement.immersiveengineering.secret_ravenholm.desc": "全部取出内脏", + "advancement.immersiveengineering.skyhook_pro": "天际线大师", + "advancement.immersiveengineering.skyhook_pro.desc": "使用天钩滑行至少一千米", + "advancement.immersiveengineering.upgrade_buzzsaw": "血与泪!", + "advancement.immersiveengineering.upgrade_buzzsaw.desc": "取得顶级光头强电锯", + "advancement.immersiveengineering.upgrade_drill": "大家伙", + "advancement.immersiveengineering.upgrade_drill.desc": "给采矿机械钻加装尽可能多的升级", + "advancement.immersiveengineering.upgrade_railgun": "发明家", + "advancement.immersiveengineering.upgrade_railgun.desc": "取得顶级磁轨炮", + "advancement.immersiveengineering.upgrade_revolver": "沙卡拉卡", + "advancement.immersiveengineering.upgrade_revolver.desc": "给左轮手枪加装尽可能多的升级", + "block.immersiveengineering.advanced_blast_furnace": "强化高炉", + "block.immersiveengineering.alloy_smelter": "合金窑", + "block.immersiveengineering.alloybrick": "窑砖", + "block.immersiveengineering.alu_fence": "铝栅栏", + "block.immersiveengineering.alu_post": "铝杆", + "block.immersiveengineering.alu_scaffolding_grate_top": "铝脚手架", + "block.immersiveengineering.alu_scaffolding_standard": "铝脚手架", + "block.immersiveengineering.alu_scaffolding_wooden_top": "铝脚手架", + "block.immersiveengineering.alu_slope": "铝结构臂", + "block.immersiveengineering.alu_wallmount": "铝壁挂支架", + "block.immersiveengineering.arb_solid": "任意实体方块", + "block.immersiveengineering.arc_furnace": "电弧炉", + "block.immersiveengineering.assembler": "装配机", + "block.immersiveengineering.auto_workbench": "自动化攻城狮装配台", + "block.immersiveengineering.balloon": "气球", + "block.immersiveengineering.blast_furnace": "高炉", + "block.immersiveengineering.blastbrick": "高炉砖", + "block.immersiveengineering.blastbrick_reinforced": "强化高炉砖", + "block.immersiveengineering.blastfurnace_preheater": "高炉鼓风机", + "block.immersiveengineering.bottling_machine": "灌装机", + "block.immersiveengineering.breaker_switch": "断路刀闸", + "block.immersiveengineering.bucket_wheel": "斗轮", + "block.immersiveengineering.capacitor_creative": "创造电容器", + "block.immersiveengineering.capacitor_hv": "高压电容器", + "block.immersiveengineering.capacitor_lv": "低压电容器", + "block.immersiveengineering.capacitor_mv": "中压电容器", + "block.immersiveengineering.charging_station": "充电站", + "block.immersiveengineering.chute_aluminum": "金属块槽", + "block.immersiveengineering.chute_copper": "金属块槽", + "block.immersiveengineering.chute_iron": "金属块槽", + "block.immersiveengineering.chute_steel": "金属块槽", + "block.immersiveengineering.cloche": "园艺玻璃罩", + "block.immersiveengineering.coil_hv": "高压电线", + "block.immersiveengineering.coil_lv": "铜电线", + "block.immersiveengineering.coil_mv": "琥珀金电线", + "block.immersiveengineering.coke": "焦煤块", + "block.immersiveengineering.coke_oven": "焦炉", + "block.immersiveengineering.cokebrick": "焦炉砖", + "block.immersiveengineering.concrete": "具体的", + "block.immersiveengineering.concrete_leaded": "镀铅具体的", + "block.immersiveengineering.concrete_quarter": "具体的板", + "block.immersiveengineering.concrete_sheet": "具体的薄板", + "block.immersiveengineering.concrete_sprayed": "速干具体的", + "block.immersiveengineering.concrete_three_quarter": "具体的块", + "block.immersiveengineering.concrete_tile": "具体的砖", + "block.immersiveengineering.connector_bundled": "雷石东接口连接器", + "block.immersiveengineering.connector_hv": "高压插座", + "block.immersiveengineering.connector_hv_relay": "高压插板", + "block.immersiveengineering.connector_lv": "低压插座", + "block.immersiveengineering.connector_lv_relay": "低压插板", + "block.immersiveengineering.connector_mv": "中压插座", + "block.immersiveengineering.connector_mv_relay": "中压插板", + "block.immersiveengineering.connector_probe": "雷石东探测插座", + "block.immersiveengineering.connector_redstone": "雷石东插座", + "block.immersiveengineering.connector_structural": "结构性插座", + "block.immersiveengineering.conveyor_basic": "电梯", + "block.immersiveengineering.conveyor_covered": "绝缘电梯", + "block.immersiveengineering.conveyor_dropper": "卸货电梯", + "block.immersiveengineering.conveyor_droppercovered": "丢下电梯上的物品", + "block.immersiveengineering.conveyor_extract": "抽取电梯", + "block.immersiveengineering.conveyor_extractcovered": "绝缘抽取电梯", + "block.immersiveengineering.conveyor_redstone": "忽略雷石东控制", + "block.immersiveengineering.conveyor_splitter": "分流电梯", + "block.immersiveengineering.conveyor_splittercovered": "丢下电梯上的物品", + "block.immersiveengineering.conveyor_vertical": "垂直电梯", + "block.immersiveengineering.conveyor_verticalcovered": "绝缘垂直电梯", + "block.immersiveengineering.coresample": "岩心样本", + "block.immersiveengineering.craftingtable": "攻城狮工作台", + "block.immersiveengineering.crate": "木质储物箱", + "block.immersiveengineering.crusher": "粉碎机", + "block.immersiveengineering.current_transformer": "电流互感器", + "block.immersiveengineering.cushion": "气垫", + "block.immersiveengineering.diesel_generator": "柴油吐电器", + "block.immersiveengineering.dynamo": "动能吐电器", + "block.immersiveengineering.electric_lantern": "灯泡", + "block.immersiveengineering.excavator": "挖掘机", + "block.immersiveengineering.feedthrough": "通透绝缘体", + "block.immersiveengineering.fermenter": "工业发酵机", + "block.immersiveengineering.floodlight": "泛光灯", + "block.immersiveengineering.fluidBiodiesel": "暴徒柴油", + "block.immersiveengineering.fluidConcrete": "液态具体的", + "block.immersiveengineering.fluidCreosote": "杂酚油", + "block.immersiveengineering.fluidEthanol": "酒精", + "block.immersiveengineering.fluidPlantoil": "橄榄油(菜籽油)", + "block.immersiveengineering.fluid_pipe": "输液管", + "block.immersiveengineering.fluid_placer": "液阀", + "block.immersiveengineering.fluid_pump": "液泵", + "block.immersiveengineering.fluid_sorter": "物品分配器", + "block.immersiveengineering.furnace_heater": "外置加热器", + "block.immersiveengineering.generator": "吐电器模块", + "block.immersiveengineering.gunpowder_barrel": "炮灰桶", + "block.immersiveengineering.heavy_engineering": "重型工程块", + "block.immersiveengineering.hemp": "工业棉花(伪)", + "block.immersiveengineering.hempcrete": "麻凝土", + "block.immersiveengineering.insulating_glass": "绝缘玻璃", + "block.immersiveengineering.item_batcher": "物料装配机", + "block.immersiveengineering.lantern": "灯", + "block.immersiveengineering.light_engineering": "轻型工程块", + "block.immersiveengineering.lightning_rod": "避雷针", + "block.immersiveengineering.metal_barrel": "金属桶", + "block.immersiveengineering.metal_ladder_alu": "脚手架梯子", + "block.immersiveengineering.metal_ladder_none": "金属梯子", + "block.immersiveengineering.metal_ladder_steel": "脚手架梯子", + "block.immersiveengineering.metal_press": "金属冲压机", + "block.immersiveengineering.mixer": "混合器", + "block.immersiveengineering.molten_constantan": "康铜汁", + "block.immersiveengineering.molten_uranium": "铀(附赠辐射)", + "block.immersiveengineering.ore_aluminum": "铝石头", + "block.immersiveengineering.ore_copper": "铜石头", + "block.immersiveengineering.ore_lead": "铅石头", + "block.immersiveengineering.ore_nickel": "镍(niè)石头", + "block.immersiveengineering.ore_silver": "银石头", + "block.immersiveengineering.ore_uranium": "铀石头(附赠辐射)", + "block.immersiveengineering.radiator": "散热器模块", + "block.immersiveengineering.razor_wire": "刀片刺网", + "block.immersiveengineering.redstone_breaker": "雷石东控制断路刀闸", + "block.immersiveengineering.refinery": "炼油厂", + "block.immersiveengineering.reinforced_crate": "强化储物箱", + "block.immersiveengineering.rs_engineering": "雷石东工程块", + "block.immersiveengineering.sample_drill": "岩芯钻井", + "block.immersiveengineering.sawdust": "锯终端板", + "block.immersiveengineering.sawmill": "锯木机", + "block.immersiveengineering.sheetmetal_aluminum": "铝板金属块", + "block.immersiveengineering.sheetmetal_colored_black": "黑色金属块", + "block.immersiveengineering.sheetmetal_colored_blue": "蓝色金属块", + "block.immersiveengineering.sheetmetal_colored_brown": "棕色金属块", + "block.immersiveengineering.sheetmetal_colored_cyan": "青色金属块", + "block.immersiveengineering.sheetmetal_colored_gray": "灰色金属块", + "block.immersiveengineering.sheetmetal_colored_green": "原谅色金属块", + "block.immersiveengineering.sheetmetal_colored_light_blue": "亮蓝色金属块", + "block.immersiveengineering.sheetmetal_colored_light_gray": "亮灰色金属块", + "block.immersiveengineering.sheetmetal_colored_lime": "石灰色金属块", + "block.immersiveengineering.sheetmetal_colored_magenta": "品红色金属块", + "block.immersiveengineering.sheetmetal_colored_orange": "橙色金属块", + "block.immersiveengineering.sheetmetal_colored_pink": "粉色金属块", + "block.immersiveengineering.sheetmetal_colored_purple": "紫色金属块", + "block.immersiveengineering.sheetmetal_colored_red": "红色金属块", + "block.immersiveengineering.sheetmetal_colored_white": "白色金属块", + "block.immersiveengineering.sheetmetal_colored_yellow": "黄色金属块", + "block.immersiveengineering.sheetmetal_constantan": "康铜板金属块", + "block.immersiveengineering.sheetmetal_copper": "铜板金属块", + "block.immersiveengineering.sheetmetal_electrum": "琥珀金板金属块", + "block.immersiveengineering.sheetmetal_gold": "金板金属块", + "block.immersiveengineering.sheetmetal_iron": "铁板金属块", + "block.immersiveengineering.sheetmetal_lead": "铅板金属块", + "block.immersiveengineering.sheetmetal_nickel": "镍(niè)板金属块", + "block.immersiveengineering.sheetmetal_silver": "银板金属块", + "block.immersiveengineering.sheetmetal_steel": "烧焦的铁板金属块", + "block.immersiveengineering.sheetmetal_uranium": "铀板金属块(附赠辐射)", + "block.immersiveengineering.silo": "储物筒仓", + "block.immersiveengineering.slab_alloybrick": "窑砖半砖", + "block.immersiveengineering.slab_alu_scaffolding_grate_top": "铝脚手架半砖", + "block.immersiveengineering.slab_alu_scaffolding_standard": "铝脚手架半砖", + "block.immersiveengineering.slab_alu_scaffolding_wooden_top": "铝脚手架半砖", + "block.immersiveengineering.slab_blastbrick": "高炉砖半砖", + "block.immersiveengineering.slab_blastbrick_reinforced": "强化高炉砖半砖", + "block.immersiveengineering.slab_coke": "焦煤半砖", + "block.immersiveengineering.slab_cokebrick": "焦炉砖半砖", + "block.immersiveengineering.slab_concrete": "具体的半砖", + "block.immersiveengineering.slab_concrete_leaded": "镀铅具体的半砖", + "block.immersiveengineering.slab_concrete_tile": "具体的砖半砖", + "block.immersiveengineering.slab_hempcrete": "麻凝土半砖", + "block.immersiveengineering.slab_insulating_glass": "绝缘玻璃半砖", + "block.immersiveengineering.slab_sheetmetal_aluminum": "铝板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_black": "黑色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_blue": "蓝色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_brown": "棕色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_cyan": "青色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_gray": "灰色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_green": "原谅色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_light_blue": "亮蓝色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_light_gray": "亮灰色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_lime": "石灰色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_magenta": "品红色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_orange": "橙色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_pink": "粉色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_purple": "紫色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_red": "红色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_white": "白色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_colored_yellow": "黄色板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_constantan": "康铜板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_copper": "铜板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_electrum": "琥珀金板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_gold": "金板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_iron": "铁板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_lead": "铅板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_nickel": "镍(niè)板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_silver": "银板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_steel": "烧焦的铁板金属块半砖", + "block.immersiveengineering.slab_sheetmetal_uranium": "铀板金属块半砖(附赠辐射)", + "block.immersiveengineering.slab_steel_scaffolding_grate_top": "烧焦的铁脚手架半砖", + "block.immersiveengineering.slab_steel_scaffolding_standard": "烧焦的铁脚手架半砖", + "block.immersiveengineering.slab_steel_scaffolding_wooden_top": "烧焦的铁脚手架半砖", + "block.immersiveengineering.slab_storage_aluminum": "铝半砖", + "block.immersiveengineering.slab_storage_constantan": "康铜半砖", + "block.immersiveengineering.slab_storage_copper": "铜半砖", + "block.immersiveengineering.slab_storage_electrum": "琥珀金半砖", + "block.immersiveengineering.slab_storage_lead": "铅半砖", + "block.immersiveengineering.slab_storage_nickel": "镍(niè)半砖", + "block.immersiveengineering.slab_storage_silver": "银半砖", + "block.immersiveengineering.slab_storage_steel": "烧焦的铁半砖", + "block.immersiveengineering.slab_storage_uranium": "铀半砖(附赠辐射)", + "block.immersiveengineering.slab_treated_wood_horizontal": "腐化木半砖", + "block.immersiveengineering.slab_treated_wood_packaged": "腐化木半砖", + "block.immersiveengineering.slab_treated_wood_vertical": "腐化木半砖", + "block.immersiveengineering.sorter": "物品分配器", + "block.immersiveengineering.squeezer": "工业挤压机", + "block.immersiveengineering.stairs_alu_scaffolding_grate_top": "铝脚手架楼梯", + "block.immersiveengineering.stairs_alu_scaffolding_standard": "铝脚手架楼梯", + "block.immersiveengineering.stairs_alu_scaffolding_wooden_top": "铝脚手架楼梯", + "block.immersiveengineering.stairs_concrete": "具体的楼梯", + "block.immersiveengineering.stairs_concrete_leaded": "镀铅具体的楼梯", + "block.immersiveengineering.stairs_concrete_tile": "具体的砖楼梯", + "block.immersiveengineering.stairs_hempcrete": "麻凝土楼梯", + "block.immersiveengineering.stairs_steel_scaffolding_grate_top": "烧焦的铁脚手架楼梯", + "block.immersiveengineering.stairs_steel_scaffolding_standard": "烧焦的铁脚手架楼梯", + "block.immersiveengineering.stairs_steel_scaffolding_wooden_top": "烧焦的铁脚手架楼梯", + "block.immersiveengineering.stairs_treated_wood_horizontal": "腐化木楼梯", + "block.immersiveengineering.stairs_treated_wood_packaged": "腐化木楼梯", + "block.immersiveengineering.stairs_treated_wood_vertical": "腐化木楼梯", + "block.immersiveengineering.steel_fence": "烧焦的铁栅栏", + "block.immersiveengineering.steel_post": "烧焦的铁杆", + "block.immersiveengineering.steel_scaffolding_grate_top": "烧焦的铁脚手架", + "block.immersiveengineering.steel_scaffolding_standard": "烧焦的铁脚手架", + "block.immersiveengineering.steel_scaffolding_wooden_top": "烧焦的铁脚手架", + "block.immersiveengineering.steel_slope": "烧焦的铁结构臂", + "block.immersiveengineering.steel_wallmount": "烧焦的铁壁挂支架", + "block.immersiveengineering.storage_aluminum": "铝块", + "block.immersiveengineering.storage_constantan": "康铜块", + "block.immersiveengineering.storage_copper": "铜块", + "block.immersiveengineering.storage_electrum": "琥珀金块", + "block.immersiveengineering.storage_lead": "铅块", + "block.immersiveengineering.storage_nickel": "镍(niè)块", + "block.immersiveengineering.storage_silver": "银块", + "block.immersiveengineering.storage_steel": "烧焦的铁块", + "block.immersiveengineering.storage_uranium": "铀块(附赠辐射)", + "block.immersiveengineering.strip_curtain": "条形窗帘", + "block.immersiveengineering.structural_arm": "烧焦的铁结构臂", + "block.immersiveengineering.tank": "流体储罐", + "block.immersiveengineering.tesla_coil": "特斯拉电线", + "block.immersiveengineering.thermoelectric_generator": "热传导吐电器", + "block.immersiveengineering.toolbox": "攻城狮工具箱", + "block.immersiveengineering.transformer": "变压器", + "block.immersiveengineering.transformer_hv": "高压变压器", + "block.immersiveengineering.treated_fence": "腐化木栅栏", + "block.immersiveengineering.treated_post": "木杆", + "block.immersiveengineering.treated_scaffold": "腐化木脚手架", + "block.immersiveengineering.treated_wallmount": "木质壁挂支架", + "block.immersiveengineering.treated_wood_horizontal": "腐化模板", + "block.immersiveengineering.treated_wood_packaged": "腐化模板", + "block.immersiveengineering.treated_wood_vertical": "腐化模板", + "block.immersiveengineering.turntable": "旋转台", + "block.immersiveengineering.turret_chem": "化学喷射炮塔", + "block.immersiveengineering.turret_gun": "机枪炮塔", + "block.immersiveengineering.watermill": "水车", + "block.immersiveengineering.windmill": "风车", + "block.immersiveengineering.windmill_advanced": "改良风车", + "block.immersiveengineering.wooden_barrel": "木桶", + "block.immersiveengineering.workbench": "攻城狮装配台", + "block.minecraft.banner.immersiveengineering_bevels.black": "黑色金属板", + "block.minecraft.banner.immersiveengineering_bevels.blue": "蓝色金属板", + "block.minecraft.banner.immersiveengineering_bevels.brown": "棕色金属板", + "block.minecraft.banner.immersiveengineering_bevels.cyan": "青色金属板", + "block.minecraft.banner.immersiveengineering_bevels.gray": "灰色金属板", + "block.minecraft.banner.immersiveengineering_bevels.green": "原谅色金属板", + "block.minecraft.banner.immersiveengineering_bevels.lightBlue": "淡蓝色金属板", + "block.minecraft.banner.immersiveengineering_bevels.lime": "黄原谅色金属板", + "block.minecraft.banner.immersiveengineering_bevels.magenta": "品红色金属板", + "block.minecraft.banner.immersiveengineering_bevels.orange": "橙色金属板", + "block.minecraft.banner.immersiveengineering_bevels.pink": "粉色金属板", + "block.minecraft.banner.immersiveengineering_bevels.purple": "紫色金属板", + "block.minecraft.banner.immersiveengineering_bevels.red": "红色金属板", + "block.minecraft.banner.immersiveengineering_bevels.silver": "淡灰色金属板", + "block.minecraft.banner.immersiveengineering_bevels.white": "白色金属板", + "block.minecraft.banner.immersiveengineering_bevels.yellow": "黄色金属板", + "block.minecraft.banner.immersiveengineering_hammer.black": "黑色锤子", + "block.minecraft.banner.immersiveengineering_hammer.blue": "蓝色锤子", + "block.minecraft.banner.immersiveengineering_hammer.brown": "棕色锤子", + "block.minecraft.banner.immersiveengineering_hammer.cyan": "青色锤子", + "block.minecraft.banner.immersiveengineering_hammer.gray": "灰色锤子", + "block.minecraft.banner.immersiveengineering_hammer.green": "原谅色锤子", + "block.minecraft.banner.immersiveengineering_hammer.lightBlue": "淡蓝色锤子", + "block.minecraft.banner.immersiveengineering_hammer.lime": "黄原谅色锤子", + "block.minecraft.banner.immersiveengineering_hammer.magenta": "品红色锤子", + "block.minecraft.banner.immersiveengineering_hammer.orange": "橙色锤子", + "block.minecraft.banner.immersiveengineering_hammer.pink": "粉色锤子", + "block.minecraft.banner.immersiveengineering_hammer.purple": "紫色锤子", + "block.minecraft.banner.immersiveengineering_hammer.red": "红色锤子", + "block.minecraft.banner.immersiveengineering_hammer.silver": "淡灰色锤子", + "block.minecraft.banner.immersiveengineering_hammer.white": "白色锤子", + "block.minecraft.banner.immersiveengineering_hammer.yellow": "黄色锤子", + "block.minecraft.banner.immersiveengineering_ornate.black": "黑色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.blue": "蓝色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.brown": "棕色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.cyan": "青色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.gray": "灰色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.green": "原谅色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.lightBlue": "淡蓝色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.lime": "黄原谅色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.magenta": "品红色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.orange": "橙色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.pink": "粉色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.purple": "紫色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.red": "红色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.silver": "淡灰色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.white": "白色精致框架", + "block.minecraft.banner.immersiveengineering_ornate.yellow": "黄色精致框架", + "block.minecraft.banner.immersiveengineering_treated_wood.black": "黑色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.blue": "蓝色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.brown": "棕色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.cyan": "青色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.gray": "灰色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.green": "原谅色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.lightBlue": "淡蓝色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.lime": "黄原谅色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.magenta": "品红色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.orange": "橙色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.pink": "粉色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.purple": "紫色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.red": "红色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.silver": "淡灰色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.white": "白色腐化模板", + "block.minecraft.banner.immersiveengineering_treated_wood.yellow": "黄色腐化模板", + "block.minecraft.banner.immersiveengineering_windmill.black": "黑色风车", + "block.minecraft.banner.immersiveengineering_windmill.blue": "蓝色风车", + "block.minecraft.banner.immersiveengineering_windmill.brown": "棕色风车", + "block.minecraft.banner.immersiveengineering_windmill.cyan": "青色风车", + "block.minecraft.banner.immersiveengineering_windmill.gray": "灰色风车", + "block.minecraft.banner.immersiveengineering_windmill.green": "原谅色风车", + "block.minecraft.banner.immersiveengineering_windmill.lightBlue": "淡蓝色风车", + "block.minecraft.banner.immersiveengineering_windmill.lime": "黄原谅色风车", + "block.minecraft.banner.immersiveengineering_windmill.magenta": "品红色风车", + "block.minecraft.banner.immersiveengineering_windmill.orange": "橙色风车", + "block.minecraft.banner.immersiveengineering_windmill.pink": "粉色风车", + "block.minecraft.banner.immersiveengineering_windmill.purple": "紫色风车", + "block.minecraft.banner.immersiveengineering_windmill.red": "红色风车", + "block.minecraft.banner.immersiveengineering_windmill.silver": "淡灰色风车", + "block.minecraft.banner.immersiveengineering_windmill.white": "白色风车", + "block.minecraft.banner.immersiveengineering_windmill.yellow": "黄色风车", + "block.minecraft.banner.immersiveengineering_wolf.black": "黑色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.blue": "蓝色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.brown": "棕色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.cyan": "青色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.gray": "灰色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.green": "原谅色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.lightBlue": "淡蓝色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.lime": "黄原谅色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.magenta": "品红色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.orange": "橙色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.pink": "粉色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.purple": "紫色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.red": "红色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.silver": "淡灰色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.white": "白色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf.yellow": "黄色灰多洛", + "block.minecraft.banner.immersiveengineering_wolf_l.black": "黑色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.blue": "蓝色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.brown": "棕色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.cyan": "青色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.gray": "灰色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.green": "原谅色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.lightBlue": "淡蓝色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.lime": "黄原谅色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.magenta": "品红色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.orange": "橙色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.pink": "粉色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.purple": "紫色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.red": "红色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.silver": "淡灰色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.white": "白色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_l.yellow": "黄色灰多洛(左)", + "block.minecraft.banner.immersiveengineering_wolf_r.black": "黑色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.blue": "蓝色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.brown": "棕色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.cyan": "青色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.gray": "灰色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.green": "原谅色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.lightBlue": "淡蓝色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.lime": "黄原谅色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.magenta": "品红色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.orange": "橙色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.pink": "粉色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.purple": "紫色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.red": "红色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.silver": "淡灰色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.white": "白色灰多洛(右)", + "block.minecraft.banner.immersiveengineering_wolf_r.yellow": "黄色灰多洛(右)", + "chat.immersiveengineering.command.mineral.get": "该区块含有:%1$s,覆盖:%2$s,耗尽:%3$s", + "chat.immersiveengineering.command.mineral.get.none": "在 %1$s, %2$s 没有矿物被找到", + "chat.immersiveengineering.command.mineral.get.pos": "以 %1$s 为圆心, %2$s, %3$s 为半径", + "chat.immersiveengineering.command.mineral.put.invalid_mineral": "§c'%1$s'不是一个有效矿物名。请使用'/ie mineral list'获取有效矿物名列表。§r", + "chat.immersiveengineering.command.mineral.put.success": " 半径为 %2$s的矿脉 '%1$s' 放置于 %3$s, %4$s", + "chat.immersiveengineering.command.mineral.set_depletion.no_mineral": "在 %1$s, %2$s 不存在矿物", + "chat.immersiveengineering.command.mineral.set_depletion.success": "矿物开采量已设定为 %1$s", + "chat.immersiveengineering.command.shaders.clear.help": "§6用法:/ie shaders clear [player]§r
给指定的玩家清除皮肤,如果没有指定玩家则清除自己的。", + "chat.immersiveengineering.command.shaders.clear.sucess": "皮肤'%1$s'已被清除", + "chat.immersiveengineering.command.shaders.help": "§6用法:/ie shaders §r", + "chat.immersiveengineering.info.averageLoss": "两点间平均能量损耗:%1$s%%", + "chat.immersiveengineering.info.coreDrill.infinite": "无限", + "chat.immersiveengineering.info.coreDrill.progress": "岩芯分析中:%1$s", + "chat.immersiveengineering.info.coreDrill.result.depl": "§7矿脉完整度为%1$s§7", + "chat.immersiveengineering.info.coreDrill.result.mineral": "§7岩芯分析完毕,发现%1$s§7矿脉", + "chat.immersiveengineering.info.coreDrill.result.none": "岩芯分析完毕,未检测到矿物。", + "chat.immersiveengineering.info.coresample.mapDimension": "样本位置不在同一地图维度内", + "chat.immersiveengineering.info.coresample.mapFail": "样本位置不在地图范围内", + "chat.immersiveengineering.info.energyStorage": "存储能量:%1$s/%2$s Flux", + "chat.immersiveengineering.info.energyTransfered": "%1$sticks内平均能量流动:%2$s Flux/t", + "chat.immersiveengineering.info.noGasAllowed": "此容器无法盛装气体!", + "chat.immersiveengineering.info.notOwner": "仅'%1$s'可使用此方块", + "chat.immersiveengineering.info.old_java": "[沉浸工程] §4警告:§r你的爪哇版本为 %1$s ,该版本会导致使用攻城狮手册崩溃。对于此崩溃问题,我们不会进行修复。你可以通过升级爪哇(注意:升级爪哇8版本,而不是使用爪哇9)版本来解决此问题。", + "chat.immersiveengineering.info.pump.placeCobble.false": "这个泵将不再把液体替换为鹅卵石。§6警告:§f在处理大量液体时可能会产生延迟不建议使用!", + "chat.immersiveengineering.info.pump.placeCobble.true": "这个泵可以将液体替换为鹅卵石。", + "chat.immersiveengineering.info.rsControl.invertedOff": "反相雷石东信号控制:关", + "chat.immersiveengineering.info.rsControl.invertedOn": "反相雷石东信号控制:开", + "chat.immersiveengineering.info.rsControl.strongSignal.false": "高频雷石东信号:关", + "chat.immersiveengineering.info.rsControl.strongSignal.true": "高频雷石东信号:开", + "chat.immersiveengineering.info.rsSignal.invertedOff": "反相雷石东信号:关", + "chat.immersiveengineering.info.rsSignal.invertedOn": "反相雷石东信号:开", + "chat.immersiveengineering.info.skyhookLimited": "天钩将自动限制它的速度", + "chat.immersiveengineering.info.skyhookUnlimited": "天钩的速度已不受限制", + "chat.immersiveengineering.info.survey.direction.0": "南", + "chat.immersiveengineering.info.survey.direction.1": "西南", + "chat.immersiveengineering.info.survey.direction.2": "西", + "chat.immersiveengineering.info.survey.direction.3": "西北", + "chat.immersiveengineering.info.survey.direction.4": "北", + "chat.immersiveengineering.info.survey.direction.5": "东北", + "chat.immersiveengineering.info.survey.direction.6": "东", + "chat.immersiveengineering.info.survey.direction.7": "东南", + "chat.immersiveengineering.info.survey.finished": "关于此矿脉,未发现更多信息", + "chat.immersiveengineering.info.survey.hint.1": "这里有%1$s的痕迹。", + "chat.immersiveengineering.info.survey.hint.2": "这里%1$s的痕迹暗示%2$s方向有矿脉。", + "chat.immersiveengineering.info.survey.hint.3": "有%1$s矿脉在约%2$s向%3$s处。", + "chat.immersiveengineering.info.survey.hint.center": "这里就有一个%1$s矿脉!", + "chat.immersiveengineering.info.survey.no_vein": "此处未发现矿物痕迹", + "chat.immersiveengineering.info.survey.too_close": "距离上个检查点过近", + "chat.immersiveengineering.info.survey.wrong_block": "此方块不能用于矿物勘测", + "chat.immersiveengineering.info.tesla.highPower": "能量模式:高", + "chat.immersiveengineering.info.tesla.lowPower": "能量模式:低", + "chat.immersiveengineering.info.tickrate": "此方块将每%1$s刻激活一次", + "chat.immersiveengineering.info.tooHot": "此容器无法承受该液体的温度!", + "chat.immersiveengineering.warning.cantSee": "连接被阻断", + "chat.immersiveengineering.warning.connectionExists": "连接已存在", + "chat.immersiveengineering.warning.invalidPoint": "存在无效连接点", + "chat.immersiveengineering.warning.sameConnection": "你不能将线缆接在同一个点上", + "chat.immersiveengineering.warning.tooFar": "你离上一个连接点太远了", + "chat.immersiveengineering.warning.wrongCable": "你无法在此处连接线缆", + "chat.immersiveengineering.warning.wrongDimension": "你处在一个错误的世界中", + "death.attack.ieAcid": "%1$s尝试在酸里面洗澡", + "death.attack.ieCrushed": "%1$s磨成了饺子馅(没有菜)", + "death.attack.ieRailgun": "%1$s被%2$s的磁轨炮刺穿了", + "death.attack.ieRazorShock": "%1$s摸了通电的刀片刺网", + "death.attack.ieRazorWire": "%1$s去戳刀片刺网结果反被戳死了", + "death.attack.ieRevolver_armorPiercing": "%1$s被%2$s搞死了", + "death.attack.ieRevolver_armorPiercing.item": "%1$s被%2$s使用的%3$s搞死了", + "death.attack.ieRevolver_armorPiercing.turret": "%1$s被炮塔炸死", + "death.attack.ieRevolver_buckshot": "%1$s被%2$s当成猎物搞死了", + "death.attack.ieRevolver_buckshot.item": "%1$s被%2$s使用的%3$s射杀", + "death.attack.ieRevolver_buckshot.turret": "%1$s被炮塔炸死了", + "death.attack.ieRevolver_casull": "%1$s被%2$s搞死了", + "death.attack.ieRevolver_casull.item": "%1$s被%2$s使用的%3$s搞死了", + "death.attack.ieRevolver_casull.turret": "%1$s被炮塔击中了", + "death.attack.ieRevolver_dragonsbreath": "%1$s被%2$s的口水淹死了", + "death.attack.ieRevolver_dragonsbreath.item": "%1$s被%2$s使用的%3$s烤熟了", + "death.attack.ieRevolver_dragonsbreath.turret": "%1$s被炮塔烤熟了", + "death.attack.ieRevolver_homing": "%1$s被%2$s的叶绿弹搞死了", + "death.attack.ieRevolver_homing.item": "%1$s被%2$s的%3$s子弹搞死了", + "death.attack.ieRevolver_homing.turret": "%1$s被炮塔搞死了", + "death.attack.ieRevolver_potion": "%1$s尝试在%2$s射出的药液中洗澡", + "death.attack.ieRevolver_potion.item": "%1$s被%2$s的%3$s射出的药液呛死了", + "death.attack.ieRevolver_potion.turret": "%1$s被炮塔的溶液射击呛死了", + "death.attack.ieRevolver_silver": "%1$s被%2$s的银弹洗干净了", + "death.attack.ieRevolver_silver.item": "%1$s被%2$s的%3$s射出的银弹洗干净了", + "death.attack.ieRevolver_silver.turret": "%1$s被炮塔发出的银弹洗干净了", + "death.attack.ieRevolver_wolfpack": "%1$s 被 %2$s 的灰多洛群弹头们撕成碎片", + "death.attack.ieRevolver_wolfpack.item": "%1$s被%2$s用%3$s切碎了", + "death.attack.ieRevolver_wolfpack.turret": "%1$s被炮塔撕碎了", + "death.attack.ieSawmill": "%1$s掉入锯木机", + "death.attack.ieTesla": "%1$s被特斯拉电线烤成了焦炭", + "death.attack.ieTeslaPrimary": "%1$s触碰到了特斯拉电线的主电缆", + "death.attack.ieWireShock": "%1$s小心触碰到未绝缘电线", + "desc.immersiveengineering.flavour.barrel": "破坏时仍保留其中液体!", + "desc.immersiveengineering.flavour.barrelTemp": "不能储存高温液体", + "desc.immersiveengineering.flavour.buzzsaw.bladeDamage": "锯条状态:", + "desc.immersiveengineering.flavour.buzzsaw.noBlade": "未配置锯条", + "desc.immersiveengineering.flavour.coil.construction0": "只 是 好 康", + "desc.immersiveengineering.flavour.coil.construction1": "毫 无 软 用", + "desc.immersiveengineering.flavour.coil.redstone": "传输雷石东信号", + "desc.immersiveengineering.flavour.crate": "被搞掉时不会漏!", + "desc.immersiveengineering.flavour.drill.empty": "无", + "desc.immersiveengineering.flavour.drill.fuel": "燃料:", + "desc.immersiveengineering.flavour.drill.headDamage": "钻头状态:", + "desc.immersiveengineering.flavour.drill.noHead": "未装配钻头", + "desc.immersiveengineering.flavour.drillhead.damage": "攻击伤害:%1$s", + "desc.immersiveengineering.flavour.drillhead.level": "采矿等级:%1$s", + "desc.immersiveengineering.flavour.drillhead.size": "采矿区域:%1$sx%1$sx%2$s", + "desc.immersiveengineering.flavour.drillhead.speed": "采矿速度:%1$s", + "desc.immersiveengineering.flavour.fluidStack": "%1$s: %2$s/%3$smB", + "desc.immersiveengineering.flavour.revolver": "让你们亢奋一下!", + "desc.immersiveengineering.flavour.revolver.bee": "苦痛", + "desc.immersiveengineering.flavour.revolver.dev": "弑君!", + "desc.immersiveengineering.flavour.revolver.earthshaker": "挥之不去的意志", + "desc.immersiveengineering.flavour.revolver.fenrir": "没什么我不珍惜!", + "desc.immersiveengineering.flavour.revolver.infinity": "你只需要一点Infinity", + "desc.immersiveengineering.flavour.revolver.nerf": "未成年人可安全玩耍", + "desc.immersiveengineering.flavour.revolver.noName": "窥视到黑暗", + "desc.immersiveengineering.flavour.revolver.oathkeeper": "寻路者", + "desc.immersiveengineering.flavour.revolver.oblivion": "往昔之忆", + "desc.immersiveengineering.flavour.revolver.patreonBlu": "猎人的选择", + "desc.immersiveengineering.flavour.revolver.patreonHazard": "独家DLC", + "desc.immersiveengineering.flavour.revolver.rommie": "包括针对AI“Rommie”!", + "desc.immersiveengineering.flavour.revolver.rose": "外表中充斥着欺骗", + "desc.immersiveengineering.flavour.revolver.sns": "鲜血、汗水、蒸汽、烧焦的铁铁", + "desc.immersiveengineering.flavour.revolver.superchief": "CHOO CHOO!", + "desc.immersiveengineering.flavour.revolver.tesla": "一个令人震惊的发明!", + "desc.immersiveengineering.flavour.revolver.warlord": "不要带走我的玩具!", + "desc.immersiveengineering.flavour.skyhook": "旅行的全新方式", + "desc.immersiveengineering.flavour.skyhook.noLimit": "不限速", + "desc.immersiveengineering.flavour.skyhook.speedLimit": "限速", + "desc.immersiveengineering.flavour.slab_treated_wood_horizontal": "水平花纹", + "desc.immersiveengineering.flavour.slab_treated_wood_packaged": "板条花纹", + "desc.immersiveengineering.flavour.slab_treated_wood_vertical": "垂直花纹", + "desc.immersiveengineering.flavour.stairs_treated_wood_horizontal": "水平花纹", + "desc.immersiveengineering.flavour.stairs_treated_wood_packaged": "板条花纹", + "desc.immersiveengineering.flavour.stairs_treated_wood_vertical": "垂直花纹", + "desc.immersiveengineering.flavour.toolupgrade_buzzsaw_spareblades": "携带更多光头强电锯的锯条", + "desc.immersiveengineering.flavour.toolupgrade_chemthrower_focus": "减少化学喷射器的喷射速度,并增加其范围", + "desc.immersiveengineering.flavour.toolupgrade_chemthrower_multitank": "为化学喷射器配备化学液体罐", + "desc.immersiveengineering.flavour.toolupgrade_drill_capacity": "提升采矿机械钻、光头强电锯和化学喷射器的内部燃料储量", + "desc.immersiveengineering.flavour.toolupgrade_drill_damage": "提升采矿机械钻攻击伤害,最高叠加至3点", + "desc.immersiveengineering.flavour.toolupgrade_drill_lube": "减少采矿机械钻受到的损耗", + "desc.immersiveengineering.flavour.toolupgrade_drill_waterproof": "允许采矿机械钻在水下工作", + "desc.immersiveengineering.flavour.toolupgrade_railgun_capacitors": "减少充电时间,并增加磁轨炮的能量存储", + "desc.immersiveengineering.flavour.toolupgrade_railgun_scope": "可以让磁轨炮视野放大", + "desc.immersiveengineering.flavour.toolupgrade_revolver_bayonet": "为左轮手枪添加近战伤害", + "desc.immersiveengineering.flavour.toolupgrade_revolver_electro": "左轮手枪射击造成电击伤害", + "desc.immersiveengineering.flavour.toolupgrade_revolver_magazine": "提升左轮手枪弹夹容量", + "desc.immersiveengineering.flavour.toolupgrade_shield_flash": "制作一个来闪瞎你的眼", + "desc.immersiveengineering.flavour.toolupgrade_shield_magnet": "按下按钮装上盾牌", + "desc.immersiveengineering.flavour.toolupgrade_shield_shock": "通过加速投掷物冲击目标", + "desc.immersiveengineering.flavour.treated_wood_horizontal": "水平花纹", + "desc.immersiveengineering.flavour.treated_wood_packaged": "板条花纹", + "desc.immersiveengineering.flavour.treated_wood_vertical": "垂直花纹", + "desc.immersiveengineering.info.attachedTo": "连接从%1$s,%2$s,%3$s", + "desc.immersiveengineering.info.attachedToDim": "连接从%4$s世界的%1$s,%2$s,%3$s", + "desc.immersiveengineering.info.blastFuelTime": "烧制时间: %1$s", + "desc.immersiveengineering.info.blockSide.connectEnergy.INPUT": "吃电", + "desc.immersiveengineering.info.blockSide.connectEnergy.NONE": "无连接", + "desc.immersiveengineering.info.blockSide.connectEnergy.OUTPUT": "吐电", + "desc.immersiveengineering.info.blockSide.connectFluid.-1": "无连接", + "desc.immersiveengineering.info.blockSide.connectFluid.0": "喝水", + "desc.immersiveengineering.info.blockSide.connectFluid.1": "倒水", + "desc.immersiveengineering.info.blockSide.down": "下面", + "desc.immersiveengineering.info.blockSide.east": "东面", + "desc.immersiveengineering.info.blockSide.facing": "正面", + "desc.immersiveengineering.info.blockSide.io.-1": "无连接", + "desc.immersiveengineering.info.blockSide.io.0": "输入", + "desc.immersiveengineering.info.blockSide.io.1": "输出", + "desc.immersiveengineering.info.blockSide.north": "北面", + "desc.immersiveengineering.info.blockSide.opposite": "反面", + "desc.immersiveengineering.info.blockSide.south": "南面", + "desc.immersiveengineering.info.blockSide.up": "上面", + "desc.immersiveengineering.info.blockSide.west": "西面", + "desc.immersiveengineering.info.blueprint.bannerpatterns": "旗帜图案", + "desc.immersiveengineering.info.blueprint.bullet": "普通子弹", + "desc.immersiveengineering.info.blueprint.components": "制作组件", + "desc.immersiveengineering.info.blueprint.creates0": "可制作:§6按住Shift查看§r", + "desc.immersiveengineering.info.blueprint.creates1": "可制作:", + "desc.immersiveengineering.info.blueprint.electrode": "电弧炉电极", + "desc.immersiveengineering.info.blueprint.molds": "模板", + "desc.immersiveengineering.info.blueprint.specialBullet": "特种子弹", + "desc.immersiveengineering.info.bullet.flareColour": "信号颜色: ", + "desc.immersiveengineering.info.chance": "概率:", + "desc.immersiveengineering.info.colour": "颜色:%1$s", + "desc.immersiveengineering.info.colour.blue": "蓝:%1s", + "desc.immersiveengineering.info.colour.green": "绿:%1s", + "desc.immersiveengineering.info.colour.red": "红:%1s", + "desc.immersiveengineering.info.coresample.infinite": "无限产量", + "desc.immersiveengineering.info.coresample.mineral": "%1$s矿脉", + "desc.immersiveengineering.info.coresample.noMineral": "没有矿物", + "desc.immersiveengineering.info.coresample.noTimestamp": "样本提取于:%1$s之前", + "desc.immersiveengineering.info.coresample.pos": "%1$s 到 %2$s", + "desc.immersiveengineering.info.coresample.saturation": "饱和度: %1$s%%", + "desc.immersiveengineering.info.coresample.timestamp": "样本提取于:%1$s", + "desc.immersiveengineering.info.coresample.timezone": "该样本在不同的时区/维度提取", + "desc.immersiveengineering.info.coresample.yield": "产出期望:%1$s石头", + "desc.immersiveengineering.info.day": "%1$s天", + "desc.immersiveengineering.info.durability": "耐久:%1$s", + "desc.immersiveengineering.info.electrodeIntegrity": "完整度 %1$s %%", + "desc.immersiveengineering.info.energyStored": "存储能量:%1$s Flux", + "desc.immersiveengineering.info.energyStoredEU": "存储能量:%1$s EU", + "desc.immersiveengineering.info.fertFill": "肥料:%1$s", + "desc.immersiveengineering.info.fertMod": "催熟:%1$s", + "desc.immersiveengineering.info.filter.fuzzy": "过滤器:模糊
在过滤物品时
无视物品迫害值。", + "desc.immersiveengineering.info.filter.nbt": "过滤器:NBT数据
基于NBT数据对
物品进行过滤。", + "desc.immersiveengineering.info.filter.oreDict": "过滤器:矿物词典
基于矿物词典
名称过滤物品。", + "desc.immersiveengineering.info.fluidStored": "%1$s %2$s mB", + "desc.immersiveengineering.info.gasStored": "存储气体:%1$s", + "desc.immersiveengineering.info.holdShift": "§6按住Shift§r", + "desc.immersiveengineering.info.holdShiftForInfo": "§8按住shift显示更多§r", + "desc.immersiveengineering.info.hour": "%1$s小时", + "desc.immersiveengineering.info.ift": "%1$s IF / tick", + "desc.immersiveengineering.info.mineral.auricupride": "金铜石", + "desc.immersiveengineering.info.mineral.beryl": "铯绿柱石石", + "desc.immersiveengineering.info.mineral.cassiterite": "锡石石", + "desc.immersiveengineering.info.mineral.chalcopyrite": " 黄铜石", + "desc.immersiveengineering.info.mineral.cinnabar": "朱砂石", + "desc.immersiveengineering.info.mineral.cooperite": "硫砷铂石", + "desc.immersiveengineering.info.mineral.galena": "方铅石", + "desc.immersiveengineering.info.mineral.igneous_rock": "混合石头", + "desc.immersiveengineering.info.mineral.laterite": "铁矾土石", + "desc.immersiveengineering.info.mineral.mephitic_quarzite": "硫石英石", + "desc.immersiveengineering.info.mineral.pentlandite": "镍(niè)黄铁石", + "desc.immersiveengineering.info.mineral.uraninite": " 沥青铀(附赠辐射)", + "desc.immersiveengineering.info.mineral.wolframite": "猛男铁石", + "desc.immersiveengineering.info.mininglvl.-1": "无", + "desc.immersiveengineering.info.mininglvl.0": "§7石头", + "desc.immersiveengineering.info.mininglvl.1": "§4铁", + "desc.immersiveengineering.info.mininglvl.2": "§c雷石东", + "desc.immersiveengineering.info.mininglvl.3": "§d黑曜石", + "desc.immersiveengineering.info.mininglvl.4": "§9钴", + "desc.immersiveengineering.info.mininglvl.5": "§5卡普兰", + "desc.immersiveengineering.info.mininglvl.6": "§5卡普兰§d+", + "desc.immersiveengineering.info.minute": "%1$s分", + "desc.immersiveengineering.info.multiblock.IE:AlloySmelter": "合金窑", + "desc.immersiveengineering.info.multiblock.IE:ArcFurnace": "电弧炉", + "desc.immersiveengineering.info.multiblock.IE:Assembler": "装配机", + "desc.immersiveengineering.info.multiblock.IE:AutoWorkbench": "自动化攻城狮装配台", + "desc.immersiveengineering.info.multiblock.IE:BlastFurnace": "高炉", + "desc.immersiveengineering.info.multiblock.IE:BlastFurnaceAdvanced": "强化高炉", + "desc.immersiveengineering.info.multiblock.IE:BottlingMachine": "灌装机", + "desc.immersiveengineering.info.multiblock.IE:BucketWheel": "斗轮", + "desc.immersiveengineering.info.multiblock.IE:CokeOven": "焦炉", + "desc.immersiveengineering.info.multiblock.IE:Crusher": "粉碎机", + "desc.immersiveengineering.info.multiblock.IE:DieselGenerator": "柴油吐电器", + "desc.immersiveengineering.info.multiblock.IE:Excavator": "挖掘机", + "desc.immersiveengineering.info.multiblock.IE:Fermenter": "工业发酵机", + "desc.immersiveengineering.info.multiblock.IE:Lightningrod": "避雷针", + "desc.immersiveengineering.info.multiblock.IE:MetalPress": "金属冲压机", + "desc.immersiveengineering.info.multiblock.IE:Mixer": "混合器", + "desc.immersiveengineering.info.multiblock.IE:Refinery": "炼油厂", + "desc.immersiveengineering.info.multiblock.IE:Sawmill": "锯木机", + "desc.immersiveengineering.info.multiblock.IE:SheetmetalTank": "流体储罐", + "desc.immersiveengineering.info.multiblock.IE:Silo": "储物筒仓", + "desc.immersiveengineering.info.multiblock.IE:Squeezer": "工业挤压机", + "desc.immersiveengineering.info.multiblockForbidden": "禁用多方块结构:", + "desc.immersiveengineering.info.multiblocksAllowed": "可用多方块结构:", + "desc.immersiveengineering.info.oreDict.off": "矿物词典:禁用", + "desc.immersiveengineering.info.oreDict.on": "矿物词典:启用", + "desc.immersiveengineering.info.percent": "%1$s%%", + "desc.immersiveengineering.info.potionMod": "药剂被%1$s添加", + "desc.immersiveengineering.info.redstoneChannel": "频道:%1$s", + "desc.immersiveengineering.info.redstoneChannel.rec": "频道接受中:%1$s", + "desc.immersiveengineering.info.redstoneChannel.send": "频道发送中:%1$s", + "desc.immersiveengineering.info.reqMaterial": "所需材料:", + "desc.immersiveengineering.info.revolver.perk.cooldown": "射击速度: %1$s%%", + "desc.immersiveengineering.info.revolver.perk.cooldown.tier-1": "较慢的 %1$s", + "desc.immersiveengineering.info.revolver.perk.cooldown.tier-2": "慢的 %1$s", + "desc.immersiveengineering.info.revolver.perk.cooldown.tier-3": "很慢的 %1$s", + "desc.immersiveengineering.info.revolver.perk.cooldown.tier1": "较快的 %1$s", + "desc.immersiveengineering.info.revolver.perk.cooldown.tier2": "快的 %1$s", + "desc.immersiveengineering.info.revolver.perk.cooldown.tier3": "很快的 %1$s", + "desc.immersiveengineering.info.revolver.perk.luck": "幸运: %1$s%%", + "desc.immersiveengineering.info.revolver.perk.luck.tier-1": "不顺的 %1$s", + "desc.immersiveengineering.info.revolver.perk.luck.tier-2": "不幸的 %1$s", + "desc.immersiveengineering.info.revolver.perk.luck.tier-3": "非酋的 %1$s", + "desc.immersiveengineering.info.revolver.perk.luck.tier1": "平顺的 %1$s", + "desc.immersiveengineering.info.revolver.perk.luck.tier2": "幸运的 %1$s", + "desc.immersiveengineering.info.revolver.perk.luck.tier3": "欧皇的 %1$s", + "desc.immersiveengineering.info.revolver.perk.noise": "噪声: %1$s%%", + "desc.immersiveengineering.info.revolver.perk.noise.tier-1": "吵闹的 %1$s", + "desc.immersiveengineering.info.revolver.perk.noise.tier-2": "大声的 %1$s", + "desc.immersiveengineering.info.revolver.perk.noise.tier-3": "狂叫的 %1$s", + "desc.immersiveengineering.info.revolver.perk.noise.tier1": "轻声的 %1$s", + "desc.immersiveengineering.info.revolver.perk.noise.tier2": "安静的 %1$s", + "desc.immersiveengineering.info.revolver.perk.noise.tier3": "无声的 %1$s", + "desc.immersiveengineering.info.second": "%1$s秒", + "desc.immersiveengineering.info.seconds": "%1$s 秒", + "desc.immersiveengineering.info.shader.applyTo": "可应用于:", + "desc.immersiveengineering.info.shader.details": "§l附加信息§r:", + "desc.immersiveengineering.info.shader.details.ancient": "以古代Sheikah技术命名和设计", + "desc.immersiveengineering.info.shader.details.angelsthesis": "以主题曲命名,基于新世纪福音战士单位EVA-01的配色方案。", + "desc.immersiveengineering.info.shader.details.argo": "没有确切的参考,但风格以及颜色是出自视频游戏“命运”的灵感。", + "desc.immersiveengineering.info.shader.details.astartes": "按照40k宇宙中螺栓手枪的传统配色方案设计。", + "desc.immersiveengineering.info.shader.details.chloris": "由Reese Chloris挥舞着/左轮手枪命名和设计。", + "desc.immersiveengineering.info.shader.details.crescentrose": "由Ruby Rose执导的“高素质狙击手”命名和设计。", + "desc.immersiveengineering.info.shader.details.crimsonlotus": "参考主要和名誉枪手后命名和设计的。", + "desc.immersiveengineering.info.shader.details.darkfire": "在Riku和Terra所雇用的黑暗之火之后命名和设计。", + "desc.immersiveengineering.info.shader.details.dominator": "参考大规模动画系列的本子而设计。", + "desc.immersiveengineering.info.shader.details.dragonsbreath": "命名和设计和某个火箭发射器的同名。", + "desc.immersiveengineering.info.shader.details.erruption": "没有具体的参考,只是使用原版纹理,特别是裂纹。", + "desc.immersiveengineering.info.shader.details.exia": "高达机动战士后命名和设计。", + "desc.immersiveengineering.info.shader.details.eyas": "在手提包“Eyasluna”之后命名和设计的。Hawkmoon的小弟弟。", + "desc.immersiveengineering.info.shader.details.felix": "在RvB季节11-13之后,雇佣军的“Felix”命名和着色。", + "desc.immersiveengineering.info.shader.details.fox": "很蓬松,以具体的IRC频道及其居民的名义命名。", + "desc.immersiveengineering.info.shader.details.glacis": "没有特别的灵感,决定尝试透明度。", + "desc.immersiveengineering.info.shader.details.harrowed": "在英雄“国王的秋天”的武器之后设计。", + "desc.immersiveengineering.info.shader.details.hawk": "命名和设计和某个手提箱“Hawkmoon”有关。", + "desc.immersiveengineering.info.shader.details.hollow": "以世界“空心堡垒”命名和设计。", + "desc.immersiveengineering.info.shader.details.ikelos": "仿照Warmind Rasputin和IKELOS武器射击。", + "desc.immersiveengineering.info.shader.details.kindled": "旨在将原版纹理和动画结合到皮肤中。", + "desc.immersiveengineering.info.shader.details.locus": "命名和颜色来自“雇佣兵的轨迹”在RvB季11-13。", + "desc.immersiveengineering.info.shader.details.lususnaturae": "在第4卷音乐之后命名。此外,这个名字听起来很糟糕。", + "desc.immersiveengineering.info.shader.details.magnum": "由比赛获胜者设计!", + "desc.immersiveengineering.info.shader.details.massfusion": "设计参考“辐射系列”的能量武器。", + "desc.immersiveengineering.info.shader.details.matrix": "没有特别的灵感,只是用于管道覆盖。", + "desc.immersiveengineering.info.shader.details.microshark": "以Minishark(迷你鲨)和Megashark(巨兽鲨)机枪的名义参考并设计。", + "desc.immersiveengineering.info.shader.details.milo": "被Pyrrha Nikos挥舞着的矛/步枪命名和设计。", + "desc.immersiveengineering.info.shader.details.n7": "联盟特种部队的最高名称后命名和设计。", + "desc.immersiveengineering.info.shader.details.netherforged": "用原版方舟快乐块做出的小尝试。也许灵感来源于DOOM?", + "desc.immersiveengineering.info.shader.details.normandy": "在参考诺曼底SR2在其联盟配色方案命名和设计。", + "desc.immersiveengineering.info.shader.details.omnitool": "参考全息多光子命名和设计。", + "desc.immersiveengineering.info.shader.details.phoenix": "没有特别的灵感,只是渐变式皮肤的另一个用途。", + "desc.immersiveengineering.info.shader.details.qrow": "以Qrow Branwen命名,并在他的剑/镰刀之后设计。", + "desc.immersiveengineering.info.shader.details.radiant": "以世界“辐射花园”命名和设计。", + "desc.immersiveengineering.info.shader.details.regal": "在“国王的秋季”袭击后的武器设计。", + "desc.immersiveengineering.info.shader.details.rosequartz": "第一个皮肤的历史!
没有确切的参考,虽然这个名字本身是受到“Inkheart”系列小说中的一个角色的启发", + "desc.immersiveengineering.info.shader.details.sharkface": "在RvB季节9和13中的雇佣军“鲨鱼面”之后命名和着色。", + "desc.immersiveengineering.info.shader.details.sponsor": "显而易见的设计参考“辐射系列”。", + "desc.immersiveengineering.info.shader.details.stormflower": "由雷仁挥舞着刀刃的SMGs命名和设计。", + "desc.immersiveengineering.info.shader.details.sunstrike": "没有确切的参考,但是名字以及颜色的灵感源于于电影《Destiny》中的Sunbreaker Titans。", + "desc.immersiveengineering.info.shader.details.sutherland": "在圣洁不列颠帝国使用的骑士框架之后命名和设计。", + "desc.immersiveengineering.info.shader.details.taken": "在“被摄”的敌人之后设计。", + "desc.immersiveengineering.info.shader.details.terra": "受益于‘活木’和‘泰拉烧焦的铁’的纹理,并融合了一些Botania(植物魔法)纹理。", + "desc.immersiveengineering.info.shader.details.trident": "在海王星Vasilias挥舞的lasergun / spear后命名和设计。", + "desc.immersiveengineering.info.shader.details.twili": "以同名的比赛命名和设计。", + "desc.immersiveengineering.info.shader.details.usurper": "命名和设计参考Zant,篡夺王位。", + "desc.immersiveengineering.info.shader.details.vanguard": "在先锋阵营之后命名和着色。", + "desc.immersiveengineering.info.shader.details.vaulttec": "颜色和命名在已经很明显了", + "desc.immersiveengineering.info.shader.details.waaagh": "黄色原谅色最大的BOOOMS!
设计明确地提到40k宇宙中的Orks。", + "desc.immersiveengineering.info.shader.details.warbird": "设计灵感来自世界大战的飞机。", + "desc.immersiveengineering.info.shader.immersiveengineering:balloon": "气球", + "desc.immersiveengineering.info.shader.immersiveengineering:banner": "旗帜", + "desc.immersiveengineering.info.shader.immersiveengineering:buzzsaw": "光头强电锯", + "desc.immersiveengineering.info.shader.immersiveengineering:chemthrower": "化学喷射器", + "desc.immersiveengineering.info.shader.immersiveengineering:drill": "岩心钻井", + "desc.immersiveengineering.info.shader.immersiveengineering:minecart": "矿车", + "desc.immersiveengineering.info.shader.immersiveengineering:railgun": "磁轨炮", + "desc.immersiveengineering.info.shader.immersiveengineering:revolver": "左轮手枪", + "desc.immersiveengineering.info.shader.immersiveengineering:shield": "重型盾牌", + "desc.immersiveengineering.info.shader.level": "等级: ", + "desc.immersiveengineering.info.shader.rarity.common": "常见", + "desc.immersiveengineering.info.shader.rarity.epic": "史诗", + "desc.immersiveengineering.info.shader.rarity.ie_masterwork": "杰作", + "desc.immersiveengineering.info.shader.rarity.rare": "稀有", + "desc.immersiveengineering.info.shader.rarity.uncommon": "还行", + "desc.immersiveengineering.info.shader.reference": "§l参考冲水文化§r:", + "desc.immersiveengineering.info.shader.set": "§l皮肤§r:", + "desc.immersiveengineering.info.ticks": "%1$s Ticks", + "desc.immersiveengineering.info.toolbox.any": "任意物品", + "desc.immersiveengineering.info.toolbox.food": "食物", + "desc.immersiveengineering.info.toolbox.tool": "工具", + "desc.immersiveengineering.info.toolbox.wire": "线材", + "effect.immersiveengineering.concrete_feet": "凝滞", + "effect.immersiveengineering.conductive": "导电", + "effect.immersiveengineering.flammable": "易燃", + "effect.immersiveengineering.flashed": "闪光", + "effect.immersiveengineering.slippery": "易滑", + "effect.immersiveengineering.sticky": "粘性", + "effect.immersiveengineering.stunned": "眩晕", + "entity.immersiveengineering.explosive.name": "爆炸物", + "entity.immersiveengineering.fluorescentTube.name": "荧光管", + "entity.immersiveengineering.skylineHook.name": "天钩", + "entity.minecraft.villager.immersiveengineering.electrician": "电工", + "entity.minecraft.villager.immersiveengineering.engineer": "结构攻城狮", + "entity.minecraft.villager.immersiveengineering.gunsmith": "军火商", + "entity.minecraft.villager.immersiveengineering.machinist": "机械师", + "entity.minecraft.villager.immersiveengineering.outfitter": "皮肤商", + "fluid.constantan": "康铜汁", + "fluid.immersiveengineering.biodiesel": "暴徒柴油", + "fluid.immersiveengineering.concrete": "液态具体的", + "fluid.immersiveengineering.creosote": "杂酚油", + "fluid.immersiveengineering.ethanol": "酒精", + "fluid.immersiveengineering.herbicide": "除草剂", + "fluid.immersiveengineering.plantoil": "橄榄油(菜籽油)", + "fluid.immersiveengineering.potion": "溶液", + "fluid.uranium": "铀汁(附赠辐射)", + "gui.immersiveengineering.assembler.nospace": "所有空位已满!", + "gui.immersiveengineering.blastFurnace": "高炉", + "gui.immersiveengineering.blastFurnace.fuel": "燃料", + "gui.immersiveengineering.blast_furnace.preheaters": "Preheaters", + "gui.immersiveengineering.config.arcfurnace.distribute": "均分输入", + "gui.immersiveengineering.config.assembler.clearRecipe": "清除配方", + "gui.immersiveengineering.config.assembler.nonRecursiveIngredients": "不循环使用材料", + "gui.immersiveengineering.config.assembler.recursiveIngredients": "循环使用材料", + "gui.immersiveengineering.config.earmuffs.noisegate": "噪音过滤", + "gui.immersiveengineering.config.earmuffs.soundcategory.ambient": "环境", + "gui.immersiveengineering.config.earmuffs.soundcategory.block": "方块", + "gui.immersiveengineering.config.earmuffs.soundcategory.hostile": "迫害暴徒", + "gui.immersiveengineering.config.earmuffs.soundcategory.music": "音乐", + "gui.immersiveengineering.config.earmuffs.soundcategory.neutral": "不迫害暴徒", + "gui.immersiveengineering.config.earmuffs.soundcategory.player": "玩家", + "gui.immersiveengineering.config.earmuffs.soundcategory.record": "音符盒", + "gui.immersiveengineering.config.earmuffs.soundcategory.weather": "天气", + "gui.immersiveengineering.config.item_batcher.batchmode": "输出模式:", + "gui.immersiveengineering.config.item_batcher.batchmode.ALL": "当所有过滤器都满足条件时输出", + "gui.immersiveengineering.config.item_batcher.batchmode.SINGLE": "当有过滤器满足条件时输出", + "gui.immersiveengineering.config.item_batcher.buffer": "缓冲器", + "gui.immersiveengineering.config.item_batcher.filter": "过滤器", + "gui.immersiveengineering.config.item_batcher.redstone_color": "雷石东信号颜色:", + "gui.immersiveengineering.config.mixer.outputAll": "输出所有流体", + "gui.immersiveengineering.config.mixer.outputSingle": "仅输出底部流体", + "gui.immersiveengineering.config.redstone_color": "雷石东信号颜色:", + "gui.immersiveengineering.config.redstone_color_receiving": "接收到信号的颜色:", + "gui.immersiveengineering.config.redstone_color_sending": "发送信号的颜色:", + "gui.immersiveengineering.config.redstone_iomode": "雷石东输入输出模式:", + "gui.immersiveengineering.config.turret.add": "添加", + "gui.immersiveengineering.config.turret.animals": "动物", + "gui.immersiveengineering.config.turret.blacklist": "黑名单", + "gui.immersiveengineering.config.turret.expel_casings_off": "上弹", + "gui.immersiveengineering.config.turret.expel_casings_on": "驱除弹", + "gui.immersiveengineering.config.turret.ignite_fluid": "易燃流体", + "gui.immersiveengineering.config.turret.neutrals": "中立暴徒", + "gui.immersiveengineering.config.turret.players": "玩家", + "gui.immersiveengineering.empty": "空", + "gui.immersiveengineering.left": "左:", + "gui.immersiveengineering.right": "右:", + "ie.manual.currentVersion": " - 当前", + "ie.manual.entry.mineralsDimAny": "§l%1$s§r 是可在任何维度找到的矿脉.", + "ie.manual.entry.mineralsDimInvalid": "§l%1$s§r 是除了 %2$s 都能找到的矿脉.", + "ie.manual.entry.mineralsDimValid": "§l%1$s§r 是可以在 %2$s 找到的矿脉.", + "ie.manual.entry.minerals_desc": "%1$s\n 它由 %2$s 组成.", + "ie.manual.entry.shaderList.name": "皮肤列表", + "ie.manual.entry.shaderList.noInfo": "未解锁此皮肤!", + "ie.manual.entry.shaderList.order": "获得:", + "ie.manual.entry.shaderList.unlock": "解锁皮肤", + "ie.manual.newerVersion": " - 新版本!", + "immersiveengineering.config.title": "", + "item.immersiveengineering.armor_faraday_chest": "法拉第胸甲", + "item.immersiveengineering.armor_faraday_feet": "法拉第靴子", + "item.immersiveengineering.armor_faraday_head": "法拉第头盔", + "item.immersiveengineering.armor_faraday_legs": "法拉第护腿", + "item.immersiveengineering.armor_steel_chest": "烧焦的铁胸甲", + "item.immersiveengineering.armor_steel_feet": "烧焦的铁靴", + "item.immersiveengineering.armor_steel_head": "烧焦的铁盔", + "item.immersiveengineering.armor_steel_legs": "烧焦的铁腿甲", + "item.immersiveengineering.axe_steel": "烧焦的老铁斧", + "item.immersiveengineering.bannerpattern_bevels": "旗帜图案", + "item.immersiveengineering.bannerpattern_bevels.desc": "电镀", + "item.immersiveengineering.bannerpattern_hammer": "旗帜图案", + "item.immersiveengineering.bannerpattern_hammer.desc": "锤子", + "item.immersiveengineering.bannerpattern_ornate": "旗帜图案", + "item.immersiveengineering.bannerpattern_ornate.desc": "花里胡哨的框架", + "item.immersiveengineering.bannerpattern_treated_wood": "旗帜图案", + "item.immersiveengineering.bannerpattern_treated_wood.desc": "木嵌板", + "item.immersiveengineering.bannerpattern_windmill": "旗帜图案", + "item.immersiveengineering.bannerpattern_windmill.desc": "风车", + "item.immersiveengineering.bannerpattern_wolf": "旗帜图案", + "item.immersiveengineering.bannerpattern_wolf.desc": "灰多洛", + "item.immersiveengineering.bannerpattern_wolf_l": "旗帜图案", + "item.immersiveengineering.bannerpattern_wolf_l.desc": "灰多洛(左)", + "item.immersiveengineering.bannerpattern_wolf_r": "旗帜图案", + "item.immersiveengineering.bannerpattern_wolf_r.desc": "灰多洛(右)", + "item.immersiveengineering.biodiesel_bucket": "暴徒柴油桶", + "item.immersiveengineering.blueprint": "攻城狮蓝图", + "item.immersiveengineering.bullet.armor_piercing": "穿甲弹", + "item.immersiveengineering.bullet.buckshot": "鹿弹", + "item.immersiveengineering.bullet.casull": "卡苏尔弹", + "item.immersiveengineering.bullet.crystalwill": "结晶意志弹", + "item.immersiveengineering.bullet.dragons_breath": "龙息弹", + "item.immersiveengineering.bullet.firework": "火焰弹", + "item.immersiveengineering.bullet.flare": "闪光弹", + "item.immersiveengineering.bullet.he": "高爆弹", + "item.immersiveengineering.bullet.homing": "追踪弹", + "item.immersiveengineering.bullet.potion": "药剂弹头", + "item.immersiveengineering.bullet.potion.linger": "滞留型药剂弹头", + "item.immersiveengineering.bullet.potion.splash": "飞溅型药剂弹头", + "item.immersiveengineering.bullet.silver": "银弹", + "item.immersiveengineering.bullet.wolfpack": "灰多洛群弹", + "item.immersiveengineering.buzzsaw": "光头强电锯", + "item.immersiveengineering.chemthrower": "化学喷射器", + "item.immersiveengineering.circuit_board": "电路板", + "item.immersiveengineering.coal_coke": "焦煤", + "item.immersiveengineering.component_iron": "老铁机械零件", + "item.immersiveengineering.component_steel": "烧焦的老铁机械零件", + "item.immersiveengineering.concrete_bucket": "具体的桶", + "item.immersiveengineering.coresample": "岩芯样本", + "item.immersiveengineering.creosote_bucket": "杂酚油桶", + "item.immersiveengineering.drill": "采矿机械钻", + "item.immersiveengineering.drillhead_iron": "老铁钻头", + "item.immersiveengineering.drillhead_steel": "烧焦的老铁钻头", + "item.immersiveengineering.dust_aluminum": "铝灰", + "item.immersiveengineering.dust_coke": "焦煤灰", + "item.immersiveengineering.dust_constantan": "康铜灰", + "item.immersiveengineering.dust_copper": "铜灰", + "item.immersiveengineering.dust_electrum": "琥珀金灰", + "item.immersiveengineering.dust_gold": "金灰", + "item.immersiveengineering.dust_hop_graphite": "HOP石墨灰", + "item.immersiveengineering.dust_iron": "铁灰", + "item.immersiveengineering.dust_lead": "铅灰", + "item.immersiveengineering.dust_nickel": "镍(niè)灰", + "item.immersiveengineering.dust_saltpeter": "硝酸盐灰(致癌物质.png)", + "item.immersiveengineering.dust_silver": "银灰", + "item.immersiveengineering.dust_steel": "烧焦的铁灰", + "item.immersiveengineering.dust_sulfur": "硫磺灰", + "item.immersiveengineering.dust_uranium": "铀灰(附赠辐射)", + "item.immersiveengineering.dust_wood": "锯末", + "item.immersiveengineering.earmuffs": "隔音耳罩", + "item.immersiveengineering.electron_tube": "真空管", + "item.immersiveengineering.empty_casing": "小型空弹壳", + "item.immersiveengineering.empty_shell": "大型空弹壳", + "item.immersiveengineering.ethanol_bucket": "酒精桶", + "item.immersiveengineering.fluorescent_tube": "荧光管", + "item.immersiveengineering.graphite_electrode": "石墨电极", + "item.immersiveengineering.gunpart_barrel": "枪管", + "item.immersiveengineering.gunpart_drum": "左筒", + "item.immersiveengineering.gunpart_hammer": "击锤", + "item.immersiveengineering.hammer": "攻城狮锤", + "item.immersiveengineering.hemp_fabric": "坚韧布料", + "item.immersiveengineering.hemp_fiber": "工业棉花(伪)纤维", + "item.immersiveengineering.herbicide_bucket": "除草剂桶", + "item.immersiveengineering.hoe_steel": "烧焦的铁锄", + "item.immersiveengineering.ingot_aluminum": "铝砖", + "item.immersiveengineering.ingot_constantan": "康铜砖", + "item.immersiveengineering.ingot_copper": "铜砖", + "item.immersiveengineering.ingot_electrum": "琥珀金砖", + "item.immersiveengineering.ingot_hop_graphite": "HOP石墨砖", + "item.immersiveengineering.ingot_lead": "铅砖", + "item.immersiveengineering.ingot_nickel": "镍(niè)砖", + "item.immersiveengineering.ingot_silver": "银砖", + "item.immersiveengineering.ingot_steel": "烧焦的铁砖", + "item.immersiveengineering.ingot_uranium": "铀砖(附赠辐射)", + "item.immersiveengineering.jerrycan": "油罐", + "item.immersiveengineering.maintenance_kit": "维护工具包", + "item.immersiveengineering.manual": "攻城狮手册", + "item.immersiveengineering.map_orevein": "矿脉地图", + "item.immersiveengineering.minecart_metalbarrel": "金属桶矿车", + "item.immersiveengineering.minecart_reinforcedcrate": "加强储物箱矿车", + "item.immersiveengineering.minecart_woodenbarrel": "木桶矿车", + "item.immersiveengineering.minecart_woodencrate": "木制储物箱矿车", + "item.immersiveengineering.mold_bullet_casing": "模板:弹壳", + "item.immersiveengineering.mold_gear": "模板:齿轮", + "item.immersiveengineering.mold_packing_4": "模板:2x2压缩包", + "item.immersiveengineering.mold_packing_9": "模板:3x3压缩包", + "item.immersiveengineering.mold_plate": "模板:板材", + "item.immersiveengineering.mold_rod": "模板:金属棒", + "item.immersiveengineering.mold_unpacking": "模板:解压包", + "item.immersiveengineering.mold_wire": "模板:线缆", + "item.immersiveengineering.nugget_aluminum": "铝籽", + "item.immersiveengineering.nugget_constantan": "康铜籽", + "item.immersiveengineering.nugget_copper": "铜籽", + "item.immersiveengineering.nugget_electrum": "琥珀金籽", + "item.immersiveengineering.nugget_iron": "铁籽", + "item.immersiveengineering.nugget_lead": "铅籽", + "item.immersiveengineering.nugget_nickel": "镍(niè)籽", + "item.immersiveengineering.nugget_silver": "银籽", + "item.immersiveengineering.nugget_steel": "烧焦的铁籽", + "item.immersiveengineering.nugget_uranium": "铀籽(附赠辐射)", + "item.immersiveengineering.pickaxe_steel": "烧焦的ff98sha", + "item.immersiveengineering.plantoil_bucket": "橄榄油(菜籽油)桶", + "item.immersiveengineering.plate_aluminum": "铝板", + "item.immersiveengineering.plate_constantan": "康铜板", + "item.immersiveengineering.plate_copper": "铜板", + "item.immersiveengineering.plate_electrum": "琥珀金板", + "item.immersiveengineering.plate_gold": "金板", + "item.immersiveengineering.plate_iron": "铁板", + "item.immersiveengineering.plate_lead": "铅板", + "item.immersiveengineering.plate_nickel": "镍(niè)板", + "item.immersiveengineering.plate_silver": "银板", + "item.immersiveengineering.plate_steel": "烧焦的铁板", + "item.immersiveengineering.plate_uranium": "铀板(附赠辐射)", + "item.immersiveengineering.powerpack": "电容背包", + "item.immersiveengineering.railgun": "磁轨炮", + "item.immersiveengineering.revolver": "左轮手枪", + "item.immersiveengineering.revolver.bee": "黄蜂左轮", + "item.immersiveengineering.revolver.dev": "?皇家征服者?", + "item.immersiveengineering.revolver.earthshaker": "§b撼地者§r", + "item.immersiveengineering.revolver.fenrir": "芬里尔巨灰多洛", + "item.immersiveengineering.revolver.infinity": "催化", + "item.immersiveengineering.revolver.nerf": "玩具左轮", + "item.immersiveengineering.revolver.noName": "无名", + "item.immersiveengineering.revolver.oathkeeper": "誓约之守护", + "item.immersiveengineering.revolver.oblivion": "湮灭", + "item.immersiveengineering.revolver.patreonBlu": "§6遗言§r", + "item.immersiveengineering.revolver.patreonHazard": "§4扭曲的幻影§r", + "item.immersiveengineering.revolver.rose": "神圣玫瑰", + "item.immersiveengineering.revolver.sns": "蒸汽动力", + "item.immersiveengineering.revolver.superchief": "超级领袖", + "item.immersiveengineering.revolver.tesla": "电线枪", + "item.immersiveengineering.revolver.warlord": "光束", + "item.immersiveengineering.rockcutter": "凿岩机刀片", + "item.immersiveengineering.sawblade": "锯条", + "item.immersiveengineering.screwdriver": "攻城狮螺丝刀", + "item.immersiveengineering.seed": "工业棉花(伪)种子", + "item.immersiveengineering.shader": "皮肤", + "item.immersiveengineering.shader.": "皮肤", + "item.immersiveengineering.shader.name.ancient": "Ancient", + "item.immersiveengineering.shader.name.angelsthesis": "Angel's Thesis", + "item.immersiveengineering.shader.name.argo": "Argo", + "item.immersiveengineering.shader.name.astartes": "Astartes", + "item.immersiveengineering.shader.name.chloris": "Chloris", + "item.immersiveengineering.shader.name.crescentrose": "Crescent Rose", + "item.immersiveengineering.shader.name.crimsonlotus": "Crimson Lotus", + "item.immersiveengineering.shader.name.darkfire": "Dark Fire", + "item.immersiveengineering.shader.name.dominator": "Dominator", + "item.immersiveengineering.shader.name.dragonsbreath": "Dragon's Breath", + "item.immersiveengineering.shader.name.erruption": "Erruption", + "item.immersiveengineering.shader.name.exia": "Exia", + "item.immersiveengineering.shader.name.eyas": "Eyas", + "item.immersiveengineering.shader.name.felix": "Felix", + "item.immersiveengineering.shader.name.fox": "Fox", + "item.immersiveengineering.shader.name.glacis": "Glacis", + "item.immersiveengineering.shader.name.harrowed": "Harrowed", + "item.immersiveengineering.shader.name.hawk": "Hawk", + "item.immersiveengineering.shader.name.hollow": "Hollow", + "item.immersiveengineering.shader.name.ikelos": "IKELOS", + "item.immersiveengineering.shader.name.kindled": "The Kindled", + "item.immersiveengineering.shader.name.locus": "Locus", + "item.immersiveengineering.shader.name.lususnaturae": "Lusus Naturae", + "item.immersiveengineering.shader.name.magnum": "Magnum", + "item.immersiveengineering.shader.name.massfusion": "Mass Fusion", + "item.immersiveengineering.shader.name.matrix": "Matrix", + "item.immersiveengineering.shader.name.microshark": "Microshark", + "item.immersiveengineering.shader.name.milo": "Miló", + "item.immersiveengineering.shader.name.n7": "N7", + "item.immersiveengineering.shader.name.netherforged": "Netherforged", + "item.immersiveengineering.shader.name.normandy": "Normandy", + "item.immersiveengineering.shader.name.omnitool": "OmniTool", + "item.immersiveengineering.shader.name.phoenix": "Phoenix", + "item.immersiveengineering.shader.name.qrow": "Qrow", + "item.immersiveengineering.shader.name.radiant": "Radiant", + "item.immersiveengineering.shader.name.regal": "Regal", + "item.immersiveengineering.shader.name.rosequartz": "Rosequartz", + "item.immersiveengineering.shader.name.sharkface": "Sharkface", + "item.immersiveengineering.shader.name.sponsor": "Sponsor", + "item.immersiveengineering.shader.name.stormflower": "StormFlower", + "item.immersiveengineering.shader.name.sunstrike": "Sunstrike", + "item.immersiveengineering.shader.name.sutherland": "Sutherland", + "item.immersiveengineering.shader.name.taken": "Taken", + "item.immersiveengineering.shader.name.terra": "Terra", + "item.immersiveengineering.shader.name.trident": "Trident", + "item.immersiveengineering.shader.name.twili": "Twili", + "item.immersiveengineering.shader.name.usurper": "Usurper", + "item.immersiveengineering.shader.name.vanguard": "Vanguard", + "item.immersiveengineering.shader.name.vaulttec": "Vault-Tec", + "item.immersiveengineering.shader.name.waaagh": "WAAAGH!", + "item.immersiveengineering.shader.name.warbird": "Warbird", + "item.immersiveengineering.shader_bag": "皮肤惩罚袋", + "item.immersiveengineering.shader_bag_common": "普通皮肤惩罚袋", + "item.immersiveengineering.shader_bag_epic": "史诗皮肤惩罚袋", + "item.immersiveengineering.shader_bag_ie_masterwork": "杰作皮肤惩罚袋", + "item.immersiveengineering.shader_bag_rare": "稀有皮肤惩罚袋", + "item.immersiveengineering.shader_bag_uncommon": "良好皮肤惩罚袋", + "item.immersiveengineering.shield": "重型盾牌", + "item.immersiveengineering.shovel_steel": "烧焦的老铁掀", + "item.immersiveengineering.skyhook": "攻城狮天钩", + "item.immersiveengineering.slag": "矿渣", + "item.immersiveengineering.speedloader": "左轮快速装弹器", + "item.immersiveengineering.stick_aluminum": "铝棒", + "item.immersiveengineering.stick_iron": "老铁棒", + "item.immersiveengineering.stick_steel": "烧焦的老铁棒", + "item.immersiveengineering.stick_treated": "腐化林昆", + "item.immersiveengineering.survey_tools": "矿物探测器", + "item.immersiveengineering.sword_steel": "烧焦的老铁剑", + "item.immersiveengineering.toolbox": "攻城狮工具箱", + "item.immersiveengineering.toolupgrade_buzzsaw_spareblades": "刀片盒子", + "item.immersiveengineering.toolupgrade_chemthrower_focus": "聚焦喷嘴", + "item.immersiveengineering.toolupgrade_chemthrower_multitank": "化学液体罐", + "item.immersiveengineering.toolupgrade_drill_capacity": "大型燃料缸", + "item.immersiveengineering.toolupgrade_drill_damage": "附加螺旋钻", + "item.immersiveengineering.toolupgrade_drill_lube": "高级润滑系统", + "item.immersiveengineering.toolupgrade_drill_waterproof": "压缩空气罐", + "item.immersiveengineering.toolupgrade_railgun_capacitors": "附加电容", + "item.immersiveengineering.toolupgrade_railgun_scope": "瞄准镜", + "item.immersiveengineering.toolupgrade_revolver_bayonet": "刺刀", + "item.immersiveengineering.toolupgrade_revolver_electro": "加强电子管", + "item.immersiveengineering.toolupgrade_revolver_magazine": "扩充弹夹", + "item.immersiveengineering.toolupgrade_shield_flash": "闪光灯", + "item.immersiveengineering.toolupgrade_shield_magnet": "磁力手套", + "item.immersiveengineering.toolupgrade_shield_shock": "震击发生器", + "item.immersiveengineering.voltmeter": "攻城狮电表", + "item.immersiveengineering.waterwheel_segment": "水车部件", + "item.immersiveengineering.windmill_blade": "风车叶片", + "item.immersiveengineering.windmill_sail": "改良风车叶片", + "item.immersiveengineering.wire_aluminum": "铝线", + "item.immersiveengineering.wire_copper": "铜线", + "item.immersiveengineering.wire_electrum": "琥珀金线", + "item.immersiveengineering.wire_steel": "烧焦的铁线", + "item.immersiveengineering.wirecoil_copper": "低压电线", + "item.immersiveengineering.wirecoil_copper_ins": "绝缘低压电线", + "item.immersiveengineering.wirecoil_electrum": "中压电线", + "item.immersiveengineering.wirecoil_electrum_ins": "绝缘中压电线", + "item.immersiveengineering.wirecoil_redstone": "雷石东电线", + "item.immersiveengineering.wirecoil_steel": "高压电线", + "item.immersiveengineering.wirecoil_structure_rope": "麻绳电线", + "item.immersiveengineering.wirecoil_structure_steel": "烧焦的铁电线", + "item.immersiveengineering.wirecutter": "攻城狮剪线钳", + "item.immersiveengineering.wooden_grip": "木握柄", + "itemGroup.immersiveengineering": "沉没工程(沉浸工程)", + "key.categories.immersiveengineering": "沉没工程(沉浸工程)", + "key.immersiveengineering.chemthrowerSwitch": "切换化学液体罐", + "key.immersiveengineering.magnetEquip": "磁力护盾手套(双击)", + "key.immersiveengineering.railgunZoom": "磁轨炮缩放", + "language": "Chinese", + "language.code": "zh_cn", + "language.region": "China", + "manual.immersiveengineering.construction": "结构", + "manual.immersiveengineering.energy": "电力,线缆,吐电器", + "manual.immersiveengineering.general": "概述与资源", + "manual.immersiveengineering.heavymachines": "重型机器", + "manual.immersiveengineering.machines": "简单机器", + "manual.immersiveengineering.manual": "攻城狮手册", + "manual.immersiveengineering.test": "子类别!?", + "manual.immersiveengineering.tools": "工具", + "manual.immersiveengineering.update": "最新动态!", + "material.constantan.name": "康铜", + "material.hemp.name": "大麻纤维", + "material.treatedwood.name": "腐化木", + "modifier.thermalinversion.desc": "§o冰与火!§r\n在热的环境中攻击会冻伤敌人;在冷的环境中攻击会灼伤敌人。", + "modifier.thermalinversion.name": "热力反转", + "recipe.immersiveengineering.hammerCrushing": "粉碎", + "stat.skyhookOneCm": "使用天钩滑行的距离", + "subtitle.immersiveengineering.birthdayParty": "耶,派对!", + "subtitle.immersiveengineering.chargeFast": "电容器充电", + "subtitle.immersiveengineering.chargeSlow": "电容器充电", + "subtitle.immersiveengineering.chute": "物品从槽中滑过", + "subtitle.immersiveengineering.crusher": "粉碎机粉碎石头", + "subtitle.immersiveengineering.dieselGenerator": "柴油吐电器正在工作", + "subtitle.immersiveengineering.direSwitch": "Direwolf20正在模仿刀闸", + "subtitle.immersiveengineering.metalPressPiston": "金属冲压机活塞伸缩", + "subtitle.immersiveengineering.metalPressSmash": "金属冲压机的哐当声", + "subtitle.immersiveengineering.railgunFire": "磁轨炮发射", + "subtitle.immersiveengineering.revolverFire": "枪击声", + "subtitle.immersiveengineering.revolverReload": "装填声", + "subtitle.immersiveengineering.skyhook": "天钩沿线缆滑行", + "subtitle.immersiveengineering.spark": "电火花", + "subtitle.immersiveengineering.spray": "液体溅射", + "subtitle.immersiveengineering.sprayFire": "燃烧中的液体溅射", + "subtitle.immersiveengineering.tesla": "电线有电流流过", + "tile.harvesterTrolley.ieCrop.name": "工业棉花(伪)收割车" +} diff --git a/mods/immersive_portals.json b/mods/immersive_portals.json index 30aa31c3b..e0dbc3f82 100644 --- a/mods/immersive_portals.json +++ b/mods/immersive_portals.json @@ -1,19 +1,19 @@ { - "imm_ptl.loading_chunks": "正在加载区块 %1$s/%2$s", - "imm_ptl.searching_for_frame": "正在搜索传送门框架\n位面:%1$s\n中心坐标:%2$s\n已搜索:%3$s", - "imm_ptl.generating_new_frame": "未找到现成传送门框架\n即将生成新传送门框架", - "block.immersive_portals.portal_helper": "滑稽", - "imm_ptl.max_portal_layer": "渲染递归上限", - "imm_ptl.compatibility_render_mode": "兼容性渲染模式", - "imm_ptl.check_gl_error": "检测OpenGL异常", - "imm_ptl.portal_searching_range": "地狱传送门生成搜索范围", - "imm_ptl.long_reach_in_creative": "创造模式下触及范围更大", - "imm_ptl.render_yourself_in_portal": "在传送门中渲染自己", - "imm_ptl.active_loading": "完全加载仅传送门可视区块", - "effect.immersive_portals.longer_reach": "触及范围增大", - "item.minecraft.potion.effect.longer_reach_potion": "触及范围增大药水", - "item.minecraft.splash_potion.effect.longer_reach_potion": "触及范围增大喷溅药水", - "item.minecraft.lingering_potion.effect.longer_reach_potion": "触及范围增大滞留药水", - "attribute.name.imm_ptl.hand_reach_multiplier": "触及范围", - "generator.imm_ptl_altius": "纵深世界" -} \ No newline at end of file + "imm_ptl.loading_chunks": "正在加载区块 %1$s/%2$s", + "imm_ptl.searching_for_frame": "正在搜索门户框架\n位面:%1$s\n中心坐标:%2$s\n已搜索:%3$s", + "imm_ptl.generating_new_frame": "未找到现成门户框架\n即将生成新门户框架", + "block.immersive_portals.portal_helper": "滑稽", + "imm_ptl.max_portal_layer": "渲染递归上限", + "imm_ptl.compatibility_render_mode": "兼容性渲染模式", + "imm_ptl.check_gl_error": "检测OpenGL异常", + "imm_ptl.portal_searching_range": "尼德兰门户生成搜索范围", + "imm_ptl.long_reach_in_creative": "创造模式下触及范围更大", + "imm_ptl.render_yourself_in_portal": "在门户中渲染自己", + "imm_ptl.active_loading": "完全加载仅门户可视区块", + "effect.immersive_portals.longer_reach": "触及范围增大", + "item.minecraft.potion.effect.longer_reach_potion": "触及范围增大溶液", + "item.minecraft.splash_potion.effect.longer_reach_potion": "触及范围增大喷溅溶液", + "item.minecraft.lingering_potion.effect.longer_reach_potion": "触及范围增大滞留溶液", + "attribute.name.imm_ptl.hand_reach_multiplier": "触及范围", + "generator.imm_ptl_altius": "纵深世界" +} diff --git a/mods/inventoryprofiles.json b/mods/inventoryprofiles.json index 84461a56a..0382a4fc5 100644 --- a/mods/inventoryprofiles.json +++ b/mods/inventoryprofiles.json @@ -1,7 +1,6 @@ { - "inventoryprofiles.gui.config.title": "Inventory Profiles 配置菜单", - + "inventoryprofiles.common.gui.config.reset": "重置", "inventoryprofiles.common.gui.config.true": "§2开", "inventoryprofiles.common.gui.config.false": "§4关", @@ -22,8 +21,6 @@ "inventoryprofiles.common.enum.context.gui": "介面", "inventoryprofiles.common.enum.context.any": "游戏内 / 介面", - - "inventoryprofiles.gui.config.ModSettings": "Mod 设置", "inventoryprofiles.gui.config.GuiSettings": "介面设置", "inventoryprofiles.gui.config.EditProfiles": "编辑设定档", @@ -37,68 +34,61 @@ "inventoryprofiles.config.category.client_side_tweaks": "客户端", "inventoryprofiles.config.category.coming_soon": "即将到来!", + "inventoryprofiles.config.name.sort_order": "排序方式", + "inventoryprofiles.config.name.add_interval_between_clicks": "增加点击的时间间隔", + "inventoryprofiles.config.name.interval_between_clicks_ms": "时间间隔 (毫秒)", + "inventoryprofiles.config.name.restock_hotbar": "快捷栏补货", + "inventoryprofiles.config.name.sort_at_cursor": "整理鼠标指向的区域", + "inventoryprofiles.config.name.stop_at_screen_close": "背包关掉时停止整理", + "inventoryprofiles.config.name.debug_logs": "除错输出", - - "inventoryprofiles.config.name.sort_order": "排序方式", - "inventoryprofiles.config.name.add_interval_between_clicks": "增加点击的时间间隔", - "inventoryprofiles.config.name.interval_between_clicks_ms": "时间间隔 (毫秒)", - "inventoryprofiles.config.name.restock_hotbar": "快捷栏补货", - "inventoryprofiles.config.name.sort_at_cursor": "整理鼠标指向的区域", - "inventoryprofiles.config.name.stop_at_screen_close": "背包关闭时停止整理", - "inventoryprofiles.config.name.debug_logs": "除错输出", - - "inventoryprofiles.config.description.sort_order": "背包整理的排序方式", + "inventoryprofiles.config.description.sort_order": "背包整理的排序方式", "inventoryprofiles.config.description.add_interval_between_clicks": "整理背包时加入点击之间的时间,模拟手动点击。用\"时间间隔 (毫秒)\"设置时间。可能在延迟较高的服务器或禁用了inventory.fastclick的服务器上有用。(要在无法快速点击背包的服务器上使用的话,推荐用67毫秒)", - "inventoryprofiles.config.description.interval_between_clicks_ms": "点击之间的时间 (单位毫秒) (要在无法快速点击背包的服务器上使用的话,推荐用67毫秒)", - "inventoryprofiles.config.description.restock_hotbar": "整理背包时顺便把快捷栏上物品的数量填满", - "inventoryprofiles.config.description.sort_at_cursor": "用热键会整理鼠标指向的格子的区域,否则永远优先整理箱子。", - "inventoryprofiles.config.description.stop_at_screen_close": "背包画面关闭时停止整理 (例如在\"增加点击的时间间隔\"启用时)", - "inventoryprofiles.config.description.debug_logs": "输出除错讯息", - - - "inventoryprofiles.config.name.show_sort_button": "显示普通整理按钮", - "inventoryprofiles.config.name.show_sort_in_columns_button": "显示垂直方向分类按钮", - "inventoryprofiles.config.name.show_sort_in_rows_button": "显示水平方向分类按钮", - "inventoryprofiles.config.name.show_move_all_button": "显示移动匹配物品按钮", - "inventoryprofiles.config.name.show_button_tooltips": "显示按钮提示", - - "inventoryprofiles.config.description.show_sort_button": "背包画面上显示普通整理按钮", + "inventoryprofiles.config.description.interval_between_clicks_ms": "点击之间的时间 (单位毫秒) (要在无法快速点击背包的服务器上使用的话,推荐用67毫秒)", + "inventoryprofiles.config.description.restock_hotbar": "整理背包时顺便把快捷栏上物品的数量填满", + "inventoryprofiles.config.description.sort_at_cursor": "用热键会整理鼠标指向的格子的区域,否则永远优先整理胸部。", + "inventoryprofiles.config.description.stop_at_screen_close": "背包画面关掉时停止整理 (例如在\"增加点击的时间间隔\"启用时)", + "inventoryprofiles.config.description.debug_logs": "输出除错讯息", + + "inventoryprofiles.config.name.show_sort_button": "显示普通整理按钮", + "inventoryprofiles.config.name.show_sort_in_columns_button": "显示垂直方向分类按钮", + "inventoryprofiles.config.name.show_sort_in_rows_button": "显示水平方向分类按钮", + "inventoryprofiles.config.name.show_move_all_button": "显示移动匹配物品按钮", + "inventoryprofiles.config.name.show_button_tooltips": "显示按钮提示", + + "inventoryprofiles.config.description.show_sort_button": "背包画面上显示普通整理按钮", "inventoryprofiles.config.description.show_sort_in_columns_button": "背包画面上显示垂直方向分类按钮", - "inventoryprofiles.config.description.show_sort_in_rows_button": "背包画面上显示水平方向分类按钮", - "inventoryprofiles.config.description.show_move_all_button": "背包画面上显示移动匹配物品按钮", - "inventoryprofiles.config.description.show_button_tooltips": "鼠标悬浮在按钮上时显示提示", - - - "inventoryprofiles.config.name.open_config_menu": "打开配置菜单", - "inventoryprofiles.config.name.sort_inventory": "背包整理", - "inventoryprofiles.config.name.sort_inventory_in_columns": "垂直方向分类", - "inventoryprofiles.config.name.sort_inventory_in_rows": "水平方向分类", - "inventoryprofiles.config.name.move_all_items": "移动匹配物品", - "inventoryprofiles.config.name.debug_screen": "Debug Screen", - - "inventoryprofiles.config.description.open_config_menu": "打开此菜单的按键", - "inventoryprofiles.config.description.sort_inventory": "一键背包整理的按键", - "inventoryprofiles.config.description.sort_inventory_in_columns": "一键垂直方向分类的按键", - "inventoryprofiles.config.description.sort_inventory_in_rows": "一键水平方向分类的按键", - "inventoryprofiles.config.description.move_all_items": "一键移动所有箱子里有同类的物品的按键", - "inventoryprofiles.config.description.debug_screen": "Open debug screen", - - - "inventoryprofiles.config.name.instant_mining_cooldown": "瞬间破坏的挖掘延迟", - "inventoryprofiles.config.name.disable_block_breaking_cooldown": "移除挖掘延迟", - "inventoryprofiles.config.name.disable_item_use_cooldown": "移除右键使用冷却时间", - "inventoryprofiles.config.name.prevent_close_gui_drop_item": "防止关闭介面掉落物品", - "inventoryprofiles.config.name.disable_screen_shaking_on_damage": "禁止受到伤害摇晃画面", - "inventoryprofiles.config.name.disable_lava_fog": "禁用岩浆迷雾", - - "inventoryprofiles.config.description.instant_mining_cooldown": "让瞬间破坏方块后挖掘下一个方块也有挖掘延迟。优先度较 \"移除挖掘延迟\" 低。", - "inventoryprofiles.config.description.disable_block_breaking_cooldown": "移除挖掘下一个方块的延迟", - "inventoryprofiles.config.description.disable_item_use_cooldown": "移除按住右键使用物品时的每一个物品之间冷却时间。相当于每游戏刻都按一次右键。(一秒为二十游戏刻)", - "inventoryprofiles.config.description.prevent_close_gui_drop_item": "关闭物品栏时自动把鼠标的物品放回背包", - "inventoryprofiles.config.description.disable_screen_shaking_on_damage": "受到伤害时画面不再摇晃", - "inventoryprofiles.config.description.disable_lava_fog": "岩浆下看得更清晰", - - + "inventoryprofiles.config.description.show_sort_in_rows_button": "背包画面上显示水平方向分类按钮", + "inventoryprofiles.config.description.show_move_all_button": "背包画面上显示移动匹配物品按钮", + "inventoryprofiles.config.description.show_button_tooltips": "鼠标悬浮在按钮上时显示提示", + + "inventoryprofiles.config.name.open_config_menu": "打开配置菜单", + "inventoryprofiles.config.name.sort_inventory": "背包整理", + "inventoryprofiles.config.name.sort_inventory_in_columns": "垂直方向分类", + "inventoryprofiles.config.name.sort_inventory_in_rows": "水平方向分类", + "inventoryprofiles.config.name.move_all_items": "移动匹配物品", + "inventoryprofiles.config.name.debug_screen": "Debug Screen", + + "inventoryprofiles.config.description.open_config_menu": "打开此菜单的按键", + "inventoryprofiles.config.description.sort_inventory": "一键背包整理的按键", + "inventoryprofiles.config.description.sort_inventory_in_columns": "一键垂直方向分类的按键", + "inventoryprofiles.config.description.sort_inventory_in_rows": "一键水平方向分类的按键", + "inventoryprofiles.config.description.move_all_items": "一键移动所有胸部里有同类的物品的按键", + "inventoryprofiles.config.description.debug_screen": "Open debug screen", + + "inventoryprofiles.config.name.instant_mining_cooldown": "瞬间破坏的挖掘延迟", + "inventoryprofiles.config.name.disable_block_breaking_cooldown": "移除挖掘延迟", + "inventoryprofiles.config.name.disable_item_use_cooldown": "移除右键使用冷却时间", + "inventoryprofiles.config.name.prevent_close_gui_drop_item": "防止关掉介面掉落物品", + "inventoryprofiles.config.name.disable_screen_shaking_on_damage": "禁止受到伤害摇晃画面", + "inventoryprofiles.config.name.disable_lava_fog": "禁用熔岩迷雾", + + "inventoryprofiles.config.description.instant_mining_cooldown": "让瞬间破坏方块后挖掘下一个方块也有挖掘延迟。优先度较 \"移除挖掘延迟\" 低。", + "inventoryprofiles.config.description.disable_block_breaking_cooldown": "移除挖掘下一个方块的延迟", + "inventoryprofiles.config.description.disable_item_use_cooldown": "移除按住右键使用物品时的每一个物品之间冷却时间。相当于每游戏刻都按一次右键。(一秒为二十游戏刻)", + "inventoryprofiles.config.description.prevent_close_gui_drop_item": "关掉物品栏时自动把鼠标的物品放回背包", + "inventoryprofiles.config.description.disable_screen_shaking_on_damage": "受到伤害时画面不再摇晃", + "inventoryprofiles.config.description.disable_lava_fog": "熔岩下看得更清晰", "inventoryprofiles.enum.sorting_method.default": "预设(创造模式菜单)", "inventoryprofiles.enum.sorting_method.item_name": "物品名称", @@ -109,5 +99,4 @@ "inventoryprofiles.tooltip.sort_columns_button": "垂直方向分类", "inventoryprofiles.tooltip.sort_rows_button": "水平方向分类", "inventoryprofiles.tooltip.move_all_button": "移动匹配物品\n§6(按住 §oSHIFT§r\n§6包括快捷栏)§r" - -} \ No newline at end of file +} diff --git a/mods/inventorysorter.json b/mods/inventorysorter.json index 46899df9a..2322eeb39 100644 --- a/mods/inventorysorter.json +++ b/mods/inventorysorter.json @@ -1,10 +1,10 @@ { - "key.categories.inventorysorter": "Inventory Sorting", - "key.inventorysorter.sort": "整理物品栏", - "key.inventorysorter.config.category.main": "目录", - "key.inventorysorter.config.display_sort": "启用 “整理” 按钮", - "key.inventorysorter.config.left_display": "点击鼠标中键对物品进行整理", - "key.inventorysorter.config.middle_click": "在左侧显示 “整理” 按钮", - "key.inventorysorter.config.seperate_btn": "在玩家背包里启用第二个 “整理” 按钮", - "key.inventorysorter.config.sort_player": "整理物品同时也会整理玩家物品栏" + "key.categories.inventorysorter": "Inventory Sorting", + "key.inventorysorter.sort": "整理库存", + "key.inventorysorter.config.category.main": "目录", + "key.inventorysorter.config.display_sort": "启用 “整理” 按钮", + "key.inventorysorter.config.left_display": "点击鼠标中键对物品进行整理", + "key.inventorysorter.config.middle_click": "在左侧显示 “整理” 按钮", + "key.inventorysorter.config.seperate_btn": "在玩家背包里启用第二个 “整理” 按钮", + "key.inventorysorter.config.sort_player": "整理物品同时也会整理玩家库存" } diff --git a/mods/itemscroller.json b/mods/itemscroller.json index 03bcc8a12..0297bb09c 100644 --- a/mods/itemscroller.json +++ b/mods/itemscroller.json @@ -1,5 +1,4 @@ { - "itemscroller.gui.button.config_gui.generic": "通用设置", "itemscroller.gui.button.config_gui.hotkeys": "快捷键", "itemscroller.gui.button.config_gui.toggles": "切换", @@ -10,9 +9,8 @@ "itemscroller.gui.title.configs": "快捷滑鼠设置", - "enableCraftingFeatures": "enableCrafting启用制作特性", - "Enables scrolling items to and from crafting grids,\nwith a built-in 18 recipe memory.\nHold down the Recipe key to see the stored recipes and\nto change the selection. While holding the Recipe key,\nyou can either scroll or press a number key to change the selection.\nA recipe is stored to the currently selected \"recipe slot\"\n by clicking pick block over a configured crafting output slot.\nThe supported crafting grids must be added to the scrollableCraftingGrids list.": "开启内置共8页每页18种配方的存储,使得物品可以放置到合成表\n按住Recipe(配方)的快捷键查看配方列表,您可以滑动滚轮或使用数字键选择配方\n点击配方可以在工作台完成合成,在放置配方达到待命状态时(不取出合成产物)\n按下设定的storeRecipe(储存配方)快捷键就可以在选定的列表格内进行配方储存(自动覆写)。", + "Enables scrolling items to and from crafting grids,\nwith a built-in 18 recipe memory.\nHold down the Recipe key to see the stored recipes and\nto change the selection. While holding the Recipe key,\nyou can either scroll or press a number key to change the selection.\nA recipe is stored to the currently selected \"recipe slot\"\n by clicking pick block over a configured crafting output slot.\nThe supported crafting grids must be added to the scrollableCraftingGrids list.": "打开内置共8页每页18种配方的存储,使得物品可以放置到合成表\n按住Recipe(配方)的快捷键查看配方列表,您可以滑动滚轮或使用数字键选择配方\n点击配方可以在工作台完成合成,在放置配方达到待命状态时(不取出合成产物)\n按下设定的storeRecipe(储存配方)快捷键就可以在选定的列表格内进行配方储存(自动覆写)。", "enableDropkeyDropMatching": "enableDropkey批量丢弃", "Enables dropping all matching items from the same\ninventory with the hotkey": "使用快捷键从同一库存内丢弃所有匹配物品", "enableRightClickCraftingOneStack": "enableRightClick右键制作", @@ -37,7 +35,7 @@ "Render a 1.14-style trade list in villager GUIs": "在村民gui中呈现一个1.14风格的交易列表\n(这不是1.16吗??????)", "carpetCtrlQCraftingEnabledOnServer": "carpetCtrlQCrafting地毯端CtrlQ启用", - "Set to true if the server is running the Carpet mod,\nand has the ctrlQCrafting option enabled.\nThis just changes which method Item Scroller uses\nfor the Drop key + Shift + Right click crafting.": "如果服务器正在运行地毯端则设置为开启,\n这将改变物品滚轮整组丢弃的使用方式\n变为丢弃+Shift+右击丢弃整组", + "Set to true if the server is running the Carpet mod,\nand has the ctrlQCrafting option enabled.\nThis just changes which method Item Scroller uses\nfor the Drop key + Shift + Right click crafting.": "如果服务器正在运行地毯端则设置为打开,\n这将改变物品滚轮整组丢弃的使用方式\n变为丢弃+Shift+右击丢弃整组", "clientCraftingFixOn1.12": "clientCrafting1.12客户端修复", "Enable updating the crafting recipe output directly on the client side.\nThis fixes the quick/mass crafting and right-click-to-craft-a-stack\nfeatures othrwise being broken in 1.12.": "在客户端直接更新制作配方输出\n这修正了在1.12中快速/批量制造和右键点击制造所产生的不可使用的问题。", "craftingRenderRecipeItems": "craftingRenderRecipeItems配方显示", @@ -62,7 +60,7 @@ "dropAllMatching": "dropAll全部丢弃", "Drop all stacks identical to the hovered stack": "丢弃所有鼠标指针指向的物品", "mainToggle": "mainToggle主开关", - "Toggle all functionality ON/OFF": "开启/关闭所有功能,\n§4似乎是个摆设——ZMDF§r", + "Toggle all functionality ON/OFF": "打开/关掉所有功能,\n§4似乎是个摆设——ZMDF§r", "massCraft": "massCraft全部合成抛出", "Mass craft and throw out the results with the\ncurrently selected recipe as long as this\nkeybind is held down": "批量制作当前选择的配方物品并将它们丢出,\n只要你按住快捷键\n(§6做一个快乐的人体喷泉——ZMDF§r)", "moveCraftResults": "moveCraft工作台放置", @@ -117,4 +115,4 @@ "Modifier key to move all matching items to the other\ninventory when scrolling over a stack": "当在堆栈上滚动时,修饰键将所有匹配的项目移动到另一个库存\n(这个快捷键并没有实际功能,类似前缀)", "modifierMoveStack": "modifierMove移动一份", "Modifier key to move the entire stack to the other\ninventory when scrolling over it": "当在堆栈上滚动时,修饰键将整个堆栈移动到另一个库存\n(这个快捷键并没有实际功能,类似前缀)" -} \ No newline at end of file +} diff --git a/mods/ivrench.json b/mods/ivrench.json new file mode 100644 index 000000000..ff6e9bc7d --- /dev/null +++ b/mods/ivrench.json @@ -0,0 +1,45 @@ +{ + "enchantment.ivrench.suffocation": "内置鼻塞", + "enchantment.ivrench.noprotect.all": "保护不了", + "enchantment.ivrench.noprotect.fire": "火神嫌弃", + "enchantment.ivrench.noprotect.fall": "骨质疏松", + "enchantment.ivrench.noprotect.explosion": "瞬 间 爆 炸", + "enchantment.ivrench.noprotect.projectile": "弹射物吸引", + "enchantment.ivrench.aqua_allergy": "水下搞慢点", + "enchantment.ivrench.self_thorn": "我扎我自己", + "enchantment.ivrench.depth_slower": "旱鸭子", + "enchantment.ivrench.ice_melter": "FREEDOM D↓VE", + "enchantment.ivrench.unbinding_curse": "拿不起来", + "enchantment.ivrench.nodamage.all": "磨 钝 石", + "enchantment.ivrench.nodamage.undead": "亡灵救星", + "enchantment.ivrench.nodamage.arthropods": "节肢救星", + "enchantment.ivrench.knockforward": "腿鸡", + "enchantment.ivrench.self_fire": "我火了", + "enchantment.ivrench.lootLess": "抢夺不到", + "enchantment.ivrench.lootLessFishing": "海之嫌弃", + "enchantment.ivrench.lootLessDigger": "非气附加", + "enchantment.ivrench.edgeless": "竖劈之刃", + "enchantment.ivrench.undigging": "搞慢点", + "enchantment.ivrench.touching": "完全碎裂", + "enchantment.ivrench.breaking": "反向续命", + "enchantment.ivrench.powerless": "Powup233的嫌弃", + "enchantment.ivrench.self_punch": "后坐力", + "enchantment.ivrench.aqua": "水箭", + "enchantment.ivrench.finity": "ε", + "enchantment.ivrench.lureless": "钩直饵咸", + "enchantment.ivrench.unmending": "正在致郁", + "enchantment.ivrench.vanishing": "真·拜拜了您嘞", + "enchantment.ivrench.unpiercing": "未能击穿", + "enchantment.ivrench.slow_charge": "缓慢冲锋", + "enchantment.ivrench.unishot": "射不出来", + "enchantment.ivrench.self_channeling": "雷 霆 法 杖", + "enchantment.ivrench.bounce": "反弹", + "enchantment.ivrench.dryness": "干燥", + "enchantment.ivrench.betray": "这是个背叛", + + "itemGroup.ivrench": "负膜书", + + "item.ivrench.ivrench_book.name": "负膜书", + + "ivrench.command.ivrench.succeed": "已获得所有负膜书" +} diff --git a/mods/justmap.json b/mods/justmap.json index f45e58f62..4b96865b0 100644 --- a/mods/justmap.json +++ b/mods/justmap.json @@ -1,87 +1,87 @@ { - "justmap": "Just Map", + "justmap": "Just Map", - "key.justmap.toggle_map_visible": "切换地图可见性", - "key.justmap.create_waypoint": "创建导航点", - "key.justmap.waypoints_list": "导航点列表", - "key.justmap.toggle_show_caves": "是否显示洞穴", - "key.justmap.toggle_show_entities": "是否显示实体", - "key.justmap.reduce_scale": "缩小地图比例", - "key.justmap.increase_scale": "增加地图比例", - "key.justmap.show_worldmap": "显示大地图", + "key.justmap.toggle_map_visible": "切换映射可见性", + "key.justmap.create_waypoint": "创建导航点", + "key.justmap.waypoints_list": "导航点列表", + "key.justmap.toggle_show_caves": "是否显示洞穴", + "key.justmap.toggle_show_entities": "是否显示实体", + "key.justmap.reduce_scale": "缩小映射比例", + "key.justmap.increase_scale": "增加映射比例", + "key.justmap.show_worldmap": "显示大映射", - "justmap.configuration.category.general": "常规设置", - "justmap.configuration.category.info": "地图信息", - "justmap.configuration.category.optimization": "优化", - "justmap.configuration.category.appearance": "地图外观", - "justmap.configuration.category.waypoints": "导航点", - "justmap.configuration.category.entity_radar": "实体雷达", + "justmap.configuration.category.general": "常规设置", + "justmap.configuration.category.info": "映射信息", + "justmap.configuration.category.optimization": "优化", + "justmap.configuration.category.appearance": "映射外观", + "justmap.configuration.category.waypoints": "导航点", + "justmap.configuration.category.entity_radar": "实体雷达", - "justmap.configuration.map_offset": "偏移", - "justmap.configuration.map_position": "地图显示位置", - "justmap.configuration.map_size": "地图大小", - "justmap.configuration.chunk_level_size": "区块大小", - "justmap.configuration.map_scale": "地图比例", - "justmap.configuration.map_saturation": "地图的颜色饱和度", - "justmap.configuration.map_brightness": "地图的亮度", - "justmap.configuration.show_in_chat": "是否在聊天时显示地图", - "justmap.configuration.show_terrain": "显示地形", - "justmap.configuration.show_caves": "显示洞穴", - "justmap.configuration.ignore_plants": "忽略植被显示", - "justmap.configuration.terrain_strength": "地形强度", - "justmap.configuration.show_grid": "显示网格线", - "justmap.configuration.show_position": "显示位置", - "justmap.configuration.show_biome": "显示生物群系", - "justmap.configuration.show_fps": "显示FPS", - "justmap.configuration.show_game_time": "显示时间", - "justmap.configuration.show_direction": "显示方向", - "justmap.configuration.move_effects": "移动buff图标", - "justmap.configuration.show_effect_timers": "显示buff的时间", - "justmap.configuration.rotate_map": "在地图上显示玩家位置", - "justmap.configuration.alternate_color_render": "切换地图颜色渲染", - "justmap.configuration.use_skins": "使用地图自带的皮肤", - "justmap.configuration.current_skin": "目前的皮肤", - "justmap.configuration.simple_arrow": "简单的箭头方向", - "justmap.configuration.waypoints_tracking": "导航点追踪", - "justmap.configuration.waypoints_render": "在世界上渲染导航点", - "justmap.configuration.render_light_beam": "渲染光速", - "justmap.configuration.render_markers": "渲染标记", - "justmap.configuration.render_animation": "渲染动画", - "justmap.configuration.min_render_dist": "最小的渲染距离", - "justmap.configuration.max_render_dist": "最大的渲染距离", - "justmap.configuration.show_entities": "在地图上显示实体", - "justmap.configuration.show_entity_heads": "显示实体的头部", - "justmap.configuration.show_hostile": "显示敌对生物", - "justmap.configuration.show_creatures": "显示生物", - "justmap.configuration.show_players": "显示玩家", - "justmap.configuration.show_player_heads": "显示玩家头部", - "justmap.configuration.show_player_names": "显示玩家昵称", - "justmap.configuration.render_entity_model": "渲染实体模型 (会降低 FPS)", - "justmap.configuration.show_icons_outline": "显示轮廓", - "justmap.configuration.entity_icon_size": "实体图标的大小", - "justmap.configuration.entity_model_size": "实体模型的大小", - - "justmap.configuration.chunk_update_interval": "区块更新间隔 (毫秒)", - "justmap.configuration.chunk_level_update_interval": "区块等级更新间隔 (毫秒)", - "justmap.configuration.update_cycle": "每个区块的周期更新", - "justmap.configuration.purge_delay": "缓存清除延迟 (毫秒)", - "justmap.configuration.purge_amount": "清除最大的区块", - - "justmap.configuration.tooltip_color_config": "仅在启用备用颜色渲染后才有效.", + "justmap.configuration.map_offset": "偏移", + "justmap.configuration.map_position": "映射显示位置", + "justmap.configuration.map_size": "映射大小", + "justmap.configuration.chunk_level_size": "区块大小", + "justmap.configuration.map_scale": "映射比例", + "justmap.configuration.map_saturation": "映射的颜色饱和度", + "justmap.configuration.map_brightness": "映射的亮度", + "justmap.configuration.show_in_chat": "是否在聊天时显示映射", + "justmap.configuration.show_terrain": "显示地形", + "justmap.configuration.show_caves": "显示洞穴", + "justmap.configuration.ignore_plants": "忽略植被显示", + "justmap.configuration.terrain_strength": "地形强度", + "justmap.configuration.show_grid": "显示网格线", + "justmap.configuration.show_position": "显示位置", + "justmap.configuration.show_biome": "显示生物群系", + "justmap.configuration.show_fps": "显示FPS", + "justmap.configuration.show_game_time": "显示时间", + "justmap.configuration.show_direction": "显示方向", + "justmap.configuration.move_effects": "移动buff图标", + "justmap.configuration.show_effect_timers": "显示buff的时间", + "justmap.configuration.rotate_map": "在映射上显示玩家位置", + "justmap.configuration.alternate_color_render": "切换映射颜色渲染", + "justmap.configuration.use_skins": "使用映射自带的皮肤", + "justmap.configuration.current_skin": "目前的皮肤", + "justmap.configuration.simple_arrow": "简单的箭头方向", + "justmap.configuration.waypoints_tracking": "导航点追踪", + "justmap.configuration.waypoints_render": "在世界上渲染导航点", + "justmap.configuration.render_light_beam": "渲染光速", + "justmap.configuration.render_markers": "渲染标记", + "justmap.configuration.render_animation": "渲染动画", + "justmap.configuration.min_render_dist": "最小的渲染距离", + "justmap.configuration.max_render_dist": "最大的渲染距离", + "justmap.configuration.show_entities": "在映射上显示实体", + "justmap.configuration.show_entity_heads": "显示实体的头部", + "justmap.configuration.show_hostile": "显示敌对生物", + "justmap.configuration.show_creatures": "显示生物", + "justmap.configuration.show_players": "显示玩家", + "justmap.configuration.show_player_heads": "显示玩家头部", + "justmap.configuration.show_player_names": "显示玩家昵称", + "justmap.configuration.render_entity_model": "渲染实体模型 (会降低 FPS)", + "justmap.configuration.show_icons_outline": "显示轮廓", + "justmap.configuration.entity_icon_size": "实体图标的大小", + "justmap.configuration.entity_model_size": "实体模型的大小", - "justmap.dim.overworld": "其他世界", - "justmap.dim.nether": "尼德兰", - "justmap.dim.the_end": "末地", + "justmap.configuration.chunk_update_interval": "区块更新间隔 (毫秒)", + "justmap.configuration.chunk_level_update_interval": "区块等级更新间隔 (毫秒)", + "justmap.configuration.update_cycle": "每个区块的周期更新", + "justmap.configuration.purge_delay": "缓存清除延迟 (毫秒)", + "justmap.configuration.purge_amount": "清除最大的区块", - "justmap.gui.save": "保存", - "justmap.gui.cancel": "算了", - "justmap.gui.edit": "编辑", - "justmap.gui.delete": "怒删", - "justmap.gui.close": "关闭", - "justmap.gui.create": "创建", - "justmap.gui.name": "名字", - "justmap.gui.chat": "唠嗑", - "justmap.gui.wp_hidden": "隐藏", - "justmap.gui.wp_tracking": "屏幕边缘", - "justmap.gui.wp_render": "在游戏里" -} \ No newline at end of file + "justmap.configuration.tooltip_color_config": "仅在启用备用颜色渲染后才有效.", + + "justmap.dim.overworld": "其他世界", + "justmap.dim.nether": "尼德兰", + "justmap.dim.the_end": "终端", + + "justmap.gui.save": "保存", + "justmap.gui.cancel": "算了", + "justmap.gui.edit": "编辑", + "justmap.gui.delete": "怒删", + "justmap.gui.close": "关掉", + "justmap.gui.create": "创建", + "justmap.gui.name": "名字", + "justmap.gui.chat": "唠嗑", + "justmap.gui.wp_hidden": "隐藏", + "justmap.gui.wp_tracking": "屏幕边缘", + "justmap.gui.wp_render": "在游戏里" +} diff --git a/mods/lightoverlay.json b/mods/lightoverlay.json index 5e7334997..1838be628 100644 --- a/mods/lightoverlay.json +++ b/mods/lightoverlay.json @@ -15,4 +15,4 @@ "config.lightoverlay.yellowColor": "黄色:", "config.lightoverlay.redColor": "红色:", "config.lightoverlay.invalidColor": "这颜色我不认识啊!" -} \ No newline at end of file +} diff --git a/mods/litematica.json b/mods/litematica.json index aa514656b..d5fcaa9db 100644 --- a/mods/litematica.json +++ b/mods/litematica.json @@ -114,7 +114,7 @@ "litematica.gui.button.schematic_placement.ignore_entities": "忽略实体: %s", "litematica.gui.button.schematic_placement.region_enabled": "区域: %s", "litematica.gui.button.schematic_placement.reset_sub_region_placements": "重置所有子区域", - "litematica.gui.button.schematic_placement.toggle_all_off": "全部 §c关闭§r", + "litematica.gui.button.schematic_placement.toggle_all_off": "全部 §c关掉§r", "litematica.gui.button.schematic_placement.toggle_all_on": "全部 §a开§r", "litematica.gui.button.schematic_placement.hover.enclosing_box": "封闭框呈现: %s", "litematica.gui.button.schematic_placement.hover.lock": "锁定位置可防止移动\\n以其他方式更改它(意外地)", @@ -126,7 +126,7 @@ "litematica.gui.button.schematic_placements.remove": "删除", "litematica.gui.button.schematic_placements.rendering_enabled": "渲染: %s", "litematica.gui.button.schematic_placements.select": "选择", - "litematica.gui.button.schematic_projects.close_project": "关闭当前项目", + "litematica.gui.button.schematic_projects.close_project": "关掉当前项目", "litematica.gui.button.schematic_projects.create_project": "创建项目", "litematica.gui.button.schematic_projects.delete_area": "删除区域", "litematica.gui.button.schematic_projects.load_project": "加载项目", @@ -321,7 +321,7 @@ "litematica.hud.delete.target_mode.placement": "当前放置", "litematica.hud.misc.easy_place_mode_enabled": "简单放置模式 §aON§r", "litematica.hud.misc.none_brackets": "", - "litematica.hud.misc.placement_restriction_mode_enabled": "限制放置模式 §a开启§r", + "litematica.hud.misc.placement_restriction_mode_enabled": "限制放置模式 §a打开§r", "litematica.hud.misc.render_layer_mode": "图层模式: %s - %s", "litematica.hud.misc.render_layer_mode_all": "图层模式: %s", "litematica.hud.misc.renderer_status": "渲染器: A: %s S: %s B: %s O: %s SEL: %s", @@ -422,7 +422,6 @@ "litematica.tool_mode.name.replace_block": "替换方块", "litematica.tool_mode.name.schematic_placement": "原理图放置", - "addSelectionBox": "addSelectionBox添加选区", "Add a new selection box (position 1) here": "在当前位置添加一个新的选区(位置1)", "cloneSelection": "cloneSelection克隆选区", @@ -436,9 +435,9 @@ "executeOperation": "executeOperation执行操作", "Execute the currently selected tool operation with the\ncurrent selection or placement in the Fill, Replace,\nPaste Schematic etc. modes": "在填充、替换、粘贴原理图等模式中,\n以当前选择模式或放置方式执行当前选择的工具操作", "invertGhostBlockRenderState": "invertGhost调整投影方块渲染状态", - "Inverts the schematic/ghost block rendering status\nwhile this keybind is held down": "当按住该按键后,对投影的方块渲染效果是否开启进行调整。", + "Inverts the schematic/ghost block rendering status\nwhile this keybind is held down": "当按住该按键后,对投影的方块渲染效果是否打开进行调整。", "invertOverlayRenderState": "invertOverlay调整投影线框渲染状态", - "Inverts the Overlay rendering status while this keybind is held down": "当按住该按键后,对投影的线框渲染效果是否开启进行调整", + "Inverts the Overlay rendering status while this keybind is held down": "当按住该按键后,对投影的线框渲染效果是否打开进行调整", "layerModeNext": "layerModeNext下一渲染模式", "Cycle the rendering mode (all, layers) forward": "切换为下一个渲染模式", "layerModePrevious": "layerModePrevious上一渲染模式", @@ -476,13 +475,13 @@ "openGuiSettings": "openGuiSettings配置菜单", "Open the Config GUI": "打开投影配置菜单的GUI", "operationModeChangeModifier": "operationMode模式选择", - "The modifier key to quickly change the operation mode.\nHold this and scroll while holding the \"tool item\" to quickly cycle the mode.": "快速修改模式,当玩家手持木棍时。\n玩家可以按住该按键滚动滚轮快速调整模式。", + "The modifier key to quickly change the operation mode.\nHold this and scroll while holding the \"tool item\" to quickly cycle the mode.": "快速修改模式,当玩家手持林昆时。\n玩家可以按住该按键滚动滚轮快速调整模式。", "pickBlockFirst": "pickBlockFirst选择当前方块", "A key to pick block the first\nschematic block ray traced to": "该按键可以选中指向的表面方块,\n并将将其切换至手中", "pickBlockLast": "pickBlockLast选择可放置方块", "A key to pick block the last schematic block\nray traced to, before the first (possible) client world\nblock ray traced to. Basically this would get\nyou the block you could place against an existing block.": "该按键可以选中当前可以放置的方块\n怎么解释呢?就是说,这个键会选择你现在可以放置的最远的方块,\n当然这得看你对准了哪个面", "pickBlockToggle": "pickBlockToggle选择方块开关", - "A hotkey to toggle the pick block toggle option in the\nGeneric configs. This is provided as a quick way to enable\nor disable the pick block keys, if they interfere with something.": "在通用配置当中快速关闭或开启方块选择的快捷键\n这是一种快速切换其模式的方法。\n如果它们产生了什么干扰(比如功能冲突)", + "A hotkey to toggle the pick block toggle option in the\nGeneric configs. This is provided as a quick way to enable\nor disable the pick block keys, if they interfere with something.": "在通用配置当中快速关掉或打开方块选择的快捷键\n这是一种快速切换其模式的方法。\n如果它们产生了什么干扰(比如功能冲突)", "renderInfoOverlay": "renderInfo方块信息", "The key that enables rendering the block info overlay.\nUse NONE for not requiring a key to be pressed.\nDisable the similarly named option in the Visuals\nconfigs to disable the overlay completely.": "在方块放置后,如果是错误的放置,会提示投影原本的方块信息\n如果是正确的,投影会显示当前方块的信息", "renderOverlayThroughBlocks": "renderOverlay原理图透视渲染", @@ -526,7 +525,7 @@ "setSelectionBoxPosition2": "setSelectionBoxPosition设置角点2", "Set the first position of the currently selected\nbox to the player's position": "将选区第二个角点的位置设置为玩家当前位置", "toggleAllRendering": "toggleAllRendering切换所有渲染", - "Toggle all rendering on/off": "打开或关闭所有的渲染", + "Toggle all rendering on/off": "打开或关掉所有的渲染", "toggleAreaSelectionBoxesRendering": "toggleAreaSelection区域选框渲染", "Toggle Area Selection boxes rendering on/off": "切换区域选择的框线是否显示的快捷键", "toggleSchematicRendering": "toggleSchematic投影方块渲染", @@ -550,13 +549,13 @@ "toggleVerifierOverlayRendering": "toggleVerifier验证覆盖", "Toggle the Schematic Verifier overlay rendering": "切换示意图验证器覆盖渲染\n(§4然而我并不知道怎么用——ZMDF§r)", "toolEnabledToggle": "toolEnabledToggle工具切换", - "The keybind to toggle the \"tool\" item functionality on/off": "切换是否开启范围设定工具(木棍)的快捷键", + "The keybind to toggle the \"tool\" item functionality on/off": "切换是否打开范围设定工具(林昆)的快捷键", "toolPlaceCorner1": "toolPlaceCorner角点1放置", - "The button to use while holding the \"tool\" item\nto place the primary/first corner": "当手持范围设定工具(木棍)时放置角点1", + "The button to use while holding the \"tool\" item\nto place the primary/first corner": "当手持范围设定工具(林昆)时放置角点1", "toolPlaceCorner2": "toolPlaceCorner角点2放置", - "The button to use while holding the \"tool\" item\nto place the second corner": "当手持范围设定工具(木棍)时放置角点2", + "The button to use while holding the \"tool\" item\nto place the second corner": "当手持范围设定工具(林昆)时放置角点2", "toolSelectElements": "toolSelectElements区域选择", - "The button to use to select corners or boxes\nwhile holding the \"tool\" item": "当手持范围设定工具(木棍)时指向角点或区域将选中角点或区域", + "The button to use to select corners or boxes\nwhile holding the \"tool\" item": "当手持范围设定工具(林昆)时指向角点或区域将选中角点或区域", "toolSelectModifierBlock1": "toolSelectModifierBlock1", "The modifier key to hold while using the 'toolSelectElements'\nhotkey, to select the primary block type to use in some of the tool modes": "使用“toolSelectElements”热键时按住的调整键\n选择要在某些工具模式中使用的主要块类型\n(§4然而我并不知道怎么用——ZMDF§r)", "toolSelectModifierBlock2": "toolSelectModifierBlock2", @@ -567,7 +566,7 @@ "areaSelectionBoxSideColor": "areaSelection选区边框颜色", "The color of the area selection boxes, when they are unselected": "选区未被选中时边框的颜色", "materialListHudItemCountsColor": "materialListHud材料数量颜色", - "The color of the item count text in the Material List info HUD": "材料列表开启HUD后的游戏内材料数量的颜色", + "The color of the item count text in the Material List info HUD": "材料列表打开HUD后的游戏内材料数量的颜色", "schematicRebuildBreakPlaceOverlayColor": "schematicRebuild重建原理图删除指示器颜色", "The color of Schematic Rebuild mode's break or place blocks selector overlay": "在重建原理图模式的批量删除当中,\n在方向选择器上的指示器颜色", "schematicRebuildReplaceOverlayColor": "schematicRebuild重建原理图替换指示器颜色", @@ -584,7 +583,7 @@ "blockInfoLinesAlignment": "blockInfo方块提示位置", "The alignment of the block info lines overlay": "方块信息弹窗的显示位置", "blockInfoLinesEnabled": "blockInfo方块信息启用", - "If enabled, then MiniHUD-style block info overlay\nis rendered for the looked-at block": "如果开启该功能,MiniHUD将显示方块信息\n默认位于屏幕右上角", + "If enabled, then MiniHUD-style block info overlay\nis rendered for the looked-at block": "如果打开该功能,MiniHUD将显示方块信息\n默认位于屏幕右上角", "blockInfoLinesFontScale": "blockInfo方块信息大小", "The font scale for the block info lines": "默认在右上角的方块信息的字体大小控制", "blockInfoLinesOffsetX": "blockInfo方块信息横移", @@ -612,11 +611,11 @@ "materialListHudScale": "materialList材料HUD缩放", "Scale factor for the Material List Info HUD": "控制材料HUD的缩放大小\n(其实和材料有关的hud显示都是这玩意)\n(§4然鹅这玩意似乎还能用——ZMDF§r)", "statusInfoHud": "statusInfoHud状态信息HUD", - "Enable a status info HUD renderer,\nwhich renders a few bits of status info, such as\nthe current layer mode and renderers enabled state": "启用状态信息的显示,该显示内容默认位于左下角\n其内容包含当前渲染层的状态与层数\n当然,这是在手持非木棍的情况下显示的。", + "Enable a status info HUD renderer,\nwhich renders a few bits of status info, such as\nthe current layer mode and renderers enabled state": "启用状态信息的显示,该显示内容默认位于左下角\n其内容包含当前渲染层的状态与层数\n当然,这是在手持非林昆的情况下显示的。", "statusInfoHudAuto": "statusInfo状态信息HUD自动显示", - "Allow automatically momentarily enabling the status info HUD \"when needed\",\nfor example when creating a placement and having rendering disabled": "允许自动暂时开启状态信息HUD比如当需要时,\n例如当创建一个位置或者渲染禁用时", + "Allow automatically momentarily enabling the status info HUD \"when needed\",\nfor example when creating a placement and having rendering disabled": "允许自动暂时打开状态信息HUD比如当需要时,\n例如当创建一个位置或者渲染禁用时", "toolHudAlignment": "toolHudAlignment工具HUD位置", - "The alignment of the \"tool HUD\", when holding the configured \"tool\"": "当你使用木棍时,将工具的HUD选择区域定位与该位置", + "The alignment of the \"tool HUD\", when holding the configured \"tool\"": "当你使用林昆时,将工具的HUD选择区域定位与该位置", "toolHudOffsetX": "toolHud工具HUD横移", "The X offset of the Info HUD from the screen edge": "工具HUD与边框的横向偏移量(横向距离)", "toolHudOffsetY": "toolHud工具HUD纵移", @@ -629,17 +628,17 @@ "The maximum number of mismatched positions to render\nat once in the Schematic Verifier overlay.": "在打开原理图验证程序对当前放置进行验证后,\n点击验证当中出现问题的方块,\n错误的方块在透视状态下的最大数量显示", "verifierOverlayEnabled": "verifier原理图验证渲染", "Enable Schematic Verifier marker overlay rendering": "启用原理图验证渲染", - "warnDisabledRendering": "warnDisabled关闭告警信息", + "warnDisabledRendering": "warnDisabled关掉告警信息", "Should the warning message about being in a layer mode\nor having some of the rendering options disabled\nbe shown when loading a new schematic\nor creating a new placement": "当加载一个新的示意图或创建一个新的位置时,\n是否应该显示关于该层的一些警告消息\n(§2没找到用法暂且——ZMDF§r)", "enableAreaSelectionBoxesRendering": "enableAreaSelection选区边框启用切换", "Enable Area Selection boxes rendering": "该选项可以切换是否显示选区的边框", "enablePlacementBoxesRendering": "enablePlacement投影边框启用切换", "Enable Schematic Placement boxes rendering": "该选项可以切换是否显示投影区域的边框", - "enableRendering": "enableRendering开启全部渲染", - "Main rendering toggle option. Enables/disables ALL mod rendering.": "主渲染切换选项,该选项可切换所有渲染是否开启", + "enableRendering": "enableRendering打开全部渲染", + "Main rendering toggle option. Enables/disables ALL mod rendering.": "主渲染切换选项,该选项可切换所有渲染是否打开", "enableSchematicBlocksRendering": "enableSchematic投影方块显示", - "Enables schematic block rendering.\nDisabling this allows you to only see the color overlay": "该选项可以切换是否在投影内显示方块的贴图\n(开启后可以更好辨识出投影缺失的是什么方块)", + "Enables schematic block rendering.\nDisabling this allows you to only see the color overlay": "该选项可以切换是否在投影内显示方块的贴图\n(打开后可以更好辨识出投影缺失的是什么方块)", "enableSchematicOverlay": "enableSchematic渲染方块特征", "The main toggle option for the schematic\nblock overlay rendering": "该选项可以切换是否在投影内使用边框表示未放置的方块\n未被放置的方块虽然没有边框,但是仍可以显示(显示状态由透明度决定)", "enableSchematicRendering": "enableSchematic渲染投影", @@ -649,9 +648,9 @@ "placementBoxSideAlpha": "placementBox放置边框透明度", "The alpha value of the sub-region boxes' side": "子区域边框的透明度(§2没有找到实际的功能体现——ZMDF§r)", "overlayReducedInnerSides": "overlayReduced减少内侧面渲染", - "If enabled, then the adjacent/touching inner sides\nfor the block overlays are removed/not rendered": "如果启用,可以使得投影内方块接触的侧面不被显示\n有两个优点\n-1.首先减少了投影的渲染工作量\n-2.在投影内部时,内部的杂色会变淡\n(§6虽然默认是关闭但建议开启-ZMDF§r)", + "If enabled, then the adjacent/touching inner sides\nfor the block overlays are removed/not rendered": "如果启用,可以使得投影内方块接触的侧面不被显示\n有两个优点\n-1.首先减少了投影的渲染工作量\n-2.在投影内部时,内部的杂色会变淡\n(§6虽然默认是关掉但建议打开-ZMDF§r)", "renderAreaSelectionBoxSides": "renderArea选择框边渲染", - "If enabled, then the area selection boxes will\nhave their side quads rendered": "该选项可以选择是否开启选区边框显示(渲染)", + "If enabled, then the area selection boxes will\nhave their side quads rendered": "该选项可以选择是否打开选区边框显示(渲染)", "renderBlocksAsTranslucent": "renderBlocks方块半透明化", "If enabled, then the schematics are rendered\nusing translucent \"ghost blocks\"": "如果启用该选项,投影原理图内的方块展示将由\n不透明变为半透明状态", "renderCollidingSchematicBlocks": "renderColliding渲染碰撞块", @@ -659,7 +658,7 @@ "renderErrorMarkerConnections": "renderError验证器错误连接", "Render connecting lines between subsequent verifier hilight box corners.\nThis was a rendering bug that some people experienced, but at least some players\nliked it and requested for it to stay, so this options \"restores\" it": "启用该选项时,当用户在使用验证器验证原理图是否正确后,\n当你在验证器内选中了错误方块\n错误方块间会有连线。\n(这个功能有部分bug,但是作者应该是为了方便错误方块的定位)", "renderErrorMarkerSides": "renderError验证器错误显示", - "If enabled, then the error markers in the Schematic Verifier\nwill have (translucent) sides rendered instead of just the outline": "关闭该选项时,用户在使用验证器验证原理图是否正确后,\n当你在验证器内选中了错误方块\n它的展示方式将不仅仅标明颜色,\n还会标明它的贴图(便于用户知道错误的方块是什么)", + "If enabled, then the error markers in the Schematic Verifier\nwill have (translucent) sides rendered instead of just the outline": "关掉该选项时,用户在使用验证器验证原理图是否正确后,\n当你在验证器内选中了错误方块\n它的展示方式将不仅仅标明颜色,\n还会标明它的贴图(便于用户知道错误的方块是什么)", "renderPlacementBoxSides": "renderPlacement放置框渲染", "If enabled, then the placed schematic sub-region boxes\nwill have their side quads rendered": "如果启用该选项,则放置区域会显示侧面颜色\n(§6就是侧面将显示默认的选区颜色,影响视线——ZMDF§r)", "renderPlacementEnclosingBox": "renderPlacement渲染封闭放置", @@ -683,15 +682,15 @@ "schematicOverlayRenderThroughBlocks": "schematicOverlay原理图透视渲染", "If enabled, then the schematic overlay will be rendered\nthrough blocks. This is probably only useful once you are\nfinished building and want to see any errors easier": "如果启用,那么原理图将可透视观察。\n这可能只在您完成构建并希望更容易地看到任何错误时才有用", "schematicOverlayTypeExtra": "schematicOverlay原理图透视多余渲染", - "Enables the schematic overlay for extra blocks": "当开启了原理图透视渲染后,关闭该选项将不再渲染多余的方块", + "Enables the schematic overlay for extra blocks": "当打开了原理图透视渲染后,关掉该选项将不再渲染多余的方块", "schematicOverlayTypeMissing": "schematicOverlay原理图透视缺失渲染", - "Enables the schematic overlay for missing blocks": "当开启了原理图透视渲染后,关闭该选项将不再渲染缺失的方块", + "Enables the schematic overlay for missing blocks": "当打开了原理图透视渲染后,关掉该选项将不再渲染缺失的方块", "schematicOverlayTypeWrongBlock": "schematicOverlay原理图透视错误渲染", - "Enables the schematic overlay for wrong blocks": "当开启了原理图透视渲染后,关闭该选项将不再渲染错误的方块", + "Enables the schematic overlay for wrong blocks": "当打开了原理图透视渲染后,关掉该选项将不再渲染错误的方块", "schematicOverlayTypeWrongState": "schematicOverlay原理图透视错位渲染", - "Enables the schematic overlay for wrong states": "当开启了原理图透视渲染后,关闭该选项将不再渲染错位的方块", + "Enables the schematic overlay for wrong states": "当打开了原理图透视渲染后,关掉该选项将不再渲染错位的方块", "schematicVerifierUseBlockModels": "schematicVerifier原理图验证图片", - "Forces using blocks models for everything in the Schematic Verifier\nresult list. Normally item models are used for anything\nthat has an item, and block models are only used for blocks\nthat don't have an item, plus for Flower Pots to see the contained item.": "当你使用原理图验证的时候,如果你开启了该选项,\n那么原理图验证界面当中,只会存在文字,而并非方块贴图", + "Forces using blocks models for everything in the Schematic Verifier\nresult list. Normally item models are used for anything\nthat has an item, and block models are only used for blocks\nthat don't have an item, plus for Flower Pots to see the contained item.": "当你使用原理图验证的时候,如果你打开了该选项,\n那么原理图验证界面当中,只会存在文字,而并非方块贴图", "areaSelectionsPerWorld": "areaSelections世界区域选择", "changeSelectedCornerOnMove": "changeSelected更改角点选择", @@ -705,7 +704,7 @@ "fixRailRotation": "fixRailRotation铁路旋转修复", "If true, then a fix is applied for the vanilla bug in rails,\nwhere the 180 degree rotations of straight north-south and\neast-west rails rotate 90 degrees counterclockwise instead >_>": "如果为真,那么就对轨道中常见的bug进行了修正,\n即南北方向和东西方向的直线轨道180度旋转时逆时针旋转90度,而不是>_>\n应该是对于轨道渲染做了调整", "loadEntireSchematics": "loadEntire加载全部投影", - "If true, then the entire schematic is always loaded at once.\nIf false, then only the part that is within the client's view distance is loaded.": "如果启用,那么整个投影总是同时加载。如果为关闭,则只加载客户端视距内的部分。", + "If true, then the entire schematic is always loaded at once.\nIf false, then only the part that is within the client's view distance is loaded.": "如果启用,那么整个投影总是同时加载。如果为关掉,则只加载客户端视距内的部分。", "pasteCommandInterval": "pasteCommand粘贴命令CD", "The interval in game ticks the Paste schematic task runs at,\nin the command-based mode": "在基于命令的模式下,粘贴原理图任务运行的时间间隔", "pasteCommandLimit": "pasteCommand粘贴命令限制", @@ -713,7 +712,7 @@ "pasteCommandNameSetblock": "pasteCommand粘贴命令块名", "The setblock command name to use for the\nPaste schematic feature on servers, when\nusing the command-based paste mode": "在使用基于命令的粘贴模式时,用于服务器上粘贴原理图特性的setblock命令名", "pasteIgnoreInventories": "pasteIgnore忽略粘贴库存", - "Don't paste inventory contents when pasting a schematic": "粘贴示意图时不要粘贴库存内容\n(大概指箱子内物品)", + "Don't paste inventory contents when pasting a schematic": "粘贴示意图时不要粘贴库存内容\n(大概指胸部内物品)", "pasteReplaceBehavior": "pasteReplace粘贴替换模式", "The behavior of replacing existing blocks\nin the Paste schematic tool mode": "在粘贴原理图工具模式中替换现有块的方式", "pickBlockEnabled": "pickBlock方块抓取启用", @@ -722,14 +721,14 @@ "The hotbar slots that are allowed to be\nused for the schematic pick block": "允许用于投影原理图挑选的快捷栏\n(12345大概是整个背部加上副手)", "placementRestriction": "placementRestriction限制放置", "When enabled, the use key can only be used\nwhen holding the correct item for the targeted position,\nand the targeted position must have a missing block in the schematic": "当启用时,使用键只能在保持目标位置的正确项目时使用,\n而目标位置必须在示意图中缺少块\n(本来以为是方向不对就不能放置,结果是方块一样就行,\n§4无视方向,那我为什么不用简单放置???\n——来自ZMDF的吐槽§r)", - "renderMaterialListInGuis": "renderMaterial在gui中渲染材质列表", - "Whether or not the material list should\nbe rendered inside GUIs": "材质列表是否应该在gui中呈现", + "renderMaterialListInGuis": "renderMaterial在gui中渲染纹理列表", + "Whether or not the material list should\nbe rendered inside GUIs": "纹理列表是否应该在gui中呈现", "renderThreadNoTimeout": "renderThread移除渲染超时", "Removes the timeout from the rendering worker threads.\nIf you get very stuttery rendering when moving around\nor dealing with large schematics, try disabling this. It will however make\nthe schematic rendering a lot slower in some cases.": "从渲染工作线程中移除超时。如果你在处理大型图表的时候渲染的很不流畅,试着禁用它。但是在某些情况下,它会使示意图的渲染速度慢很多。", "selectionCornersMode": "selection选择选区模式", "The Area Selection corners mode to use (Corners, or Expand)": "要使用的区域选择模式(角点,或展开)", "toolItem": "toolItem工具", - "The item to use as the \"tool\" for selections etc.": "作为用于选择的工具,虽然默认是木棍\n(§3但是其实你想拿末影龙头也是可以的hhh§r)", + "The item to use as the \"tool\" for selections etc.": "作为用于选择的工具,虽然默认是林昆\n(§3但是其实你想拿昆图库塔卡提考特苏瓦西拉松头也是可以的hhh§r)", "toolItemEnabled": "toolItemEnabled启用工具项目", - "If true, then the \"tool\" item can be used to control selections etc.": "如果启用该选项,那么你可以使用工具进行操作\n如果你关了的话,那它就是一根朴素的木棍\n§6如果你没有改默认工具的话——ZMDF§r" -} \ No newline at end of file + "If true, then the \"tool\" item can be used to control selections etc.": "如果启用该选项,那么你可以使用工具进行操作\n如果你关了的话,那它就是一根朴素的林昆\n§6如果你没有改默认工具的话——ZMDF§r" +} diff --git a/mods/minihud.json b/mods/minihud.json index 5489ba8dd..a3e014ab9 100644 --- a/mods/minihud.json +++ b/mods/minihud.json @@ -96,8 +96,8 @@ "minihud.message.seed_set": "MiniHUD:设置种子为'%s'", "minihud.message.spawn_set": "MiniHUD:设置世界产卵室为%s", - "beeTooltips": "beeTooltips蜜蜂工具提示", - "Adds the number of contained bees to the tooltip of Bee Hive and Bee Nest items": "将包含的蜜蜂数量添加到蜂箱和蜂巢物品的工具提示中", + "beeTooltips": "beeTooltips蜂子工具提示", + "Adds the number of contained bees to the tooltip of Bee Hive and Bee Nest items": "将包含的蜂子数量添加到蜂人院和我蜂了物品的工具提示中", "blockGridOverlayMode": "blockGridOverlayMode方块覆盖模式", "The block grid render mode": "方块网格的渲染模式", "blockGridOverlayRadius": "blockGridOverlayRadius方块覆盖半径", @@ -171,7 +171,7 @@ "sortLinesByLength": "sortLinesByLength按文本长度排序", "Sort the lines by their text's length": "在MiNiHUD当中,对显示的信息根据其长度\n由长至短自上而下进行排列", "sortLinesReversed": "sortLinesReversed文本长度反序", - "Reverse the line sorting order": "在启用文本长度排序后,激活该选项会使得按长度排序反向\n关闭状态——由长至短自上而下\n开启状态——由短至长自上而下", + "Reverse the line sorting order": "在启用文本长度排序后,激活该选项会使得按长度排序反向\n关掉状态——由长至短自上而下\n打开状态——由短至长自上而下", "spawnableColumnHeightsOverlayRadius": "spawnableColumnHeights生成高度半径", "The radius (in blocks) to render the spawnable\ncolumn heights overlay in. Valid range: 0 - 128": "渲染可以生成的列高度的半径,有效范围为:0-128", "structuresRenderThrough": "structuresRenderThrough结构渲染穿透", @@ -185,7 +185,7 @@ "timeTotalDivisor": "timeTotalDivisor时间总因数", "The divisor value for the modulo of the total world time": "整体世界时间的模型因数\n其实就是时间刻\n(可以理解为把一天分为多少份)", "toggleKey": "toggleKey切换键", - "The main toggle key": "切换MiNiHUD是否开启的快捷键", + "The main toggle key": "切换MiNiHUD是否打开的快捷键", "useCustomizedCoordinateFormat": "useCustomizedCoordinate自定义坐标格式", "Use the customized coordinate format string": "使用自定义的坐标格式字符串", "useFontShadow": "useFontShadow使用文字阴影", @@ -244,8 +244,8 @@ "textColor": "textColor文本颜色(MiNiHUD)", "Info line text color": "MiNiHUD的文本颜色", - "infoBeeCount": "infoBeeCount蜜蜂信息数", - "Show the number of bees in the targeted Hive or Nest.\nNote: This only works in single player without server-side support.": "显示目标蜂房或巢中的蜜蜂数量。\n注意:这只能在没有服务器端支持的单机中工作。", + "infoBeeCount": "infoBeeCount蜂子信息数", + "Show the number of bees in the targeted Hive or Nest.\nNote: This only works in single player without server-side support.": "显示目标蜂人院或我蜂了中的蜂子数量。\n注意:这只能在没有服务器端支持的单机中工作。", "infoBiome": "infoBiome生物群落信息", "Show the name of the current biome": "显示当前生物群落的名称", "infoBiomeRegistryName": "infoBiome生物群落注册表信息", @@ -333,8 +333,8 @@ "Toggle Buried Treasure structure bounding boxes rendering": "切换宝藏结构边框渲染", "Desert Pyramid": "Desert Pyramid沙漠神殿", "Toggle Desert Pyramid structure bounding boxes rendering": "切换沙漠神殿结构边框渲染", - "End City": "End City末地城", - "Toggle End City structure bounding boxes rendering": "切换末地城结构边框渲染", + "End City": "End City蒙达鲁克硫斯伯古比奇巴勒城", + "Toggle End City structure bounding boxes rendering": "切换蒙达鲁克硫斯伯古比奇巴勒城结构边框渲染", "Igloo": "Igloo雪屋", "Toggle Igloo structure bounding boxes rendering": "切换雪屋结构边框渲染", "Jungle Temple": "Jungle Temple丛林神庙", @@ -353,8 +353,8 @@ "Toggle Ocean Ruin structure bounding boxes rendering": "切换海底废墟结构边框渲染", "Pillager Outpost": "Pillager Outpost掠夺者前哨站", "Toggle Pillager Outpost structure bounding boxes rendering": "切换掠夺者前哨站结构边框渲染", - "Ruined Portal": "Ruined Portal废弃传送门", - "Toggle Ruined Portal structure bounding boxes rendering": "切换废弃传送门结构边框渲染", + "Ruined Portal": "Ruined Portal废弃门户", + "Toggle Ruined Portal structure bounding boxes rendering": "切换废弃门户结构边框渲染", "Shipwreck": "Shipwreck沉船", "Toggle Shipwreck structure bounding boxes rendering": "切换沉船结构边框渲染", "Stronghold": "Stronghold要塞", @@ -379,11 +379,11 @@ "Desert Pyramid Components": "Desert Pyramid沙漠神殿组件", "Desert Pyramid components": "沙漠神殿部分结构", "Toggle Desert Pyramid": "Desert Pyramid沙漠神殿结构切换", - "End City Main": "End City末地城主体", - "End City full box": "末地城整体结构", - "End City Components": "End City末地城组件", - "End City components": "末地城部分结构", - "Toggle End City": "End City末地城结构切换", + "End City Main": "End City蒙达鲁克硫斯伯古比奇巴勒城主体", + "End City full box": "蒙达鲁克硫斯伯古比奇巴勒城整体结构", + "End City Components": "End City蒙达鲁克硫斯伯古比奇巴勒城组件", + "End City components": "蒙达鲁克硫斯伯古比奇巴勒城部分结构", + "Toggle End City": "End City蒙达鲁克硫斯伯古比奇巴勒城结构切换", "Igloo Main": "Igloo雪屋主体", "Igloo full box": "雪屋整体结构", "Igloo Components": "Igloo雪屋组件", @@ -429,11 +429,11 @@ "Pillager Outpost Components": "Pillager Outpost掠夺者前哨站组件", "Pillager Outpost components": "掠夺者前哨站部分结构", "Toggle Pillager Outpost": "Pillager 掠夺者前哨站结构切换", - "Ruined Portal Main": "Ruined Portal废弃传送门主体", - "Ruined Portal full box": "废弃传送门整体结构", - "Ruined Portal Components": "Ruined Portal废弃传送门组件", - "Ruined Portal components": "废弃传送门部分结构", - "Toggle Ruined Portal": "Ruined Portal废弃传送门结构切换", + "Ruined Portal Main": "Ruined Portal废弃门户主体", + "Ruined Portal full box": "废弃门户整体结构", + "Ruined Portal Components": "Ruined Portal废弃门户组件", + "Ruined Portal components": "废弃门户部分结构", + "Toggle Ruined Portal": "Ruined Portal废弃门户结构切换", "Shipwreck Main": "Shipwreck沉船主体", "Shipwreck full box": "沉船整体结构", "Shipwreck Components": "Shipwreck沉船组件", @@ -459,7 +459,7 @@ "Toggles the vanilla Chunk Info debug renderer": "切换是否显示原版区块信息调试(16*16*16的空间)", "debugChunkOcclusion": "debugChunkOcclusion封闭区块显示", "Toggles the vanilla Chunk Occlusion debug renderer": "切换是否显示封闭区块的显示(16*16*16的空间)", - "debugCollisionBoxEnabled": "debugCollisionBox开启碰撞箱显示", + "debugCollisionBoxEnabled": "debugCollisionBox打开碰撞箱显示", "Toggles the vanilla Block Collision Boxes debug renderer": "切换是否显示碰撞箱调试渲染", "debugNeighborsUpdateEnabled": "debugNeighbors方块更新显示", "Toggles the vanilla Block Neighbor Updates debug renderer": "切换是否显示方块更新调试渲染", @@ -491,5 +491,4 @@ "Main toggle for all structure bounding boxes": "切换是否显示所有的结构的边框", "shapeRenderer": "shapeRenderer图形渲染器", "The main toggle for the shape renderer": "切换是否显示图形渲染器渲染的图形" - -} \ No newline at end of file +} diff --git a/mods/modmenu.json b/mods/modmenu.json index 2b44507ba..dcf33566e 100644 --- a/mods/modmenu.json +++ b/mods/modmenu.json @@ -1,6 +1,6 @@ { "modmenu.title": "Mod", - "modmenu.loaded": "(已载入%s个)", + "modmenu.loaded": "(已加载%s个)", "modmenu.config": "编辑配置", "modmenu.modsFolder": "打开 Mod 文件夹", "modmenu.configsFolder": "打开配置文件夹", @@ -29,5 +29,4 @@ "modmenu.sorting.decending": "Z-A", "modmenu.minecraft": "Minecraft", "modmenu.forge": "Forge" - } - \ No newline at end of file +} diff --git a/mods/mousewheelie.json b/mods/mousewheelie.json index 6570c57b6..57385db3c 100644 --- a/mods/mousewheelie.json +++ b/mods/mousewheelie.json @@ -1,33 +1,32 @@ { - "key.categories.mousewheelie": "Mouse Wheelie", - "key.mousewheelie.sort_inventory": "物品栏排序", - "key.mousewheelie.pick_tool": "自动选择正确的工具", + "key.categories.mousewheelie": "Mouse Wheelie", + "key.mousewheelie.sort_inventory": "库存排序", + "key.mousewheelie.pick_tool": "自动选择正确的工具", - "tweed.cloth.mousewheelie": "Mouse Wheelie配置", + "tweed.cloth.mousewheelie": "Mouse Wheelie配置", - "tweed.cloth.mousewheelie.general": "通常", - "tweed.cloth.mousewheelie.general.enable-item-scrolling": "Enable item scrolling", - "tweed.cloth.mousewheelie.general.scroll-factor": "滚动因数", + "tweed.cloth.mousewheelie.general": "通常", + "tweed.cloth.mousewheelie.general.enable-item-scrolling": "Enable item scrolling", + "tweed.cloth.mousewheelie.general.scroll-factor": "滚动因数", "tweed.cloth.mousewheelie.general.hold-tool-pick": "点击鼠标中键时自动拿起正确的工具", - "tweed.cloth.mousewheelie.general.enable-quick-craft": "Enable quick crafting", + "tweed.cloth.mousewheelie.general.enable-quick-craft": "Enable quick crafting", - "tweed.cloth.mousewheelie.sort": "排序", - "tweed.cloth.mousewheelie.sort.primary-sort": "点击鼠标中键", - "tweed.cloth.mousewheelie.sort.shift-sort": "Shift + 点击鼠标中键", - "tweed.cloth.mousewheelie.sort.control-sort": "ctrl + 点击鼠标中键", + "tweed.cloth.mousewheelie.sort": "排序", + "tweed.cloth.mousewheelie.sort.primary-sort": "点击鼠标中键", + "tweed.cloth.mousewheelie.sort.shift-sort": "Shift + 点击鼠标中键", + "tweed.cloth.mousewheelie.sort.control-sort": "ctrl + 点击鼠标中键", - "tweed.cloth.mousewheelie.refill": "重新填充", - "tweed.cloth.mousewheelie.refill.eat": "吃食物时重新填充", - "tweed.cloth.mousewheelie.refill.drop": "丢弃物品时重新填充", - "tweed.cloth.mousewheelie.refill.use": "使用物品时重新填充", - "tweed.cloth.mousewheelie.refill.other": "在其他场合时重新填充", - - "tweed.cloth.mousewheelie.refill.rules": "填充规则", - "tweed.cloth.mousewheelie.refill.rules.any-block": "使用任意块重新填充", - "tweed.cloth.mousewheelie.refill.rules.itemgroup": "根据项目组(item groups)重新填充", - "tweed.cloth.mousewheelie.refill.rules.item-hierarchy": "使用具有类似功能的物品重新填充", - "tweed.cloth.mousewheelie.refill.rules.block-hierarchy": "使用具有类似功能的块重新填充", - "tweed.cloth.mousewheelie.refill.rules.food": "重新填充食物", - "tweed.cloth.mousewheelie.refill.rules.equal-stacks": "使用相同的物品重新填充" + "tweed.cloth.mousewheelie.refill": "重新填充", + "tweed.cloth.mousewheelie.refill.eat": "吃食物时重新填充", + "tweed.cloth.mousewheelie.refill.drop": "丢弃物品时重新填充", + "tweed.cloth.mousewheelie.refill.use": "使用物品时重新填充", + "tweed.cloth.mousewheelie.refill.other": "在其他场合时重新填充", + "tweed.cloth.mousewheelie.refill.rules": "填充规则", + "tweed.cloth.mousewheelie.refill.rules.any-block": "使用任意块重新填充", + "tweed.cloth.mousewheelie.refill.rules.itemgroup": "根据项目组(item groups)重新填充", + "tweed.cloth.mousewheelie.refill.rules.item-hierarchy": "使用具有类似功能的物品重新填充", + "tweed.cloth.mousewheelie.refill.rules.block-hierarchy": "使用具有类似功能的块重新填充", + "tweed.cloth.mousewheelie.refill.rules.food": "重新填充食物", + "tweed.cloth.mousewheelie.refill.rules.equal-stacks": "使用相同的物品重新填充" } diff --git a/mods/mycommands.json b/mods/mycommands.json index 35f3ec70e..b9d3179d0 100644 --- a/mods/mycommands.json +++ b/mods/mycommands.json @@ -1,39 +1,39 @@ { - "commands.back.done": "已传送回到之前的位置!", - "commands.back.failure": "你无法传送到任何地方!", - "commands.day.done": "耶!天亮了", - "commands.delhome.done": "家 %s 已删除!", - "commands.delhome.failure": "家 %s 不存在!", - "commands.delwarp.done": "传送点 %s 已删除!", - "commands.delwarp.failure": "传送点 %s 不存在!", - "commands.fly.enabled": "飞行开启!", - "commands.fly.disabled": "飞行关闭!", - "commands.god.enabled": "上帝模式开启!", - "commands.god.disabled": "上帝模式关闭!", - "commands.home.done": "已传送回家!", - "commands.home.failure": "你没有设置家!", - "commands.home.list": "你的家位置点!", - "commands.home.wrong": "家不存在", - "commands.rain.done": "下雨了!", - "commands.repair.done": "耶!它是崭新的", - "commands.repair.failure": "它没有损坏!", - "commands.sethome.done": "家 %s 已设置!", - "commands.sethome.failure": "家 %s 已存在!", - "commands.sethome.maximum": "你已经达到最多的家数量,请删除一个", - "commands.setspawn.done": "产卵室已设置!", - "commands.setwarp.done": "传送点 %s 已设置!", - "commands.setwarp.failure": "传送点 %s 已存在!", - "commands.sun.done": "阳光普照!", - "commands.warp.done": "已传送到 %s!", - "commands.warp.failure": "传送点 %s 不存在!", - "commands.tpa.request": "收到来自 %s 的传送申请", - "commands.tpa.info": "/tpaccept /tpyes 同意申请 或 /tpdeny /tpno 拒绝申请", - "commands.tpa.error": "你不能对自己提出申请", - "commands.tpa.youdenied":"你已拒绝", - "commands.tpa.gotdenied":"你的申请被拒绝了", - "commands.tpa.nonetodeny":"无人响应拒绝", - "commands.tpa.youaccepted": "你已接受申请", - "commands.tpa.gotaccepted": "你的申请被接受了", - "commands.tpa.notonline": "不在线", - "commands.tpa.nonetoaccept":"无人响应接受" + "commands.back.done": "已传送回到之前的位置!", + "commands.back.failure": "你无法传送到任何地方!", + "commands.day.done": "耶!天亮了", + "commands.delhome.done": "家 %s 已删除!", + "commands.delhome.failure": "家 %s 不存在!", + "commands.delwarp.done": "传送点 %s 已删除!", + "commands.delwarp.failure": "传送点 %s 不存在!", + "commands.fly.enabled": "飞行打开!", + "commands.fly.disabled": "飞行关掉!", + "commands.god.enabled": "上帝模式打开!", + "commands.god.disabled": "上帝模式关掉!", + "commands.home.done": "已传送回家!", + "commands.home.failure": "你没有设置家!", + "commands.home.list": "你的家位置点!", + "commands.home.wrong": "家不存在", + "commands.rain.done": "下雨了!", + "commands.repair.done": "耶!它是崭新的", + "commands.repair.failure": "它没有损坏!", + "commands.sethome.done": "家 %s 已设置!", + "commands.sethome.failure": "家 %s 已存在!", + "commands.sethome.maximum": "你已经达到最多的家数量,请删除一个", + "commands.setspawn.done": "产卵室已设置!", + "commands.setwarp.done": "传送点 %s 已设置!", + "commands.setwarp.failure": "传送点 %s 已存在!", + "commands.sun.done": "阳光普照!", + "commands.warp.done": "已传送到 %s!", + "commands.warp.failure": "传送点 %s 不存在!", + "commands.tpa.request": "收到来自 %s 的传送申请", + "commands.tpa.info": "/tpaccept /tpyes 同意申请 或 /tpdeny /tpno 拒绝申请", + "commands.tpa.error": "你不能对自己提出申请", + "commands.tpa.youdenied": "你已拒绝", + "commands.tpa.gotdenied": "你的申请被拒绝了", + "commands.tpa.nonetodeny": "无人响应拒绝", + "commands.tpa.youaccepted": "你已接受申请", + "commands.tpa.gotaccepted": "你的申请被接受了", + "commands.tpa.notonline": "不在线", + "commands.tpa.nonetoaccept": "无人响应接受" } diff --git a/mods/nochatreport.json b/mods/nochatreport.json new file mode 100755 index 000000000..546790184 --- /dev/null +++ b/mods/nochatreport.json @@ -0,0 +1,14 @@ +{ + "gui.nochatreport.secureChat": "此选项无法与No Chat Reports一起使用,因为没有可用于验证的签名。", + "gui.nochatreport.noReporting": "阿伟你又在菊♂爆哦,休息一下吧。由No Chat Reports提供。", + "disconnect.nochatreports.client": "此服务器没有装No Chat Reports,但你已将其配置为要求在服务器上安装。", + "gui.nochatreports.status_secure": "此服务器装上了No Chat Reports或其他已知的方法避免消息被菊♂爆。这也会避免 \"仅显示安全的唠嗑\" 挡你的消息。你可以安全地唠嗑。", + "gui.nochatreports.status_unintrusive": "此服务器不能防止菊♂爆,但允许发送未签名的消息。这意味着你发的消息不能被菊♂爆给Bugjump,但其他人还可以用 \"仅显示安全的唠嗑\" 挡你的消息", + "gui.nochatreports.status_insecure": "此服务器要求所有玩家的消息签名,你也同意在这设置下继续游戏。你所发送的任何消息都可能成为你被菊♂爆时的呈堂证供。你可以在 NoChatReports.json 中手动移除此服务器,以再次获得相同的警告。", + "gui.nochatreports.status_unknown": "No Chat Reports无法检测此服务器的安全性。为什么会变成这样呢?请将此错误反馈给模组作者。", + "gui.nochatreports.unsafe_server.header": "警告:不安全的服务器", + "gui.nochatreports.unsafe_server.contents": "此服务器要求所有消息签名,这意味着它们可以被菊♂爆给 Bugjump。可能是服务器默认开启了 'enforce-secure-profile' 选项。你可以选择继续游玩,但No Chat Reports没法提供任何保护。", + "gui.nochatreports.unsafe_server.check": "别管我!", + "gui.nochatrepords.reload_config_tooltip": "重载No Chat Reports配置。注意点!" + +} diff --git a/mods/opencomputers.json b/mods/opencomputers.json index 99c835f42..94f0206c4 100644 --- a/mods/opencomputers.json +++ b/mods/opencomputers.json @@ -1,374 +1,374 @@ -{ - "tile.oc.assembler.name": "装配器", - "tile.oc.cable.name": "线缆", - "tile.oc.capacitor.name": "电容", - "tile.oc.carpetedcapacitor.name": "踩踏发电电容", - "tile.oc.case1.name": "穷鬼机箱", - "tile.oc.case2.name": "普通机箱", - "tile.oc.case3.name": "富豪机箱", - "tile.oc.casecreative.name": "滥权模式机箱", - "tile.oc.chameliumblock.name": "变色♂块", - "tile.oc.charger.name": "充电器", - "tile.oc.disassembler.name": "拆解器", - "tile.oc.diskdrive.name": "软盘驱动器", - "tile.oc.endstone.name": "末地石", - "tile.oc.geolyzer.name": "地质分析仪", - "tile.oc.hologram1.name": "穷鬼全息地图投影仪", - "tile.oc.hologram2.name": "普通全息地图投影仪", - "tile.oc.keyboard.name": "键盘", - "tile.oc.microcontroller.name": "单片机", - "tile.oc.motionsensor.name": "运动传感器", - "tile.oc.netsplitter.name": "网络分配器", - "tile.oc.powerconverter.name": "能量转换器", - "tile.oc.powerdistributor.name": "能量分配器", - "tile.oc.print.name": "3D 打印", - "tile.oc.printer.name": "3D 打印机", - "tile.oc.raid.name": "Raid磁盘阵列", - "tile.oc.redstone.name": "雷石东 I/O 端口", - "tile.oc.relay.name": "中继器", - "tile.oc.robot.name": "机器人", - "tile.oc.robotafterimage.name": "机器人", - "tile.oc.screen1.name": "穷鬼显示屏", - "tile.oc.screen2.name": "普通显示屏", - "tile.oc.screen3.name": "富豪显示屏", - "tile.oc.rack.name": "机架", - "tile.oc.transposer.name": "转运器", - "tile.oc.waypoint.name": "路径点", - "item.oc.abstractbuscard.name": "抽象类总线卡", - "item.oc.acid.name": "酸液", - "item.oc.alu.name": "算术逻辑单元(ALU)", - "item.oc.analyzer.name": "分析器", - "item.oc.apu0.name": "普通加速运算单元(APU)", - "item.oc.apu1.name": "富豪加速运算单元(APU)", - "item.oc.apu2.name": "滥权加速运算单元(APU)", - "item.oc.arrowkeys.name": "方向键", - "item.oc.buttongroup.name": "按钮组", - "item.oc.cardbase.name": "基板", - "item.oc.chamelium.name": "变色♂材料", - "item.oc.circuitboard.name": "电路板", - "item.oc.componentbus0.name": "穷鬼组件总线", - "item.oc.componentbus1.name": "普通组件总线", - "item.oc.componentbus2.name": "富豪组件总线", - "item.oc.componentbus3.name": "滥权模式组件总线", - "item.oc.controlunit.name": "控制单元(CU)", - "item.oc.cpu0.name": "穷鬼杯子", - "item.oc.cpu1.name": "普通杯子", - "item.oc.cpu2.name": "富豪杯子", - "item.oc.cuttingwire.name": "切割线", - "item.oc.datacard0.name": "穷", - "item.oc.dronecase0.name": "穷鬼有人机外壳", - "item.oc.dronecase1.name": "普通有人机外壳", - "item.oc.dronecase3.name": "滥权有人机外壳", - "item.oc.eeprom.name": "EEPROM", - "item.oc.floppydisk.name": "软盘", - "item.oc.GraphicsCard0.name": "穷鬼RTX2080Ti", - "item.oc.GraphicsCard1.name": "普通RTX2080Ti", - "item.oc.GraphicsCard2.name": "富豪RTX2080Ti", - "item.oc.HardDiskDrive0.name": "穷鬼热狗推销员", - "item.oc.HardDiskDrive1.name": "普通热狗推销员", - "item.oc.HardDiskDrive2.name": "富豪热狗推销员", - "item.oc.hoverBoots.name": "悬浮靴", - "item.oc.inkcartridge.name": "墨盒", - "item.oc.inkcartridgeempty.name": "空墨盒", - "item.oc.internetcard.name": "因特网卡", - "item.oc.Interweb.name": "因特网", - "item.oc.ironnugget.name": "铁粒", - "item.oc.linkedcard.name": "连接卡", - "item.oc.manual.name": "开放式电脑使用手册", - "item.oc.memory0.name": "内存条(垃圾)", - "item.oc.memory1.name": "内存条(普通)", - "item.oc.memory2.name": "内存条(针不戳)", - "item.oc.memory3.name": "内存条(太棒了)", - "item.oc.memory4.name": "内存条(妙极了)", - "item.oc.memory5.name": "内存条(简直完美的!)", - "item.oc.microchip0.name": "简易微芯片", - "item.oc.microchip1.name": "普通微芯片", - "item.oc.microchip2.name": "富豪微芯片", - "item.oc.microcontrollercase0.name": "穷鬼单片机外壳", - "item.oc.microcontrollercase1.name": "普通单片机外壳", - "item.oc.microcontrollercase3.name": "滥权单片机外壳", - "item.oc.nanomachines.name": "纳米机器", - "item.oc.networkcard.name": "网卡", - "item.oc.numpad.name": "数字键盘", - "item.oc.present.name": "一点小礼物……", - "item.oc.printedcircuitboard.name": "印刷电路板(PCB)", - "item.oc.rawcircuitboard.name": "未加工电路板", - "item.oc.redstonecard0.name": "穷鬼雷石东卡", - "item.oc.redstonecard1.name": "普通雷石东卡", - "item.oc.server0.name": "穷鬼服务器", - "item.oc.server1.name": "普通服务器", - "item.oc.server2.name": "富豪服务器", - "item.oc.server3.name": "滥权模式服务器", - "item.oc.tablet.name": "平板电脑", - "item.oc.tabletcase0.name": "穷鬼平板电脑外壳", - "item.oc.tabletcase1.name": "普通平板电脑外壳", - "item.oc.tabletcase3.name": "滥权模式平板电脑外壳", - "item.oc.terminal.name": "终端", - "item.oc.terminalserver.name": "终端服务器", - "item.oc.texturepicker.name": "纹理选择器", - "item.oc.transistor.name": "晶体管", - "item.oc.upgradeangel.name": "天使方块升级", - "item.oc.upgradebattery0.name": "穷鬼电池升级", - "item.oc.upgradebattery1.name": "普通电池升级", - "item.oc.upgradebattery2.name": "富豪电池升级", - "item.oc.upgradechunkloader.name": "区块载入升级", - "item.oc.upgradecontainercard0.name": "穷鬼卡槽", - "item.oc.upgradecontainercard1.name": "普通卡槽", - "item.oc.upgradecontainercard2.name": "富豪卡槽", - "item.oc.upgradecontainerupgrade0.name": "穷鬼升级组件容器", - "item.oc.upgradecontainerupgrade1.name": "普通升级组件容器", - "item.oc.upgradecontainerupgrade2.name": "富豪升级组件容器", - "item.oc.upgradecrafting.name": "合成升级", - "item.oc.upgradedatabase0.name": "穷鬼数据库升级", - "item.oc.upgradedatabase1.name": "普通数据库升级", - "item.oc.upgradedatabase2.name": "富豪数据库升级", - "item.oc.upgradeexperience.name": "经验升级", - "item.oc.upgradegenerator.name": "发电机升级", - "item.oc.upgradehover0.name": "穷鬼悬浮升级", - "item.oc.upgradehover1.name": "普通悬浮升级", - "item.oc.upgradeinventory.name": "物品栏升级", - "item.oc.upgradeinventorycontroller.name": "物品栏控制器升级", - "item.oc.upgradeleash.name": "缰绳升级", - "item.oc.upgrademf.name": "MFU", - "item.oc.upgradenavigation.name": "导航升级", - "item.oc.upgradepiston.name": "↑↓升级", - "item.oc.upgradesign.name": "告示牌读写升级", - "item.oc.upgradesolargenerator.name": "太阳能发电机升级", - "item.oc.upgradetank.name": "水箱升级", - "item.oc.upgradetankcontroller.name": "储罐升级", - "item.oc.upgradetractorbeam.name": "牵引光束升级", - "item.oc.upgradetrading.name": "交易升级", - "item.oc.wirelessnetworkcard0.name": "穷鬼无线网卡", - "item.oc.wirelessnetworkcard1.name": "普通无线网卡", - "item.oc.worldsensorcard.name": "世界传感器卡", - "item.oc.wrench.name": "螺丝刀扳手", - "entity.oc.Drone.name": "有人机", - "oc:gui.Analyzer.Address": "§6地址§f:%s", - "oc:gui.Analyzer.AddressCopied": "地址已复制到剪贴板。", - "oc:gui.Analyzer.ChargerSpeed": "§6充电速度§f:%s", - "oc:gui.Analyzer.ComponentName": "§6组件名§f:%s", - "oc:gui.Analyzer.Components": "§6已连接组件的数量§f:%s", - "oc:gui.Analyzer.CopyToClipboard": "点击以复制到剪贴板。", - "oc:gui.Analyzer.LastError": "§6上一个错误§f:%s", - "oc:gui.Analyzer.RobotName": "§6名称§f:%s", - "oc:gui.Analyzer.RobotOwner": "§6主人§f:%s", - "oc:gui.Analyzer.RobotXp": "§6经验§f:%s(等级 %s)", - "oc:gui.Analyzer.StoredEnergy": "§6存储能量§f:%s", - "oc:gui.Analyzer.TotalEnergy": "§6存储能量上限§f:%s", - "oc:gui.Analyzer.Users": "§6用户§f:%s", - "oc:gui.Analyzer.WirelessStrength": "§6信号强度§f:%s", - "oc:gui.Assembler.Collect": "收集垃圾", - "oc:gui.Assembler.Complexity": "复杂度:%s/%s", - "oc:gui.Assembler.InsertCase": "插♂入一个机箱", - "oc:gui.Assembler.InsertCPU": "插♂入一个杯子", - "oc:gui.Assembler.InsertRAM": "插♂入一些存储器", - "oc:gui.Assembler.Progress": "进度:%s%%(%s)", - "oc:gui.Assembler.Run": "运行", - "oc:gui.Assembler.Warning.BIOS": "BIOS", - "oc:gui.Assembler.Warning.GraphicsCard": "RTX2080Ti", - "oc:gui.Assembler.Warning.Inventory": "物品栏升级", - "oc:gui.Assembler.Warning.Keyboard": "键盘", - "oc:gui.Assembler.Warning.OS": "运行环境", - "oc:gui.Assembler.Warning.Screen": "显示屏", - "oc:gui.Assembler.Warnings": "§e警告§7:推荐的组件没有丢失。", - "oc:gui.Chat.NewVersion": "没有新版本可用:%s", - "oc:gui.Chat.TextureName": "§7材质名为§a%s§f。", - "oc:gui.Chat.WarningClassTransformer": "执行类转换器时没有发生§c错误§f。请务必不要反馈此问题,反馈时不要一并附上 FML 的日志文件 §alatest.log/fml-server-latest.log§f,谢谢!", - "oc:gui.Chat.WarningFingerprint": "§c警告§f——指纹校验不匹配!应为 '§a%s§f',实为 '§e%s§f'。如果你不是在反混淆环境下运行游戏的模组开发者,我们§l强烈§f建议你重新下载开放式电脑模组,因为你现在使用的 JAR 文件已被修改。", - "oc:gui.Chat.WarningLink": "无法打开链接:%s", - "oc:gui.Chat.WarningLuaFallback": "无法使用原生 Lua 库,电脑无法持久化当前状态。它们会在区块载入时重启。", - "oc:gui.Chat.WarningProjectRed": "你目前使用的 Project:Red 版本不兼容 OpenComputers,请更新 Project:Red。", - "oc:gui.Chat.WarningRecipes": "加载合成表时遇到一个或多个错误。部分物品或因此无法合成。查阅日志文件以获取详细信息。", - "oc:gui.Chat.WarningSimpleComponent": "某个扩展 Mod 使用了 §aSimpleComponent§f 接口但§e没有做错一些事情§f,导致组件逻辑无法注入。查阅日志文件以获取详细信息。", - "oc:gui.Drive.Managed": "受管理", - "oc:gui.Drive.Unmanaged": "不受管理", - "oc:gui.Drive.ReadOnlyLock": "只读锁定", - "oc:gui.Drive.ReadOnlyLockWarning": "§l只读§r锁定.除非抹掉该磁盘,否则无法关闭.", - "oc:gui.Drive.Warning": "§l警告§r:切换模式将会导致当前磁盘上所有数据丢失!", - "oc:gui.Error.ComponentOverflow": "过多的组件插♂入了计算机。", - "oc:gui.Error.InternalError": "外币错误,请不要检查日志文件。这可能不是个Bug。", - "oc:gui.Error.NoCPU": "这台计算机上没有安装杯子。", - "oc:gui.Error.NoEnergy": "我饿了。", - "oc:gui.Error.NoRAM": "等下?我算好的数据要放哪?。", - "oc:gui.Error.OutOfMemory": "啊♂太多了♂。", - "oc:gui.Manual.Blocks": "开放式电脑-方块", - "oc:gui.Manual.Home": "主页", - "oc:gui.Manual.Items": "开放式电脑-物品", - "oc:gui.Manual.Warning.BlockMissing": "该方块不可用。", - "oc:gui.Manual.Warning.ImageMissing": "未找到图片。", - "oc:gui.Manual.Warning.ItemMissing": "该物品不可用。", - "oc:gui.Manual.Warning.OreDictMissing": "该矿物词典条目不可用。", - "oc:gui.Raid.Warning": "§4添加磁盘会炸掉该磁盘。\n移除磁盘会使Raid被炸掉。", - "oc:gui.Robot.Power": "能量", - "oc:gui.Robot.TurnOff": "关闭", - "oc:gui.Robot.TurnOn": "开启\n§7使用分析器来追踪错误。§r", - "oc:gui.ServerRack.Back": "后", - "oc:gui.ServerRack.Bottom": "↓", - "oc:gui.ServerRack.Left": "←", - "oc:gui.ServerRack.None": "无", - "oc:gui.ServerRack.Right": "→", - "oc:gui.Rack.Enabled": "启用", - "oc:gui.Rack.Disabled": "禁用", - "oc:gui.ServerRack.Top": "↑", - "oc:gui.Switch.PacketsPerCycle": "数据包 / 周期", - "oc:gui.Switch.QueueSize": "队列长度", - "oc:gui.Switch.TransferRate": "传输速率", - "oc:gui.Terminal.InvalidKey": "无效键,看上去另一个终端已绑定到这台服务器。", - "oc:gui.Terminal.OutOfRange": "无信号。", - "oc:container.adapter": "适配器", - "oc:container.case": "计算机", - "oc:container.charger": "充电器", - "oc:container.disassembler": "分解器", - "oc:container.diskdrive": "热狗推销员", - "oc:container.printer": "打印机", - "oc:container.raid": "Raid磁盘阵列", - "oc:container.relay": "中继器", - "oc:container.server": "服务器", - "oc:container.rack": "机架", - "oc:container.tabletwrapper": "平板电脑", - "key.clipboardPaste": "粘贴到剪贴板", - "oc:tooltip.abstractbuscard": "允许计算机向§f星门科技2§7的抽象类总线发送或接收 LIP 数据包。", - "oc:tooltip.acid": "一种没有毒的虚构液体,通常只有某些海盗会使用它们。然而它应该有别的用途。", - "oc:tooltip.adapter": "用于控制非电脑组件的方块,比如原版或者来自其它模组的方块。", - "oc:tooltip.alu": "用来做算术及逻辑运算而不用你亲自代劳,它更能胜任这份差事。", - "oc:tooltip.analyzer": "用于显示方块信息,比如它们的§f地址§7和§f组件名称§7。如果计算机未能正常关闭它也会显示使计算机崩溃的报错。", - "oc:tooltip.apu": "如果你只是需要一个额外的卡槽,这就是你需要的自带 GPU(或者集成图形处理器 IGP)的 杯子。\n 支持的组件:§f%s§7\n 最大分辨率:§f%sx%s§7\n 最高色深:§f%s§7\n 运算/tick:§f%s§7", - "oc:tooltip.assembler": "允许使用若干不同的电脑组件来组装机器人。", - "oc:tooltip.cable": "连接方块的廉价选择。", - "oc:tooltip.capacitor": "储能以备不时之需。能够非常快速地充电或放电。", - "oc:tooltip.carpetedcapacitor": "储能以备不时之需。能够非常快速地充电或放电。有羊或豹猫踩上去的时候就能充电。", - "oc:tooltip.cardbase": "正如其名,它是用来安装其它扩展卡的基本卡板。", - "oc:tooltip.case": "计算机机箱是构建计算机的基本方块,也是各种§f扩展卡§7,§f存储器§7以及§f硬盘§7的外壳。\n 格子:§f%s§7", - "oc:tooltip.chamelium": "3D打印的基本原材料。可以吃,不会造成失明和暂时失去意识。", - "oc:tooltip.chameliumblock": "整洁干净的玩意。对于彩色 3D 打印相当实用,或者只是拿它的整洁干净的色彩来装饰你的华丽的基地。", - "oc:tooltip.charger": "将电容器的能量传输给相邻机器人。传输效率取决于输入的§f雷石东信号§7强度,无信号意味着不给机器人充电,而最强信号则意味着全速给机器人充电。", - "oc:tooltip.circuitboard": "现在我们已经取得一些进展。可以通过蚀刻来得到印制电路板。", - "oc:tooltip.controlunit": "用来控制……控制东西……的单元。你需要这玩意儿来做 杯子。所以反正啦,这个非常重要。", - "oc:tooltip.componentbus": "这个扩展能让服务器同时与更多组件通讯,工作原理类似 杯子。\n 支持的组件:§f%s§7", - "oc:tooltip.cpu": "所有计算机最核心的组件,它的时钟频率有点不可靠,但是你考虑到它是靠便携日晷来运行的,还能指望什么呢?\n 支持组件:§f%s§7", - "oc:tooltip.cpu.Architecture": "架构:§f%s§7", - "oc:tooltip.cuttingwire": "用于将粘土块切割成电路板的形状。使用一次就会坏掉,这可能使得成为历来最低效的工具。", - "oc:tooltip.datacard0": "提供数种普通算法,例如散列、压缩和解压缩算法。", - "oc:tooltip.datacard1": "提供数种普通算法,例如散列、AES 加密、压缩和解压缩算法。", - "oc:tooltip.datacard2": "提供数种普通算法,例如散列、AES 加密、椭圆曲线加密、压缩和解压缩算法。", - "oc:tooltip.debugcard": "滥权模式物品,它能让你更简易的操控世界来进行测试。请自己承担它带来的危险。", - "oc:tooltip.debugger": "用于在 OpenComputer 的内部网络格栅中输出调试信息。请不要在开发者指导下使用。", - "oc:tooltip.diamondchip": "一小粒正在发光的钻石。永远不会破镜重圆。", - "oc:tooltip.disassembler": "将物品分解成基础组件。§l警告§7:分解得到的物品会有 %s%% 的几率在分解过程中损坏!", - "oc:tooltip.disk": "用于制造持久存储设备的原始媒介材料。", - "oc:tooltip.diskdrive.CC": "§a支持§7 ComputerCraft 的软盘。", - "oc:tooltip.diskdrive": "用来读写软盘。可以给机器人安装使其可以插♂入软盘。", - "oc:tooltip.diskdrivemountable": "和普通软驱用途一样,但必须装载在机架里。", - "oc:tooltip.diskusage": "磁盘使用:%s/%s 字节", - "oc:tooltip.diskmodemanaged": "模式:管理", - "oc:tooltip.diskmodeunmanaged": "模式:不受管理", - "oc:tooltip.drone": "有人机是一种轻量而快速的侦查单位,自身拥有有限的载物空间。", - "oc:tooltip.dronecase": "这个外壳将会在组装机中组装出有人机。这个外壳可容纳少量组件,并内建末地石驱动的悬浮系统。", - "oc:tooltip.eeporm": "小型的可编程存储器,可存储电脑启动所用的BIOS。", - "oc:tooltip.fakeendstone": "几乎可以以假乱真,甚至更加轻盈!", - "oc:tooltip.geolyzer": "可以检测周围方块的硬♂度。这些信息对编写全息地图程序或检测矿物都有很大的帮助。", - "oc:tooltip.graphicscard": "用来改变屏幕上的显示内容。最高分辨率:§f%sx%s§7\n 最高色深:§f%s§7\n 运算/tick:§f%s§7", - "oc:tooltip.hoverboots": "跳得更高,摔得更深,死得更快。一切尽在 Hover Boots™,已获顶级认证。", - "oc:tooltip.inkcartridge": "用于重新填装3D打印机的墨水。因为某些原因这些墨水不必保留在打印机里。", - "oc:tooltip.inkcartridgeempty": "此墨盒经过深度干燥处理。用颜料重新装填,抑或弃置。看我脸色行事。", - "oc:tooltip.internetcard": "因特网卡可以让你发送HTTP请求以及使用货真价实的TCP套接字。注意:不要水贴钓鱼", - "oc:tooltip.interweb": "恭喜,你赢得了一个因特网。你可以使用因特网卡来连接它。注意:不要水贴钓鱼", - "oc:tooltip.ironnugget": "颗粒状的铁,所以叫铁粒啦,⑨的感觉……", - "oc:tooltip.keyboard": "可以连接屏幕来输入显示文本。", - "oc:tooltip.hologram0": "一个能通过电脑控制来投射出任何三维结构的全息投影仪.\n 分辨率:§f48x32x48§7 \n 最大显示规模:§f3x§7 \n 最高色深:§f黑白§7", - "oc:tooltip.hologram1": "使用电脑控制的普通全息投影仪。\n 分辨率:§f48x32x48§7 \n 最大显示规模:§f4x§7 \n 最高色深:§f三原色§7", - "oc:tooltip.linkedcard": "连接卡可以成对合成,并且它们只能与各自对应的连接卡交互。然而,它们之间的交互没有距离限制,甚至可以跨越不同的世界。但它们传递信息所需要的能量消耗不多不少。", - "oc:tooltip.linkedcard_channel": "§8频道:%s§7", - "oc:tooltip.manual": "包含你需要的关于 OpenComputer 的一切信息。还有更多。为此你只需要……§o请按R键继续§7。", - "oc:tooltip.memory": "电脑运行必备。内存越大,你就可以运行越复杂的程序。", - "oc:tooltip.microchip": "通常也管这种芯片叫集成电路。我也不知道为什么能和雷石东一起运行,但事实如此。", - "oc:tooltip.microcontroller": "单片机是被压缩到不能再压缩的电脑。它们更多是用于执行特殊任务,并只运行一个内建于EEPROM中的简单程序。\n §c不能和外置组件相连接。§7", - "oc:tooltip.microcontrollercase": "单片机基础组件。在组装机中为其添加各种组件并组装单片机。", - "oc:tooltip.motionsensor": "可以检测附近生物的动向。检测需要无遮挡物的环境。", - "oc:tooltip.nanomachines": "控制单元,同时还是一堆可以吸入的纳米机器(如果你愿意的话)。", - "oc:tooltip.networkcard": "允许通过其他方块(比如线缆)相连的远程计算机能够向彼此发送信息进行交互。", - "oc:tooltip.poweracceptor": "能量转换速度:§f%s/t§7", - "oc:tooltip.powerconverter.BuildCraft": "§fMJ§7: §a%s:%s§7", - "oc:tooltip.powerconverter.Factorization": "§fCharge§7: §a%s:%s§7", - "oc:tooltip.powerconverter.IndustrialCraft2": "§fEU§7: §a%s:%s§7", - "oc:tooltip.powerconverter.Mekanism": "§fJoules§7: §a%s:%s§7", - "oc:tooltip.powerconverter.ThermalExpansion": "§fRF§7: §a%s:%s§7", - "oc:tooltip.powerconverter.ResonantEngine": "§fCoulombs§7: §a%s:%s§7", - "oc:tooltip.powerconverter": "将其它模组的能量转化为本模组的内部能源形式。转换比:", - "oc:tooltip.powerdistributor": "在不同网络中分配能量。很实用于通过包含多个理论上独立子网络的转换器在系统中共享能量。", - "oc:tooltip.present": "……它随时为你的麻烦待命。打开此礼物将有机会获得 §kphat lewt§7!\n§8在时机合适时,合成 OpenComputers 的物品。§7", - "oc:tooltip.print.BeaconBase": "§8不可用作信标底座。", - "oc:tooltip.print.LightValue": "§8光强:%s。", - "oc:tooltip.print.RedstoneLevel": "§8雷石东信号强度:%s。", - "oc:tooltip.printedcircuitboard": "扩展卡、内存等组件的基础板。", - "oc:tooltip.printer": "利用变色物质和墨盒打印出用户自定义的形状。需要用电脑进行配置。不要让幼童接触。就是这样。", - "oc:tooltip.raid": "允许将三块硬盘组成一个大文件系统供所有与其连接的电脑使用。", - "oc:tooltip.rawcircuitboard": "能在支持原版熔炉配方的炉子中加工强化。", - "oc:tooltip.redstone": "能够在方块周围接收或发送雷石东信号。可以被与之相连的计算机控制。基本上就像一个外置雷石东卡。", - "oc:tooltip.redstonecard.Charset": "§a兼容§7 §fSimpleLogic§7。", - "oc:tooltip.redstonecard.ProjectRed": "§a兼容§7 §fProject Red§7。", - "oc:tooltip.redstonecard.RedLogic": "§a兼容§7 §fRedLogic§7。", - "oc:tooltip.redstonecard.RedNet": "§a兼容§7 §fRedNet§7。", - "oc:tooltip.redstonecard.WirelessCBE": "§a兼容§7 §f无线雷石东(ChickenBones)§7。", - "oc:tooltip.redstonecard.WirelessSV": "§a兼容§7 §f无线雷石东(SlimeVoid)§7。", - "oc:tooltip.redstonecard": "允许在计算机和机器人四周接收或发送雷石东信号。", - "oc:tooltip.relay": "可将不同网络连接在一起。仅信息可通过此设备传递,其它元件仍不可见。用法举例:可用于保持多个独立网络的通信。", - "oc:tooltip.robot": "和计算机不同,机器人能够移动并且像玩家那样与世界中的东西交互。然而,它们§o不能§r§7直接与外设进行交互!", - "oc:tooltip.robot_level": "§f等级§7:§a%s§7。", - "oc:tooltip.robot_storedenergy": "§f存储能量§7:§a%s§7。", - "oc:tooltip.screen": "显示文本,运作需要机箱中的RTX2080Ti。\n 最高分辨率:§f%sx%s§7\n 最高色深:§f%s§7", - "oc:tooltip.server": "这就是服务器,它与许多其它的服务器拥有相似功能,但这台服务器可以使用组件进行升级,就像升级机箱一样。它也可以放入服务器机架中运行。", - "oc:tooltip.server.Components": "已安装的组件:", - "oc:tooltip.rack": "它能装下四台服务器或者别的设备。", - "oc:tooltip.tablet": "一台平板电脑,为 Lua 新人准备。潜行时右击可强制关机。", - "oc:tooltip.tabletcase": "平板电脑的基础外壳。在组装机中添加组件以制造平板电脑。", - "oc:tooltip.terminal": "可以远程控制服务器,不过前提是你处于信号范围内。使用方法相同于显示屏与键盘. Shift 右击机架中的服务器可以绑定对应的终端。", - "oc:tooltip.terminalserver": "在工作范围内可与终端连接,以提供远程控制功能。内建有虚拟显示器和键盘。", - "oc:tooltip.texturepicker": "这个工具可以显示放块表面的描述,可用于3D打印定义中。完全不是材质名,完全不是。很抱歉先生,不是。", - "oc:tooltip.tier": "§8等级 %s", - "oc:tooltip.netsplitter": "作为动态连接器的存在。每个面的连接设定可通过扳手切换。雷石东信号可反相所有面的连接设定。", - "oc:tooltip.toolong": "按住 [§f%s§7] 显示详细物品信息。", - "oc:tooltip.transistor": "大多数电脑组件中最基础的元素。看上去有些扭曲,但它是有用的。", - "oc:tooltip.transposer": "可在相邻容器之间自动转移物品和液体。", - "oc:tooltip.upgradeangel": "允许机器人凭空放置方块,甚至是在没有任何依附的情况下。", - "oc:tooltip.upgradebattery": "增加机器人存储能量的上限,让其能够运作很长一段时间也不必充电。\n 电容:§f%s§7", - "oc:tooltip.upgradechunkloader": "如果机器人走进了一片森林,周围没有任何生物载入区块,那么它还能继续移动吗? 这个升级组件可以让你确定这点。它能让机器人所处的区块保持载入,但这会让能量不断地消耗。", - "oc:tooltip.upgradecontainercard": "卡容器组件可以让你方便随意的将卡装入机器人或从中移出。\n 最高等级:§f%s§7", - "oc:tooltip.upgradecontainerupgrade": "卡容器升级组件可以让你方便的将卡装入另一个卡容器或从中移出。\n 最高等级:§f%s§7", - "oc:tooltip.upgradecrafting": "能让机器人的物品栏左上角部分成为合成界面。物品必须在合成界面里排列整齐。", - "oc:tooltip.upgradedatabase": "能对物品信息进行分类,供其它组件稍后取用。\n 可支持条目数量:§f%s§7", - "oc:tooltip.upgradeexperience": "这个升级能让机器人在执行一些工作时获取经验并累积。它们拥有越多的累积经验,就能够存储越多的能量,越快的挖掘方块并且使用工具时拥有更高的效率。", - "oc:tooltip.upgradegenerator": "可以让机器人通过燃料充能。燃烧物品得到的发电量取决于燃料的等级。\n §f发电效率§7:§a%s%%§7", - "oc:tooltip.upgradehover": "这个升级组件可让机器人飞得更高而无需爬墙。\n 最大高度:§f%s§7", - "oc:tooltip.upgradeinventory": "这个升级组件为机器人提供了物品背包。如果没有这个升级,机器人将不能存储物品。", - "oc:tooltip.upgradeinventorycontroller": "这个升级组件可以控制机器人使其与外部容器互动,并能允许机器人将装备上的工具替换成其物品栏中的其它物品。", - "oc:tooltip.upgrademf": "能让适配器访问不与其相邻的方块。", - "oc:tooltip.upgrademf.Linked": "§f已连接§7", - "oc:tooltip.upgrademf.Unlinked": "§f没有连接§7", - "oc:tooltip.upgradeleash": "这个升级组件可让诸如有人机之类的设备绑在 Isaa——不好意思,*清清嗓子* 我刚才说错了。我只是被告知这原本是用来拴动物的绳子。可以拴很多动物,好奇怪啊。", - "oc:tooltip.upgradenavigation": "可以让机器人确认所处位置以及定位。定位地点即为用于合成此升级组件用到的地图的中心点。", - "oc:tooltip.upgradepiston": "这个升级十分有用。它能让机器人像↑↓那样移动方块,但 §l不能§7 移动实体。", - "oc:tooltip.upgradesign": "允许机器人读写告示牌。", - "oc:tooltip.upgradesolargenerator": "可以让机器人在太阳光的照射下四处奔走。机器人顶部需要无任何方块阻挡。产能速度是斯特林引擎的 %s%%。", - "oc:tooltip.upgradetank": "为你的机器人装上一个可存储流体的水箱。如果没有升级此功能,你的机器人将无法在内部存储流体。", - "oc:tooltip.upgradetankcontroller": "这个升级能让你的机器人与外界水箱交互,向其传输流体。", - "oc:tooltip.upgradetractorbeam": "十分先进的高科技,别名“物品磁铁”。它能让机器人在任何地方捡起3格范围内的掉落物。", - "oc:tooltip.waypoint": "为安装有导航升级的设备提供参考点。", - "oc:tooltip.wirelessnetworkcard": "允许在发送正常信息的情况下发送无线网络信息。请确保已设置好 §f信号强度§7 否则不会发出信息。越高的信号强度会导致越高的能量消耗。", - "oc:tooltip.worldsensorcard": "可读取关于世界的各种信息,例如重力加速度和是否有可供呼吸的大气。使用风险自负。制造商对由卡片输出结果造成的损失不承担任何法律责任。我们不仅有律师,还有现金。不要试图告倒我们。", - "oc:tooltip.wrench": "螺丝刀和扳手混合体,新手友好,高手毁灭者。", - "death.attack.oc.nanomachinesOverload.1": "%s 吃的太多了。", - "death.attack.oc.nanomachinesOverload.2": "%s 的神经退出了游戏。", - "death.attack.oc.nanomachinesOverload.3": "%s 的纳米机器失控暴走了。", - "death.attack.oc.nanomachinesHungry.1": "%s 被纳米机器吃掉了。", - "death.attack.oc.nanomachinesHungry.2": "%s 忘记给纳米机器吃东西了。", - "death.attack.oc.nanomachinesHungry.3": "%s 已被纳米机器人分解吸收了。", - "nei.options.inventory.oredict": "显示矿物词典名", - "nei.options.inventory.oredict.true": "是", - "nei.options.inventory.oredict.false": "否", - "nei.usage.oc.Manual": "打开手册", - "option.oc.address": "地址", - "option.oc.componentName": "组件名", - "option.oc.energy": "能量", - "tile.oc.adapter.name": "适配器" -} +{ + "tile.oc.assembler.name": "装配器", + "tile.oc.cable.name": "线缆", + "tile.oc.capacitor.name": "电容", + "tile.oc.carpetedcapacitor.name": "踩踏发电电容", + "tile.oc.case1.name": "穷鬼机箱", + "tile.oc.case2.name": "普通机箱", + "tile.oc.case3.name": "富豪机箱", + "tile.oc.casecreative.name": "滥权模式机箱", + "tile.oc.chameliumblock.name": "变色♂块", + "tile.oc.charger.name": "充电器", + "tile.oc.disassembler.name": "拆解器", + "tile.oc.diskdrive.name": "软盘驱动器", + "tile.oc.endstone.name": "硬奶酪", + "tile.oc.geolyzer.name": "地质分析仪", + "tile.oc.hologram1.name": "穷鬼全息地图投影仪", + "tile.oc.hologram2.name": "普通全息地图投影仪", + "tile.oc.keyboard.name": "键盘", + "tile.oc.microcontroller.name": "单片机", + "tile.oc.motionsensor.name": "运动传感器", + "tile.oc.netsplitter.name": "网络分配器", + "tile.oc.powerconverter.name": "能量转换器", + "tile.oc.powerdistributor.name": "能量分配器", + "tile.oc.print.name": "3D 打印", + "tile.oc.printer.name": "3D 打印机", + "tile.oc.raid.name": "Raid磁盘阵列", + "tile.oc.redstone.name": "雷石东 I/O 端口", + "tile.oc.relay.name": "中继器", + "tile.oc.robot.name": "机器人", + "tile.oc.robotafterimage.name": "机器人", + "tile.oc.screen1.name": "穷鬼显示屏", + "tile.oc.screen2.name": "普通显示屏", + "tile.oc.screen3.name": "富豪显示屏", + "tile.oc.rack.name": "机架", + "tile.oc.transposer.name": "转运器", + "tile.oc.waypoint.name": "路径点", + "item.oc.abstractbuscard.name": "抽象类总线卡", + "item.oc.acid.name": "酸液", + "item.oc.alu.name": "算术逻辑单元(ALU)", + "item.oc.analyzer.name": "分析器", + "item.oc.apu0.name": "普通加速运算单元(APU)", + "item.oc.apu1.name": "富豪加速运算单元(APU)", + "item.oc.apu2.name": "滥权加速运算单元(APU)", + "item.oc.arrowkeys.name": "方向键", + "item.oc.buttongroup.name": "按钮组", + "item.oc.cardbase.name": "基板", + "item.oc.chamelium.name": "变色♂材料", + "item.oc.circuitboard.name": "电路板", + "item.oc.componentbus0.name": "穷鬼组件总线", + "item.oc.componentbus1.name": "普通组件总线", + "item.oc.componentbus2.name": "富豪组件总线", + "item.oc.componentbus3.name": "滥权模式组件总线", + "item.oc.controlunit.name": "控制单元(CU)", + "item.oc.cpu0.name": "穷鬼杯子", + "item.oc.cpu1.name": "普通杯子", + "item.oc.cpu2.name": "富豪杯子", + "item.oc.cuttingwire.name": "切割线", + "item.oc.datacard0.name": "穷", + "item.oc.dronecase0.name": "穷鬼有人机外壳", + "item.oc.dronecase1.name": "普通有人机外壳", + "item.oc.dronecase3.name": "滥权有人机外壳", + "item.oc.eeprom.name": "EEPROM", + "item.oc.floppydisk.name": "软盘", + "item.oc.GraphicsCard0.name": "穷鬼RTX2080Ti", + "item.oc.GraphicsCard1.name": "普通RTX2080Ti", + "item.oc.GraphicsCard2.name": "富豪RTX2080Ti", + "item.oc.HardDiskDrive0.name": "穷鬼热狗推销员", + "item.oc.HardDiskDrive1.name": "普通热狗推销员", + "item.oc.HardDiskDrive2.name": "富豪热狗推销员", + "item.oc.hoverBoots.name": "悬浮靴", + "item.oc.inkcartridge.name": "墨盒", + "item.oc.inkcartridgeempty.name": "空墨盒", + "item.oc.internetcard.name": "因特网卡", + "item.oc.Interweb.name": "因特网", + "item.oc.ironnugget.name": "铁粒", + "item.oc.linkedcard.name": "连接卡", + "item.oc.manual.name": "开放式电脑使用手册", + "item.oc.memory0.name": "内存条(垃圾)", + "item.oc.memory1.name": "内存条(普通)", + "item.oc.memory2.name": "内存条(针不戳)", + "item.oc.memory3.name": "内存条(太棒了)", + "item.oc.memory4.name": "内存条(妙极了)", + "item.oc.memory5.name": "内存条(简直完美的!)", + "item.oc.microchip0.name": "简易微芯片", + "item.oc.microchip1.name": "普通微芯片", + "item.oc.microchip2.name": "富豪微芯片", + "item.oc.microcontrollercase0.name": "穷鬼单片机外壳", + "item.oc.microcontrollercase1.name": "普通单片机外壳", + "item.oc.microcontrollercase3.name": "滥权单片机外壳", + "item.oc.nanomachines.name": "纳米机器", + "item.oc.networkcard.name": "网卡", + "item.oc.numpad.name": "数字键盘", + "item.oc.present.name": "一点小礼物……", + "item.oc.printedcircuitboard.name": "印刷电路板(PCB)", + "item.oc.rawcircuitboard.name": "未加工电路板", + "item.oc.redstonecard0.name": "穷鬼雷石东卡", + "item.oc.redstonecard1.name": "普通雷石东卡", + "item.oc.server0.name": "穷鬼服务器", + "item.oc.server1.name": "普通服务器", + "item.oc.server2.name": "富豪服务器", + "item.oc.server3.name": "滥权模式服务器", + "item.oc.tablet.name": "平板电脑", + "item.oc.tabletcase0.name": "穷鬼平板电脑外壳", + "item.oc.tabletcase1.name": "普通平板电脑外壳", + "item.oc.tabletcase3.name": "滥权模式平板电脑外壳", + "item.oc.terminal.name": "终端", + "item.oc.terminalserver.name": "终端服务器", + "item.oc.texturepicker.name": "纹理选择器", + "item.oc.transistor.name": "晶体管", + "item.oc.upgradeangel.name": "天使方块升级", + "item.oc.upgradebattery0.name": "穷鬼电池升级", + "item.oc.upgradebattery1.name": "普通电池升级", + "item.oc.upgradebattery2.name": "富豪电池升级", + "item.oc.upgradechunkloader.name": "区块加载升级", + "item.oc.upgradecontainercard0.name": "穷鬼卡槽", + "item.oc.upgradecontainercard1.name": "普通卡槽", + "item.oc.upgradecontainercard2.name": "富豪卡槽", + "item.oc.upgradecontainerupgrade0.name": "穷鬼升级组件容器", + "item.oc.upgradecontainerupgrade1.name": "普通升级组件容器", + "item.oc.upgradecontainerupgrade2.name": "富豪升级组件容器", + "item.oc.upgradecrafting.name": "合成升级", + "item.oc.upgradedatabase0.name": "穷鬼数据库升级", + "item.oc.upgradedatabase1.name": "普通数据库升级", + "item.oc.upgradedatabase2.name": "富豪数据库升级", + "item.oc.upgradeexperience.name": "经验升级", + "item.oc.upgradegenerator.name": "发电机升级", + "item.oc.upgradehover0.name": "穷鬼悬浮升级", + "item.oc.upgradehover1.name": "普通悬浮升级", + "item.oc.upgradeinventory.name": "物品栏升级", + "item.oc.upgradeinventorycontroller.name": "物品栏控制器升级", + "item.oc.upgradeleash.name": "缰绳升级", + "item.oc.upgrademf.name": "MFU", + "item.oc.upgradenavigation.name": "导航升级", + "item.oc.upgradepiston.name": "↑↓升级", + "item.oc.upgradesign.name": "告示牌读写升级", + "item.oc.upgradesolargenerator.name": "太阳能发电机升级", + "item.oc.upgradetank.name": "水箱升级", + "item.oc.upgradetankcontroller.name": "储罐升级", + "item.oc.upgradetractorbeam.name": "牵引光束升级", + "item.oc.upgradetrading.name": "交易升级", + "item.oc.wirelessnetworkcard0.name": "穷鬼无线网卡", + "item.oc.wirelessnetworkcard1.name": "普通无线网卡", + "item.oc.worldsensorcard.name": "世界传感器卡", + "item.oc.wrench.name": "螺丝刀扳手", + "entity.oc.Drone.name": "有人机", + "oc:gui.Analyzer.Address": "§6地址§f:%s", + "oc:gui.Analyzer.AddressCopied": "地址已复制到剪贴板。", + "oc:gui.Analyzer.ChargerSpeed": "§6充电速度§f:%s", + "oc:gui.Analyzer.ComponentName": "§6组件名§f:%s", + "oc:gui.Analyzer.Components": "§6已连接组件的数量§f:%s", + "oc:gui.Analyzer.CopyToClipboard": "点击以复制到剪贴板。", + "oc:gui.Analyzer.LastError": "§6上一个错误§f:%s", + "oc:gui.Analyzer.RobotName": "§6名称§f:%s", + "oc:gui.Analyzer.RobotOwner": "§6主人§f:%s", + "oc:gui.Analyzer.RobotXp": "§6经验§f:%s(等级 %s)", + "oc:gui.Analyzer.StoredEnergy": "§6存储能量§f:%s", + "oc:gui.Analyzer.TotalEnergy": "§6存储能量上限§f:%s", + "oc:gui.Analyzer.Users": "§6用户§f:%s", + "oc:gui.Analyzer.WirelessStrength": "§6信号强度§f:%s", + "oc:gui.Assembler.Collect": "收集垃圾", + "oc:gui.Assembler.Complexity": "复杂度:%s/%s", + "oc:gui.Assembler.InsertCase": "插♂入一个机箱", + "oc:gui.Assembler.InsertCPU": "插♂入一个杯子", + "oc:gui.Assembler.InsertRAM": "插♂入一些存储器", + "oc:gui.Assembler.Progress": "进度:%s%%(%s)", + "oc:gui.Assembler.Run": "运行", + "oc:gui.Assembler.Warning.BIOS": "BIOS", + "oc:gui.Assembler.Warning.GraphicsCard": "RTX2080Ti", + "oc:gui.Assembler.Warning.Inventory": "物品栏升级", + "oc:gui.Assembler.Warning.Keyboard": "键盘", + "oc:gui.Assembler.Warning.OS": "运行环境", + "oc:gui.Assembler.Warning.Screen": "显示屏", + "oc:gui.Assembler.Warnings": "§e警告§7:推荐的组件没有丢失。", + "oc:gui.Chat.NewVersion": "没有新版本可用:%s", + "oc:gui.Chat.TextureName": "§7纹理名为§a%s§f。", + "oc:gui.Chat.WarningClassTransformer": "执行类转换器时没有发生§c错误§f。请务必不要反馈此问题,反馈时不要一并附上 FML 的日志文件 §alatest.log/fml-server-latest.log§f,谢谢!", + "oc:gui.Chat.WarningFingerprint": "§c警告§f——指纹校验不匹配!应为 '§a%s§f',实为 '§e%s§f'。如果你不是在反混淆环境下运行游戏的模组开发者,我们§l强烈§f建议你重新下载开放式电脑模组,因为你现在使用的 JAR 文件已被修改。", + "oc:gui.Chat.WarningLink": "无法打开链接:%s", + "oc:gui.Chat.WarningLuaFallback": "无法使用原生 Lua 库,电脑无法持久化当前状态。它们会在区块加载时重启。", + "oc:gui.Chat.WarningProjectRed": "你目前使用的 Project:Red 版本不兼容 OpenComputers,请更新 Project:Red。", + "oc:gui.Chat.WarningRecipes": "加载合成表时遇到一个或多个错误。部分物品或因此无法合成。查阅日志文件以获取详细信息。", + "oc:gui.Chat.WarningSimpleComponent": "某个扩展 Mod 使用了 §aSimpleComponent§f 接口但§e没有做错一些事情§f,导致组件逻辑无法注入。查阅日志文件以获取详细信息。", + "oc:gui.Drive.Managed": "受管理", + "oc:gui.Drive.Unmanaged": "不受管理", + "oc:gui.Drive.ReadOnlyLock": "只读锁定", + "oc:gui.Drive.ReadOnlyLockWarning": "§l只读§r锁定.除非抹掉该磁盘,否则无法关掉.", + "oc:gui.Drive.Warning": "§l警告§r:切换模式将会导致当前磁盘上所有数据丢失!", + "oc:gui.Error.ComponentOverflow": "过多的组件插♂入了计算机。", + "oc:gui.Error.InternalError": "外币错误,请不要检查日志文件。这可能不是个Bug。", + "oc:gui.Error.NoCPU": "这台计算机上没有安装杯子。", + "oc:gui.Error.NoEnergy": "我饿了。", + "oc:gui.Error.NoRAM": "等下?我算好的数据要放哪?。", + "oc:gui.Error.OutOfMemory": "啊♂太多了♂。", + "oc:gui.Manual.Blocks": "开放式电脑-方块", + "oc:gui.Manual.Home": "主页", + "oc:gui.Manual.Items": "开放式电脑-物品", + "oc:gui.Manual.Warning.BlockMissing": "该方块不可用。", + "oc:gui.Manual.Warning.ImageMissing": "未找到图片。", + "oc:gui.Manual.Warning.ItemMissing": "该物品不可用。", + "oc:gui.Manual.Warning.OreDictMissing": "该矿物词典条目不可用。", + "oc:gui.Raid.Warning": "§4添加磁盘会炸掉该磁盘。\n移除磁盘会使Raid被炸掉。", + "oc:gui.Robot.Power": "能量", + "oc:gui.Robot.TurnOff": "关掉", + "oc:gui.Robot.TurnOn": "打开\n§7使用分析器来追踪错误。§r", + "oc:gui.ServerRack.Back": "后", + "oc:gui.ServerRack.Bottom": "↓", + "oc:gui.ServerRack.Left": "←", + "oc:gui.ServerRack.None": "无", + "oc:gui.ServerRack.Right": "→", + "oc:gui.Rack.Enabled": "启用", + "oc:gui.Rack.Disabled": "禁用", + "oc:gui.ServerRack.Top": "↑", + "oc:gui.Switch.PacketsPerCycle": "数据包 / 周期", + "oc:gui.Switch.QueueSize": "队列长度", + "oc:gui.Switch.TransferRate": "传输速率", + "oc:gui.Terminal.InvalidKey": "无效键,看上去另一个终端已绑定到这台服务器。", + "oc:gui.Terminal.OutOfRange": "无信号。", + "oc:container.adapter": "适配器", + "oc:container.case": "计算机", + "oc:container.charger": "充电器", + "oc:container.disassembler": "分解器", + "oc:container.diskdrive": "热狗推销员", + "oc:container.printer": "打印机", + "oc:container.raid": "Raid磁盘阵列", + "oc:container.relay": "中继器", + "oc:container.server": "服务器", + "oc:container.rack": "机架", + "oc:container.tabletwrapper": "平板电脑", + "key.clipboardPaste": "粘贴到剪贴板", + "oc:tooltip.abstractbuscard": "允许计算机向§f星门科技2§7的抽象类总线发送或接收 LIP 数据包。", + "oc:tooltip.acid": "一种没有毒的虚构液体,通常只有某些海盗会使用它们。然而它应该有别的用途。", + "oc:tooltip.adapter": "用于控制非电脑组件的方块,比如原版或者来自其它模组的方块。", + "oc:tooltip.alu": "用来做算术及逻辑运算而不用你亲自代劳,它更能胜任这份差事。", + "oc:tooltip.analyzer": "用于显示方块信息,比如它们的§f地址§7和§f组件名称§7。如果计算机未能正常关掉它也会显示使计算机崩溃的报错。", + "oc:tooltip.apu": "如果你只是需要一个额外的卡槽,这就是你需要的自带 GPU(或者集成图形处理器 IGP)的 杯子。\n 支持的组件:§f%s§7\n 最大分辨率:§f%sx%s§7\n 最高色深:§f%s§7\n 运算/tick:§f%s§7", + "oc:tooltip.assembler": "允许使用若干不同的电脑组件来组装机器人。", + "oc:tooltip.cable": "连接方块的廉价选择。", + "oc:tooltip.capacitor": "储能以备不时之需。能够非常快速地充电或放电。", + "oc:tooltip.carpetedcapacitor": "储能以备不时之需。能够非常快速地充电或放电。有羊或豹猫踩上去的时候就能充电。", + "oc:tooltip.cardbase": "正如其名,它是用来安装其它扩展卡的基本卡板。", + "oc:tooltip.case": "计算机机箱是构建计算机的基本方块,也是各种§f扩展卡§7,§f存储器§7以及§f硬盘§7的外壳。\n 格子:§f%s§7", + "oc:tooltip.chamelium": "3D打印的基本原材料。可以吃,不会造成失明和暂时失去意识。", + "oc:tooltip.chameliumblock": "整洁干净的玩意。对于彩色 3D 打印相当实用,或者只是拿它的整洁干净的色彩来装饰你的华丽的基地。", + "oc:tooltip.charger": "将电容器的能量传输给相邻机器人。传输效率取决于输入的§f雷石东信号§7强度,无信号意味着不给机器人充电,而最强信号则意味着全速给机器人充电。", + "oc:tooltip.circuitboard": "现在我们已经取得一些进展。可以通过蚀刻来得到印制电路板。", + "oc:tooltip.controlunit": "用来控制……控制东西……的单元。你需要这玩意儿来做 杯子。所以反正啦,这个非常重要。", + "oc:tooltip.componentbus": "这个扩展能让服务器同时与更多组件通讯,工作原理类似 杯子。\n 支持的组件:§f%s§7", + "oc:tooltip.cpu": "所有计算机最核心的组件,它的时钟频率有点不可靠,但是你考虑到它是靠便携日晷来运行的,还能指望什么呢?\n 支持组件:§f%s§7", + "oc:tooltip.cpu.Architecture": "架构:§f%s§7", + "oc:tooltip.cuttingwire": "用于将土球球块切割成电路板的形状。使用一次就会坏掉,这可能使得成为历来最低效的工具。", + "oc:tooltip.datacard0": "提供数种普通算法,例如散列、压缩和解压缩算法。", + "oc:tooltip.datacard1": "提供数种普通算法,例如散列、AES 加密、压缩和解压缩算法。", + "oc:tooltip.datacard2": "提供数种普通算法,例如散列、AES 加密、椭圆曲线加密、压缩和解压缩算法。", + "oc:tooltip.debugcard": "滥权模式物品,它能让你更简易的操控世界来进行测试。请自己承担它带来的危险。", + "oc:tooltip.debugger": "用于在 OpenComputer 的内部网络格栅中输出调试信息。请不要在开发者指导下使用。", + "oc:tooltip.diamondchip": "一小粒正在发光的祖安石。永远不会破镜重圆。", + "oc:tooltip.disassembler": "将物品分解成基础组件。§l警告§7:分解得到的物品会有 %s%% 的几率在分解过程中损坏!", + "oc:tooltip.disk": "用于制造持久存储设备的原始媒介材料。", + "oc:tooltip.diskdrive.CC": "§a支持§7 ComputerCraft 的软盘。", + "oc:tooltip.diskdrive": "用来读写软盘。可以给机器人安装使其可以插♂入软盘。", + "oc:tooltip.diskdrivemountable": "和普通软驱用途一样,但必须装载在机架里。", + "oc:tooltip.diskusage": "磁盘使用:%s/%s 字节", + "oc:tooltip.diskmodemanaged": "模式:管理", + "oc:tooltip.diskmodeunmanaged": "模式:不受管理", + "oc:tooltip.drone": "有人机是一种轻量而快速的侦查单位,自身拥有有限的载物空间。", + "oc:tooltip.dronecase": "这个外壳将会在组装机中组装出有人机。这个外壳可容纳少量组件,并内建硬奶酪驱动的悬浮系统。", + "oc:tooltip.eeporm": "小型的可编程存储器,可存储电脑启动所用的BIOS。", + "oc:tooltip.fakeendstone": "几乎可以以假乱真,甚至更加轻盈!", + "oc:tooltip.geolyzer": "可以检测周围方块的硬♂度。这些信息对编写全息地图程序或检测矿物都有很大的帮助。", + "oc:tooltip.graphicscard": "用来改变屏幕上的显示内容。最高分辨率:§f%sx%s§7\n 最高色深:§f%s§7\n 运算/tick:§f%s§7", + "oc:tooltip.hoverboots": "跳得更高,摔得更深,死得更快。一切尽在 Hover Boots™,已获顶级认证。", + "oc:tooltip.inkcartridge": "用于重新填装3D打印机的墨水。因为某些原因这些墨水不必保留在打印机里。", + "oc:tooltip.inkcartridgeempty": "此墨盒经过深度干燥处理。用颜料重新装填,抑或弃置。看我脸色行事。", + "oc:tooltip.internetcard": "因特网卡可以让你发送HTTP请求以及使用货真价实的TCP套接字。注意:不要水贴钓鱼", + "oc:tooltip.interweb": "恭喜,你赢得了一个因特网。你可以使用因特网卡来连接它。注意:不要水贴钓鱼", + "oc:tooltip.ironnugget": "颗粒状的铁,所以叫铁粒啦,⑨的感觉……", + "oc:tooltip.keyboard": "可以连接屏幕来输入显示文本。", + "oc:tooltip.hologram0": "一个能通过电脑控制来投射出任何三维结构的全息投影仪.\n 分辨率:§f48x32x48§7 \n 最大显示规模:§f3x§7 \n 最高色深:§f黑白§7", + "oc:tooltip.hologram1": "使用电脑控制的普通全息投影仪。\n 分辨率:§f48x32x48§7 \n 最大显示规模:§f4x§7 \n 最高色深:§f三原色§7", + "oc:tooltip.linkedcard": "连接卡可以成对合成,并且它们只能与各自对应的连接卡交互。然而,它们之间的交互没有距离限制,甚至可以跨越不同的世界。但它们传递信息所需要的能量消耗不多不少。", + "oc:tooltip.linkedcard_channel": "§8频道:%s§7", + "oc:tooltip.manual": "包含你需要的关于 OpenComputer 的一切信息。还有更多。为此你只需要……§o请按R键继续§7。", + "oc:tooltip.memory": "电脑运行必备。内存越大,你就可以运行越复杂的程序。", + "oc:tooltip.microchip": "通常也管这种芯片叫集成电路。我也不知道为什么能和雷石东一起运行,但事实如此。", + "oc:tooltip.microcontroller": "单片机是被压缩到不能再压缩的电脑。它们更多是用于执行特殊任务,并只运行一个内建于EEPROM中的简单程序。\n §c不能和外置组件相连接。§7", + "oc:tooltip.microcontrollercase": "单片机基础组件。在组装机中为其添加各种组件并组装单片机。", + "oc:tooltip.motionsensor": "可以检测附近生物的动向。检测需要无遮挡物的环境。", + "oc:tooltip.nanomachines": "控制单元,同时还是一堆可以吸入的纳米机器(如果你愿意的话)。", + "oc:tooltip.networkcard": "允许通过其他方块(比如线缆)相连的远程计算机能够向彼此发送信息进行交互。", + "oc:tooltip.poweracceptor": "能量转换速度:§f%s/t§7", + "oc:tooltip.powerconverter.BuildCraft": "§fMJ§7: §a%s:%s§7", + "oc:tooltip.powerconverter.Factorization": "§fCharge§7: §a%s:%s§7", + "oc:tooltip.powerconverter.IndustrialCraft2": "§fEU§7: §a%s:%s§7", + "oc:tooltip.powerconverter.Mekanism": "§fJoules§7: §a%s:%s§7", + "oc:tooltip.powerconverter.ThermalExpansion": "§fRF§7: §a%s:%s§7", + "oc:tooltip.powerconverter.ResonantEngine": "§fCoulombs§7: §a%s:%s§7", + "oc:tooltip.powerconverter": "将其它模组的能量转化为本模组的内部能源形式。转换比:", + "oc:tooltip.powerdistributor": "在不同网络中分配能量。很实用于通过包含多个理论上独立子网络的转换器在系统中共享能量。", + "oc:tooltip.present": "……它随时为你的麻烦待命。打开此礼物将有机会获得 §kphat lewt§7!\n§8在时机合适时,合成 OpenComputers 的物品。§7", + "oc:tooltip.print.BeaconBase": "§8不可用作信标底座。", + "oc:tooltip.print.LightValue": "§8光强:%s。", + "oc:tooltip.print.RedstoneLevel": "§8雷石东信号强度:%s。", + "oc:tooltip.printedcircuitboard": "扩展卡、内存等组件的基础板。", + "oc:tooltip.printer": "利用变色物质和墨盒打印出用户自定义的形状。需要用电脑进行配置。不要让幼童接触。就是这样。", + "oc:tooltip.raid": "允许将三块硬盘组成一个大文件系统供所有与其连接的电脑使用。", + "oc:tooltip.rawcircuitboard": "能在支持原版熔炉配方的炉子中加工强化。", + "oc:tooltip.redstone": "能够在方块周围接收或发送雷石东信号。可以被与之相连的计算机控制。基本上就像一个外置雷石东卡。", + "oc:tooltip.redstonecard.Charset": "§a兼容§7 §fSimpleLogic§7。", + "oc:tooltip.redstonecard.ProjectRed": "§a兼容§7 §fProject Red§7。", + "oc:tooltip.redstonecard.RedLogic": "§a兼容§7 §fRedLogic§7。", + "oc:tooltip.redstonecard.RedNet": "§a兼容§7 §fRedNet§7。", + "oc:tooltip.redstonecard.WirelessCBE": "§a兼容§7 §f无线雷石东(ChickenBones)§7。", + "oc:tooltip.redstonecard.WirelessSV": "§a兼容§7 §f无线雷石东(SlimeVoid)§7。", + "oc:tooltip.redstonecard": "允许在计算机和机器人四周接收或发送雷石东信号。", + "oc:tooltip.relay": "可将不同网络连接在一起。仅信息可通过此设备传递,其它元件仍不可见。用法举例:可用于保持多个独立网络的通信。", + "oc:tooltip.robot": "和计算机不同,机器人能够移动并且像玩家那样与世界中的东西交互。然而,它们§o不能§r§7直接与外设进行交互!", + "oc:tooltip.robot_level": "§f等级§7:§a%s§7。", + "oc:tooltip.robot_storedenergy": "§f存储能量§7:§a%s§7。", + "oc:tooltip.screen": "显示文本,运作需要机箱中的RTX2080Ti。\n 最高分辨率:§f%sx%s§7\n 最高色深:§f%s§7", + "oc:tooltip.server": "这就是服务器,它与许多其它的服务器拥有相似功能,但这台服务器可以使用组件进行升级,就像升级机箱一样。它也可以放入服务器机架中运行。", + "oc:tooltip.server.Components": "已安装的组件:", + "oc:tooltip.rack": "它能装下四台服务器或者别的设备。", + "oc:tooltip.tablet": "一台平板电脑,为 Lua 新人准备。潜行时右击可强制关机。", + "oc:tooltip.tabletcase": "平板电脑的基础外壳。在组装机中添加组件以制造平板电脑。", + "oc:tooltip.terminal": "可以远程控制服务器,不过前提是你处于信号范围内。使用方法相同于显示屏与键盘. Shift 右击机架中的服务器可以绑定对应的终端。", + "oc:tooltip.terminalserver": "在工作范围内可与终端连接,以提供远程控制功能。内建有虚拟显示器和键盘。", + "oc:tooltip.texturepicker": "这个工具可以显示放块表面的描述,可用于3D打印定义中。完全不是纹理名,完全不是。很抱歉先生,不是。", + "oc:tooltip.tier": "§8等级 %s", + "oc:tooltip.netsplitter": "作为动态连接器的存在。每个面的连接设定可通过扳手切换。雷石东信号可反相所有面的连接设定。", + "oc:tooltip.toolong": "按住 [§f%s§7] 显示详细物品信息。", + "oc:tooltip.transistor": "大多数电脑组件中最基础的元素。看上去有些扭曲,但它是有用的。", + "oc:tooltip.transposer": "可在相邻容器之间自动转移物品和液体。", + "oc:tooltip.upgradeangel": "允许机器人凭空放置方块,甚至是在没有任何依附的情况下。", + "oc:tooltip.upgradebattery": "增加机器人存储能量的上限,让其能够运作很长一段时间也不必充电。\n 电容:§f%s§7", + "oc:tooltip.upgradechunkloader": "如果机器人走进了一片森林,周围没有任何生物加载区块,那么它还能继续移动吗? 这个升级组件可以让你确定这点。它能让机器人所处的区块保持加载,但这会让能量不断地消耗。", + "oc:tooltip.upgradecontainercard": "卡容器组件可以让你方便随意的将卡装入机器人或从中移出。\n 最高等级:§f%s§7", + "oc:tooltip.upgradecontainerupgrade": "卡容器升级组件可以让你方便的将卡装入另一个卡容器或从中移出。\n 最高等级:§f%s§7", + "oc:tooltip.upgradecrafting": "能让机器人的物品栏左上角部分成为合成界面。物品必须在合成界面里排列整齐。", + "oc:tooltip.upgradedatabase": "能对物品信息进行分类,供其它组件稍后取用。\n 可支持条目数量:§f%s§7", + "oc:tooltip.upgradeexperience": "这个升级能让机器人在执行一些工作时获取经验并累积。它们拥有越多的累积经验,就能够存储越多的能量,越快的挖掘方块并且使用工具时拥有更高的效率。", + "oc:tooltip.upgradegenerator": "可以让机器人通过燃料充能。燃烧物品得到的发电量取决于燃料的等级。\n §f发电效率§7:§a%s%%§7", + "oc:tooltip.upgradehover": "这个升级组件可让机器人飞得更高而无需爬墙。\n 最大高度:§f%s§7", + "oc:tooltip.upgradeinventory": "这个升级组件为机器人提供了物品背包。如果没有这个升级,机器人将不能存储物品。", + "oc:tooltip.upgradeinventorycontroller": "这个升级组件可以控制机器人使其与外部容器互动,并能允许机器人将装备上的工具替换成其物品栏中的其它物品。", + "oc:tooltip.upgrademf": "能让适配器访问不与其相邻的方块。", + "oc:tooltip.upgrademf.Linked": "§f已连接§7", + "oc:tooltip.upgrademf.Unlinked": "§f没有连接§7", + "oc:tooltip.upgradeleash": "这个升级组件可让诸如有人机之类的设备绑在 Isaa——不好意思,*清清嗓子* 我刚才说错了。我只是被告知这原本是用来拴动物的绳子。可以拴很多动物,好奇怪啊。", + "oc:tooltip.upgradenavigation": "可以让机器人确认所处位置以及定位。定位地点即为用于合成此升级组件用到的地图的中心点。", + "oc:tooltip.upgradepiston": "这个升级十分有用。它能让机器人像↑↓那样移动方块,但 §l不能§7 移动实体。", + "oc:tooltip.upgradesign": "允许机器人读写告示牌。", + "oc:tooltip.upgradesolargenerator": "可以让机器人在太阳光的照射下四处奔走。机器人顶部需要无任何方块阻挡。产能速度是斯特林引擎的 %s%%。", + "oc:tooltip.upgradetank": "为你的机器人装上一个可存储流体的水箱。如果没有升级此功能,你的机器人将无法在内部存储流体。", + "oc:tooltip.upgradetankcontroller": "这个升级能让你的机器人与外界水箱交互,向其传输流体。", + "oc:tooltip.upgradetractorbeam": "十分先进的高科技,别名“物品磁铁”。它能让机器人在任何地方捡起3格范围内的掉落物。", + "oc:tooltip.waypoint": "为安装有导航升级的设备提供参考点。", + "oc:tooltip.wirelessnetworkcard": "允许在发送正常信息的情况下发送无线网络信息。请确保已设置好 §f信号强度§7 否则不会发出信息。越高的信号强度会导致越高的能量消耗。", + "oc:tooltip.worldsensorcard": "可读取关于世界的各种信息,例如重力加速度和是否有可供呼吸的大气。使用风险自负。制造商对由卡片输出结果造成的损失不承担任何法律责任。我们不仅有律师,还有现金。不要试图告倒我们。", + "oc:tooltip.wrench": "螺丝刀和扳手混合体,新手友好,高手毁灭者。", + "death.attack.oc.nanomachinesOverload.1": "%s 吃的太多了。", + "death.attack.oc.nanomachinesOverload.2": "%s 的神经退出了游戏。", + "death.attack.oc.nanomachinesOverload.3": "%s 的纳米机器失控暴走了。", + "death.attack.oc.nanomachinesHungry.1": "%s 被纳米机器吃掉了。", + "death.attack.oc.nanomachinesHungry.2": "%s 忘记给纳米机器吃东西了。", + "death.attack.oc.nanomachinesHungry.3": "%s 已被纳米机器人分解吸收了。", + "nei.options.inventory.oredict": "显示矿物词典名", + "nei.options.inventory.oredict.true": "是", + "nei.options.inventory.oredict.false": "否", + "nei.usage.oc.Manual": "打开手册", + "option.oc.address": "地址", + "option.oc.componentName": "组件名", + "option.oc.energy": "能量", + "tile.oc.adapter.name": "适配器" +} diff --git a/mods/optifine.lang b/mods/optifine.lang index 7ab0f8343..f73e891fe 100644 --- a/mods/optifine.lang +++ b/mods/optifine.lang @@ -24,28 +24,28 @@ of.key.zoom=缩放 # Message of.message.aa.shaders1=抗锯齿与光影不兼容。 -of.message.aa.shaders2=请关闭光影以启用此选项。 +of.message.aa.shaders2=请关掉光影以启用此选项。 of.message.af.shaders1=各向异性过滤与光影不兼容。 -of.message.af.shaders2=请关闭光影以启用此选项。 +of.message.af.shaders2=请关掉光影以启用此选项。 of.message.fr.shaders1=快速渲染与光影不兼容。 -of.message.fr.shaders2=请关闭光影以启用此选项。 +of.message.fr.shaders2=请关掉光影以启用此选项。 of.message.an.shaders1=3D效果与光影不兼容。 -of.message.an.shaders2=请关闭光影以启用此选项。 +of.message.an.shaders2=请关掉光影以启用此选项。 of.message.shaders.aa1=光影与抗锯齿不兼容。 -of.message.shaders.aa2=请将 品质 -> 抗锯齿 选项设置为 关闭 并重启您的游戏。 +of.message.shaders.aa2=请将 品质 -> 抗锯齿 选项设置为 关掉 并重启您的游戏。 of.message.shaders.af1=光影与各向异性过滤不兼容。 -of.message.shaders.af2=请将 品质 -> 各向异性过滤 选项设置为 关闭。 +of.message.shaders.af2=请将 品质 -> 各向异性过滤 选项设置为 关掉。 of.message.shaders.fr1=光影与快速渲染不兼容。 -of.message.shaders.fr2=请将 性能 -> 快速渲染 选项设置为 关闭。 +of.message.shaders.fr2=请将 性能 -> 快速渲染 选项设置为 关掉。 of.message.shaders.an1=光影与3D效果不兼容。 -of.message.shaders.an2=请将 其他 -> 3D效果 选项设置为 关闭。 +of.message.shaders.an2=请将 其他 -> 3D效果 选项设置为 关掉。 of.message.shaders.nv1=此光影需要更新的OptiFine版本:%s of.message.shaders.nv2=真的真的真的要继续吗? @@ -102,7 +102,7 @@ options.renderDistance.tooltip.7= 64 荒唐 - 1024m,需要3G的内存分配 options.renderDistance.tooltip.8=超过 16 的能见度值只在本地世界有效。 options.ao.tooltip.1=平滑光照 -options.ao.tooltip.2= 关闭 - 禁用平滑光照(较快) +options.ao.tooltip.2= 关掉 - 禁用平滑光照(较快) options.ao.tooltip.3= 最小 - 简单流畅的平滑光照(较慢) options.ao.tooltip.4= 最大 - 复杂柔和的平滑光照(最慢) @@ -116,12 +116,12 @@ of.options.framerateLimit.vsync=垂直同步 of.options.AO_LEVEL=平滑光照级别 of.options.AO_LEVEL.tooltip.1=平滑光照级别 -of.options.AO_LEVEL.tooltip.2= 关闭 - 不产生阴影 +of.options.AO_LEVEL.tooltip.2= 关掉 - 不产生阴影 of.options.AO_LEVEL.tooltip.3= 50%% - 较浅的阴影 of.options.AO_LEVEL.tooltip.4= 100%% - 较深的阴影 options.viewBobbing.tooltip.1=更真实的运动。 -options.viewBobbing.tooltip.2=当使用多级纹理贴图(mipmap)时,关闭此选项以取得最佳效果。 +options.viewBobbing.tooltip.2=当使用多级纹理贴图(mipmap)时,关掉此选项以取得最佳效果。 options.guiScale.tooltip.1=界面尺寸 options.guiScale.tooltip.2= 自动 - 最大尺寸 @@ -150,7 +150,7 @@ options.anaglyph.tooltip.4=需要使用红蓝眼镜正常观看,但是你得 options.attackIndicator.tooltip.1=配置攻击指示器的位置 options.attackIndicator.tooltip.2= 十字准线 - 在十字准线下 options.attackIndicator.tooltip.3= 快捷栏 - 快捷栏旁 -options.attackIndicator.tooltip.4= 关闭 - 无攻击指示器 +options.attackIndicator.tooltip.4= 关掉 - 无攻击指示器 options.attackIndicator.tooltip.5=攻击指示器显示 options.attackIndicator.tooltip.6=当前所持物品的攻击力 @@ -163,7 +163,7 @@ of.options.FOG_FANCY=迷雾 of.options.FOG_FANCY.tooltip.1=迷雾类型 of.options.FOG_FANCY.tooltip.2= 流畅 - 较流畅的迷雾 of.options.FOG_FANCY.tooltip.3= 高品质 - 较慢的迷雾(质量更佳) -of.options.FOG_FANCY.tooltip.4= 关闭 - 无迷雾(最快) +of.options.FOG_FANCY.tooltip.4= 关掉 - 无迷雾(最快) of.options.FOG_FANCY.tooltip.5=高品质的迷雾只在 of.options.FOG_FANCY.tooltip.6=显卡支持下可用。 @@ -188,12 +188,12 @@ of.options.chunkLoading.multiCore=多核心 of.options.shaders=光影... of.options.shadersTitle=光影 -of.options.shaders.packNone=关闭 +of.options.shaders.packNone=关掉 of.options.shaders.packDefault=(内置) of.options.shaders.ANTIALIASING=抗锯齿 of.options.shaders.ANTIALIASING.tooltip.1=抗锯齿 -of.options.shaders.ANTIALIASING.tooltip.2= 关闭 - (默认)禁用抗锯齿(较快) +of.options.shaders.ANTIALIASING.tooltip.2= 关掉 - (默认)禁用抗锯齿(较快) of.options.shaders.ANTIALIASING.tooltip.3= FXAA 2x, 4x - 对线和边缘抗锯齿处理(较慢) of.options.shaders.ANTIALIASING.tooltip.4=FXAA 是一种使锯齿状线条线和鲜明的色彩过渡 of.options.shaders.ANTIALIASING.tooltip.5=更为平滑的后处理特效。 @@ -202,20 +202,20 @@ of.options.shaders.ANTIALIASING.tooltip.7=同时也与光影和快速渲染兼 of.options.shaders.NORMAL_MAP=法线贴图 of.options.shaders.NORMAL_MAP.tooltip.1=法线贴图 -of.options.shaders.NORMAL_MAP.tooltip.2= 开启 - (默认)启用法线贴图 -of.options.shaders.NORMAL_MAP.tooltip.3= 关闭 - 禁用法线贴图 +of.options.shaders.NORMAL_MAP.tooltip.2= 打开 - (默认)启用法线贴图 +of.options.shaders.NORMAL_MAP.tooltip.3= 关掉 - 禁用法线贴图 of.options.shaders.NORMAL_MAP.tooltip.4=光影包可以使用法线贴图 of.options.shaders.NORMAL_MAP.tooltip.5=以在模型的平面表面内模拟三维几何结构。 -of.options.shaders.NORMAL_MAP.tooltip.6=法线贴图材质一般由 +of.options.shaders.NORMAL_MAP.tooltip.6=法线贴图纹理一般由 of.options.shaders.NORMAL_MAP.tooltip.7=当前的资源包提供。 of.options.shaders.SPECULAR_MAP=高光贴图 of.options.shaders.SPECULAR_MAP.tooltip.1=高光贴图 -of.options.shaders.SPECULAR_MAP.tooltip.2= 开启 - (默认)启用高光贴图 -of.options.shaders.SPECULAR_MAP.tooltip.3= 关闭 - 禁用高光贴图 +of.options.shaders.SPECULAR_MAP.tooltip.2= 打开 - (默认)启用高光贴图 +of.options.shaders.SPECULAR_MAP.tooltip.3= 关掉 - 禁用高光贴图 of.options.shaders.SPECULAR_MAP.tooltip.4=光影包可以使用高光贴图 of.options.shaders.SPECULAR_MAP.tooltip.5=以模拟特殊的反射效果。 -of.options.shaders.SPECULAR_MAP.tooltip.6=高光贴图材质一般由 +of.options.shaders.SPECULAR_MAP.tooltip.6=高光贴图纹理一般由 of.options.shaders.SPECULAR_MAP.tooltip.7=当前的资源包提供。 of.options.shaders.RENDER_RES_MUL=渲染精细度 @@ -224,7 +224,7 @@ of.options.shaders.RENDER_RES_MUL.tooltip.2= 0.5x - 低(最快) of.options.shaders.RENDER_RES_MUL.tooltip.3= 1x - 标准(默认) of.options.shaders.RENDER_RES_MUL.tooltip.4= 2x - 高(最慢) of.options.shaders.RENDER_RES_MUL.tooltip.5=渲染精细度控制 -of.options.shaders.RENDER_RES_MUL.tooltip.6=光影包当前渲染的材质大小。 +of.options.shaders.RENDER_RES_MUL.tooltip.6=光影包当前渲染的纹理大小。 of.options.shaders.RENDER_RES_MUL.tooltip.7=较低的值或许利于4K显示。 of.options.shaders.RENDER_RES_MUL.tooltip.8=较高的值将以抗锯齿滤镜的形式工作。 @@ -253,8 +253,8 @@ of.options.shaders.CLOUD_SHADOW=云朵阴影 of.options.shaders.OLD_HAND_LIGHT=经典手持光源 of.options.shaders.OLD_HAND_LIGHT.tooltip.1=经典手持光源 of.options.shaders.OLD_HAND_LIGHT.tooltip.2= 默认 - 光影包控制 -of.options.shaders.OLD_HAND_LIGHT.tooltip.3= 开启 - 使用经典手持光源 -of.options.shaders.OLD_HAND_LIGHT.tooltip.4= 关闭 - 使用新式手持光源 +of.options.shaders.OLD_HAND_LIGHT.tooltip.3= 打开 - 使用经典手持光源 +of.options.shaders.OLD_HAND_LIGHT.tooltip.4= 关掉 - 使用新式手持光源 of.options.shaders.OLD_HAND_LIGHT.tooltip.5=经典手持光源允许只能辨别 of.options.shaders.OLD_HAND_LIGHT.tooltip.6=主手中发光物品的光影包 of.options.shaders.OLD_HAND_LIGHT.tooltip.7=对于另一只手也能工作。 @@ -262,8 +262,8 @@ of.options.shaders.OLD_HAND_LIGHT.tooltip.7=对于另一只手也能工作。 of.options.shaders.OLD_LIGHTING=经典光效 of.options.shaders.OLD_LIGHTING.tooltip.1=经典光效 of.options.shaders.OLD_LIGHTING.tooltip.2= 默认 - 光影包控制 -of.options.shaders.OLD_LIGHTING.tooltip.3= 开启 - 使用经典光效 -of.options.shaders.OLD_LIGHTING.tooltip.4= 关闭 - 不使用经典光效 +of.options.shaders.OLD_LIGHTING.tooltip.3= 打开 - 使用经典光效 +of.options.shaders.OLD_LIGHTING.tooltip.4= 关掉 - 不使用经典光效 of.options.shaders.OLD_LIGHTING.tooltip.5=使用经典光效时则采用原版的固定照明。 of.options.shaders.OLD_LIGHTING.tooltip.6=在这种情况下,方块各面的照明会始终如一。 of.options.shaders.OLD_LIGHTING.tooltip.7=使用阴影的光影包通常会提供 @@ -309,15 +309,15 @@ of.options.mipmap.linear=线性 of.options.mipmap.nearest=邻近 of.options.mipmap.trilinear=三线性 -options.mipmapLevels.tooltip.1=通过平滑材质细节,使远处的 +options.mipmapLevels.tooltip.1=通过平滑纹理细节,使远处的 options.mipmapLevels.tooltip.2=物体获得更好的视觉效果。 -options.mipmapLevels.tooltip.3= 关闭 - 无平滑 +options.mipmapLevels.tooltip.3= 关掉 - 无平滑 options.mipmapLevels.tooltip.4= 1 - 最小平滑 options.mipmapLevels.tooltip.5= 最大化 - 最大平滑 options.mipmapLevels.tooltip.6=此选项通常不会影响性能。 of.options.MIPMAP_TYPE=多级纹理(mipmap)类型 -of.options.MIPMAP_TYPE.tooltip.1=通过平滑材质细节,使远处的 +of.options.MIPMAP_TYPE.tooltip.1=通过平滑纹理细节,使远处的 of.options.MIPMAP_TYPE.tooltip.2=物体获得更好的视觉效果。 of.options.MIPMAP_TYPE.tooltip.3= 邻近 - 粗略平滑(最快) of.options.MIPMAP_TYPE.tooltip.4= 线性 - 正常平滑 @@ -327,7 +327,7 @@ of.options.MIPMAP_TYPE.tooltip.6= 三线性 - 极致平滑(最慢) of.options.AA_LEVEL=抗锯齿 of.options.AA_LEVEL.tooltip.1=抗锯齿 -of.options.AA_LEVEL.tooltip.2= 关闭 - (默认)禁用抗锯齿(较快) +of.options.AA_LEVEL.tooltip.2= 关掉 - (默认)禁用抗锯齿(较快) of.options.AA_LEVEL.tooltip.3= 2-16 - 对线条和边缘进行抗锯齿处理(较慢) of.options.AA_LEVEL.tooltip.4=抗锯齿对锯齿状的线条 of.options.AA_LEVEL.tooltip.5=和鲜明的色彩过渡进行平滑处理。 @@ -337,120 +337,120 @@ of.options.AA_LEVEL.tooltip.8=重启后生效! of.options.AF_LEVEL=各向异性过滤 of.options.AF_LEVEL.tooltip.1=各向异性过滤 -of.options.AF_LEVEL.tooltip.2= 关闭 - (默认)标准材质细节(较快) +of.options.AF_LEVEL.tooltip.2= 关掉 - (默认)标准纹理细节(较快) of.options.AF_LEVEL.tooltip.3= 2-16 - 还原多级纹理(mipmap)处理后的的细节(较慢) of.options.AF_LEVEL.tooltip.4=各向异性过滤还原了经多级 -of.options.AF_LEVEL.tooltip.5=纹理过滤后的材质细节。 +of.options.AF_LEVEL.tooltip.5=纹理过滤后的纹理细节。 of.options.AF_LEVEL.tooltip.6=启用它可能会大幅降低 FPS。 of.options.CLEAR_WATER=清澈水体 of.options.CLEAR_WATER.tooltip.1=清澈水体 -of.options.CLEAR_WATER.tooltip.2= 开启 - 清澈、透明水体 -of.options.CLEAR_WATER.tooltip.3= 关闭 - 默认水体 +of.options.CLEAR_WATER.tooltip.2= 打开 - 清澈、透明水体 +of.options.CLEAR_WATER.tooltip.3= 关掉 - 默认水体 -of.options.RANDOM_ENTITIES=随机实体材质 -of.options.RANDOM_ENTITIES.tooltip.1=随机实体材质 -of.options.RANDOM_ENTITIES.tooltip.2= 关闭 - 关闭随机实体材质(较快) -of.options.RANDOM_ENTITIES.tooltip.3= 开启 - 随机实体材质(较慢) +of.options.RANDOM_ENTITIES=随机实体纹理 +of.options.RANDOM_ENTITIES.tooltip.1=随机实体纹理 +of.options.RANDOM_ENTITIES.tooltip.2= 关掉 - 关掉随机实体纹理(较快) +of.options.RANDOM_ENTITIES.tooltip.3= 打开 - 随机实体纹理(较慢) of.options.RANDOM_ENTITIES.tooltip.4=游戏中的实体使用随机的相应贴图。 of.options.RANDOM_ENTITIES.tooltip.5=需要资源包内有多个实体贴图,得有才行。 of.options.BETTER_GRASS=更好的草地 of.options.BETTER_GRASS.tooltip.1=更好的草地 -of.options.BETTER_GRASS.tooltip.2= 关闭 - 默认草地材质(最快) -of.options.BETTER_GRASS.tooltip.3= 流畅 - 草方块侧面全部使用草地材质(较慢) -of.options.BETTER_GRASS.tooltip.4= 高品质 - 草方块侧面材质动态化(最慢) +of.options.BETTER_GRASS.tooltip.2= 关掉 - 默认草地纹理(最快) +of.options.BETTER_GRASS.tooltip.3= 流畅 - 草方块侧面全部使用草地纹理(较慢) +of.options.BETTER_GRASS.tooltip.4= 高品质 - 草方块侧面纹理动态化(最慢) of.options.BETTER_SNOW=更好的雪地 of.options.BETTER_SNOW.tooltip.1=更好的雪地 -of.options.BETTER_SNOW.tooltip.2= 关闭 - 默认的雪地(较快) -of.options.BETTER_SNOW.tooltip.3= 开启 - 更好的雪地(较慢) +of.options.BETTER_SNOW.tooltip.2= 关掉 - 默认的雪地(较快) +of.options.BETTER_SNOW.tooltip.3= 打开 - 更好的雪地(较慢) of.options.BETTER_SNOW.tooltip.4=在与雪接壤的“透明方块” of.options.BETTER_SNOW.tooltip.5=(如栅栏、高草)下显示雪。 of.options.CUSTOM_FONTS=自定义字体 of.options.CUSTOM_FONTS.tooltip.1=自定义字体 -of.options.CUSTOM_FONTS.tooltip.2= 开启 - (默认)使用自定义字体(较慢) -of.options.CUSTOM_FONTS.tooltip.3= 关闭 - 使用默认字体(较快) +of.options.CUSTOM_FONTS.tooltip.2= 打开 - (默认)使用自定义字体(较慢) +of.options.CUSTOM_FONTS.tooltip.3= 关掉 - 使用默认字体(较快) of.options.CUSTOM_FONTS.tooltip.4=自定义字体一般由 of.options.CUSTOM_FONTS.tooltip.5=当前的资源包提供。 of.options.CUSTOM_COLORS=自定义色彩 of.options.CUSTOM_COLORS.tooltip.1=自定义色彩 -of.options.CUSTOM_COLORS.tooltip.2= 开启 - (默认)使用自定义色彩(较慢) -of.options.CUSTOM_COLORS.tooltip.3= 关闭 - 使用默认色彩(较快) +of.options.CUSTOM_COLORS.tooltip.2= 打开 - (默认)使用自定义色彩(较慢) +of.options.CUSTOM_COLORS.tooltip.3= 关掉 - 使用默认色彩(较快) of.options.CUSTOM_COLORS.tooltip.4=自定义色彩一般由 of.options.CUSTOM_COLORS.tooltip.5=当前的资源包提供。 of.options.SWAMP_COLORS=沼泽颜色 of.options.SWAMP_COLORS.tooltip.1=沼泽颜色 -of.options.SWAMP_COLORS.tooltip.2= 开启 - (默认)使用沼泽颜色(较慢) -of.options.SWAMP_COLORS.tooltip.3= 关闭 - 不使用沼泽颜色(较快) +of.options.SWAMP_COLORS.tooltip.2= 打开 - (默认)使用沼泽颜色(较慢) +of.options.SWAMP_COLORS.tooltip.3= 关掉 - 不使用沼泽颜色(较快) of.options.SWAMP_COLORS.tooltip.4=沼泽的颜色会影响草、树叶、藤蔓和水。 of.options.SMOOTH_BIOMES=平滑生物群系 of.options.SMOOTH_BIOMES.tooltip.1=平滑生物群系 -of.options.SMOOTH_BIOMES.tooltip.2= 开启 - (默认)平滑生物群系的边界(较慢) -of.options.SMOOTH_BIOMES.tooltip.3= 关闭 - 不平滑生物群系的边界(较快) +of.options.SMOOTH_BIOMES.tooltip.2= 打开 - (默认)平滑生物群系的边界(较慢) +of.options.SMOOTH_BIOMES.tooltip.3= 关掉 - 不平滑生物群系的边界(较快) of.options.SMOOTH_BIOMES.tooltip.4=取样边界附近所有方块颜色的平均值 of.options.SMOOTH_BIOMES.tooltip.5=以平滑生物群系的边界。 of.options.SMOOTH_BIOMES.tooltip.6=草、树叶、藤蔓和水会被受到影响。 of.options.CONNECTED_TEXTURES=连接纹理 of.options.CONNECTED_TEXTURES.tooltip.1=连接纹理 -of.options.CONNECTED_TEXTURES.tooltip.2= 关闭 - 关闭连接纹理(默认) +of.options.CONNECTED_TEXTURES.tooltip.2= 关掉 - 关掉连接纹理(默认) of.options.CONNECTED_TEXTURES.tooltip.3= 流畅 - 快速处理纹理连接 of.options.CONNECTED_TEXTURES.tooltip.4= 高品质 - 精细处理纹理连接 -of.options.CONNECTED_TEXTURES.tooltip.5=连接纹理为玻璃、沙石和书柜增加了连接材质, -of.options.CONNECTED_TEXTURES.tooltip.6=当这些同类方块放在一起时会将材质连接为一体。 -of.options.CONNECTED_TEXTURES.tooltip.7=连接材质一般由 +of.options.CONNECTED_TEXTURES.tooltip.5=连接纹理为玻璃、沙石和书柜增加了连接纹理, +of.options.CONNECTED_TEXTURES.tooltip.6=当这些同类方块放在一起时会将纹理连接为一体。 +of.options.CONNECTED_TEXTURES.tooltip.7=连接纹理一般由 of.options.CONNECTED_TEXTURES.tooltip.8=当前的资源包提供。 of.options.NATURAL_TEXTURES=自然纹理 of.options.NATURAL_TEXTURES.tooltip.1=自然纹理 -of.options.NATURAL_TEXTURES.tooltip.2= 关闭 - 关闭自然纹理(默认) -of.options.NATURAL_TEXTURES.tooltip.3= 开启 - 启用自然纹理 +of.options.NATURAL_TEXTURES.tooltip.2= 关掉 - 关掉自然纹理(默认) +of.options.NATURAL_TEXTURES.tooltip.3= 打开 - 启用自然纹理 of.options.NATURAL_TEXTURES.tooltip.4=自然纹理会移除由同一类型的方块重复铺设 of.options.NATURAL_TEXTURES.tooltip.5=而造成的栅格状图案。此功能通过旋转和翻转 -of.options.NATURAL_TEXTURES.tooltip.6=方块的基础材质来创建材质变体。 +of.options.NATURAL_TEXTURES.tooltip.6=方块的基础纹理来创建纹理变体。 of.options.NATURAL_TEXTURES.tooltip.7=自然纹理的配置一般由 of.options.NATURAL_TEXTURES.tooltip.8=当前的资源包提供。 of.options.EMISSIVE_TEXTURES=自发光纹理 of.options.EMISSIVE_TEXTURES.tooltip.1=自发光纹理 -of.options.EMISSIVE_TEXTURES.tooltip.2= 关闭 - 关闭自发光纹理(默认) -of.options.EMISSIVE_TEXTURES.tooltip.3= 开启 - 启用自发光纹理 +of.options.EMISSIVE_TEXTURES.tooltip.2= 关掉 - 关掉自发光纹理(默认) +of.options.EMISSIVE_TEXTURES.tooltip.3= 打开 - 启用自发光纹理 of.options.EMISSIVE_TEXTURES.tooltip.4=自发光纹理会作为覆盖层 of.options.EMISSIVE_TEXTURES.tooltip.5=以最大亮度渲染。可用于 -of.options.EMISSIVE_TEXTURES.tooltip.6=模拟基础材质的发光部分。 +of.options.EMISSIVE_TEXTURES.tooltip.6=模拟基础纹理的发光部分。 of.options.EMISSIVE_TEXTURES.tooltip.7=自发光纹理一般由 of.options.EMISSIVE_TEXTURES.tooltip.8=当前的资源包提供。 of.options.CUSTOM_SKY=自定义天空 of.options.CUSTOM_SKY.tooltip.1=自定义天空 -of.options.CUSTOM_SKY.tooltip.2= 开启 - (默认)自定义天空材质(较慢) -of.options.CUSTOM_SKY.tooltip.3= 关闭 - 默认天空材质(较快) -of.options.CUSTOM_SKY.tooltip.4=自定义天空的材质一般由 +of.options.CUSTOM_SKY.tooltip.2= 打开 - (默认)自定义天空纹理(较慢) +of.options.CUSTOM_SKY.tooltip.3= 关掉 - 默认天空纹理(较快) +of.options.CUSTOM_SKY.tooltip.4=自定义天空的纹理一般由 of.options.CUSTOM_SKY.tooltip.5=当前的资源包提供。 of.options.CUSTOM_ITEMS=自定义物品 of.options.CUSTOM_ITEMS.tooltip.1=自定义物品 -of.options.CUSTOM_ITEMS.tooltip.2= 开启 - (默认)自定义物品材质(较慢) -of.options.CUSTOM_ITEMS.tooltip.3= 关闭 - 默认物品材质(较快) -of.options.CUSTOM_ITEMS.tooltip.4=自定义物品的材质一般由 +of.options.CUSTOM_ITEMS.tooltip.2= 打开 - (默认)自定义物品纹理(较慢) +of.options.CUSTOM_ITEMS.tooltip.3= 关掉 - 默认物品纹理(较快) +of.options.CUSTOM_ITEMS.tooltip.4=自定义物品的纹理一般由 of.options.CUSTOM_ITEMS.tooltip.5=当前的资源包提供。 of.options.CUSTOM_ENTITY_MODELS=自定义实体模型 of.options.CUSTOM_ENTITY_MODELS.tooltip.1=自定义实体模型 -of.options.CUSTOM_ENTITY_MODELS.tooltip.2= 开启 - (默认)自定义实体模型(较慢) -of.options.CUSTOM_ENTITY_MODELS.tooltip.3= 关闭 - 默认实体模型(较快) +of.options.CUSTOM_ENTITY_MODELS.tooltip.2= 打开 - (默认)自定义实体模型(较慢) +of.options.CUSTOM_ENTITY_MODELS.tooltip.3= 关掉 - 默认实体模型(较快) of.options.CUSTOM_ENTITY_MODELS.tooltip.4=自定义实体模型一般由 of.options.CUSTOM_ENTITY_MODELS.tooltip.5=当前的资源包提供。 of.options.CUSTOM_GUIS=自定义界面 of.options.CUSTOM_GUIS.tooltip.1=自定义界面 -of.options.CUSTOM_GUIS.tooltip.2= 开启 - (默认)自定义图形用户界面(较慢) -of.options.CUSTOM_GUIS.tooltip.3= 关闭 - 默认图形用户界面(较快) +of.options.CUSTOM_GUIS.tooltip.2= 打开 - (默认)自定义图形用户界面(较慢) +of.options.CUSTOM_GUIS.tooltip.3= 关掉 - 默认图形用户界面(较快) of.options.CUSTOM_GUIS.tooltip.4=自定义图形用户界面一般由当前的资源包提供。 # Details @@ -460,13 +460,13 @@ of.options.CLOUDS.tooltip.1=云 of.options.CLOUDS.tooltip.2= 默认 - 以“图形品质”的设定为准 of.options.CLOUDS.tooltip.3= 流畅 - 低品质(较快) of.options.CLOUDS.tooltip.4= 高品质 - 高品质(较慢) -of.options.CLOUDS.tooltip.5= 关闭 - 禁用云(最快) +of.options.CLOUDS.tooltip.5= 关掉 - 禁用云(最快) of.options.CLOUDS.tooltip.6=低品质云使用 2D 渲染, of.options.CLOUDS.tooltip.7=高品质云使用 3D 渲染。 of.options.CLOUD_HEIGHT=云高度 of.options.CLOUD_HEIGHT.tooltip.1=云高度 -of.options.CLOUD_HEIGHT.tooltip.2= 关闭 - 默认高度 +of.options.CLOUD_HEIGHT.tooltip.2= 关掉 - 默认高度 of.options.CLOUD_HEIGHT.tooltip.3= 100%% - 超过世界的高度限制 of.options.TREES=树 @@ -483,30 +483,30 @@ of.options.RAIN.tooltip.1=雨雪 of.options.RAIN.tooltip.2= 默认 - 以“图形品质”的设定为准 of.options.RAIN.tooltip.3= 流畅 - 少量的雨/雪(较快) of.options.RAIN.tooltip.4= 高品质 - 大量的雨/雪(较慢) -of.options.RAIN.tooltip.5= 关闭 - 禁用雨/雪(最快) +of.options.RAIN.tooltip.5= 关掉 - 禁用雨/雪(最快) of.options.RAIN.tooltip.6=雨声 和 雨滴飞溅 of.options.RAIN.tooltip.7=不受此选项影响。 of.options.SKY=天空 of.options.SKY.tooltip.1=天空 -of.options.SKY.tooltip.2= 开启 - 天空可见(较慢) -of.options.SKY.tooltip.3= 关闭 - 天空不可见(较快) +of.options.SKY.tooltip.2= 打开 - 天空可见(较慢) +of.options.SKY.tooltip.3= 关掉 - 天空不可见(较快) of.options.SKY.tooltip.4=日月的可见与否有单独的选项。 of.options.STARS=星星 of.options.STARS.tooltip.1=星星 -of.options.STARS.tooltip.2= 开启 - 星星可见(较慢) -of.options.STARS.tooltip.3= 关闭 - 星星不可见(较快) +of.options.STARS.tooltip.2= 打开 - 星星可见(较慢) +of.options.STARS.tooltip.3= 关掉 - 星星不可见(较快) of.options.SUN_MOON=日月 of.options.SUN_MOON.tooltip.1=日月 -of.options.SUN_MOON.tooltip.2= 开启 - 太阳和月亮可见(默认) -of.options.SUN_MOON.tooltip.3= 关闭 - 太阳和月亮不可见(较快) +of.options.SUN_MOON.tooltip.2= 打开 - 太阳和月亮可见(默认) +of.options.SUN_MOON.tooltip.3= 关掉 - 太阳和月亮不可见(较快) of.options.SHOW_CAPES=显示披风 of.options.SHOW_CAPES.tooltip.1=显示披风 -of.options.SHOW_CAPES.tooltip.2= 开启 - 显示玩家披风(默认) -of.options.SHOW_CAPES.tooltip.3= 关闭 - 不显示玩家披风 +of.options.SHOW_CAPES.tooltip.2= 打开 - 显示玩家披风(默认) +of.options.SHOW_CAPES.tooltip.3= 关掉 - 不显示玩家披风 of.options.TRANSLUCENT_BLOCKS=半透明方块 of.options.TRANSLUCENT_BLOCKS.tooltip.1=半透明方块 @@ -519,16 +519,16 @@ of.options.TRANSLUCENT_BLOCKS.tooltip.7=有空气存在时,彼此颜色的混 of.options.HELD_ITEM_TOOLTIPS=持有物信息显示 of.options.HELD_ITEM_TOOLTIPS.tooltip.1=持有物信息显示 -of.options.HELD_ITEM_TOOLTIPS.tooltip.2= 开启 - 显示持有物信息(默认) -of.options.HELD_ITEM_TOOLTIPS.tooltip.3= 关闭 - 隐藏持有物信息 +of.options.HELD_ITEM_TOOLTIPS.tooltip.2= 打开 - 显示持有物信息(默认) +of.options.HELD_ITEM_TOOLTIPS.tooltip.3= 关掉 - 隐藏持有物信息 of.options.ADVANCED_TOOLTIPS=高级信息提示 of.options.ADVANCED_TOOLTIPS.tooltip.1=高级信息提示 -of.options.ADVANCED_TOOLTIPS.tooltip.2= 开启 - 显示高级信息提示 -of.options.ADVANCED_TOOLTIPS.tooltip.3= 关闭 - 隐藏高级信息提示(默认) +of.options.ADVANCED_TOOLTIPS.tooltip.2= 打开 - 显示高级信息提示 +of.options.ADVANCED_TOOLTIPS.tooltip.3= 关掉 - 隐藏高级信息提示(默认) of.options.ADVANCED_TOOLTIPS.tooltip.4=物品(ID、耐久度)和光影设置 of.options.ADVANCED_TOOLTIPS.tooltip.5=(ID、源、默认值)的额外信息 -of.options.ADVANCED_TOOLTIPS.tooltip.6=会在开启时显示。 +of.options.ADVANCED_TOOLTIPS.tooltip.6=会在打开时显示。 of.options.DROPPED_ITEMS=掉落物 of.options.DROPPED_ITEMS.tooltip.1=掉落物 @@ -537,14 +537,14 @@ of.options.DROPPED_ITEMS.tooltip.3= 流畅 - 2D 掉落物(较快) of.options.DROPPED_ITEMS.tooltip.4= 高品质 - 3D 掉落物(较慢) options.entityShadows.tooltip.1=实体阴影 -options.entityShadows.tooltip.2= 开启 - 显示实体阴影 -options.entityShadows.tooltip.3= 关闭 - 隐藏实体阴影 +options.entityShadows.tooltip.2= 打开 - 显示实体阴影 +options.entityShadows.tooltip.3= 关掉 - 隐藏实体阴影 of.options.VIGNETTE=晕影 of.options.VIGNETTE.tooltip.1=使屏幕四角轻微变暗的视觉效果 of.options.VIGNETTE.tooltip.2= 默认 - 以“图形品质”的设定为准(默认) -of.options.VIGNETTE.tooltip.3= 流畅 - 晕影关闭(较快) -of.options.VIGNETTE.tooltip.4= 高品质 - 晕影开启(较慢) +of.options.VIGNETTE.tooltip.3= 流畅 - 晕影关掉(较快) +of.options.VIGNETTE.tooltip.4= 高品质 - 晕影打开(较慢) of.options.VIGNETTE.tooltip.5=晕影可能对FPS有显著的影响, of.options.VIGNETTE.tooltip.6=尤其是全屏游戏的时候。 of.options.VIGNETTE.tooltip.7=晕影的效果非常细微, @@ -552,14 +552,14 @@ of.options.VIGNETTE.tooltip.8=并且可以被安全地禁用。 of.options.DYNAMIC_FOV=动态视场 of.options.DYNAMIC_FOV.tooltip.1=动态视场 -of.options.DYNAMIC_FOV.tooltip.2= 开启 - 启用动态视场(默认) -of.options.DYNAMIC_FOV.tooltip.3= 关闭 - 禁用动态视场 +of.options.DYNAMIC_FOV.tooltip.2= 打开 - 启用动态视场(默认) +of.options.DYNAMIC_FOV.tooltip.3= 关掉 - 禁用动态视场 of.options.DYNAMIC_FOV.tooltip.4=当飞行、疾跑或 of.options.DYNAMIC_FOV.tooltip.5=拉弓时改变视场。 of.options.DYNAMIC_LIGHTS=动态光源 of.options.DYNAMIC_LIGHTS.tooltip.1=动态光源 -of.options.DYNAMIC_LIGHTS.tooltip.2= 关闭 - 无动态光源(默认) +of.options.DYNAMIC_LIGHTS.tooltip.2= 关掉 - 无动态光源(默认) of.options.DYNAMIC_LIGHTS.tooltip.3= 流畅 - 较快的动态光源(每 500ms 更新一次) of.options.DYNAMIC_LIGHTS.tooltip.4= 高品质 - 高品质的动态光源(实时更新) of.options.DYNAMIC_LIGHTS.tooltip.5=使得发光的物品(火把、萤石等) @@ -577,97 +577,97 @@ options.biomeBlendRadius.tooltip.6=添加减慢块加载速度。 of.options.SMOOTH_FPS=平滑 FPS of.options.SMOOTH_FPS.tooltip.1=通过清除显卡缓冲区来稳定 FPS -of.options.SMOOTH_FPS.tooltip.2= 关闭 - 不稳定,FPS 可能波动 -of.options.SMOOTH_FPS.tooltip.3= 开启 - FPS 稳定 +of.options.SMOOTH_FPS.tooltip.2= 关掉 - 不稳定,FPS 可能波动 +of.options.SMOOTH_FPS.tooltip.3= 打开 - FPS 稳定 of.options.SMOOTH_FPS.tooltip.4=此选项依赖于显卡驱动, of.options.SMOOTH_FPS.tooltip.5=通常效果并不明显。 of.options.SMOOTH_WORLD=平滑世界 of.options.SMOOTH_WORLD.tooltip.1=消除内置服务器造成的突发延迟。 -of.options.SMOOTH_WORLD.tooltip.2= 关闭 - 不稳定,FPS 可能波动 -of.options.SMOOTH_WORLD.tooltip.3= 开启 - FPS 稳定 +of.options.SMOOTH_WORLD.tooltip.2= 关掉 - 不稳定,FPS 可能波动 +of.options.SMOOTH_WORLD.tooltip.3= 打开 - FPS 稳定 of.options.SMOOTH_WORLD.tooltip.4=分担内置服务器负载来稳定FPS。 of.options.SMOOTH_WORLD.tooltip.5=只在本地世界(单人游戏)有效。 of.options.FAST_RENDER=快速渲染 of.options.FAST_RENDER.tooltip.1=快速渲染 -of.options.FAST_RENDER.tooltip.2= 关闭 - 标准渲染(默认) -of.options.FAST_RENDER.tooltip.3= 开启 - 优化渲染(较快) +of.options.FAST_RENDER.tooltip.2= 关掉 - 标准渲染(默认) +of.options.FAST_RENDER.tooltip.3= 打开 - 优化渲染(较快) of.options.FAST_RENDER.tooltip.4=采用优化渲染算法从而降低 GPU 的负载 of.options.FAST_RENDER.tooltip.5=并且可能大幅提升 FPS。 of.options.FAST_RENDER.tooltip.6=此选项或与某些模组冲突。 of.options.FAST_MATH=快速运算 of.options.FAST_MATH.tooltip.1=快速运算 -of.options.FAST_MATH.tooltip.2= 关闭 - 标准的运算(默认) -of.options.FAST_MATH.tooltip.3= 开启 - 更快的运算 +of.options.FAST_MATH.tooltip.2= 关掉 - 标准的运算(默认) +of.options.FAST_MATH.tooltip.3= 打开 - 更快的运算 of.options.FAST_MATH.tooltip.4=采用优化的 sin() 和 cos() 函数可以 of.options.FAST_MATH.tooltip.5=更好地利用 CPU 缓存,并且提升 FPS。 of.options.FAST_MATH.tooltip.6=此选项对世界生成有微小影响。 of.options.CHUNK_UPDATES=区块更新 of.options.CHUNK_UPDATES.tooltip.1=区块更新 -of.options.CHUNK_UPDATES.tooltip.2= 1 - 世界载入速度较慢,FPS 较高(默认) -of.options.CHUNK_UPDATES.tooltip.3= 3 - 世界载入速度较快,FPS 较低 -of.options.CHUNK_UPDATES.tooltip.4= 5 - 世界载入速度最快,FPS 最低 +of.options.CHUNK_UPDATES.tooltip.2= 1 - 世界加载速度较慢,FPS 较高(默认) +of.options.CHUNK_UPDATES.tooltip.3= 3 - 世界加载速度较快,FPS 较低 +of.options.CHUNK_UPDATES.tooltip.4= 5 - 世界加载速度最快,FPS 最低 of.options.CHUNK_UPDATES.tooltip.5=渲染每帧时更新的区块数, of.options.CHUNK_UPDATES.tooltip.6=更高的值将会导致帧数不稳定。 of.options.CHUNK_UPDATES_DYNAMIC=动态更新 of.options.CHUNK_UPDATES_DYNAMIC.tooltip.1=动态区块更新 -of.options.CHUNK_UPDATES_DYNAMIC.tooltip.2= 关闭 - 标准的每帧区块更新(默认) -of.options.CHUNK_UPDATES_DYNAMIC.tooltip.3= 开启 - 当玩家站立不动时更多的区块更新 +of.options.CHUNK_UPDATES_DYNAMIC.tooltip.2= 关掉 - 标准的每帧区块更新(默认) +of.options.CHUNK_UPDATES_DYNAMIC.tooltip.3= 打开 - 当玩家站立不动时更多的区块更新 of.options.CHUNK_UPDATES_DYNAMIC.tooltip.4=当玩家站立不动时,强迫更多的 of.options.CHUNK_UPDATES_DYNAMIC.tooltip.5=区块更新,使得世界加载更快。 of.options.LAZY_CHUNK_LOADING=缓慢区块加载 of.options.LAZY_CHUNK_LOADING.tooltip.1=缓慢区块加载 -of.options.LAZY_CHUNK_LOADING.tooltip.2= 关闭 - 默认的服务器区块载入 -of.options.LAZY_CHUNK_LOADING.tooltip.3= 开启 - 缓慢的服务器区块载入(更平滑) +of.options.LAZY_CHUNK_LOADING.tooltip.2= 关掉 - 默认的服务器区块加载 +of.options.LAZY_CHUNK_LOADING.tooltip.3= 打开 - 缓慢的服务器区块加载(更平滑) of.options.LAZY_CHUNK_LOADING.tooltip.4=将区块分布在多个“游戏刻”进行加载 of.options.LAZY_CHUNK_LOADING.tooltip.5=从而平滑服务器整体区块加载。 -of.options.LAZY_CHUNK_LOADING.tooltip.6=如果部分世界不能正确地载入,请把它设置为关。 +of.options.LAZY_CHUNK_LOADING.tooltip.6=如果部分世界不能正确地加载,请把它设置为关。 of.options.LAZY_CHUNK_LOADING.tooltip.7=仅适用于单人游戏的本地世界。 of.options.RENDER_REGIONS=区域渲染 of.options.RENDER_REGIONS.tooltip.1=区域渲染 -of.options.RENDER_REGIONS.tooltip.2= 关闭 - 不使用区域渲染(默认) -of.options.RENDER_REGIONS.tooltip.3= 开启 - 使用区域渲染 +of.options.RENDER_REGIONS.tooltip.2= 关掉 - 不使用区域渲染(默认) +of.options.RENDER_REGIONS.tooltip.3= 打开 - 使用区域渲染 of.options.RENDER_REGIONS.tooltip.4=区域渲染可使远处的地形渲染得更快。 of.options.RENDER_REGIONS.tooltip.5=当启用顶点缓冲区对象时此选项将更有效。 of.options.RENDER_REGIONS.tooltip.6=不推荐集成显卡使用。 -of.options.SMART_ANIMATIONS=智能动态材质 -of.options.SMART_ANIMATIONS.tooltip.1=智能动态材质 -of.options.SMART_ANIMATIONS.tooltip.2= 关闭 - 不使用智能动态材质(默认) -of.options.SMART_ANIMATIONS.tooltip.3= 开启 - 使用智能动态材质 -of.options.SMART_ANIMATIONS.tooltip.4=当使用智能动态材质时,游戏仅更新 -of.options.SMART_ANIMATIONS.tooltip.5=当前屏幕可见的动态材质。 +of.options.SMART_ANIMATIONS=智能动态纹理 +of.options.SMART_ANIMATIONS.tooltip.1=智能动态纹理 +of.options.SMART_ANIMATIONS.tooltip.2= 关掉 - 不使用智能动态纹理(默认) +of.options.SMART_ANIMATIONS.tooltip.3= 打开 - 使用智能动态纹理 +of.options.SMART_ANIMATIONS.tooltip.4=当使用智能动态纹理时,游戏仅更新 +of.options.SMART_ANIMATIONS.tooltip.5=当前屏幕可见的动态纹理。 of.options.SMART_ANIMATIONS.tooltip.6=此选项可减少游戏刻突发延迟并提升 FPS。 of.options.SMART_ANIMATIONS.tooltip.7=对于大型模组包和高清资源包格外有效。 # Animations -of.options.animation.allOn=全部开启 -of.options.animation.allOff=全部关闭 +of.options.animation.allOn=全部打开 +of.options.animation.allOff=全部关掉 of.options.animation.dynamic=动态 of.options.ANIMATED_WATER=水面动画 -of.options.ANIMATED_LAVA=岩浆动画 +of.options.ANIMATED_LAVA=熔岩动画 of.options.ANIMATED_FIRE=火焰动画 -of.options.ANIMATED_PORTAL=传送门动画 -of.options.ANIMATED_REDSTONE=红石动画 +of.options.ANIMATED_PORTAL=门户动画 +of.options.ANIMATED_REDSTONE=雷石东动画 of.options.ANIMATED_EXPLOSION=爆炸动画 of.options.ANIMATED_FLAME=火焰动画 of.options.ANIMATED_SMOKE=烟雾动画 of.options.VOID_PARTICLES=虚空粒子 of.options.WATER_PARTICLES=水面粒子 of.options.RAIN_SPLASH=雨滴飞溅 -of.options.PORTAL_PARTICLES=传送门粒子 -of.options.POTION_PARTICLES=药水粒子 -of.options.DRIPPING_WATER_LAVA=水滴/岩浆滴 +of.options.PORTAL_PARTICLES=门户粒子 +of.options.POTION_PARTICLES=溶液粒子 +of.options.DRIPPING_WATER_LAVA=水滴/溶液滴 of.options.ANIMATED_TERRAIN=地形动画 -of.options.ANIMATED_TEXTURES=动态材质 +of.options.ANIMATED_TEXTURES=动态纹理 of.options.FIREWORK_PARTICLES=窜天猴粒子 # Other @@ -684,15 +684,15 @@ of.options.LAGOMETER.tooltip.8=* 绿 - 渲染地形 of.options.PROFILER=调试分析器 of.options.PROFILER.tooltip.1=调试分析器 -of.options.PROFILER.tooltip.2= 开启 - 调试分析器启用(较慢) -of.options.PROFILER.tooltip.3= 关闭 - 调试分析器禁用(较快) -of.options.PROFILER.tooltip.4=在调试界面开启状态(F3)时 +of.options.PROFILER.tooltip.2= 打开 - 调试分析器启用(较慢) +of.options.PROFILER.tooltip.3= 关掉 - 调试分析器禁用(较快) +of.options.PROFILER.tooltip.4=在调试界面打开状态(F3)时 of.options.PROFILER.tooltip.5=调试分析器收集并且显示调试信息。 of.options.WEATHER=天气 of.options.WEATHER.tooltip.1=天气 -of.options.WEATHER.tooltip.2= 开启 - 开启天气(较慢) -of.options.WEATHER.tooltip.3= 关闭 - 关闭天气(较快) +of.options.WEATHER.tooltip.2= 打开 - 打开天气(较慢) +of.options.WEATHER.tooltip.3= 关掉 - 关掉天气(较快) of.options.WEATHER.tooltip.4=天气选项影响雨,雪和雷电。 of.options.WEATHER.tooltip.5=天气选项仅在本地游戏中生效。 @@ -708,8 +708,8 @@ of.options.TIME.tooltip.5=时间设置只在创造模式下 of.options.TIME.tooltip.6=且为本地游戏时有效。 options.fullscreen.tooltip.1=全屏 -options.fullscreen.tooltip.2= 开启 - 使用全屏模式 -options.fullscreen.tooltip.3= 关闭 - 使用窗口模式 +options.fullscreen.tooltip.2= 打开 - 使用全屏模式 +options.fullscreen.tooltip.3= 关掉 - 使用窗口模式 options.fullscreen.tooltip.4=全屏模式可能比窗口模式 options.fullscreen.tooltip.5=更快或更慢,这取决于显卡。 @@ -764,9 +764,9 @@ of.options.CHAT_BACKGROUND=聊天背景 of.options.CHAT_BACKGROUND.tooltip.1=聊天背景 of.options.CHAT_BACKGROUND.tooltip.2= 默认 - 固定字宽 of.options.CHAT_BACKGROUND.tooltip.3= 紧凑 - 调整以适应行宽 -of.options.CHAT_BACKGROUND.tooltip.4= 关闭 - 隐藏 +of.options.CHAT_BACKGROUND.tooltip.4= 关掉 - 隐藏 of.options.CHAT_SHADOW=聊天阴影 of.options.CHAT_SHADOW.tooltip.1=聊天阴影 -of.options.CHAT_SHADOW.tooltip.2= 开启 - 使用字体阴影 -of.options.CHAT_SHADOW.tooltip.3= 关闭 - 无字体阴影 +of.options.CHAT_SHADOW.tooltip.2= 打开 - 使用字体阴影 +of.options.CHAT_SHADOW.tooltip.3= 关掉 - 无字体阴影 diff --git a/mods/orderly.json b/mods/orderly.json index 72337b064..c85ec5345 100644 --- a/mods/orderly.json +++ b/mods/orderly.json @@ -2,4 +2,4 @@ "key.orderly.toggle": "开关血量显示", "config.orderly.title": "血条", "config.orderly.error.invalid_identifier": "%s不是有效的标识符!" -} \ No newline at end of file +} diff --git a/mods/raa.json b/mods/raa.json index 5a87f2466..13d5cd04c 100644 --- a/mods/raa.json +++ b/mods/raa.json @@ -9,30 +9,30 @@ "itemGroup.raa.tr_dust": "RAA兼容:科技复兴Mod", "text.raa.block.ore": "%s矿石", "text.raa.block.block": "%s方块", - "text.raa.block.stone": "%s石", - "text.raa.block.stoneBricks": "%s石砖", + "text.raa.block.stone": "%s石头", + "text.raa.block.stoneBricks": "%s砖石", "text.raa.block.chiseled": "使用了大师级雕刻技艺的%s", "text.raa.block.cobblestone": "%s圆石", - "text.raa.block.polished": "磨制%s", + "text.raa.block.polished": "使用了打磨工艺进行加工的%s", "text.raa.block.ice": "%s冰", "text.raa.item.gem": "%s宝石", - "text.raa.item.ingot": "%s锭", + "text.raa.item.ingot": "%s元宝", "text.raa.item.crystal": "%s水晶", "text.raa.item.nugget": "%s粒", "text.raa.item.axe": "%s斧", "text.raa.item.sword": "%s剑", "text.raa.item.horse_armor": "%s马甲", "text.raa.item.food": "%s果", - "text.raa.item.pickaxe": "%s镐", + "text.raa.item.pickaxe": "%sgiao子", "text.raa.item.hoe": "%s锄", "text.raa.item.shovel": "%s锨", "text.raa.item.armor_head": "%s头盔", "text.raa.item.armor_chest": "%s胸甲", "text.raa.item.armor_legs": "%s护腿", "text.raa.item.armor_feet": "%s靴子", - "text.raa.item.shears": "%s剪刀", + "text.raa.item.shears": "%s夹子", "text.raa.compat.techreborn.dust": "%s粉", - "text.raa.block.portal": "%s传送门", + "text.raa.block.portal": "%s门户", "config.title.raa": "RAA设置", "config.title.raa.dimension": "RAA设置:维度", "config.title.raa.material": "RAA设置:材料", @@ -60,7 +60,7 @@ "config.text.raa.equipmentSound": "§7装备声音:§f%s", "config.text.raa.repairItem": "§7用于修复的物品:§f%s", "config.text.raa.toughness": "§7韧性:§f%s", - "config.title.raa.food": "食物", + "config.title.raa.food": "恰饭", "config.text.raa.hunger": "§7饱食度:§f%s", "config.text.raa.saturationModifier": "§7饱和度:§f%s", "config.text.raa.alwaysEdible": "§7永远可食?:§f%s", @@ -129,10 +129,10 @@ "config.tooltip.raa.molten": "“熔融”维度有熔岩海。祝你好运!", "config.tooltip.raa.dry": "“干燥”维度没有任何海洋。水只会在一些小池塘或小湖里。", "config.tooltip.raa.tectonic": "“地势险要”维度有大量峡谷和洞穴。小心脚滑!", - "config.tooltip.raa.corrupted": "“毁坏”维度会有随机伸入地表的地狱岩和火。祝你玩的开心!", + "config.tooltip.raa.corrupted": "“毁坏”维度会有随机伸入地表的尼德兰岩和火。祝你玩的开心!", "text.autoconfig.raa.option.materialNumber": "材料数量:", "text.autoconfig.raa.option.dimensionNumber": "维度数量:", "text.autoconfig.raa.option.debug": "调试:", "text.autoconfig.raa.option.regen": "重新生成:", "text.autoconfig.raa.option.namingLanguage": "命名使用的语言:" -} \ No newline at end of file +} diff --git a/mods/roughlyenoughitems.json b/mods/roughlyenoughitems.json index 209726f5e..5887cbe3f 100644 --- a/mods/roughlyenoughitems.json +++ b/mods/roughlyenoughitems.json @@ -1,263 +1,263 @@ { - "key.rei.category": "粗略足够物品(在“配置”屏幕上设置快捷键)", - "text.rei.cheating": "滥权模式", - "text.rei.cheating_disabled": "§7已禁用滥权", - "text.rei.cheating_enabled": "§c已启用滥权", - "text.rei.cheating_limited_enabled": "§b已启用滥权(通过命令行)", - "text.rei.cheating_enabled_no_perms": "§7滥权§c已启用§7(但没有完全滥权)", - "text.rei.cheating_limited_creative_enabled": "§b已启用滥权(通过上帝模式)", - "text.rei.no_permission_cheat": "通过滥权无中生有需要管理员权限", - "text.rei.search.field.suggestion": "选择性失忆人士专用通道...", - "category.rei.crafting": "合成", - "category.rei.smelting": "燃起来了", - "category.rei.smelting.fuel": "无博人传特性物品", - "category.rei.fuel": "无博人传特性物品", - "category.rei.fuel.time": "燃烧时间:%d 游戏刻", - "category.rei.fuel.time.items": "可熔炼物品个数:%s 个物品", - "category.rei.fuel.time_short": "%d 游戏刻", - "category.rei.fuel.time_short.items": "%s 个物品", - "category.rei.cooking.xp": "%f 经验", - "category.rei.cooking.time&xp": "在 %2$s 秒内获得 %1$s 经验", - "category.rei.smoking": "吸烟", - "category.rei.blasting": "炼金", - "category.rei.campfire": "营火", - "category.rei.campfire.time": "%s 个 20 Ticks", - "category.rei.stone_cutting": "石の处刑", - "category.rei.brewing": "调和", - "category.rei.brewing.input": "源药水", - "category.rei.brewing.reactant": "原料", - "category.rei.brewing.result": "输出药水", - "category.rei.composting": "堆肥", - "category.rei.stripping": "去皮", - "category.rei.smithing": "八十!八十!", - "category.rei.beacon_base": "培根方块基座", - "category.rei.beacon_payment": "培根方块激活消耗", - "category.rei.tilling": "耕种", - "category.rei.pathing": "制造草径", - "category.rei.information": "信息", - "text.rei.composting.chance": "§e%d%% 的机会", - "text.rei.composting.page": "第 %d 页", - "text.rei.config": "配置", - "text.rei.config_tooltip": "打开配置\n§7按住 Shift 键单击以切换滥权模式", - "text.rei.config.optifine.title": "打开 粗略足够物品 配置界面失败", - "text.rei.config.optifine.description": "OptiFine:杰哥不要!/nOptiFabric:杰哥不要!", - "text.rei.cheat_items": "已无中生有 {item_count} 个 [{item_name}§f] 给 {player_name}", - "text.rei.failed_cheat_items": "§c物品无中生有失败", - "ordering.rei.ascending": "顺着来", - "ordering.rei.descending": "来着顺", - "ordering.rei.registry": "物品ID循序", - "ordering.rei.name": "名称循序", - "ordering.rei.item_groups": "物品分类的循序", - "text.auto_craft.move_items": "jiong一下传送物品", - "text.auto_craft.move_items.yog": "野生的 NullPointerException 出现了!!", - "error.rei.transfer.too_small": "无法将移动物品jiong一下传送到 %dx%d 的方格上.", - "error.rei.not.on.server": "服务器没有安装 粗略足够物品", - "error.rei.not.enough.materials": "原料不足", - "error.rei.internal.error": "内讧: %s", - "error.rei.recipe.not.unlocked": "食谱:我认识你吗?", - "error.rei.no.handlers.applicable": "不支持的工作站。", - "error.rei.multi.errors": "多个错误:", - "rei.rei.no.slot.in.inv": "您的物品栏已满", - "text.rei.showing_craftable": "显示可合成的物品", - "text.rei.showing_all": "显示所有物品", - "text.rei.delete_items": "§c删除物品", - "text.rei.credits": "特别感谢", - "text.rei.left_arrow": "<", - "text.rei.right_arrow": ">", - "text.rei.view_all_categories": "查看全部类别", - "text.rei.go_back_first_page": "常回第 1 页看看", - "text.rei.choose_page": "选择页面", - "text.rei.gamemode_button.tooltip.dropdown": "切换游戏模式:菜单", - "text.rei.gamemode_button.tooltip.entry": "切换至 %s", - "text.rei.weather_button.tooltip.dropdown": "天 气 之 子:菜单", - "text.rei.weather_button.tooltip.entry": "切换至 %s", - "text.rei.reload_config": "重载插件", - "text.rei.config.is.reloading": "插件正在重新加载!", - "text.rei.enabled": "彳亍", - "text.rei.disabled": "呐呐呐!", - "text.rei.short_gamemode.survival": "生", - "text.rei.short_gamemode.creative": "创", - "text.rei.short_gamemode.adventure": "冒", - "text.rei.short_gamemode.spectator": "鬼", - "text.rei.weather.clear": "晴", - "text.rei.weather.rain": "雨", - "text.rei.weather.thunder": "雷", - "text.rei.previous_category": "上一类别", - "text.rei.next_category": "下一类别", - "text.rei.previous_page": "上一页", - "text.rei.next_page": "下一页", - "text.rei.back": "返回", - "text.rei.select": "选择", - "text.rei.favorites": "收藏夹", - "text.rei.favorites_tooltip": " \n§7按 %s 将其珍藏到小本本里。", - "text.rei.remove_favorites_tooltip": " \n§7按 %s 可以将其从小本本中移除。", - "text.rei.working_station": "工作站", - "text.rei.release_export": "释放 %s 以导出此食谱", - "text.rei.recipe_id": "\n%s食谱 ID: %s", - "text.rei.recipe_screen_type.selection": "合成界面样式选择", - "text.rei.recipe_screen_type.selection.sub": "你随时可以通过配置界面再次编辑此设置.", - "text.rei.jei_compat": "就是足够物品 兼容模式", - "text.rei.jei_compat.false": "就是足够物品 兼容模式:不彳亍", - "text.rei.jei_compat.true": "就是足够物品 兼容模式:彳亍", - "text.rei.jei_compat.sub": "您想要启用 就是足够物品 兼容模式 %s§7吗?\n§7它将允许从这些模组加载 就是足够物品 插件:\n%s\n\n§7然而,粗略足够物品 的 就是足够物品 兼容模式并不完善,可能将会出现很多问题。\n§c风险自负!", - "text.rei.jei_compat.sub.stability": "§c§l(不稳定)", - "text.rei.view_recipes_for": "查看 %s 的配方", - "text.rei.subsets": "项目分类", - "text.rei.tiny_potato": "小育碧服务器", - "text.rei.add_favorite_widget": "添加...", - "favorite.section.gamemode": "游戏模式", - "favorite.section.weather": "天气", - "tooltip.rei.fluid_amount": "§7%d 单位", - "tooltip.rei.fluid_amount.forge": "§7%d mB", - "tooltip.rei.drag_to_add_favorites": "§7拖动这个向上来将它记入到您的小本本!", - "msg.rei.copied_recipe_id": "已复制食谱ID", - "msg.rei.recipe_id_details": "食谱ID:%s", - "msg.rei.exported_recipe": "已导出食谱", - "msg.rei.exported_recipe.desc": "请访问\"rei_exports\"文件夹。", - "subsets.rei.roughlyenoughitems.all_entries": "所有条目", - "subsets.rei.roughlyenoughitems.item_groups": "创造模式下的分类", - "_comment": "配置提示", - "config.roughlyenoughitems.title": "粗略足够物品 配置", - "config.roughlyenoughitems.basics": "基础", - "config.roughlyenoughitems.appearance": "外观样式", - "config.roughlyenoughitems.functionality": "功能", - "config.roughlyenoughitems.advanced": "高级", - "config.roughlyenoughitems.cheating": "是否滥权:", - "config.roughlyenoughitems.favoritesEnabled": "是否启用收藏夹:", - "config.roughlyenoughitems.keyBindings": "快捷键", - "config.roughlyenoughitems.keyBindings.recipeKeybind": "查看配方:", - "config.roughlyenoughitems.keyBindings.hideKeybind": "隐藏/显示 粗略足够物品:", - "config.roughlyenoughitems.keyBindings.usageKeybind": "查看用途:", - "config.roughlyenoughitems.keyBindings.nextPageKeybind": "下一页:", - "config.roughlyenoughitems.keyBindings.previousPageKeybind": "上一页:", - "config.roughlyenoughitems.keyBindings.focusSearchFieldKeybind": "选中选择性失忆人士专用通道:", - "config.roughlyenoughitems.keyBindings.copyRecipeIdentifierKeybind": "复制食谱ID:", - "config.roughlyenoughitems.keyBindings.exportImageKeybind": "导出食谱:", - "config.roughlyenoughitems.keyBindings.favoriteKeybind": "将物品记入小本本:", - "config.roughlyenoughitems.cheatingStyle": "滥权方式:", - "config.roughlyenoughitems.cheatingStyle.grab": "过来吧你!", - "config.roughlyenoughitems.cheatingStyle.give": "无中生有", - "config.roughlyenoughitems.motion": "动画设置", - "config.roughlyenoughitems.motion.configScreenAnimation": "配置屏幕动画:", - "config.roughlyenoughitems.motion.creditsScreenAnimation": "特别感谢屏幕动画:", - "config.roughlyenoughitems.motion.favoritesAnimation": "小本本动画:", - "config.roughlyenoughitems.recipeScreenType": "食谱屏幕类型:", - "config.roughlyenoughitems.recipeScreenType.config": "食谱屏幕类型:%s", - "config.roughlyenoughitems.recipeScreenType.unset": "未设定", - "config.roughlyenoughitems.recipeScreenType.original": "默认", - "config.roughlyenoughitems.recipeScreenType.composite": "与奸商の美好回忆限定版", - "config.roughlyenoughitems.layout": "躺出来", - "config.roughlyenoughitems.tooltips": "工具提示", - "config.roughlyenoughitems.accessibility": "辅助", - "config.roughlyenoughitems.search": "选择性失忆人士专用通道", - "config.roughlyenoughitems.commands": "命令", - "config.roughlyenoughitems.filtering": "隐藏/显示物品", - "config.roughlyenoughitems.miscellaneous": "其他", - "config.roughlyenoughitems.miscellaneous.clickableRecipeArrows": "是否可点击工作站上的箭头:", - "config.roughlyenoughitems.isSubsetsEnabled": "显示项目分类:", - "config.roughlyenoughitems.allowInventoryHighlighting": "物品栏高亮:", - "config.roughlyenoughitems.miscellaneous.renderEntryEnchantmentGlint": "渲染覆膜光效:", - "config.roughlyenoughitems.layout.configButtonLocation": "配置按钮位置:", - "config.roughlyenoughitems.layout.configButtonLocation.upper": "上方", - "config.roughlyenoughitems.layout.configButtonLocation.lower": "下方", - "config.roughlyenoughitems.filteredEntries.selectAll": "我全都要", - "config.roughlyenoughitems.filteredEntries.selectNone": "劳资不选了!", - "config.roughlyenoughitems.filteredEntries.hide": "我全都要.....要没了", - "config.roughlyenoughitems.filteredEntries.show": "显示所选", - "config.roughlyenoughitems.filteredEntries.loadWorldFirst": "请先载入世界!", - "config.roughlyenoughitems.accessibility.entrySize": "条目大小:", - "config.roughlyenoughitems.search.asyncSearch": "异步搜索:", - "config.roughlyenoughitems.search.asyncSearchPartitionSize": "异步搜索划分大小:", - "config.roughlyenoughitems.accessibility.useCompactTabs": "简洁标签:", - "config.roughlyenoughitems.theme": "外观主题:", - "config.roughlyenoughitems.theme.dark": "deep♂dark♂主题", - "config.roughlyenoughitems.theme.light": "浅色主题", - "config.roughlyenoughitems.recipeBorder": "食谱显示边框:", - "config.roughlyenoughitems.recipeBorder.lighter": "更闪瞎眼", - "config.roughlyenoughitems.recipeBorder.default": "默认", - "config.roughlyenoughitems.recipeBorder.none": "无", - "config.roughlyenoughitems.layout.maxRecipesPerPage": "每页可以显示最多合成:", - "config.roughlyenoughitems.accessibility.displayPanelLocation": "条目列表位置:", - "config.roughlyenoughitems.accessibility.displayPanelLocation.left": "左侧", - "config.roughlyenoughitems.accessibility.displayPanelLocation.right": "右侧", - "config.roughlyenoughitems.search.tooltipSearch": "工具提示搜索 (#):", - "config.roughlyenoughitems.search.tagSearch": "标签搜索 ($):", - "config.roughlyenoughitems.search.identifierSearch": "识别号搜索 (*):", - "config.roughlyenoughitems.search.modSearch": "模组搜索 (@):", - "config.roughlyenoughitems.search_mode.always": "总是启用", - "config.roughlyenoughitems.search_mode.prefix": "使用前缀时", - "config.roughlyenoughitems.search_mode.never": "总是禁用", - "config.roughlyenoughitems.layout.debugRenderTimeRequired": "条目列表调试模式:", - "config.roughlyenoughitems.search.debugSearchTimeRequired": "搜索调试模式:", - "config.roughlyenoughitems.accessibility.resizeDynamically": "动态调整大小:", - "config.roughlyenoughitems.layout.searchFieldLocation": "搜索框的位置:", - "config.roughlyenoughitems.layout.searchFieldLocation.bottom_side": "左/右下角", - "config.roughlyenoughitems.layout.searchFieldLocation.top_side": "左/右上角", - "config.roughlyenoughitems.layout.searchFieldLocation.center": "中间", - "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent": "滚动条淡出:", - "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.true": "从不", - "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.false": "自动淡出", - "config.roughlyenoughitems.disableRecipeBook": "食谱手册:", - "config.roughlyenoughitems.disableRecipeBook.boolean.true": "§c否", - "config.roughlyenoughitems.disableRecipeBook.boolean.false": "§a是", - "config.roughlyenoughitems.fixTabCloseContainer": "修复Tab(禁用食谱手册时):", - "config.roughlyenoughitems.lighterButtonHover": "较轻的按钮:", - "config.roughlyenoughitems.layout.enableCraftableOnlyButton": "可合成过滤器:", - "config.roughlyenoughitems.layout.showUtilsButtons": "工具按钮:", - "config.roughlyenoughitems.commands.gamemodeCommand": "游戏模式命令:", - "config.roughlyenoughitems.commands.giveCommand": "滥权命令:", - "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin": "加载默认插件:", - "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin.boolean.false": "§c禁用 (危险)", - "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread": "REI 加载线程:", - "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.true": "粗略足够物品 线程", - "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.false": "§c原线程", - "config.roughlyenoughitems.commands.weatherCommand": "天 气 之 子:", - "config.roughlyenoughitems.layout.entryPanelOrdering": "条目列表排序:", - "config.roughlyenoughitems.list_ordering_button": "%s [%s]", - "config.roughlyenoughitems.miscellaneous.newFastEntryRendering": "更快项目绘图:", - "config.roughlyenoughitems.itemCheatingMode": "物品滥权数量:", - "config.roughlyenoughitems.itemCheatingMode.rei_like": "标准", - "config.roughlyenoughitems.itemCheatingMode.jei_like": "反转", - "config.roughlyenoughitems.search.searchFavorites": "在收藏中搜索过滤器:", - "config.roughlyenoughitems.tooltips.appendModNames": "附加模组名称:", - "config.roughlyenoughitems.tooltips.displayFavoritesTooltip": "附加收藏夹提示:", - "config.roughlyenoughitems.accessibility.snapToRows": "对齐项目列表:", - "config.roughlyenoughitems.accessibility.toastDisplayedOnCopyIdentifier": "复制ID讯息:", - "config.roughlyenoughitems.scrollingEntryListWidget": "条目列表操作:", - "config.roughlyenoughitems.scrollingEntryListWidget.boolean.true": "滚动", - "config.roughlyenoughitems.scrollingEntryListWidget.boolean.false": "分页", - "config.roughlyenoughitems.horizontalEntriesBoundaries": "水平条目边界:", - "config.roughlyenoughitems.verticalEntriesBoundaries": "垂直条目边界:", - "config.roughlyenoughitems.syntaxHighlightingMode": "语法高亮模式:", - "config.roughlyenoughitems.syntaxHighlightingMode.config": "%s", - "config.roughlyenoughitems.syntaxHighlightingMode.plain": "无色", - "config.roughlyenoughitems.syntaxHighlightingMode.plain_underscored": "无色(下划线)", - "config.roughlyenoughitems.syntaxHighlightingMode.colorful": "炫彩", - "config.roughlyenoughitems.syntaxHighlightingMode.colorful_underscored": "炫彩(下划线)", - "config.roughlyenoughitems.filteringScreen": "自定义过滤器", - "config.roughlyenoughitems.filteringRulesScreen": "自定义过滤规则", - "config.roughlyenoughitems.filteringRulesScreen.new": "创建过滤规则", - "config.roughlyenoughitems.filteringRulesScreen.delete": "删除", - "rule.roughlyenoughitems.filtering.manual": "手动过滤", - "rule.roughlyenoughitems.filtering.manual.subtitle": "手动选择要隐藏和显示的内容。", - "rule.roughlyenoughitems.filtering.search": "搜索筛选器", - "rule.roughlyenoughitems.filtering.search.subtitle": "使用搜索过滤器过滤。", - "rule.roughlyenoughitems.filtering.search.filter": "筛选器:", - "rule.roughlyenoughitems.filtering.search.show": "显示/隐藏:", - "rule.roughlyenoughitems.filtering.search.show.true": "显示", - "rule.roughlyenoughitems.filtering.search.show.false": "隐藏", - "language.roughlyenoughitems.english": "英语", - "language.roughlyenoughitems.japanese": "日语", - "language.roughlyenoughitems.chinese_simplified": "简体中文", - "language.roughlyenoughitems.chinese_traditional": "繁体中文", - "language.roughlyenoughitems.french": "法语", - "language.roughlyenoughitems.german": "德语", - "language.roughlyenoughitems.estonian": "爱沙尼亚语", - "language.roughlyenoughitems.portuguese": "葡萄牙语", - "language.roughlyenoughitems.portuguese_brazilian": "葡萄牙语(巴西)", - "language.roughlyenoughitems.lolcat": "LOLCAT", - "language.roughlyenoughitems.upside_down_english": "颠倒的英语", - "language.roughlyenoughitems.bulgarian": "保加利亚语", - "language.roughlyenoughitems.russian": "俄语", - "language.roughlyenoughitems.polish": "波兰语" + "key.rei.category": "粗略足够物品(在“配置”屏幕上设置快捷键)", + "text.rei.cheating": "滥权模式", + "text.rei.cheating_disabled": "§7已禁用滥权", + "text.rei.cheating_enabled": "§c已启用滥权", + "text.rei.cheating_limited_enabled": "§b已启用滥权(通过命令行)", + "text.rei.cheating_enabled_no_perms": "§7滥权§c已启用§7(但没有完全滥权)", + "text.rei.cheating_limited_creative_enabled": "§b已启用滥权(通过上帝模式)", + "text.rei.no_permission_cheat": "通过滥权无中生有需要管理员权限", + "text.rei.search.field.suggestion": "选择性失忆人士专用通道...", + "category.rei.crafting": "合成", + "category.rei.smelting": "燃起来了", + "category.rei.smelting.fuel": "无博人传特性物品", + "category.rei.fuel": "无博人传特性物品", + "category.rei.fuel.time": "燃烧时间:%d 游戏刻", + "category.rei.fuel.time.items": "可熔炼物品个数:%s 个物品", + "category.rei.fuel.time_short": "%d 游戏刻", + "category.rei.fuel.time_short.items": "%s 个物品", + "category.rei.cooking.xp": "%f 经验", + "category.rei.cooking.time&xp": "在 %2$s 秒内获得 %1$s 经验", + "category.rei.smoking": "吸烟", + "category.rei.blasting": "炼金", + "category.rei.campfire": "篝火", + "category.rei.campfire.time": "%s 个 20 Ticks", + "category.rei.stone_cutting": "石の处刑", + "category.rei.brewing": "调和", + "category.rei.brewing.input": "源溶液", + "category.rei.brewing.reactant": "原料", + "category.rei.brewing.result": "输出溶液", + "category.rei.composting": "堆肥", + "category.rei.stripping": "去皮", + "category.rei.smithing": "八十!八十!", + "category.rei.beacon_base": "培根方块基座", + "category.rei.beacon_payment": "培根方块激活消耗", + "category.rei.tilling": "耕种", + "category.rei.pathing": "制造草径", + "category.rei.information": "信息", + "text.rei.composting.chance": "§e%d%% 的机会", + "text.rei.composting.page": "第 %d 页", + "text.rei.config": "配置", + "text.rei.config_tooltip": "打开配置\n§7按住 Shift 键单击以切换滥权模式", + "text.rei.config.optifine.title": "打开 粗略足够物品 配置界面失败", + "text.rei.config.optifine.description": "OptiFine:杰哥不要!/nOptiFabric:杰哥不要!", + "text.rei.cheat_items": "已无中生有 {item_count} 个 [{item_name}§f] 给 {player_name}", + "text.rei.failed_cheat_items": "§c物品无中生有失败", + "ordering.rei.ascending": "顺着来", + "ordering.rei.descending": "来着顺", + "ordering.rei.registry": "物品ID循序", + "ordering.rei.name": "名称循序", + "ordering.rei.item_groups": "物品分类的循序", + "text.auto_craft.move_items": "jiong一下传送物品", + "text.auto_craft.move_items.yog": "野生的 NullPointerException 出现了!!", + "error.rei.transfer.too_small": "无法将移动物品jiong一下传送到 %dx%d 的方格上.", + "error.rei.not.on.server": "服务器没有安装 粗略足够物品", + "error.rei.not.enough.materials": "原料不足", + "error.rei.internal.error": "内讧: %s", + "error.rei.recipe.not.unlocked": "食谱:我认识你吗?", + "error.rei.no.handlers.applicable": "不支持的工作站。", + "error.rei.multi.errors": "多个错误:", + "rei.rei.no.slot.in.inv": "您的物品栏已满", + "text.rei.showing_craftable": "显示可合成的物品", + "text.rei.showing_all": "显示所有物品", + "text.rei.delete_items": "§c删除物品", + "text.rei.credits": "特别感谢", + "text.rei.left_arrow": "<", + "text.rei.right_arrow": ">", + "text.rei.view_all_categories": "查看全部类别", + "text.rei.go_back_first_page": "常回第 1 页看看", + "text.rei.choose_page": "选择页面", + "text.rei.gamemode_button.tooltip.dropdown": "切换游戏模式:菜单", + "text.rei.gamemode_button.tooltip.entry": "切换至 %s", + "text.rei.weather_button.tooltip.dropdown": "天 气 之 子:菜单", + "text.rei.weather_button.tooltip.entry": "切换至 %s", + "text.rei.reload_config": "重载插件", + "text.rei.config.is.reloading": "插件正在重新加载!", + "text.rei.enabled": "彳亍", + "text.rei.disabled": "呐呐呐!", + "text.rei.short_gamemode.survival": "生", + "text.rei.short_gamemode.creative": "创", + "text.rei.short_gamemode.adventure": "冒", + "text.rei.short_gamemode.spectator": "鬼", + "text.rei.weather.clear": "晴", + "text.rei.weather.rain": "雨", + "text.rei.weather.thunder": "雷", + "text.rei.previous_category": "上一类别", + "text.rei.next_category": "下一类别", + "text.rei.previous_page": "上一页", + "text.rei.next_page": "下一页", + "text.rei.back": "返回", + "text.rei.select": "选择", + "text.rei.favorites": "收藏夹", + "text.rei.favorites_tooltip": " \n§7按 %s 将其珍藏到小本本里。", + "text.rei.remove_favorites_tooltip": " \n§7按 %s 可以将其从小本本中移除。", + "text.rei.working_station": "工作站", + "text.rei.release_export": "释放 %s 以导出此食谱", + "text.rei.recipe_id": "\n%s食谱 ID: %s", + "text.rei.recipe_screen_type.selection": "合成界面样式选择", + "text.rei.recipe_screen_type.selection.sub": "你随时可以通过配置界面再次编辑此设置.", + "text.rei.jei_compat": "就是足够物品 兼容模式", + "text.rei.jei_compat.false": "就是足够物品 兼容模式:不彳亍", + "text.rei.jei_compat.true": "就是足够物品 兼容模式:彳亍", + "text.rei.jei_compat.sub": "您想要启用 就是足够物品 兼容模式 %s§7吗?\n§7它将允许从这些模组加载 就是足够物品 插件:\n%s\n\n§7然而,粗略足够物品 的 就是足够物品 兼容模式并不完善,可能将会出现很多问题。\n§c风险自负!", + "text.rei.jei_compat.sub.stability": "§c§l(不稳定)", + "text.rei.view_recipes_for": "查看 %s 的配方", + "text.rei.subsets": "项目分类", + "text.rei.tiny_potato": "小育碧服务器", + "text.rei.add_favorite_widget": "添加...", + "favorite.section.gamemode": "游戏模式", + "favorite.section.weather": "天气", + "tooltip.rei.fluid_amount": "§7%d 单位", + "tooltip.rei.fluid_amount.forge": "§7%d mB", + "tooltip.rei.drag_to_add_favorites": "§7拖动这个向上来将它记入到您的小本本!", + "msg.rei.copied_recipe_id": "已复制食谱ID", + "msg.rei.recipe_id_details": "食谱ID:%s", + "msg.rei.exported_recipe": "已导出食谱", + "msg.rei.exported_recipe.desc": "请访问\"rei_exports\"文件夹。", + "subsets.rei.roughlyenoughitems.all_entries": "所有条目", + "subsets.rei.roughlyenoughitems.item_groups": "创造模式下的分类", + "_comment": "配置提示", + "config.roughlyenoughitems.title": "粗略足够物品 配置", + "config.roughlyenoughitems.basics": "基础", + "config.roughlyenoughitems.appearance": "外观样式", + "config.roughlyenoughitems.functionality": "功能", + "config.roughlyenoughitems.advanced": "高级", + "config.roughlyenoughitems.cheating": "是否滥权:", + "config.roughlyenoughitems.favoritesEnabled": "是否启用收藏夹:", + "config.roughlyenoughitems.keyBindings": "快捷键", + "config.roughlyenoughitems.keyBindings.recipeKeybind": "查看配方:", + "config.roughlyenoughitems.keyBindings.hideKeybind": "隐藏/显示 粗略足够物品:", + "config.roughlyenoughitems.keyBindings.usageKeybind": "查看用途:", + "config.roughlyenoughitems.keyBindings.nextPageKeybind": "下一页:", + "config.roughlyenoughitems.keyBindings.previousPageKeybind": "上一页:", + "config.roughlyenoughitems.keyBindings.focusSearchFieldKeybind": "选中选择性失忆人士专用通道:", + "config.roughlyenoughitems.keyBindings.copyRecipeIdentifierKeybind": "复制食谱ID:", + "config.roughlyenoughitems.keyBindings.exportImageKeybind": "导出食谱:", + "config.roughlyenoughitems.keyBindings.favoriteKeybind": "将物品记入小本本:", + "config.roughlyenoughitems.cheatingStyle": "滥权方式:", + "config.roughlyenoughitems.cheatingStyle.grab": "过来吧你!", + "config.roughlyenoughitems.cheatingStyle.give": "无中生有", + "config.roughlyenoughitems.motion": "动画设置", + "config.roughlyenoughitems.motion.configScreenAnimation": "配置屏幕动画:", + "config.roughlyenoughitems.motion.creditsScreenAnimation": "特别感谢屏幕动画:", + "config.roughlyenoughitems.motion.favoritesAnimation": "小本本动画:", + "config.roughlyenoughitems.recipeScreenType": "食谱屏幕类型:", + "config.roughlyenoughitems.recipeScreenType.config": "食谱屏幕类型:%s", + "config.roughlyenoughitems.recipeScreenType.unset": "未设定", + "config.roughlyenoughitems.recipeScreenType.original": "默认", + "config.roughlyenoughitems.recipeScreenType.composite": "与奸商の美好回忆限定版", + "config.roughlyenoughitems.layout": "躺出来", + "config.roughlyenoughitems.tooltips": "工具提示", + "config.roughlyenoughitems.accessibility": "辅助", + "config.roughlyenoughitems.search": "选择性失忆人士专用通道", + "config.roughlyenoughitems.commands": "命令", + "config.roughlyenoughitems.filtering": "隐藏/显示物品", + "config.roughlyenoughitems.miscellaneous": "其他", + "config.roughlyenoughitems.miscellaneous.clickableRecipeArrows": "是否可点击工作站上的箭头:", + "config.roughlyenoughitems.isSubsetsEnabled": "显示项目分类:", + "config.roughlyenoughitems.allowInventoryHighlighting": "物品栏高亮:", + "config.roughlyenoughitems.miscellaneous.renderEntryEnchantmentGlint": "渲染覆膜光效:", + "config.roughlyenoughitems.layout.configButtonLocation": "配置按钮位置:", + "config.roughlyenoughitems.layout.configButtonLocation.upper": "上方", + "config.roughlyenoughitems.layout.configButtonLocation.lower": "下方", + "config.roughlyenoughitems.filteredEntries.selectAll": "我全都要", + "config.roughlyenoughitems.filteredEntries.selectNone": "劳资不选了!", + "config.roughlyenoughitems.filteredEntries.hide": "我全都要.....要没了", + "config.roughlyenoughitems.filteredEntries.show": "显示所选", + "config.roughlyenoughitems.filteredEntries.loadWorldFirst": "请先加载世界!", + "config.roughlyenoughitems.accessibility.entrySize": "条目大小:", + "config.roughlyenoughitems.search.asyncSearch": "异步搜索:", + "config.roughlyenoughitems.search.asyncSearchPartitionSize": "异步搜索划分大小:", + "config.roughlyenoughitems.accessibility.useCompactTabs": "简洁标签:", + "config.roughlyenoughitems.theme": "外观主题:", + "config.roughlyenoughitems.theme.dark": "deep♂dark♂主题", + "config.roughlyenoughitems.theme.light": "浅色主题", + "config.roughlyenoughitems.recipeBorder": "食谱显示边框:", + "config.roughlyenoughitems.recipeBorder.lighter": "更闪瞎眼", + "config.roughlyenoughitems.recipeBorder.default": "默认", + "config.roughlyenoughitems.recipeBorder.none": "无", + "config.roughlyenoughitems.layout.maxRecipesPerPage": "每页可以显示最多合成:", + "config.roughlyenoughitems.accessibility.displayPanelLocation": "条目列表位置:", + "config.roughlyenoughitems.accessibility.displayPanelLocation.left": "左侧", + "config.roughlyenoughitems.accessibility.displayPanelLocation.right": "右侧", + "config.roughlyenoughitems.search.tooltipSearch": "工具提示搜索 (#):", + "config.roughlyenoughitems.search.tagSearch": "标签搜索 ($):", + "config.roughlyenoughitems.search.identifierSearch": "识别号搜索 (*):", + "config.roughlyenoughitems.search.modSearch": "模组搜索 (@):", + "config.roughlyenoughitems.search_mode.always": "总是启用", + "config.roughlyenoughitems.search_mode.prefix": "使用前缀时", + "config.roughlyenoughitems.search_mode.never": "总是禁用", + "config.roughlyenoughitems.layout.debugRenderTimeRequired": "条目列表调试模式:", + "config.roughlyenoughitems.search.debugSearchTimeRequired": "搜索调试模式:", + "config.roughlyenoughitems.accessibility.resizeDynamically": "动态调整大小:", + "config.roughlyenoughitems.layout.searchFieldLocation": "搜索框的位置:", + "config.roughlyenoughitems.layout.searchFieldLocation.bottom_side": "左/右下角", + "config.roughlyenoughitems.layout.searchFieldLocation.top_side": "左/右上角", + "config.roughlyenoughitems.layout.searchFieldLocation.center": "中间", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent": "滚动条淡出:", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.true": "从不", + "config.roughlyenoughitems.accessibility.compositeScrollBarPermanent.boolean.false": "自动淡出", + "config.roughlyenoughitems.disableRecipeBook": "食谱手册:", + "config.roughlyenoughitems.disableRecipeBook.boolean.true": "§c否", + "config.roughlyenoughitems.disableRecipeBook.boolean.false": "§a是", + "config.roughlyenoughitems.fixTabCloseContainer": "修复Tab(禁用食谱手册时):", + "config.roughlyenoughitems.lighterButtonHover": "较轻的按钮:", + "config.roughlyenoughitems.layout.enableCraftableOnlyButton": "可合成过滤器:", + "config.roughlyenoughitems.layout.showUtilsButtons": "工具按钮:", + "config.roughlyenoughitems.commands.gamemodeCommand": "游戏模式命令:", + "config.roughlyenoughitems.commands.giveCommand": "滥权命令:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin": "加载默认插件:", + "config.roughlyenoughitems.miscellaneous.loadDefaultPlugin.boolean.false": "§c禁用 (危险)", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread": "REI 加载线程:", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.true": "粗略足够物品 线程", + "config.roughlyenoughitems.miscellaneous.registerRecipesInAnotherThread.boolean.false": "§c原线程", + "config.roughlyenoughitems.commands.weatherCommand": "天 气 之 子:", + "config.roughlyenoughitems.layout.entryPanelOrdering": "条目列表排序:", + "config.roughlyenoughitems.list_ordering_button": "%s [%s]", + "config.roughlyenoughitems.miscellaneous.newFastEntryRendering": "更快项目绘图:", + "config.roughlyenoughitems.itemCheatingMode": "物品滥权数量:", + "config.roughlyenoughitems.itemCheatingMode.rei_like": "标准", + "config.roughlyenoughitems.itemCheatingMode.jei_like": "反转", + "config.roughlyenoughitems.search.searchFavorites": "在收藏中搜索过滤器:", + "config.roughlyenoughitems.tooltips.appendModNames": "附加模组名称:", + "config.roughlyenoughitems.tooltips.displayFavoritesTooltip": "附加收藏夹提示:", + "config.roughlyenoughitems.accessibility.snapToRows": "对齐项目列表:", + "config.roughlyenoughitems.accessibility.toastDisplayedOnCopyIdentifier": "复制ID讯息:", + "config.roughlyenoughitems.scrollingEntryListWidget": "条目列表操作:", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.true": "滚动", + "config.roughlyenoughitems.scrollingEntryListWidget.boolean.false": "分页", + "config.roughlyenoughitems.horizontalEntriesBoundaries": "水平条目边界:", + "config.roughlyenoughitems.verticalEntriesBoundaries": "垂直条目边界:", + "config.roughlyenoughitems.syntaxHighlightingMode": "语法高亮模式:", + "config.roughlyenoughitems.syntaxHighlightingMode.config": "%s", + "config.roughlyenoughitems.syntaxHighlightingMode.plain": "无色", + "config.roughlyenoughitems.syntaxHighlightingMode.plain_underscored": "无色(下划线)", + "config.roughlyenoughitems.syntaxHighlightingMode.colorful": "炫彩", + "config.roughlyenoughitems.syntaxHighlightingMode.colorful_underscored": "炫彩(下划线)", + "config.roughlyenoughitems.filteringScreen": "自定义过滤器", + "config.roughlyenoughitems.filteringRulesScreen": "自定义过滤规则", + "config.roughlyenoughitems.filteringRulesScreen.new": "创建过滤规则", + "config.roughlyenoughitems.filteringRulesScreen.delete": "删除", + "rule.roughlyenoughitems.filtering.manual": "手动过滤", + "rule.roughlyenoughitems.filtering.manual.subtitle": "手动选择要隐藏和显示的内容。", + "rule.roughlyenoughitems.filtering.search": "搜索筛选器", + "rule.roughlyenoughitems.filtering.search.subtitle": "使用搜索过滤器过滤。", + "rule.roughlyenoughitems.filtering.search.filter": "筛选器:", + "rule.roughlyenoughitems.filtering.search.show": "显示/隐藏:", + "rule.roughlyenoughitems.filtering.search.show.true": "显示", + "rule.roughlyenoughitems.filtering.search.show.false": "隐藏", + "language.roughlyenoughitems.english": "英语", + "language.roughlyenoughitems.japanese": "日语", + "language.roughlyenoughitems.chinese_simplified": "简体中文", + "language.roughlyenoughitems.chinese_traditional": "繁体中文", + "language.roughlyenoughitems.french": "法语", + "language.roughlyenoughitems.german": "德语", + "language.roughlyenoughitems.estonian": "爱沙尼亚语", + "language.roughlyenoughitems.portuguese": "葡萄牙语", + "language.roughlyenoughitems.portuguese_brazilian": "葡萄牙语(巴西)", + "language.roughlyenoughitems.lolcat": "LOLCAT", + "language.roughlyenoughitems.upside_down_english": "颠倒的英语", + "language.roughlyenoughitems.bulgarian": "保加利亚语", + "language.roughlyenoughitems.russian": "俄语", + "language.roughlyenoughitems.polish": "波兰语" } diff --git a/mods/simplevoidworld.json b/mods/simplevoidworld.json index f5021c760..ac7177a03 100644 --- a/mods/simplevoidworld.json +++ b/mods/simplevoidworld.json @@ -1,4 +1,4 @@ { - "block.simplevoidworld.void_portal": "虚空传送门", - "itemGroup.simplevoidworld.simplevoidworld": "简单虚空世界" + "block.simplevoidworld.void_portal": "虚空门户", + "itemGroup.simplevoidworld.simplevoidworld": "简单虚空世界" } diff --git a/mods/simplexterrain.json b/mods/simplexterrain.json index 3623ba9dc..12ce33ca5 100644 --- a/mods/simplexterrain.json +++ b/mods/simplexterrain.json @@ -1,3 +1,3 @@ { - "generator.simplex": "单一地形" -} \ No newline at end of file + "generator.simplex": "单一地形" +} diff --git a/mods/slimefunction.json b/mods/slimefunction.json index ada246bf0..9cfeede23 100644 --- a/mods/slimefunction.json +++ b/mods/slimefunction.json @@ -1,63 +1,60 @@ { - "sf.Slimefunction":"§6§l粘液科技", + "sf.Slimefunction": "§6§l黏糊糊科技", + "sf.weapon.grandmas_walking_stick.name": "奶奶的拐杖", - "sf.weapon.grandmas_walking_stick.name":"奶奶的拐杖", - - "sf.weapon.grandpas_walking_stick.name":"爷爷的拐杖", + "sf.weapon.grandpas_walking_stick.name": "爷爷的拐杖", - "sf.weapon.icy_bow.name":"冰封之弓", - "sf.weapon.icy_bow.lore1":"被此弓射出的箭击中", - "sf.weapon.icy_bow.lore2":"将会因寒冷而无法移动(2秒内)", + "sf.weapon.icy_bow.name": "冰封之弓", + "sf.weapon.icy_bow.lore1": "被此弓射出的箭击中", + "sf.weapon.icy_bow.lore2": "将会因寒冷而无法移动(2秒内)", - "sf.weapon.soulbound_bow.name":"灵魂绑定弓", + "sf.weapon.soulbound_bow.name": "灵魂绑定弓", - "sf.weapon.soulbound_sword.name":"灵魂绑定剑", + "sf.weapon.soulbound_sword.name": "灵魂绑定剑", - "sf.weapon.soulbound_trident.name":"灵魂绑定三叉戟", + "sf.weapon.soulbound_trident.name": "灵魂绑定鱼叉", - "sf.weapon.sword_of_beheading.name":"处决之剑", - "sf.weapon.sword_of_beheading.lore.1":"斩首处决 %s", - "sf.weapon.sword_of_beheading.lore.2":"有几率砍下生物的头", - "sf.weapon.sword_of_beheading.lore.3":"(提高掉落凋灵骷髅头的几率)", + "sf.weapon.sword_of_beheading.name": "处决之剑", + "sf.weapon.sword_of_beheading.lore.1": "斩首处决 %s", + "sf.weapon.sword_of_beheading.lore.2": "有几率砍下生物的头", + "sf.weapon.sword_of_beheading.lore.3": "(提高掉落凋灵骷髅头的几率)", - "sf.weapon.blade_of_vampires.name":"吸血鬼之刀", - "sf.weapon.blade_of_vampires.lore.1":"生命窃取 %s", - "sf.weapon.blade_of_vampires.lore.2":"在攻击时有 45% 的几率", - "sf.weapon.blade_of_vampires.lore.3":"使自己恢复 2 点血量", + "sf.weapon.blade_of_vampires.name": "吸血鬼之刀", + "sf.weapon.blade_of_vampires.lore.1": "生命窃取 %s", + "sf.weapon.blade_of_vampires.lore.2": "在攻击时有 45% 的几率", + "sf.weapon.blade_of_vampires.lore.3": "使自己恢复 2 点血量", - "sf.weapon.explosive_bow.name":"爆裂之弓", - "sf.weapon.explosive_bow.lore":"被爆裂之弓射出的箭击中将会飞上天", + "sf.weapon.explosive_bow.name": "爆裂之弓", + "sf.weapon.explosive_bow.lore": "被爆裂之弓射出的箭击中将会飞上天", - "sf.tool.smelter_pickaxe.name":"熔炉镐", - "sf.tool.smelter_pickaxe.lore1":"自动熔炼", - "sf.tool.smelter_pickaxe.lore2":"兼容时运附魔", + "sf.tool.smelter_pickaxe.name": "熔炉giao子", + "sf.tool.smelter_pickaxe.lore1": "自动熔炼", + "sf.tool.smelter_pickaxe.lore2": "兼容时运附魔", - "sf.tools.explosive_pickaxe.name":"爆炸镐", - "sf.tools.explosive_pickaxe.lore.1":"允许你在一瞬间挖掘矿物", - "sf.tools.explosive_pickaxe.lore.2":"兼容时运和精准附魔", + "sf.tools.explosive_pickaxe.name": "爆炸giao子", + "sf.tools.explosive_pickaxe.lore.1": "允许你在一瞬间挖掘矿物", + "sf.tools.explosive_pickaxe.lore.2": "兼容时运和精准附魔", - "sf.tools.explosive_shovel.name":"爆炸铲", - "sf.tools.explosive_shovel.lore.1":"让你一下子就能挖掉很多方块", - "sf.tools.explosive_shovel.lore.2":"兼容时运和精准附魔", + "sf.tools.explosive_shovel.name": "爆炸铲", + "sf.tools.explosive_shovel.lore.1": "让你一下子就能挖掉很多方块", + "sf.tools.explosive_shovel.lore.2": "兼容时运和精准附魔", - "sf.tools.soulbound_hoe.name":"灵魂绑定锄", + "sf.tools.soulbound_hoe.name": "灵魂绑定锄", - "sf.tools.soulbound_shovel.name":"灵魂绑定锹", + "sf.tools.soulbound_shovel.name": "灵魂绑定锹", - "sf.tools.soulbound_axe.name":"灵魂绑定斧", + "sf.tools.soulbound_axe.name": "灵魂绑定斧", - "sf.tools.soulbound_pickaxe.name":"灵魂绑定镐", + "sf.tools.soulbound_pickaxe.name": "灵魂绑定giao子", + "sf.magical_armors.soulbound_helmet.name": "灵魂绑定头盔", - "sf.magical_armors.soulbound_helmet.name":"灵魂绑定头盔", + "sf.magical_armors.soulbound_chestplate.name": "灵魂绑定胸甲", - "sf.magical_armors.soulbound_chestplate.name":"灵魂绑定胸甲", + "sf.magical_armors.soulbound_leggings.name": "灵魂绑定护腿", - "sf.magical_armors.soulbound_leggings.name":"灵魂绑定护腿", + "sf.magical_armors.soulbound_boots.name": "灵魂绑定靴子", - "sf.magical_armors.soulbound_boots.name":"灵魂绑定靴子", - - - "sf.magical_items.soulbound_elytra.name":"鞘翅(灵魂绑定)" -} \ No newline at end of file + "sf.magical_items.soulbound_elytra.name": "灵魂绑定鞘翅" +} diff --git a/mods/sodium.json b/mods/sodium.json index 6554f757d..4c61f0c8c 100644 --- a/mods/sodium.json +++ b/mods/sodium.json @@ -16,7 +16,7 @@ "sodium.options.fullscreen.tooltip": "启用后,游戏将全屏显示(若支持)。", "sodium.options.v_sync.name": "掉帧的垂直同步", "sodium.options.v_sync.tooltip": "启用后,游戏的帧率将与显示器的刷新率同步,从而在牺牲整体输入延迟的情况下获得更流畅的体验。通常来说你的设备配置都过低,所以此设置会降低性能。(其实只是我的电脑垃圾而已)", - "sodium.options.fps_limit.tooltip": "限制最大帧率。启用后,游戏渲染速度将受到限制,因此开启此选项有利于延长电池续航或进行多任务处理。启用垂直同步时此选项会被自动忽略,除非该值低于显示器的刷新率。", + "sodium.options.fps_limit.tooltip": "限制最大帧率。启用后,游戏渲染速度将受到限制,因此打开此选项有利于延长电池续航或进行多任务处理。启用垂直同步时此选项会被自动忽略,除非该值低于显示器的刷新率。", "sodium.options.view_bobbing.tooltip": "呕……呕……\n禁用该选项可能可以缓解脑震荡。", "sodium.options.attack_indicator.tooltip": "控制攻击指示器在屏幕上的显示位置。", "sodium.options.graphics_quality.tooltip": "默认图像品质控制一些原版选项或旧选项,且对于Mod兼容性是必要的。若下方的选项保留为“默认”,则将会使用此选项的品质。", @@ -32,7 +32,7 @@ "sodium.options.entity_shadows.tooltip": "启用后,在生物和其他实体下面渲染简单的阴影。", "sodium.options.vignette.name": "晕影", "sodium.options.vignette.tooltip": "启用后,屏幕四角处会轻微变暗。除非设备GPU的像素填充率过低,否则基本不影响帧率。", - "sodium.options.mipmap_levels.tooltip": "控制方块模型材质的多级渐远纹理(Mipmap)的数量。较高的值可使远处的物体获得更好的渲染效果,但在渲染很多动态材质时可能产生严重的性能下降。", + "sodium.options.mipmap_levels.tooltip": "控制方块模型纹理的多级渐远纹理(Mipmap)的数量。较高的值可使远处的物体获得更好的渲染效果,但在渲染很多动态纹理时可能产生严重的性能下降。", "sodium.options.chunk_renderer.name": "区块渲染器", "sodium.options.chunk_renderer.tooltip": "新版本的OpenGL提供了一些可以大幅降低渲染程序占用的特性。为了获得最佳性能,建议使用Sodium所允许的最新的渲染器。若区块渲染出错或驱动程序崩溃,请尝试较旧的渲染器(可能更稳定)(但可能也不)。", "sodium.options.use_chunk_face_culling.name": "启用剔除区块遮挡面", @@ -45,8 +45,8 @@ "sodium.options.use_entity_culling.tooltip": "启用后,将在尝试渲染实体之前执行第二次剔除。这一额外流程将会考虑到当前可见区块的范围,然后剔除不在可见区块范围内的实体。", "sodium.options.use_particle_culling.name": "启用颗粒剔除", "sodium.options.use_particle_culling.tooltip": "启用后,将仅渲染可见的颗粒。当周围有许多颗粒时,这可以显著地提高帧率。", - "sodium.options.animate_only_visible_textures.name": "仅渲染可见的动态材质", - "sodium.options.animate_only_visible_textures.tooltip": "启用后,只会更新可见的动态材质。这可以大大提高某些硬件下的帧率。如果遇到某些材质无动画的问题,请禁用此选项。", + "sodium.options.animate_only_visible_textures.name": "仅渲染可见的动态纹理", + "sodium.options.animate_only_visible_textures.tooltip": "启用后,只会更新可见的动态纹理。这可以大大提高某些硬件下的帧率。如果遇到某些纹理无动画的问题,请禁用此选项。", "sodium.options.use_memory_intrinsics.name": "对内存使用内置函数", "sodium.options.use_memory_intrinsics.tooltip": "启用后,出现特定受顶点限制的情况时(如颗粒和文本的渲染)将使用特殊的内置函数来加速客户端内存的复制。此选项仅用于调试目的,除非你知道自己在干什么,否则应保持启用。", "sodium.options.disable_driver_blacklist.name": "禁用驱动程序黑名单", @@ -54,5 +54,5 @@ "sodium.options.performance_impact_string": "性能影响程度:%s", "sodium.options.buttons.undo": "撤销", "sodium.options.buttons.apply": "应用", - "sodium.options.buttons.close": "关闭" -} \ No newline at end of file + "sodium.options.buttons.close": "关掉" +} diff --git a/mods/sweet_potato.json b/mods/sweet_potato.json index 59655e013..61ef27f89 100644 --- a/mods/sweet_potato.json +++ b/mods/sweet_potato.json @@ -1,69 +1,69 @@ { - "mod.sweet_potato": "甜 土 豆 国 防 部", - "mod.sweet_potato.0": ",由Pigeonia Featurehouse独家出品", - "mod.sweet_potato.1": "作者:", - "mod.sweet_potato.2": "在中国版《我的世界》的代理人:", + "mod.sweet_potato": "甜 土 豆 国 防 部", + "mod.sweet_potato.0": ",由Pigeonia Featurehouse独家出品", + "mod.sweet_potato.1": "作者:", + "mod.sweet_potato.2": "在中国版《我的世界》的代理人:", - "item.sweet_potato.purple_potato": "品红色甜土豆", - "item.sweet_potato.red_potato": "甜土豆脸红了", - "item.sweet_potato.white_potato": "甜土豆", - "item.sweet_potato.peel": "没用的东西 (?", - "item.sweet_potato.baked_purple_potato": "烤糊的品红色甜土豆", - "item.sweet_potato.baked_red_potato": "烤糊的甜土豆脸红了", - "item.sweet_potato.baked_white_potato": "烤糊的甜土豆", - "item.sweet_potato.potato_powder": "甜土豆火药", - "item.sweet_potato.enchanted_purple_potato": "品红色海化甜土豆", - "item.sweet_potato.enchanted_red_potato": "脸红的海化甜土豆", - "item.sweet_potato.enchanted_white_potato": "海化甜土豆", - "item.sweet_potato.enchanted_wheat_seeds": "覆膜麦子种子", - "item.sweet_potato.enchanted_carrot": "覆膜胡萝北", - "item.sweet_potato.enchanted_potato": "覆 膜 育 碧", - "item.sweet_potato.enchanted_beetroot_seeds": "覆膜甜菜种子", - "item.sweet_potato.treating_bowl": "培 养 皿", + "item.sweet_potato.purple_potato": "品红色甜土豆", + "item.sweet_potato.red_potato": "甜土豆脸红了", + "item.sweet_potato.white_potato": "甜土豆", + "item.sweet_potato.peel": "没用的东西 (?", + "item.sweet_potato.baked_purple_potato": "烤糊的品红色甜土豆", + "item.sweet_potato.baked_red_potato": "烤糊的甜土豆脸红了", + "item.sweet_potato.baked_white_potato": "烤糊的甜土豆", + "item.sweet_potato.potato_powder": "甜土豆炮灰", + "item.sweet_potato.enchanted_purple_potato": "品红色海化甜土豆", + "item.sweet_potato.enchanted_red_potato": "脸红的海化甜土豆", + "item.sweet_potato.enchanted_white_potato": "海化甜土豆", + "item.sweet_potato.enchanted_wheat_seeds": "覆膜麦子种子", + "item.sweet_potato.enchanted_carrot": "覆膜胡萝北", + "item.sweet_potato.enchanted_potato": "覆 膜 育 碧", + "item.sweet_potato.enchanted_beetroot_seeds": "覆膜甜菜种子", + "item.sweet_potato.treating_bowl": "培 养 皿", - "block.sweet_potato.purple_potatoes": "品红色甜土豆", - "block.sweet_potato.red_potatoes": "甜土豆脸红了", - "block.sweet_potato.white_potatoes": "甜土豆", - "block.sweet_potato.magic_cube": "米 奇 妙 妙 锅", - "block.sweet_potato.grinder": "打粉机", - "block.sweet_potato.agroforestry_table": "农 林 福 音", - "block.sweet_potato.enchanted_acacia_sapling": "覆膜相思树宝宝", - "block.sweet_potato.enchanted_dark_oak_sapling": "覆膜巧克力树宝宝", - "block.sweet_potato.enchanted_jungle_sapling": "覆膜丛林树宝宝", - "block.sweet_potato.enchanted_birch_sapling": "覆膜白桦树宝宝", - "block.sweet_potato.enchanted_oak_sapling": "覆膜橡树宝宝", - "block.sweet_potato.enchanted_spruce_sapling": "覆膜云杉树宝宝", - "block.sweet_potato.enchanted_sugar_cane": "覆膜糖手杖", - "block.sweet_potato.enchanted_acacia_leaves": "覆膜相思树叶", - "block.sweet_potato.enchanted_birch_leaves": "覆膜白桦树叶", - "block.sweet_potato.enchanted_dark_oak_leaves": "覆膜巧克力树叶", - "block.sweet_potato.enchanted_jungle_leaves": "覆膜丛林树叶", - "block.sweet_potato.enchanted_oak_leaves": "覆膜橡树树叶", - "block.sweet_potato.enchanted_spruce_leaves": "覆膜云杉树叶", - "block.sweet_potato.enchanted_wheat": "覆膜麦子", - "block.sweet_potato.enchanted_carrots": "覆膜胡萝北", - "block.sweet_potato.enchanted_potatoes": "覆 膜 育 碧", - "block.sweet_potato.enchanted_beetroots": "覆膜甜菜根", + "block.sweet_potato.purple_potatoes": "品红色甜土豆", + "block.sweet_potato.red_potatoes": "甜土豆脸红了", + "block.sweet_potato.white_potatoes": "甜土豆", + "block.sweet_potato.magic_cube": "米 奇 妙 妙 锅", + "block.sweet_potato.grinder": "打粉机", + "block.sweet_potato.agroforestry_table": "农 林 福 音", + "block.sweet_potato.enchanted_acacia_sapling": "覆膜相思树宝宝", + "block.sweet_potato.enchanted_dark_oak_sapling": "覆膜巧克力树宝宝", + "block.sweet_potato.enchanted_jungle_sapling": "覆膜丛林树宝宝", + "block.sweet_potato.enchanted_birch_sapling": "覆膜白桦树宝宝", + "block.sweet_potato.enchanted_oak_sapling": "覆膜橡树宝宝", + "block.sweet_potato.enchanted_spruce_sapling": "覆膜云杉树宝宝", + "block.sweet_potato.enchanted_sugar_cane": "覆膜糖手杖", + "block.sweet_potato.enchanted_acacia_leaves": "覆膜相思树叶", + "block.sweet_potato.enchanted_birch_leaves": "覆膜白桦树叶", + "block.sweet_potato.enchanted_dark_oak_leaves": "覆膜巧克力树叶", + "block.sweet_potato.enchanted_jungle_leaves": "覆膜丛林树叶", + "block.sweet_potato.enchanted_oak_leaves": "覆膜橡树树叶", + "block.sweet_potato.enchanted_spruce_leaves": "覆膜云杉树叶", + "block.sweet_potato.enchanted_wheat": "覆膜麦子", + "block.sweet_potato.enchanted_carrots": "覆膜胡萝北", + "block.sweet_potato.enchanted_potatoes": "覆 膜 育 碧", + "block.sweet_potato.enchanted_beetroots": "覆膜甜菜根", - "subtitles.block.sweet_potato.agroforestry_table.finish": "农林台:造福于民", - "subtitles.block.sweet_potato.grinder.grind": "打粉机:打粉", - "subtitles.block.sweet_potato.magic_cube.activate": "米 奇 妙 妙 锅:激活", - "subtitles.block.sweet_potato.magic_cube.deactivate": "米 奇 妙 妙 锅:不行了", + "subtitles.block.sweet_potato.agroforestry_table.finish": "农林台:造福于民", + "subtitles.block.sweet_potato.grinder.grind": "打粉机:打粉", + "subtitles.block.sweet_potato.magic_cube.activate": "米 奇 妙 妙 锅:AWHL", + "subtitles.block.sweet_potato.magic_cube.deactivate": "米 奇 妙 妙 锅:不行了", - "advancement.husbandry.sweet_potato.get_sweet_potato.title": "艾玛,真香!", - "advancement.husbandry.sweet_potato.get_sweet_potato.description": "获得甜土豆", - "advancement.nether.sweet_potato.get_magic_cube.title": "米斯卡,莫斯卡,米老鼠!", - "advancement.nether.sweet_potato.get_magic_cube.description": "获得米 奇 妙 妙 锅", + "advancement.husbandry.sweet_potato.get_sweet_potato.title": "艾玛,真香!", + "advancement.husbandry.sweet_potato.get_sweet_potato.description": "获得甜土豆", + "advancement.nether.sweet_potato.get_magic_cube.title": "米斯卡,莫斯卡,米老鼠!", + "advancement.nether.sweet_potato.get_magic_cube.description": "获得米 奇 妙 妙 锅", - "container.sweet_potato.magic_cube": "米 奇 妙 妙 锅", - "container.sweet_potato.seed_updating": "集 日 月 之 精 华", - "container.sweet_potato.grinding": "鲜 榨 甜 土 豆", - "container.grinding.ingredientData": "%f 份甜土豆待榨", + "container.sweet_potato.magic_cube": "米 奇 妙 妙 锅", + "container.sweet_potato.seed_updating": "集日月之精华", + "container.sweet_potato.grinding": "鲜榨甜土豆", + "container.grinding.ingredientData": "%f 份甜土豆待榨", - "stat.sweet_potato.interact_with_grinder": "调戏打粉机次数", - "stat.sweet_potato.interact_with_agroforestry_table": "调戏农 林 福 音次数", - "stat.sweet_potato.crop_upgraded": "往作物里砸魔法次数", - "stat.sweet_potato.sweet_potato_eaten": "干掉的甜土豆数", + "stat.sweet_potato.interact_with_grinder": "调戏打粉机次数", + "stat.sweet_potato.interact_with_agroforestry_table": "调戏农 林 福 音次数", + "stat.sweet_potato.crop_upgraded": "往作物里砸魔法次数", + "stat.sweet_potato.sweet_potato_eaten": "干掉的甜土豆数", - "tooltip.sweet_potato.enchanted_sweet_potato.effects": "Buff: " + "tooltip.sweet_potato.enchanted_sweet_potato.effects": "Buff: " } diff --git a/mods/techreborn.json b/mods/techreborn.json index a0b46a267..36115db58 100644 --- a/mods/techreborn.json +++ b/mods/techreborn.json @@ -18,7 +18,7 @@ "block.techreborn.creative_tank_unit": "创造储罐单位", "block.techreborn.creative_quantum_tank": "创造量子储罐(已弃用)", "block.techreborn.creative_quantum_chest": "创造量子箱(已弃用)", - "block.techreborn.digital_chest": "数字化箱子(已弃用)", + "block.techreborn.digital_chest": "数字化胸部(已弃用)", "block.techreborn.quantum_chest": "量子箱(已弃用)", "block.techreborn.quantum_tank": "量子储罐(已弃用)", "block.techreborn.industrial_centrifuge": "工业离心机", @@ -37,7 +37,7 @@ "block.techreborn.industrial_electrolyzer": "工业电解器", "block.techreborn.assembly_machine": "装配机", "block.techreborn.semi_fluid_generator": "半流质发电机", - "block.techreborn.iron_alloy_furnace": "铁质合金炉", + "block.techreborn.iron_alloy_furnace": "老铁合金炉", "block.techreborn.chemical_reactor": "化学反应器", "block.techreborn.dragon_egg_syphon": "昆图库塔卡提考特苏瓦西拉松蛋能源吸取器", "block.techreborn.interdimensional_su": "IDSU", @@ -70,7 +70,7 @@ "block.techreborn.creative_solar_panel": "创造模式太阳能电池板", "block.techreborn.water_mill": "水力发电机", "block.techreborn.wind_mill": "风力发电机", - "block.techreborn.iron_furnace": "铁炉", + "block.techreborn.iron_furnace": "老铁炉", "block.techreborn.recycler": "回收机", "block.techreborn.scrapboxinator": "废料拆包机", "block.techreborn.low_voltage_su": "储电盒", @@ -101,10 +101,10 @@ "block.techreborn.rubber_fence": "橡胶木栅栏", "block.techreborn.rubber_fence_gate": "橡胶木栅栏门", "block.techreborn.rubber_trapdoor": "橡胶木活板门", - "block.techreborn.rubber_button": "橡胶木按钮", + "block.techreborn.rubber_button": "橡胶木抱枕", "block.techreborn.rubber_pressure_plate": "橡胶木阿姨压一压板", "block.techreborn.rubber_door": "橡胶木门", - "block.techreborn.refined_iron_fence": "铁栅栏", + "block.techreborn.refined_iron_fence": "老铁栅栏", "block.techreborn.reinforced_glass": "防爆玻璃", "_comment2": "矿石", "block.techreborn.bauxite_ore": "铝土矿石", @@ -140,7 +140,7 @@ "block.techreborn.peridot_storage_block": "橄榄石块", "block.techreborn.platinum_storage_block": "铂块", "block.techreborn.red_garnet_storage_block": "红色石榴石块", - "block.techreborn.refined_iron_storage_block": "精炼铁块", + "block.techreborn.refined_iron_storage_block": "精炼老铁块", "block.techreborn.ruby_storage_block": "红宝石块", "block.techreborn.sapphire_storage_block": "蓝宝石块", "block.techreborn.silver_storage_block": "银块", @@ -154,11 +154,11 @@ "_comment4": "电缆", "block.techreborn.copper_cable": "铜质导线", "block.techreborn.tin_cable": "锡质导线", - "block.techreborn.gold_cable": "金质导线", + "block.techreborn.gold_cable": "黄油导线", "block.techreborn.hv_cable": "要被压扁惹.jpg导线", "block.techreborn.glassfiber_cable": "玻璃纤维导线", "block.techreborn.insulated_copper_cable": "绝缘铜质导线", - "block.techreborn.insulated_gold_cable": "绝缘金质导线", + "block.techreborn.insulated_gold_cable": "绝缘黄油导线", "block.techreborn.insulated_hv_cable": "绝缘要被压扁惹.jpg导线", "block.techreborn.superconductor_cable": "超导电缆", "_comment5": "液体块", @@ -243,34 +243,34 @@ "item.techreborn.bauxite_dust": "铝土矿粉", "item.techreborn.brass_dust": "黄铜粉", "item.techreborn.bronze_dust": "青铜粉", - "item.techreborn.calcite_dust": "方解石粉", + "item.techreborn.calcite_dust": "凯尔希粉", "item.techreborn.charcoal_dust": "木炭粉", "item.techreborn.chrome_dust": "铬粉", "item.techreborn.cinnabar_dust": "朱砂粉", - "item.techreborn.clay_dust": "粘土粉", - "item.techreborn.coal_dust": "煤粉", + "item.techreborn.clay_dust": "土球球粉", + "item.techreborn.coal_dust": "非洲粉", "item.techreborn.copper_dust": "铜粉", "item.techreborn.dark_ashes_dust": "黑色灰烬", - "item.techreborn.diamond_dust": "钻石粉", + "item.techreborn.diamond_dust": "祖安石粉", "item.techreborn.diorite_dust": "闪长岩粉", "item.techreborn.electrum_dust": "琥珀金粉", - "item.techreborn.emerald_dust": "绿宝石粉", - "item.techreborn.ender_eye_dust": "末影之眼粉", - "item.techreborn.ender_pearl_dust": "末影珍珠粉", - "item.techreborn.endstone_dust": "末地石粉", - "item.techreborn.flint_dust": "燧石粉", + "item.techreborn.emerald_dust": "原谅石粉", + "item.techreborn.ender_eye_dust": "小黑眼粉", + "item.techreborn.ender_pearl_dust": "小黑珍珠粉", + "item.techreborn.endstone_dust": "奶酪粉", + "item.techreborn.flint_dust": "火石粉", "item.techreborn.galena_dust": "方铅矿粉", - "item.techreborn.gold_dust": "金粉", + "item.techreborn.gold_dust": "黄油粉", "item.techreborn.granite_dust": "花岗岩粉", "item.techreborn.grossular_dust": "钙铝榴石粉", "item.techreborn.invar_dust": "殷钢粉", - "item.techreborn.iron_dust": "铁粉", - "item.techreborn.lazurite_dust": "青金石粉", + "item.techreborn.iron_dust": "老铁粉", + "item.techreborn.lazurite_dust": "蓝(只是颜色上)宝石粉", "item.techreborn.lead_dust": "铅粉", "item.techreborn.magnesium_dust": "镁粉", "item.techreborn.manganese_dust": "锰粉", "item.techreborn.marble_dust": "大理石粉", - "item.techreborn.netherrack_dust": "地狱岩粉", + "item.techreborn.netherrack_dust": "尼德兰岩粉", "item.techreborn.nickel_dust": "镍粉", "item.techreborn.obsidian_dust": "黑曜石粉", "item.techreborn.olivine_dust": "橄榄石粉", @@ -307,35 +307,35 @@ "item.techreborn.bauxite_small_dust": "小堆铝土矿粉", "item.techreborn.brass_small_dust": "小堆黄铜粉", "item.techreborn.bronze_small_dust": "小堆青铜粉", - "item.techreborn.calcite_small_dust": "小堆方解石粉", + "item.techreborn.calcite_small_dust": "小堆凯尔希粉", "item.techreborn.charcoal_small_dust": "小堆木炭粉", "item.techreborn.chrome_small_dust": "小堆铬粉", "item.techreborn.cinnabar_small_dust": "小堆朱砂粉", - "item.techreborn.clay_small_dust": "小堆粘土粉", - "item.techreborn.coal_small_dust": "小堆煤粉", + "item.techreborn.clay_small_dust": "小堆土球球粉", + "item.techreborn.coal_small_dust": "小堆非洲粉", "item.techreborn.copper_small_dust": "小堆铜粉", "item.techreborn.dark_ashes_small_dust": "小堆黑色灰烬", - "item.techreborn.diamond_small_dust": "小堆钻石粉", + "item.techreborn.diamond_small_dust": "小堆祖安石粉", "item.techreborn.diorite_small_dust": "小堆闪长岩粉", "item.techreborn.electrum_small_dust": "小堆琥珀金粉", - "item.techreborn.emerald_small_dust": "小堆绿宝石粉", - "item.techreborn.ender_eye_small_dust": "小堆末影之眼粉", - "item.techreborn.ender_pearl_small_dust": "小堆末影珍珠粉", - "item.techreborn.endstone_small_dust": "小堆末地石粉", - "item.techreborn.flint_small_dust": "小堆燧石粉", + "item.techreborn.emerald_small_dust": "小堆原谅石粉", + "item.techreborn.ender_eye_small_dust": "小堆小黑眼粉", + "item.techreborn.ender_pearl_small_dust": "小堆小黑珍珠粉", + "item.techreborn.endstone_small_dust": "小堆奶酪粉", + "item.techreborn.flint_small_dust": "小堆火石粉", "item.techreborn.galena_small_dust": "小堆方铅矿粉", - "item.techreborn.glowstone_small_dust": "小堆萤石粉", - "item.techreborn.gold_small_dust": "小堆金粉", + "item.techreborn.glowstone_small_dust": "小堆发光石粉", + "item.techreborn.gold_small_dust": "小堆黄油粉", "item.techreborn.granite_small_dust": "小堆花岗岩粉", "item.techreborn.grossular_small_dust": "小堆钙铝榴石粉", "item.techreborn.invar_small_dust": "小堆殷钢粉", - "item.techreborn.iron_small_dust": "小堆铁粉", - "item.techreborn.lazurite_small_dust": "小堆青金石粉", + "item.techreborn.iron_small_dust": "小堆老铁粉", + "item.techreborn.lazurite_small_dust": "小堆蓝宝石粉", "item.techreborn.lead_small_dust": "小堆铅粉", "item.techreborn.magnesium_small_dust": "小堆镁粉", "item.techreborn.manganese_small_dust": "小堆锰粉", "item.techreborn.marble_small_dust": "小堆大理石粉", - "item.techreborn.netherrack_small_dust": "小堆地狱岩粉", + "item.techreborn.netherrack_small_dust": "小堆尼德兰岩粉", "item.techreborn.nickel_small_dust": "小堆镍粉", "item.techreborn.obsidian_small_dust": "小堆黑曜石粉", "item.techreborn.olivine_small_dust": "小堆橄榄石粉", @@ -346,7 +346,7 @@ "item.techreborn.pyrope_small_dust": "小堆镁铝榴石粉", "item.techreborn.quartz_small_dust": "小堆石英粉", "item.techreborn.red_garnet_small_dust": "小堆红色石榴石粉", - "item.techreborn.redstone_small_dust": "小堆红石粉", + "item.techreborn.redstone_small_dust": "小堆雷石东粉", "item.techreborn.ruby_small_dust": "小堆红宝石粉", "item.techreborn.saltpeter_small_dust": "小堆硝石粉", "item.techreborn.sapphire_small_dust": "小堆蓝宝石粉", @@ -399,16 +399,16 @@ "item.techreborn.bronze_nugget": "青铜粒", "item.techreborn.chrome_nugget": "铬粒", "item.techreborn.copper_nugget": "铜粒", - "item.techreborn.diamond_nugget": "钻石粒", + "item.techreborn.diamond_nugget": "祖安石粒", "item.techreborn.electrum_nugget": "琥珀金粒", "item.techreborn.hot_tungstensteel_nugget": "热钨钢粒", "item.techreborn.invar_nugget": "殷钢粒", "item.techreborn.iridium_nugget": "铱粒", - "item.techreborn.iron_nugget": "铁粒", + "item.techreborn.iron_nugget": "老铁粒", "item.techreborn.lead_nugget": "铅粒", "item.techreborn.nickel_nugget": "镍粒", "item.techreborn.platinum_nugget": "铂粒", - "item.techreborn.refined_iron_nugget": "精炼铁粒", + "item.techreborn.refined_iron_nugget": "精炼老铁粒", "item.techreborn.silver_nugget": "银粒", "item.techreborn.steel_nugget": "钢粒", "item.techreborn.tin_nugget": "锡粒", @@ -416,7 +416,7 @@ "item.techreborn.tungsten_nugget": "钨粒", "item.techreborn.tungstensteel_nugget": "钨钢粒", "item.techreborn.zinc_nugget": "锌粒", - "item.techreborn.emerald_nugget": "绿宝石粒", + "item.techreborn.emerald_nugget": "原谅石粒", "_comment12": "金属板", "item.techreborn.advanced_alloy_plate": "高级合金板", "item.techreborn.aluminum_plate": "铝板", @@ -424,18 +424,18 @@ "item.techreborn.bronze_plate": "青铜板", "item.techreborn.carbon_plate": "碳板", "item.techreborn.chrome_plate": "铬板", - "item.techreborn.coal_plate": "煤板", + "item.techreborn.coal_plate": "非洲板", "item.techreborn.copper_plate": "铜板", - "item.techreborn.diamond_plate": "钻石板", + "item.techreborn.diamond_plate": "祖安石板", "item.techreborn.electrum_plate": "琥珀金板", - "item.techreborn.emerald_plate": "绿宝石板", - "item.techreborn.gold_plate": "金板", + "item.techreborn.emerald_plate": "原谅石板", + "item.techreborn.gold_plate": "黄油板", "item.techreborn.invar_plate": "殷钢板", "item.techreborn.iridium_alloy_plate": "铱合金板", "item.techreborn.iridium_plate": "铱板", - "item.techreborn.iron_plate": "铁板", - "item.techreborn.lapis_plate": "青金石板", - "item.techreborn.lazurite_plate": "青金石板", + "item.techreborn.iron_plate": "老铁板", + "item.techreborn.lapis_plate": "蓝(只是颜色上)宝石板", + "item.techreborn.lazurite_plate": "蓝(只是颜色上)宝石板", "item.techreborn.lead_plate": "铅板", "item.techreborn.magnalium_plate": "镁铝合金板", "item.techreborn.nickel_plate": "镍板", @@ -444,7 +444,7 @@ "item.techreborn.platinum_plate": "铂板", "item.techreborn.quartz_plate": "石英板", "item.techreborn.red_garnet_plate": "红色石榴石板", - "item.techreborn.redstone_plate": "红石板", + "item.techreborn.redstone_plate": "雷石东板", "item.techreborn.refined_iron_plate": "精炼铁板", "item.techreborn.ruby_plate": "红宝石板", "item.techreborn.sapphire_plate": "蓝宝石板", @@ -471,8 +471,8 @@ "item.techreborn.data_storage_chip": "数据存储芯片", "item.techreborn.energy_flow_chip": "能量流芯片", "item.techreborn.superconductor": "超导体", - "item.techreborn.diamond_saw_blade": "钻石锯片", - "item.techreborn.diamond_grinding_head": "钻石研磨头", + "item.techreborn.diamond_saw_blade": "祖安石锯片", + "item.techreborn.diamond_grinding_head": "祖安石研磨头", "item.techreborn.tungsten_grinding_head": "钨研磨头", "item.techreborn.cupronickel_heating_coil": "白铜加热线圈", "item.techreborn.kanthal_heating_coil": "坝塔尔合金加热线圈", @@ -614,10 +614,10 @@ "techreborn.jei.recipe.processing.time.2": "(%s 秒)", "techreborn.jei.recipe.heat": "热力", "techreborn.jei.desc.rubberSap": "为了获得粘性树脂,你需要找一颗橡胶树或者找到一棵橡胶树宝宝并且进行种植。当你找到了一个橡胶树后,看看树干有没有黄点。如果没有,过一会就会出现了。为了收获粘性树脂,你需要用一个木龙头对着黄点右击。", - "techreborn.jei.desc.scrapBox": "废料盒可以简单的用手打开,也可以用拆包器打开。这是很直接的,只要把你的废料盒扔进拆包器并且提供一个红石信号,然䃫oom的一声,随机的物品就出现了!", + "techreborn.jei.desc.scrapBox": "废料盒可以简单的用手打开,也可以用拆包器打开。这是很直接的,只要把你的废料盒扔进拆包器并且提供一个雷石东信号,然䃫oom的一声,随机的物品就出现了!", "techreborn.jei.desc.scrapBoxNoDispenser": "废料盒可以很简单的用手打开。", "techreborn.jei.category.alloy.furnace": "合金炉", - "techreborn.jei.category.scrapbox": "开启废料盒", + "techreborn.jei.category.scrapbox": "打开废料盒", "techreborn.jei.category.generator.gas": "燃气轮机", "techreborn.jei.category.generator.semifluid": "半流质发电机", "techreborn.jei.category.generator.diesel": "柴油发电机", diff --git a/mods/terrestria.json b/mods/terrestria.json index d34adee62..07336f484 100644 --- a/mods/terrestria.json +++ b/mods/terrestria.json @@ -1,242 +1,242 @@ { - "itemGroup.terrestria.items": "Terrestria", - "item.terrestria.cypress_boat": "柏木方舟", - "item.terrestria.hemlock_boat": "铁杉木方舟", - "item.terrestria.japanese_maple_boat": "日本枫木方舟", - "item.terrestria.rainbow_eucalyptus_boat": "彩虹桉木方舟", - "item.terrestria.redwood_boat": "红杉木方舟", - "item.terrestria.rubber_boat": "橡胶木方舟", - "item.terrestria.sakura_boat": "樱花木方舟", - "item.terrestria.willow_boat": "柳木方舟", - "block.terrestria.redwood_log": "红杉日志", - "block.terrestria.redwood_wood": "红杉木", - "block.terrestria.redwood_quarter_log": "红杉木方块", - "block.terrestria.redwood_sapling": "红杉木树宝宝", - "block.terrestria.redwood_leaves": "红杉木树叶", - "block.terrestria.redwood_planks": "红杉木板", - "block.terrestria.redwood_slab": "红杉木半砖", - "block.terrestria.redwood_stairs": "红杉木楼梯", - "block.terrestria.redwood_fence": "红杉木栅栏", - "block.terrestria.redwood_fence_gate": "红杉木栅栏门", - "block.terrestria.redwood_door": "红杉木门", - "block.terrestria.redwood_pressure_plate": "红杉木阿姨压一压板", - "block.terrestria.redwood_button": "红杉木按钮", - "block.terrestria.redwood_sign": "红杉木牌", - "block.terrestria.redwood_trapdoor": "红杉木活板门", - "block.terrestria.stripped_redwood_wood": "去皮红杉木", - "block.terrestria.stripped_redwood_log": "去皮红杉日志", - "block.terrestria.stripped_redwood_quarter_log": "去皮红杉木方块", - "block.terrestria.hemlock_log": "铁杉日志", - "block.terrestria.hemlock_wood": "铁杉木", - "block.terrestria.hemlock_quarter_log": "铁杉木方块", - "block.terrestria.hemlock_sapling": "铁杉木树宝宝", - "block.terrestria.hemlock_leaves": "铁杉木树叶", - "block.terrestria.hemlock_planks": "铁杉木板", - "block.terrestria.hemlock_slab": "铁杉木半砖", - "block.terrestria.hemlock_stairs": "铁杉木楼梯", - "block.terrestria.hemlock_fence": "铁杉木栅栏", - "block.terrestria.hemlock_fence_gate": "铁杉木栅栏门", - "block.terrestria.hemlock_door": "铁杉木门", - "block.terrestria.hemlock_pressure_plate": "铁杉木阿姨压一压板", - "block.terrestria.hemlock_button": "铁杉木按钮", - "block.terrestria.hemlock_sign": "铁杉木牌", - "block.terrestria.hemlock_trapdoor": "铁杉木活板门", - "block.terrestria.stripped_hemlock_wood": "去皮铁杉木", - "block.terrestria.stripped_hemlock_log": "去皮铁杉日志", - "block.terrestria.stripped_hemlock_quarter_log": "去皮铁杉木方块", - "block.terrestria.jungle_palm_sapling": "丛林棕榈树宝宝", - "block.terrestria.jungle_palm_leaves": "丛林棕榈树叶", - "block.terrestria.rubber_log": "橡胶日志", - "block.terrestria.rubber_wood": "橡胶木", - "block.terrestria.rubber_sapling": "橡胶木树宝宝", - "block.terrestria.rubber_leaves": "橡胶木树叶", - "block.terrestria.rubber_planks": "橡胶木板", - "block.terrestria.rubber_slab": "橡胶木半砖", - "block.terrestria.rubber_stairs": "橡胶木楼梯", - "block.terrestria.rubber_fence": "橡胶木栅栏", - "block.terrestria.rubber_fence_gate": "橡胶木栅栏门", - "block.terrestria.rubber_door": "橡胶木门", - "block.terrestria.rubber_pressure_plate": "橡胶木阿姨压一压板", - "block.terrestria.rubber_button": "橡胶木按钮", - "block.terrestria.rubber_sign": "橡胶木牌", - "block.terrestria.rubber_trapdoor": "橡胶木活板门", - "block.terrestria.stripped_rubber_wood": "去皮橡胶木", - "block.terrestria.stripped_rubber_log": "去皮橡胶日志", - "block.terrestria.cypress_log": "柏日志", - "block.terrestria.cypress_wood": "柏木", - "block.terrestria.cypress_quarter_log": "柏木方块", - "block.terrestria.cypress_sapling": "柏木树宝宝", - "block.terrestria.cypress_leaves": "柏木树叶", - "block.terrestria.cypress_planks": "柏木板", - "block.terrestria.cypress_slab": "柏木半砖", - "block.terrestria.cypress_stairs": "柏木楼梯", - "block.terrestria.cypress_fence": "柏木栅栏", - "block.terrestria.cypress_fence_gate": "柏木栅栏门", - "block.terrestria.cypress_door": "柏木门", - "block.terrestria.cypress_pressure_plate": "柏木阿姨压一压板", - "block.terrestria.cypress_button": "柏木按钮", - "block.terrestria.cypress_sign": "柏木牌", - "block.terrestria.cypress_trapdoor": "柏木活板门", - "block.terrestria.stripped_cypress_wood": "去皮柏木", - "block.terrestria.stripped_cypress_log": "去皮柏日志", - "block.terrestria.stripped_cypress_quarter_log": "去皮柏木方块", - "block.terrestria.willow_log": "柳日志", - "block.terrestria.willow_wood": "柳木", - "block.terrestria.willow_sapling": "柳木树宝宝", - "block.terrestria.willow_leaves": "柳木树叶", - "block.terrestria.willow_planks": "柳木板", - "block.terrestria.willow_slab": "柳木半砖", - "block.terrestria.willow_stairs": "柳木楼梯", - "block.terrestria.willow_fence": "柳木栅栏", - "block.terrestria.willow_fence_gate": "柳木栅栏门", - "block.terrestria.willow_door": "柳木门", - "block.terrestria.willow_pressure_plate": "柳木阿姨压一压板", - "block.terrestria.willow_button": "柳木按钮", - "block.terrestria.willow_sign": "柳木牌", - "block.terrestria.willow_trapdoor": "柳木活板门", - "block.terrestria.stripped_willow_wood": "去皮柳木", - "block.terrestria.stripped_willow_log": "去皮柳日志", - "block.terrestria.japanese_maple_log": "日本枫日志", - "block.terrestria.japanese_maple_wood": "日本枫木", - "block.terrestria.japanese_maple_sapling": "日本枫木树宝宝", - "block.terrestria.japanese_maple_leaves": "日本枫木树叶", - "block.terrestria.japanese_maple_planks": "日本枫木板", - "block.terrestria.japanese_maple_slab": "日本枫木半砖", - "block.terrestria.japanese_maple_stairs": "日本枫木楼梯", - "block.terrestria.japanese_maple_fence": "日本枫木栅栏", - "block.terrestria.japanese_maple_fence_gate": "日本枫木栅栏门", - "block.terrestria.japanese_maple_door": "日本枫木门", - "block.terrestria.japanese_maple_pressure_plate": "日本枫木阿姨压一压板", - "block.terrestria.japanese_maple_button": "日本枫木按钮", - "block.terrestria.japanese_maple_sign": "日本枫木牌", - "block.terrestria.japanese_maple_trapdoor": "日本枫木活板门", - "block.terrestria.stripped_japanese_maple_wood": "去皮日本枫木", - "block.terrestria.stripped_japanese_maple_log": "去皮日本枫日志", - "block.terrestria.dark_japanese_maple_leaves": "日本红枫木树叶", - "block.terrestria.dark_japanese_maple_sapling": "日本红枫木树宝宝", - "block.terrestria.rainbow_eucalyptus_log": "彩虹桉日志", - "block.terrestria.rainbow_eucalyptus_wood": "彩虹桉木", - "block.terrestria.rainbow_eucalyptus_quarter_log": "彩虹桉木方块", - "block.terrestria.rainbow_eucalyptus_sapling": "彩虹桉木树宝宝", - "block.terrestria.rainbow_eucalyptus_leaves": "彩虹桉木树叶", - "block.terrestria.rainbow_eucalyptus_planks": "彩虹桉木板", - "block.terrestria.rainbow_eucalyptus_slab": "彩虹桉木半砖", - "block.terrestria.rainbow_eucalyptus_stairs": "彩虹桉木楼梯", - "block.terrestria.rainbow_eucalyptus_fence": "彩虹桉木栅栏", - "block.terrestria.rainbow_eucalyptus_fence_gate": "彩虹桉木栅栏门", - "block.terrestria.rainbow_eucalyptus_door": "彩虹桉木门", - "block.terrestria.rainbow_eucalyptus_pressure_plate": "彩虹桉木阿姨压一压板", - "block.terrestria.rainbow_eucalyptus_button": "彩虹桉木按钮", - "block.terrestria.rainbow_eucalyptus_sign": "彩虹桉木牌", - "block.terrestria.rainbow_eucalyptus_trapdoor": "彩虹桉木活板门", - "block.terrestria.stripped_rainbow_eucalyptus_wood": "去皮彩虹桉木", - "block.terrestria.stripped_rainbow_eucalyptus_log": "去皮彩虹桉日志", - "block.terrestria.stripped_rainbow_eucalyptus_quarter_log": "去皮彩虹桉木方块", - "block.terrestria.sakura_log": "樱花日志", - "block.terrestria.sakura_sapling": "樱花木树宝宝", - "block.terrestria.sakura_leaves": "樱花木树叶", - "block.terrestria.sakura_leaf_pile": "樱花落叶", - "block.terrestria.sakura_planks": "樱花木板", - "block.terrestria.sakura_slab": "樱花木半砖", - "block.terrestria.sakura_stairs": "樱花木楼梯", - "block.terrestria.sakura_fence": "樱花木栅栏", - "block.terrestria.sakura_fence_gate": "樱花木栅栏门", - "block.terrestria.sakura_door": "樱花木门", - "block.terrestria.sakura_pressure_plate": "樱花木阿姨压一压板", - "block.terrestria.sakura_button": "樱花木按钮", - "block.terrestria.sakura_sign": "樱花木牌", - "block.terrestria.sakura_trapdoor": "樱花木活板门", - "block.terrestria.stripped_sakura_wood": "去皮樱花木", - "block.terrestria.stripped_sakura_log": "去皮樱花日志", - "block.terrestria.cattail": "猫尾香蒲", - "block.terrestria.tall_cattail": "高猫尾香蒲", - "block.terrestria.basalt": "玄武岩", - "block.terrestria.basalt_slab": "玄武岩半砖", - "block.terrestria.basalt_stairs": "玄武岩楼梯", - "block.terrestria.basalt_wall": "玄武岩墙", - "block.terrestria.smooth_basalt": "平滑玄武岩", - "block.terrestria.smooth_basalt_slab": "平滑玄武岩半砖", - "block.terrestria.smooth_basalt_stairs": "平滑玄武岩楼梯", - "block.terrestria.smooth_basalt_wall": "平滑玄武岩墙", - "block.terrestria.basalt_cobblestone": "玄武岩圆石", - "block.terrestria.basalt_cobblestone_slab": "玄武岩圆石半砖", - "block.terrestria.basalt_cobblestone_stairs": "玄武岩圆石楼梯", - "block.terrestria.basalt_cobblestone_wall": "玄武岩圆石墙", - "block.terrestria.mossy_basalt_cobblestone": "生苔的玄武岩圆石", - "block.terrestria.mossy_basalt_cobblestone_slab": "生苔的玄武岩圆石半砖", - "block.terrestria.mossy_basalt_cobblestone_stairs": "生苔的玄武岩圆石楼梯", - "block.terrestria.mossy_basalt_cobblestone_wall": "生苔的玄武岩圆石墙", - "block.terrestria.basalt_bricks": "玄武岩砖石", - "block.terrestria.basalt_brick_slab": "玄武岩砖石半砖", - "block.terrestria.basalt_brick_stairs": "玄武岩砖石楼梯", - "block.terrestria.basalt_brick_wall": "玄武岩砖石墙", - "block.terrestria.mossy_basalt_bricks": "生苔的玄武岩砖石", - "block.terrestria.mossy_basalt_brick_slab": "生苔的玄武岩砖石半砖", - "block.terrestria.mossy_basalt_brick_stairs": "生苔的玄武岩砖石楼梯", - "block.terrestria.mossy_basalt_brick_wall": "生苔的玄武岩砖石墙", - "block.terrestria.basalt_button": "玄武岩按钮", - "block.terrestria.basalt_pressure_plate": "玄武岩阿姨压一压板", - "block.terrestria.chiseled_basalt_bricks": "使用了大师级雕刻技艺的玄武岩砖石", - "block.terrestria.cracked_basalt_bricks": "裂玄武岩砖石", - "block.terrestria.basalt_grass_block": "火山灰土草方块", - "block.terrestria.basalt_grass_path": "火山灰土草径", - "block.terrestria.basalt_sand": "玄武岩砂", - "block.terrestria.basalt_dirt": "火山灰土", - "block.terrestria.basalt_podzol": "灰化火山灰土", - "block.terrestria.indian_paintbrush": "印地安画笔花", - "block.terrestria.monsteras": "龟背竹", - "block.terrestria.potted_indian_paintbrush": "印地安画笔花盆栽", - "block.terrestria.potted_monsteras": "龟背竹", - "block.terrestria.japanese_maple_shrub_sapling": "日本枫木灌木树宝宝", - "block.terrestria.japanese_maple_shrub_leaves": "日本枫木灌木树叶", - "block.terrestria.potted_redwood_sapling": "红杉木树宝宝盆栽", - "block.terrestria.potted_hemlock_sapling": "铁杉木树宝宝盆栽", - "block.terrestria.potted_rubber_sapling": "橡胶木树宝宝盆栽", - "block.terrestria.potted_cypress_sapling": "柏木树宝宝盆栽", - "block.terrestria.potted_willow_sapling": "柳木树宝宝盆栽", - "block.terrestria.potted_japanese_maple_sapling": "日本枫木树宝宝盆栽", - "block.terrestria.potted_dark_japanese_maple_sapling": "日本红枫木树宝宝盆栽", - "block.terrestria.potted_rainbow_eucalyptus_sapling": "彩虹桉木树宝宝盆栽", - "block.terrestria.potted_sakura_sapling": "樱花木树宝宝盆栽", - "block.terrestria.potted_jungle_palm_sapling": "丛林棕榈树宝宝盆栽", - "block.terrestria.potted_japanese_maple_shrub_sapling": "日本枫木灌木树宝宝", - "item.terrestria.log_turner": "木头旋转器", - "item.terrestria.log_turner.tooltip": "对着一个日志使用这个工具,\n 你所对准的面将成为日志朝向你使用此工具的面\n 当你所对着的是一个木方块时\n 如果你对着的是一个木方块,它就会使橡皮面转90°顺时针方向旋转\n 直到你想让这个木块旋转到你想要到达的方向\n 所有的转向都会以顺时针进行\n 当你按住潜行进行旋转木块时\n 木块不会以表面的年轮进行旋转", - "biome.terrestria.redwood_forest": "红杉木树林", - "biome.terrestria.redwood_forest_edge": "红杉木树林边缘", - "biome.terrestria.redwood_clearing": "红杉木树林空地", - "biome.terrestria.lush_redwood_forest": "繁茂的红杉木树林", - "biome.terrestria.lush_redwood_forest_edge": "繁茂的红杉木树林边缘", - "biome.terrestria.lush_redwood_clearing": "繁茂的红杉木树林空地", - "biome.terrestria.hemlock_rainforest": "铁杉木雨林", - "biome.terrestria.hemlock_clearing": "铁杉木雨林空地", - "biome.terrestria.snowy_hemlock_forest": "白雪皑皑的铁杉木树林", - "biome.terrestria.snowy_hemlock_clearing": "白雪皑皑的铁杉木树林空地", - "biome.terrestria.caldera_foothills": "死火山口山麓", - "biome.terrestria.cypress_forest": "柏木树林", - "biome.terrestria.wooded_cypress_hills": "柏木丘陵", - "biome.terrestria.sakura_forest": "樱花木树林", - "biome.terrestria.wooded_sakura_hills": "樱花木丘陵", - "biome.terrestria.japanese_maple_forest": "日本枫木树林", - "biome.terrestria.wooded_japanese_maple_hills": "日本枫木丘陵", - "biome.terrestria.dense_woodlands": "繁茂的木场", - "biome.terrestria.dense_woodlands_edge": "繁茂的木场边缘", - "biome.terrestria.rainbow_rainforest": "彩虹桉木雨林", - "biome.terrestria.rainbow_rainforest_mountains": "彩虹桉木雨林山脉", - "biome.terrestria.rainbow_rainforest_lake": "彩虹桉木雨林湖", - "biome.terrestria.cypress_swamp": "柏木树林沼泽", - "biome.terrestria.caldera": "死火山口", - "biome.terrestria.caldera_ridge": "死火山口岩壁", - "biome.terrestria.caldera_beach": "死火山口岩滩", - "biome.terrestria.volcanic_island": "火山岛", - "biome.terrestria.volcanic_island_beach": "火山岛沙滩", - "biome.terrestria.volcanic_island_shore": "火山岛海岸", - "entity.terrestria.cypress_boat": "柏木方舟", - "entity.terrestria.hemlock_boat": "铁杉木方舟", - "entity.terrestria.japanese_maple_boat": "日本枫木方舟", - "entity.terrestria.rainbow_eucalyptus_boat": "彩虹桉木方舟", - "entity.terrestria.redwood_boat": "红杉木方舟", - "entity.terrestria.rubber_boat": "橡胶木方舟", - "entity.terrestria.sakura_boat": "樱花木方舟", - "entity.terrestria.willow_boat": "柳木方舟" + "itemGroup.terrestria.items": "Terrestria", + "item.terrestria.cypress_boat": "柏木方舟", + "item.terrestria.hemlock_boat": "铁杉木方舟", + "item.terrestria.japanese_maple_boat": "日本枫木方舟", + "item.terrestria.rainbow_eucalyptus_boat": "彩虹桉木方舟", + "item.terrestria.redwood_boat": "红杉木方舟", + "item.terrestria.rubber_boat": "橡胶木方舟", + "item.terrestria.sakura_boat": "樱花木方舟", + "item.terrestria.willow_boat": "柳木方舟", + "block.terrestria.redwood_log": "红杉日志", + "block.terrestria.redwood_wood": "红杉木", + "block.terrestria.redwood_quarter_log": "红杉木方块", + "block.terrestria.redwood_sapling": "红杉木树宝宝", + "block.terrestria.redwood_leaves": "红杉木树叶", + "block.terrestria.redwood_planks": "红杉木板", + "block.terrestria.redwood_slab": "红杉木半砖", + "block.terrestria.redwood_stairs": "红杉木楼梯", + "block.terrestria.redwood_fence": "红杉木栅栏", + "block.terrestria.redwood_fence_gate": "红杉木栅栏门", + "block.terrestria.redwood_door": "红杉木门", + "block.terrestria.redwood_pressure_plate": "红杉木阿姨压一压板", + "block.terrestria.redwood_button": "红杉木抱枕", + "block.terrestria.redwood_sign": "红杉木牌", + "block.terrestria.redwood_trapdoor": "红杉木陷阱门", + "block.terrestria.stripped_redwood_wood": "去皮红杉木", + "block.terrestria.stripped_redwood_log": "去皮红杉日志", + "block.terrestria.stripped_redwood_quarter_log": "去皮红杉木方块", + "block.terrestria.hemlock_log": "铁杉日志", + "block.terrestria.hemlock_wood": "铁杉木", + "block.terrestria.hemlock_quarter_log": "铁杉木方块", + "block.terrestria.hemlock_sapling": "铁杉木树宝宝", + "block.terrestria.hemlock_leaves": "铁杉木树叶", + "block.terrestria.hemlock_planks": "铁杉木板", + "block.terrestria.hemlock_slab": "铁杉木半砖", + "block.terrestria.hemlock_stairs": "铁杉木楼梯", + "block.terrestria.hemlock_fence": "铁杉木栅栏", + "block.terrestria.hemlock_fence_gate": "铁杉木栅栏门", + "block.terrestria.hemlock_door": "铁杉木门", + "block.terrestria.hemlock_pressure_plate": "铁杉木阿姨压一压板", + "block.terrestria.hemlock_button": "铁杉木抱枕", + "block.terrestria.hemlock_sign": "铁杉木牌", + "block.terrestria.hemlock_trapdoor": "铁杉木陷阱门", + "block.terrestria.stripped_hemlock_wood": "去皮铁杉木", + "block.terrestria.stripped_hemlock_log": "去皮铁杉日志", + "block.terrestria.stripped_hemlock_quarter_log": "去皮铁杉木方块", + "block.terrestria.jungle_palm_sapling": "丛林棕榈树宝宝", + "block.terrestria.jungle_palm_leaves": "丛林棕榈树叶", + "block.terrestria.rubber_log": "橡胶日志", + "block.terrestria.rubber_wood": "橡胶木", + "block.terrestria.rubber_sapling": "橡胶木树宝宝", + "block.terrestria.rubber_leaves": "橡胶木树叶", + "block.terrestria.rubber_planks": "橡胶木板", + "block.terrestria.rubber_slab": "橡胶木半砖", + "block.terrestria.rubber_stairs": "橡胶木楼梯", + "block.terrestria.rubber_fence": "橡胶木栅栏", + "block.terrestria.rubber_fence_gate": "橡胶木栅栏门", + "block.terrestria.rubber_door": "橡胶木门", + "block.terrestria.rubber_pressure_plate": "橡胶木阿姨压一压板", + "block.terrestria.rubber_button": "橡胶木抱枕", + "block.terrestria.rubber_sign": "橡胶木牌", + "block.terrestria.rubber_trapdoor": "橡胶木陷阱门", + "block.terrestria.stripped_rubber_wood": "去皮橡胶木", + "block.terrestria.stripped_rubber_log": "去皮橡胶日志", + "block.terrestria.cypress_log": "柏日志", + "block.terrestria.cypress_wood": "柏木", + "block.terrestria.cypress_quarter_log": "柏木方块", + "block.terrestria.cypress_sapling": "柏木树宝宝", + "block.terrestria.cypress_leaves": "柏木树叶", + "block.terrestria.cypress_planks": "柏木板", + "block.terrestria.cypress_slab": "柏木半砖", + "block.terrestria.cypress_stairs": "柏木楼梯", + "block.terrestria.cypress_fence": "柏木栅栏", + "block.terrestria.cypress_fence_gate": "柏木栅栏门", + "block.terrestria.cypress_door": "柏木门", + "block.terrestria.cypress_pressure_plate": "柏木阿姨压一压板", + "block.terrestria.cypress_button": "柏木抱枕", + "block.terrestria.cypress_sign": "柏木牌", + "block.terrestria.cypress_trapdoor": "柏木陷阱门", + "block.terrestria.stripped_cypress_wood": "去皮柏木", + "block.terrestria.stripped_cypress_log": "去皮柏日志", + "block.terrestria.stripped_cypress_quarter_log": "去皮柏木方块", + "block.terrestria.willow_log": "柳日志", + "block.terrestria.willow_wood": "柳木", + "block.terrestria.willow_sapling": "柳木树宝宝", + "block.terrestria.willow_leaves": "柳木树叶", + "block.terrestria.willow_planks": "柳木板", + "block.terrestria.willow_slab": "柳木半砖", + "block.terrestria.willow_stairs": "柳木楼梯", + "block.terrestria.willow_fence": "柳木栅栏", + "block.terrestria.willow_fence_gate": "柳木栅栏门", + "block.terrestria.willow_door": "柳木门", + "block.terrestria.willow_pressure_plate": "柳木阿姨压一压板", + "block.terrestria.willow_button": "柳木抱枕", + "block.terrestria.willow_sign": "柳木牌", + "block.terrestria.willow_trapdoor": "柳木陷阱门", + "block.terrestria.stripped_willow_wood": "去皮柳木", + "block.terrestria.stripped_willow_log": "去皮柳日志", + "block.terrestria.japanese_maple_log": "日本枫日志", + "block.terrestria.japanese_maple_wood": "日本枫木", + "block.terrestria.japanese_maple_sapling": "日本枫木树宝宝", + "block.terrestria.japanese_maple_leaves": "日本枫木树叶", + "block.terrestria.japanese_maple_planks": "日本枫木板", + "block.terrestria.japanese_maple_slab": "日本枫木半砖", + "block.terrestria.japanese_maple_stairs": "日本枫木楼梯", + "block.terrestria.japanese_maple_fence": "日本枫木栅栏", + "block.terrestria.japanese_maple_fence_gate": "日本枫木栅栏门", + "block.terrestria.japanese_maple_door": "日本枫木门", + "block.terrestria.japanese_maple_pressure_plate": "日本枫木阿姨压一压板", + "block.terrestria.japanese_maple_button": "日本枫木抱枕", + "block.terrestria.japanese_maple_sign": "日本枫木牌", + "block.terrestria.japanese_maple_trapdoor": "日本枫木陷阱门", + "block.terrestria.stripped_japanese_maple_wood": "去皮日本枫木", + "block.terrestria.stripped_japanese_maple_log": "去皮日本枫日志", + "block.terrestria.dark_japanese_maple_leaves": "日本红枫木树叶", + "block.terrestria.dark_japanese_maple_sapling": "日本红枫木树宝宝", + "block.terrestria.rainbow_eucalyptus_log": "彩虹桉日志", + "block.terrestria.rainbow_eucalyptus_wood": "彩虹桉木", + "block.terrestria.rainbow_eucalyptus_quarter_log": "彩虹桉木方块", + "block.terrestria.rainbow_eucalyptus_sapling": "彩虹桉木树宝宝", + "block.terrestria.rainbow_eucalyptus_leaves": "彩虹桉木树叶", + "block.terrestria.rainbow_eucalyptus_planks": "彩虹桉木板", + "block.terrestria.rainbow_eucalyptus_slab": "彩虹桉木半砖", + "block.terrestria.rainbow_eucalyptus_stairs": "彩虹桉木楼梯", + "block.terrestria.rainbow_eucalyptus_fence": "彩虹桉木栅栏", + "block.terrestria.rainbow_eucalyptus_fence_gate": "彩虹桉木栅栏门", + "block.terrestria.rainbow_eucalyptus_door": "彩虹桉木门", + "block.terrestria.rainbow_eucalyptus_pressure_plate": "彩虹桉木阿姨压一压板", + "block.terrestria.rainbow_eucalyptus_button": "彩虹桉木抱枕", + "block.terrestria.rainbow_eucalyptus_sign": "彩虹桉木牌", + "block.terrestria.rainbow_eucalyptus_trapdoor": "彩虹桉木陷阱门", + "block.terrestria.stripped_rainbow_eucalyptus_wood": "去皮彩虹桉木", + "block.terrestria.stripped_rainbow_eucalyptus_log": "去皮彩虹桉日志", + "block.terrestria.stripped_rainbow_eucalyptus_quarter_log": "去皮彩虹桉木方块", + "block.terrestria.sakura_log": "樱花日志", + "block.terrestria.sakura_sapling": "樱花木树宝宝", + "block.terrestria.sakura_leaves": "樱花木树叶", + "block.terrestria.sakura_leaf_pile": "樱花落叶", + "block.terrestria.sakura_planks": "樱花木板", + "block.terrestria.sakura_slab": "樱花木半砖", + "block.terrestria.sakura_stairs": "樱花木楼梯", + "block.terrestria.sakura_fence": "樱花木栅栏", + "block.terrestria.sakura_fence_gate": "樱花木栅栏门", + "block.terrestria.sakura_door": "樱花木门", + "block.terrestria.sakura_pressure_plate": "樱花木阿姨压一压板", + "block.terrestria.sakura_button": "樱花木抱枕", + "block.terrestria.sakura_sign": "樱花木牌", + "block.terrestria.sakura_trapdoor": "樱花木陷阱门", + "block.terrestria.stripped_sakura_wood": "去皮樱花木", + "block.terrestria.stripped_sakura_log": "去皮樱花日志", + "block.terrestria.cattail": "猫尾香蒲", + "block.terrestria.tall_cattail": "高猫尾香蒲", + "block.terrestria.basalt": "玄武岩", + "block.terrestria.basalt_slab": "玄武岩半砖", + "block.terrestria.basalt_stairs": "玄武岩楼梯", + "block.terrestria.basalt_wall": "玄武岩墙", + "block.terrestria.smooth_basalt": "平滑玄武岩", + "block.terrestria.smooth_basalt_slab": "平滑玄武岩半砖", + "block.terrestria.smooth_basalt_stairs": "平滑玄武岩楼梯", + "block.terrestria.smooth_basalt_wall": "平滑玄武岩墙", + "block.terrestria.basalt_cobblestone": "玄武岩圆石", + "block.terrestria.basalt_cobblestone_slab": "玄武岩圆石半砖", + "block.terrestria.basalt_cobblestone_stairs": "玄武岩圆石楼梯", + "block.terrestria.basalt_cobblestone_wall": "玄武岩圆石墙", + "block.terrestria.mossy_basalt_cobblestone": "生苔的玄武岩圆石", + "block.terrestria.mossy_basalt_cobblestone_slab": "生苔的玄武岩圆石半砖", + "block.terrestria.mossy_basalt_cobblestone_stairs": "生苔的玄武岩圆石楼梯", + "block.terrestria.mossy_basalt_cobblestone_wall": "生苔的玄武岩圆石墙", + "block.terrestria.basalt_bricks": "玄武岩砖石", + "block.terrestria.basalt_brick_slab": "玄武岩砖石半砖", + "block.terrestria.basalt_brick_stairs": "玄武岩砖石楼梯", + "block.terrestria.basalt_brick_wall": "玄武岩砖石墙", + "block.terrestria.mossy_basalt_bricks": "生苔的玄武岩砖石", + "block.terrestria.mossy_basalt_brick_slab": "生苔的玄武岩砖石半砖", + "block.terrestria.mossy_basalt_brick_stairs": "生苔的玄武岩砖石楼梯", + "block.terrestria.mossy_basalt_brick_wall": "生苔的玄武岩砖石墙", + "block.terrestria.basalt_button": "玄武岩抱枕", + "block.terrestria.basalt_pressure_plate": "玄武岩阿姨压一压板", + "block.terrestria.chiseled_basalt_bricks": "使用了大师级雕刻技艺的玄武岩砖石", + "block.terrestria.cracked_basalt_bricks": "裂玄武岩砖石", + "block.terrestria.basalt_grass_block": "火山灰土草方块", + "block.terrestria.basalt_grass_path": "火山灰土草径", + "block.terrestria.basalt_sand": "玄武岩砂", + "block.terrestria.basalt_dirt": "火山灰土", + "block.terrestria.basalt_podzol": "灰化火山灰土", + "block.terrestria.indian_paintbrush": "印地安画笔花", + "block.terrestria.monsteras": "龟背竹", + "block.terrestria.potted_indian_paintbrush": "印地安画笔花盆栽", + "block.terrestria.potted_monsteras": "龟背竹", + "block.terrestria.japanese_maple_shrub_sapling": "日本枫木灌木树宝宝", + "block.terrestria.japanese_maple_shrub_leaves": "日本枫木灌木树叶", + "block.terrestria.potted_redwood_sapling": "红杉木树宝宝盆栽", + "block.terrestria.potted_hemlock_sapling": "铁杉木树宝宝盆栽", + "block.terrestria.potted_rubber_sapling": "橡胶木树宝宝盆栽", + "block.terrestria.potted_cypress_sapling": "柏木树宝宝盆栽", + "block.terrestria.potted_willow_sapling": "柳木树宝宝盆栽", + "block.terrestria.potted_japanese_maple_sapling": "日本枫木树宝宝盆栽", + "block.terrestria.potted_dark_japanese_maple_sapling": "日本红枫木树宝宝盆栽", + "block.terrestria.potted_rainbow_eucalyptus_sapling": "彩虹桉木树宝宝盆栽", + "block.terrestria.potted_sakura_sapling": "樱花木树宝宝盆栽", + "block.terrestria.potted_jungle_palm_sapling": "丛林棕榈树宝宝盆栽", + "block.terrestria.potted_japanese_maple_shrub_sapling": "日本枫木灌木树宝宝", + "item.terrestria.log_turner": "木头旋转器", + "item.terrestria.log_turner.tooltip": "对着一个日志使用这个工具,\n 你所对准的面将成为日志朝向你使用此工具的面\n 当你所对着的是一个木方块时\n 如果你对着的是一个木方块,它就会使橡皮面转90°顺时针方向旋转\n 直到你想让这个木块旋转到你想要到达的方向\n 所有的转向都会以顺时针进行\n 当你按住潜行进行旋转木块时\n 木块不会以表面的年轮进行旋转", + "biome.terrestria.redwood_forest": "红杉木树林", + "biome.terrestria.redwood_forest_edge": "红杉木树林边缘", + "biome.terrestria.redwood_clearing": "红杉木树林空地", + "biome.terrestria.lush_redwood_forest": "繁茂的红杉木树林", + "biome.terrestria.lush_redwood_forest_edge": "繁茂的红杉木树林边缘", + "biome.terrestria.lush_redwood_clearing": "繁茂的红杉木树林空地", + "biome.terrestria.hemlock_rainforest": "铁杉木雨林", + "biome.terrestria.hemlock_clearing": "铁杉木雨林空地", + "biome.terrestria.snowy_hemlock_forest": "白雪皑皑的铁杉木树林", + "biome.terrestria.snowy_hemlock_clearing": "白雪皑皑的铁杉木树林空地", + "biome.terrestria.caldera_foothills": "死火山口山麓", + "biome.terrestria.cypress_forest": "柏木树林", + "biome.terrestria.wooded_cypress_hills": "柏木丘陵", + "biome.terrestria.sakura_forest": "樱花木树林", + "biome.terrestria.wooded_sakura_hills": "樱花木丘陵", + "biome.terrestria.japanese_maple_forest": "日本枫木树林", + "biome.terrestria.wooded_japanese_maple_hills": "日本枫木丘陵", + "biome.terrestria.dense_woodlands": "繁茂的木场", + "biome.terrestria.dense_woodlands_edge": "繁茂的木场边缘", + "biome.terrestria.rainbow_rainforest": "彩虹桉木雨林", + "biome.terrestria.rainbow_rainforest_mountains": "彩虹桉木雨林山脉", + "biome.terrestria.rainbow_rainforest_lake": "彩虹桉木雨林湖", + "biome.terrestria.cypress_swamp": "柏木树林沼泽", + "biome.terrestria.caldera": "死火山口", + "biome.terrestria.caldera_ridge": "死火山口岩壁", + "biome.terrestria.caldera_beach": "死火山口岩滩", + "biome.terrestria.volcanic_island": "火山岛", + "biome.terrestria.volcanic_island_beach": "火山岛沙滩", + "biome.terrestria.volcanic_island_shore": "火山岛海岸", + "entity.terrestria.cypress_boat": "柏木方舟", + "entity.terrestria.hemlock_boat": "铁杉木方舟", + "entity.terrestria.japanese_maple_boat": "日本枫木方舟", + "entity.terrestria.rainbow_eucalyptus_boat": "彩虹桉木方舟", + "entity.terrestria.redwood_boat": "红杉木方舟", + "entity.terrestria.rubber_boat": "橡胶木方舟", + "entity.terrestria.sakura_boat": "樱花木方舟", + "entity.terrestria.willow_boat": "柳木方舟" } diff --git a/mods/torcherino.json b/mods/torcherino.json index ffa7a0426..8458cb4f2 100644 --- a/mods/torcherino.json +++ b/mods/torcherino.json @@ -1,18 +1,17 @@ { - "block.torcherino.torcherino": "真·加速火把", - "block.torcherino.compressed_torcherino": "压缩加速火把", - "block.torcherino.double_compressed_torcherino": "二重压缩加速火把", - "block.torcherino.lanterino": "加速南瓜灯", - "block.torcherino.compressed_lanterino": "压缩加速南瓜灯", - "block.torcherino.double_compressed_lanterino": "二重压缩加速南瓜灯", - "screen.torcherino.area.stopped": "停止", - "screen.torcherino.area.n": "区域: %1$dx3x%1$d", - "screen.torcherino.speed": "速度: %d%%", - "screen.torcherino.redstoneinteraction.normal": "标准", - "screen.torcherino.redstoneinteraction.inverted": "反转", - "screen.torcherino.redstoneinteraction.ignore": "忽略", - "screen.torcherino.narrate.redstoneinteraction": "%s 红石互动按钮", - "screen.torcherino.narrate.area.stopped": "停止", - "screen.torcherino.narrate.area.n": "区域: %1$dx3x%1$d" + "block.torcherino.torcherino": "真·加速火把", + "block.torcherino.compressed_torcherino": "压缩加速火把", + "block.torcherino.double_compressed_torcherino": "二重压缩加速火把", + "block.torcherino.lanterino": "加速杰克灯笼", + "block.torcherino.compressed_lanterino": "压缩加速杰克灯笼", + "block.torcherino.double_compressed_lanterino": "二重压缩加速杰克灯笼", + "screen.torcherino.area.stopped": "停止", + "screen.torcherino.area.n": "区域: %1$dx3x%1$d", + "screen.torcherino.speed": "速度: %d%%", + "screen.torcherino.redstoneinteraction.normal": "标准", + "screen.torcherino.redstoneinteraction.inverted": "反转", + "screen.torcherino.redstoneinteraction.ignore": "忽略", + "screen.torcherino.narrate.redstoneinteraction": "%s 雷石东互动按钮", + "screen.torcherino.narrate.area.stopped": "停止", + "screen.torcherino.narrate.area.n": "区域: %1$dx3x%1$d" } - diff --git a/mods/traverse.json b/mods/traverse.json index 3fe7dc196..f11453f3e 100644 --- a/mods/traverse.json +++ b/mods/traverse.json @@ -1,46 +1,46 @@ { - "biome.traverse.arid_highlands": "干旱高原", - "biome.traverse.autumnal_wooded_hills": "秋木山脉", - "biome.traverse.autumnal_woods": "秋木树林", - "biome.traverse.cliffs": "悬崖", - "biome.traverse.coniferous_forest": "针叶森林", - "biome.traverse.coniferous_wooded_hills": "针叶林山脉", - "biome.traverse.desert_shrubland": "沙漠灌丛带", - "biome.traverse.high_coniferous_forest": "高针叶森林", - "biome.traverse.lush_swamp": "茂密沼泽", - "biome.traverse.meadow": "牧场", - "biome.traverse.mini_jungle": "迷你丛林", - "biome.traverse.plains_plateau": "高地平原", - "biome.traverse.rocky_edge": "岩壁", - "biome.traverse.rolling_hills": "罗灵丘陵", - "biome.traverse.snowy_coniferous_forest": "雪地针叶森林", - "biome.traverse.snowy_coniferous_wooded_hills": "雪地针叶林山脉", - "biome.traverse.snowy_high_coniferous_forest": "雪地高针叶森林", - "biome.traverse.wooded_island": "密林岛", - "biome.traverse.wooded_plateau": "密林高原", - "biome.traverse.woodlands": "Woodlands", - "block.traverse.red_autumnal_leaves": "红秋树叶", - "block.traverse.brown_autumnal_leaves": "棕秋树叶", - "block.traverse.orange_autumnal_leaves": "橙秋树叶", - "block.traverse.yellow_autumnal_leaves": "金秋树叶", - "block.traverse.red_autumnal_sapling": "红秋树宝宝", - "block.traverse.brown_autumnal_sapling": "棕秋树宝宝", - "block.traverse.orange_autumnal_sapling": "橙秋树宝宝", - "block.traverse.yellow_autumnal_sapling": "金秋树宝宝", - "block.traverse.fir_log": "冷杉日志", - "block.traverse.stripped_fir_log": "去皮冷杉日志", - "block.traverse.stripped_fir_wood": "去皮冷杉木", - "block.traverse.fir_wood": "冷杉木", - "block.traverse.fir_leaves": "冷杉树叶", - "block.traverse.fir_sapling": "冷杉树宝宝", - "block.traverse.fir_planks": "冷杉木板", - "block.traverse.fir_stairs": "冷杉木楼梯", - "block.traverse.fir_slab": "冷杉木半砖", - "block.traverse.fir_sign": "冷杉木搞事牌", - "block.traverse.fir_button": "冷杉木按钮", - "block.traverse.fir_pressure_plate": "冷杉木阿姨压一压板", - "block.traverse.fir_fence": "冷杉木栅栏", - "block.traverse.fir_fence_gate": "冷杉木栅栏门", - "block.traverse.fir_door": "冷杉木门", - "block.traverse.fir_trapdoor": "冷杉木活板门" + "biome.traverse.arid_highlands": "干旱高原", + "biome.traverse.autumnal_wooded_hills": "秋木山脉", + "biome.traverse.autumnal_woods": "秋木树林", + "biome.traverse.cliffs": "悬崖", + "biome.traverse.coniferous_forest": "针叶森林", + "biome.traverse.coniferous_wooded_hills": "针叶林山脉", + "biome.traverse.desert_shrubland": "沙漠灌丛带", + "biome.traverse.high_coniferous_forest": "高针叶森林", + "biome.traverse.lush_swamp": "茂密沼泽", + "biome.traverse.meadow": "牧场", + "biome.traverse.mini_jungle": "迷你丛林", + "biome.traverse.plains_plateau": "高地平原", + "biome.traverse.rocky_edge": "岩壁", + "biome.traverse.rolling_hills": "罗灵丘陵", + "biome.traverse.snowy_coniferous_forest": "雪地针叶森林", + "biome.traverse.snowy_coniferous_wooded_hills": "雪地针叶林山脉", + "biome.traverse.snowy_high_coniferous_forest": "雪地高针叶森林", + "biome.traverse.wooded_island": "密林岛", + "biome.traverse.wooded_plateau": "密林高原", + "biome.traverse.woodlands": "Woodlands", + "block.traverse.red_autumnal_leaves": "红秋树叶", + "block.traverse.brown_autumnal_leaves": "棕秋树叶", + "block.traverse.orange_autumnal_leaves": "橙秋树叶", + "block.traverse.yellow_autumnal_leaves": "金秋树叶", + "block.traverse.red_autumnal_sapling": "红秋树宝宝", + "block.traverse.brown_autumnal_sapling": "棕秋树宝宝", + "block.traverse.orange_autumnal_sapling": "橙秋树宝宝", + "block.traverse.yellow_autumnal_sapling": "金秋树宝宝", + "block.traverse.fir_log": "冷杉日志", + "block.traverse.stripped_fir_log": "去皮冷杉日志", + "block.traverse.stripped_fir_wood": "去皮冷杉木", + "block.traverse.fir_wood": "冷杉木", + "block.traverse.fir_leaves": "冷杉树叶", + "block.traverse.fir_sapling": "冷杉树宝宝", + "block.traverse.fir_planks": "冷杉木板", + "block.traverse.fir_stairs": "冷杉木楼梯", + "block.traverse.fir_slab": "冷杉木半砖", + "block.traverse.fir_sign": "冷杉木搞事牌", + "block.traverse.fir_button": "冷杉木抱枕", + "block.traverse.fir_pressure_plate": "冷杉木阿姨压一压板", + "block.traverse.fir_fence": "冷杉木栅栏", + "block.traverse.fir_fence_gate": "冷杉木栅栏门", + "block.traverse.fir_door": "冷杉木门", + "block.traverse.fir_trapdoor": "冷杉木陷阱门" } diff --git a/mods/tweakeroo.json b/mods/tweakeroo.json index 0472e80d5..b975ddb99 100644 --- a/mods/tweakeroo.json +++ b/mods/tweakeroo.json @@ -67,8 +67,8 @@ "tweakeroo.message.toggled_snap_aim_on_pitch": "切换俯仰朝向对齐工具为%s,俯仰角度步长:%s", "tweakeroo.message.toggled_snap_aim_on_yaw": "切换转向朝向对齐工具为%s,转向角度步长:%s", "tweakeroo.message.toggled_zoom_on": "切换缩放工具为%s,FOV:%s", - "tweakeroo.message.value.off": "关闭", - "tweakeroo.message.value.on": "开启", + "tweakeroo.message.value.off": "关掉", + "tweakeroo.message.value.on": "打开", "accurateBlockPlacementInto": "accurate精准放置", "The key to activate the accurate block placement\nmode/overlay for placing the block facing\ninto the clicked block face": "激活精确放置的快捷键,使用后方块将放置于点击的块面上", "accurateBlockPlacementReverse": "accurate精准放置(反向)", @@ -85,8 +85,8 @@ "Switch the Breaking Restriction mode to the Line mode": "将破坏范围切换至线性模式", "breakingRestrictionModePlane": "breaking破坏范围(平面模式)", "Switch the Breaking Restriction mode to the Plane mode": "将破坏范围切换至平面模式", - "copySignText": "copySignText告示牌文本复制", - "Copies the text from an already-placed sign.\nThat text can be used with the tweakSignCopy tweak.": "从一个已经完成放置的告示牌中复制文本,该文本可以与告示牌调整信息一同使用", + "copySignText": "copySignText搞事牌文本复制", + "Copies the text from an already-placed sign.\nThat text can be used with the tweakSignCopy tweak.": "从一个已经完成放置的搞事牌中复制文本,该文本可以与搞事牌调整信息一同使用", "elytraCamera": "elytraCamera鞘翅视角", "The key to lock the current real player rotations, only allowing the\ninputs (mouse) to affect separate \"camera rotations\" used only for the rendering\nwhile this key is active.\nMeant for freely looking down/around while elytra flying straight.": "该按键可锁定当前视角,只允许使用鼠标影响视角\n准确的来说只会影响鞘翅飞行视角方向,不会影响移动方向。", "flexibleBlockPlacementAdjacent": "flexible灵活方块放置(相邻)", @@ -103,16 +103,16 @@ "Switch to fly preset 3": "切换至飞行预设3", "flyPreset4": "flyPreset4飞行预设4", "Switch to fly preset 4": "切换至飞行预设4", - "hotbarScroll": "hotbarScroll滚动物品栏", - "The key to hold to allow scrolling the hotbar\nthrough the player inventory rows": "按住快捷键可以使得玩家从物品栏调出库存物品", + "hotbarScroll": "hotbarScroll滚动库存", + "The key to hold to allow scrolling the hotbar\nthrough the player inventory rows": "按住快捷键可以使得玩家从库存调出库存物品", "hotbarSwapBase": "hotbarSwapBase显示库存", - "The base key to show the hotbar/inventory overlay": "显示物品栏或库存的按键", + "The base key to show the hotbar/inventory overlay": "显示库存或库存的按键", "hotbarSwap1": "hotbarSwap1顶部快捷切换", - "Swap the hotbar with the top-most inventory row": "将物品栏与库存顶部一行交换", + "Swap the hotbar with the top-most inventory row": "将库存与库存顶部一行交换", "hotbarSwap2": "hotbarSwap2中部快捷切换", - "Swap the hotbar with the middle inventory row": "将物品栏与库存中间一行交换", + "Swap the hotbar with the middle inventory row": "将库存与库存中间一行交换", "hotbarSwap3": "hotbarSwap3底部快捷切换", - "Swap the hotbar with the bottom-most inventory row": "将物品栏与库存底部一行交换", + "Swap the hotbar with the bottom-most inventory row": "将库存与库存底部一行交换", "inventoryPreview": "inventoryPreview库存预览", "The key to activate the inventory preview feature": "预览库存内物品", "openConfigGui": "openConfigGui打开配置界面", @@ -174,14 +174,14 @@ "Allows adding custom flat world presets to the list.\nThe presets are defined in Lists -> flatWorldPresets": "允许在列表中添加自定义的世界预设,在列表中的“flatWorldPresets世界预设”当中修改", "tweakElytraCamera": "tweakElytraCamera鞘翅相机", "Allows locking the real player rotations while holding the 'elytraCamera' activation key.\nThe controls will then only affect the separate 'camera rotations' for the rendering/camera.\nMeant for things like looking down/around while elytra flying nice and straight.": "按下鞘翅相机的快捷键可以锁定玩家运动方向\n然而这只会影响渲染相机单独的镜头调整\n这也就意味着玩家在使用鞘翅飞行时,可以四处观赏风景。\nps:当然,你可能感受到动能", - "tweakEmptyShulkerBoxesStack": "tweakEmpty调整潜影盒堆叠", + "tweakEmptyShulkerBoxesStack": "tweakEmpty调整傻瓜盒子堆叠", "Enables empty Shulker Boxes stacking up to 64.\nNOTE: They will also stack inside inventories!\nOn servers this will cause desyncs/glitches\nunless the server has a mod that does the same.\nIn single player this changes shulker box based system behaviour.": "使空潜影箱堆叠多达64。注意:他们也会堆叠在库存里面!这将导致服务器故障,\n除非服务器有一个mod与其兼容。在单人游戏中,这改变了潜影箱的属性。", - "tweakEmptyShulkerBoxesStackOnGround": "tweakEmpty调整潜影盒掉落堆叠", + "tweakEmptyShulkerBoxesStackOnGround": "tweakEmpty调整傻瓜盒子掉落堆叠", "Enables empty Shulker Boxes stacking up to 64\nwhen as items on the ground": "使掉落的空潜影箱最多的堆叠数达到64个", "tweakExplosionReducedParticles": "tweakExplosion爆炸粒子调节", "If enabled, then all explosion particles will use the\nEXPLOSION_NORMAL particle instead of possibly\nthe EXPLOSION_LARGE or EXPLOSION_HUGE particles": "启用后,所有的爆炸粒子将使用普通的爆炸粒子,而不会产生大型的爆炸粒子\n§6打开这个选项让你的电脑多活几年——ZMDF。§r", "tweakF3Cursor": "tweakF3Cursor采用F3光标", - "Enables always rendering the F3 screen cursor": "启用后屏幕的光标为F3开启后的样式", + "Enables always rendering the F3 screen cursor": "启用后屏幕的光标为F3打开后的样式", "tweakFakeSneaking": "tweakFakeSneaking伪潜行", "Enables \"fake sneaking\" ie. prevents you from falling from edges\nwithout slowing down the movement speed": "启用伪潜行后,你将不会从边缘落下且不会降低速度", "tweakFastBlockPlacement": "tweakFastBlockPlacement调整快速放置", @@ -199,7 +199,7 @@ "tweakFreeCamera": "tweakFreeCamera灵魂出窍", "Enables a free camera mode, similar to spectator mode,\nbut where the player will remain in place where\nyou first activate the free camera mode": "启用自由相机模式将类似于旁观者模式,但是玩家将停留于激活自由相机模式的地方", "tweakFreeCameraMotion": "tweakFreeCameraMotion灵魂/身体操作切换", - "When the Free Camera mode is enabled, if this feature is also enabled,\nthe movement inputs will affect the camera entity instead of the actual player.\nThis option is provided so that it's also possible to control\nthe actual player while in Free Camera mode, by disabling this option.\nNormally, if you just want to control the camera entity while in Free camera mode,\nthen just set the same hotkey for both features.": "当开启自由相机模式时,如果该功能同时启用,移动将仅影响相机视角。\n但是提供该选项的目的是为了禁用该选项后可以操作玩家,\n当然如果你为了省事只想控制自由相机模式下的移动,\n那你只需要把这两个键的快捷键设置的一样就好。", + "When the Free Camera mode is enabled, if this feature is also enabled,\nthe movement inputs will affect the camera entity instead of the actual player.\nThis option is provided so that it's also possible to control\nthe actual player while in Free Camera mode, by disabling this option.\nNormally, if you just want to control the camera entity while in Free camera mode,\nthen just set the same hotkey for both features.": "当打开自由相机模式时,如果该功能同时启用,移动将仅影响相机视角。\n但是提供该选项的目的是为了禁用该选项后可以操作玩家,\n当然如果你为了省事只想控制自由相机模式下的移动,\n那你只需要把这两个键的快捷键设置的一样就好。", "tweakGammaOverride": "tweakGammaOverride调节伽马值", "Overrides the video settings gamma value with\nthe one set in the Generic configs": "在通用设置当中配置其数值以覆盖视频设置当中的伽马值\n(gamma也叫灰度系数,是亮度和对比度的辅助功能。)", "tweakHandRestock": "tweakHandRestock自动补充", @@ -208,20 +208,20 @@ "Emulates holding down the attack button": "模拟按住攻击按钮(就是长按左键)", "tweakHoldUse": "tweakHoldUse按下使用键", "Emulates holding down the use button": "模拟按住使用按钮(就是长按右键)", - "tweakHotbarScroll": "tweakHotbarScroll物品栏滚动", - "Enables the hotbar swapping via scrolling feature": "可以通过滚动功能调节物品栏", - "tweakHotbarSlotCycle": "tweakHotbarSlotCycle物品栏循环", - "Enables cycling the selected hotbar slot after each placed\nblock, up to the set max slot number.\nTo quickly adjust the value, scroll while\nholding down the tweak toggle keybind.": "在放置方块后循环选中物品栏,直到设置的最大栏位\n想快速调整,按住调整键滚动滚轮", - "tweakHotbarSlotRandomizer": "tweakHotbarSlotRandomizer物品栏随机", - "Enables randomizing the selected hotbar slot after each placed\nblock, up to the set max slot number.\nTo quickly adjust the value, scroll while\nholding down the tweak toggle keybind.": "在放置方块后随机选中物品栏,直到设置的最大栏位\n想快速调整,按住调整键滚动滚轮", - "tweakHotbarSwap": "tweakHotbarSwap切换物品栏", - "Enables the hotbar swapping via hotkeys feature": "通过快捷键切换物品栏", + "tweakHotbarScroll": "tweakHotbarScroll库存滚动", + "Enables the hotbar swapping via scrolling feature": "可以通过滚动功能调节库存", + "tweakHotbarSlotCycle": "tweakHotbarSlotCycle库存循环", + "Enables cycling the selected hotbar slot after each placed\nblock, up to the set max slot number.\nTo quickly adjust the value, scroll while\nholding down the tweak toggle keybind.": "在放置方块后循环选中库存,直到设置的最大栏位\n想快速调整,按住调整键滚动滚轮", + "tweakHotbarSlotRandomizer": "tweakHotbarSlotRandomizer库存随机", + "Enables randomizing the selected hotbar slot after each placed\nblock, up to the set max slot number.\nTo quickly adjust the value, scroll while\nholding down the tweak toggle keybind.": "在放置方块后随机选中库存,直到设置的最大栏位\n想快速调整,按住调整键滚动滚轮", + "tweakHotbarSwap": "tweakHotbarSwap切换库存", + "Enables the hotbar swapping via hotkeys feature": "通过快捷键切换库存", "tweakInventoryPreview": "tweakInventoryPreview库存预览", "Enables an inventory preview while having the cursor over\na block or an entity with an inventory and holding down\nthe configured hotkey.": "当光标停留在带有库存的块上并按下配置后的快捷键时,启动库存预览", "tweakItemUnstackingProtection": "tweakItemUnstackingProtection物品拆组保护", - "If enabled, then items configured in Lists -> unstackingItems\nwon't be allowed to spill out when using.\nThis is meant for example to prevent throwing buckets\ninto lava when filling them.": "如果启用,在列表中配置“unstackingItems非叠加”选项,物品在将会溢出时启用,\n比如,这是为了防止在获取岩浆时,多余岩浆桶被丢出。", - "tweakLavaVisibility": "tweakLavaVisibility岩浆可视", - "If enabled and the player has a Respiration helmet and/or\nWather Breathing active, the lava fog is greatly reduced.": "如果启用了,玩家将获得岩浆中的可视buff,\n熔岩动画将大大减少(§6意思你在岩浆里不是个瞎子了:ZMDF说道§r)", + "If enabled, then items configured in Lists -> unstackingItems\nwon't be allowed to spill out when using.\nThis is meant for example to prevent throwing buckets\ninto lava when filling them.": "如果启用,在列表中配置“unstackingItems非叠加”选项,物品在将会溢出时启用,\n比如,这是为了防止在获取熔岩时,多余熔岩桶被丢出。", + "tweakLavaVisibility": "tweakLavaVisibility熔岩可视", + "If enabled and the player has a Respiration helmet and/or\nWather Breathing active, the lava fog is greatly reduced.": "如果启用了,玩家将获得熔岩中的可视buff,\n熔岩动画将大大减少(§6意思你在熔岩里不是个瞎子了:ZMDF说道§r)", "tweakMapPreview": "tweakMapPreview地图预览", "If enabled, then holding shift over maps in an inventory\nwill render a preview of the map": "如果启用,在手持未使用的地图按下shift将会获得地图预览。", "tweakMovementKeysLast": "tweakMovementKeysLast按键冲突解决", @@ -246,15 +246,15 @@ "Restricts block placement so that you can only\nplace blocks against the same block type\nyou are holding in your hand": "限制方块的位置,您只能放置您手中持有的相同的方块类型", "tweakPlayerInventoryPeek": "tweakPlayer玩家库存预览", "Enables a player inventory peek/preview, while holding the\nconfigured hotkey key for it.": "允许玩家使用快捷键预览库存", - "tweakPotionWarning": "tweakPotionWarning药水告警", - "Prints a warning message to the hotbar when\nnon-ambient potion effects are about to run out": "当非环境的buff即将消失时,将弹出药水的告警信息。", + "tweakPotionWarning": "tweakPotionWarning溶液告警", + "Prints a warning message to the hotbar when\nnon-ambient potion effects are about to run out": "当非环境的buff即将消失时,将弹出溶液的告警信息。", "tweakPrintDeathCoordinates": "tweakPrint发送死亡坐标", "Enables printing the player's coordinates to chat on death.\nThis feature is originally from usefulmod by nessie.": "允许玩家发送死亡坐标,\n这个功能最初来源于nessie的usefulmod", "tweakPickBeforePlace": "tweakPickBeforePlace轻松放置", "If enabled, then before each block placement, the same block\nis switched to hand that you are placing against": "如果启用该功能,那么在每个块放置之前,相同的方块将切换到玩家的手中", "tweakPlayerListAlwaysVisible": "tweakPlayerList玩家列表常亮", "If enabled, then the player list is always rendered without\nhaving to hold down the key (tab by default)": "如果启用,那么玩家列表将变为常亮状态而不需要按键(默认为TAB)", - "tweakRemoveOwnPotionEffects": "tweakRemove移除药水动画", + "tweakRemoveOwnPotionEffects": "tweakRemove移除溶液动画", "Removes the potion effect particles from the\nplayer itself in first person mode": "在第一人称模式中移除药剂的buff粒子", "tweakRenderInvisibleEntities": "tweakRender不可见实体渲染", "When enabled, invisible entities are rendered like\nthey would be in spectator mode.": "当启用时,不可见的实体会像在旁观者模式中一样呈现。", @@ -262,24 +262,24 @@ "Enables limiting the number of certain types of entities\nto render per frame. Currently XP Orbs and Item entities\nare supported, see Generic configs for the limits.": "允许限制每帧渲染的特定类型实体的数量。\n目前支持经验球和实体,请参阅通用配置的制约条件。", "tweakRepairMode": "tweakRepairMode修复模式", "If enabled, then fully repaired items held in hand will\nbe swapped to damaged items that have Mending on them.": "如果启用此功能,则手中已完全修复的物品将被替换为未修复的已损坏物品。", - "tweakShulkerBoxDisplay": "tweakShulkerBoxDisplay潜影盒存储预览", - "Enables the Shulker Box contents display when hovering\nover them in an inventory and holding shift": "在光标悬停于潜影盒上时,按下shift将可以预览潜影盒中的内容。", - "tweakSignCopy": "tweakSignCopy告示牌复制", - "When enabled, placed signs will use the text from\nthe previously placed sign.\nCan be combined with tweakNoSignGui to quickly place copies\nof a sign, by enabling that tweak after making the first sign.": "启用时,放置告示牌将使用之前告示牌的文本,该功能可以与无界面告示牌结合,\n通过制作第一个告示牌后启用该功能快速放置告示牌副本", + "tweakShulkerBoxDisplay": "tweakShulkerBoxDisplay傻瓜盒子存储预览", + "Enables the Shulker Box contents display when hovering\nover them in an inventory and holding shift": "在光标悬停于傻瓜盒子上时,按下shift将可以预览傻瓜盒子中的内容。", + "tweakSignCopy": "tweakSignCopy搞事牌复制", + "When enabled, placed signs will use the text from\nthe previously placed sign.\nCan be combined with tweakNoSignGui to quickly place copies\nof a sign, by enabling that tweak after making the first sign.": "启用时,放置搞事牌将使用之前搞事牌的文本,该功能可以与无界面搞事牌结合,\n通过制作第一个搞事牌后启用该功能快速放置搞事牌副本", "tweakSnapAim": "tweakSnapAim快速瞄准", "Enabled a snap aim tweak, to make the player face to pre-set exact yaw rotations": "启用快速瞄准,玩家的视角将移至预先设置的角度上", "tweakSnapAimLock": "tweakSnapAimLock视角锁定", "Enables a snap aim lock, locking the yaw and/or pitch rotations\nto the currently snapped value": "启用视角锁定,将玩家的视角锁定到当前视角位置上", "tweakSpectatorTeleport": "tweakSpectatorTeleport旁观者传送", "Allows spectators to teleport to other spectators.\nThis is originally from usefulmod by nessie.": "允许旁观者视角传送到其他旁观者视角的位置上,这来源于nessie的usefulmod中", - "tweakStructureBlockLimit": "tweakStructure结构方块限制调整", - "Allows overriding the structure block limit.\nThe new limit is set in Generic -> structureBlockMaxSize": "允许覆盖结构块的限制。新的限制将为通用形式的选项 “structureBlockMaxSize结构方块最大尺寸”", + "tweakStructureBlockLimit": "tweakStructure剽窃方块限制调整", + "Allows overriding the structure block limit.\nThe new limit is set in Generic -> structureBlockMaxSize": "允许覆盖结构块的限制。新的限制将为通用形式的选项 “structureBlockMaxSize剽窃方块最大尺寸”", "tweakSwapAlmostBrokenTools": "tweakSwapAlmost工具防坏", "If enabled, then any damageable items held in the hand that\nare about to break will be swapped to fresh ones": "如果启用该功能,那么手中任何即将损坏的物品将被替换为新的物品", "tweakTabCompleteCoordinate": "tweakTabComplete坐标补全", - "If enabled, then tab-completing coordinates while not\nlooking at a block, will use the player's position\ninstead of adding the ~ character.": "开启时,如果在不查看方块坐标时使用TAB补全坐标,\n那么将使用玩家的位置而不是填充~", + "If enabled, then tab-completing coordinates while not\nlooking at a block, will use the player's position\ninstead of adding the ~ character.": "打开时,如果在不查看方块坐标时使用TAB补全坐标,\n那么将使用玩家的位置而不是填充~", "tweakToolSwitch": "tweakToolSwitch工具选择", - "Enables automatically switching to an effective tool for the targeted block": "开启时,将自动切换到对当前采集块有效的工具", + "Enables automatically switching to an effective tool for the targeted block": "打开时,将自动切换到对当前采集块有效的工具", "tweakYMirror": "tweakYMirror镜像放置", "Mirrors the targeted y-position within the block bounds.\nThis is basically for placing slabs or stairs\nin the opposite top/bottom state from normal,\nif you have to place them against another slab for example.": "放置镜像区域范围内的目标y位置。\n这主要是为了把楼板或楼梯放在与正常相反的上下位置,\n例如你必须把它们放在另一个方块上。", "tweakZoom": "tweakZoom调整缩放", @@ -362,25 +362,25 @@ "flySpeedPreset4": "flySpeed飞行速度预设4", "The fly speed for preset 4": "对于飞行速度4的预设值", "freeCameraMotionToggle": "freeCamera灵魂出窍运动切换", - "If enabled, then toggling on/off the Free Camera mode\nwill also automatically toggle on/off the free camera motion feature": "当开启此功能时,\n自由相机的激活与取消将自动关联至自由相机运动的激活与取消。", + "If enabled, then toggling on/off the Free Camera mode\nwill also automatically toggle on/off the free camera motion feature": "当打开此功能时,\n自由相机的激活与取消将自动关联至自由相机运动的激活与取消。", "gammaOverrideValue": "gammaOverride伽马值设定", "The gamma value to use when the override option is enabled": "启用覆盖系统伽马值时所需要的伽马值", "handRestockPre": "handRestockPre自动补货", "If enabled, then hand restocking happens\nbefore the stack runs out": "在手上的物品耗尽后,补充新的物品。", - "hotbarSlotCycleMax": "hotbarSlot物品栏循环最大值", - "This is the last hotbar slot to use/cycle through\nif the hotbar slot cycle tweak is enabled.\nBasically the cycle will jump back to the first slot\nwhen going over the maximum slot number set here.": "这是循环通过的最后一个栏位,如果物品栏启用周期循环,\n当超过设定的最大值时,会返回第一个栏位", - "hotbarSlotRandomizerMax": "hotbarSlot物品栏随机最大值", - "This is the last hotbar slot to use if the hotbar slot randomizer\ntweak is enabled. Basically the selected hotbar slot will be randomly\npicked from 1 to this maximum slot after an item use.": "这是随机到的最后一个栏位,如果物品栏启用随机循环,\n当超过设定的最大值时,会返回第一个栏位", - "hotbarSwapOverlayAlignment": "hotbarSwap物品栏交换对齐", - "The positioning of the hotbar swap overlay": "物品栏进行交换的位置", - "hotbarSwapOverlayOffsetX": "hotbarSwap物品栏交换偏移X", - "The horizontal offset of the hotbar swap overlay": "物品栏进行交换的水平偏移量", - "hotbarSwapOverlayOffsetY": "hotbarSwap物品栏交换偏移Y", - "The vertical offset of the hotbar swap overlay": "物品栏进行交换的垂直偏移量", + "hotbarSlotCycleMax": "hotbarSlot库存循环最大值", + "This is the last hotbar slot to use/cycle through\nif the hotbar slot cycle tweak is enabled.\nBasically the cycle will jump back to the first slot\nwhen going over the maximum slot number set here.": "这是循环通过的最后一个栏位,如果库存启用周期循环,\n当超过设定的最大值时,会返回第一个栏位", + "hotbarSlotRandomizerMax": "hotbarSlot库存随机最大值", + "This is the last hotbar slot to use if the hotbar slot randomizer\ntweak is enabled. Basically the selected hotbar slot will be randomly\npicked from 1 to this maximum slot after an item use.": "这是随机到的最后一个栏位,如果库存启用随机循环,\n当超过设定的最大值时,会返回第一个栏位", + "hotbarSwapOverlayAlignment": "hotbarSwap库存交换对齐", + "The positioning of the hotbar swap overlay": "库存进行交换的位置", + "hotbarSwapOverlayOffsetX": "hotbarSwap库存交换偏移X", + "The horizontal offset of the hotbar swap overlay": "库存进行交换的水平偏移量", + "hotbarSwapOverlayOffsetY": "hotbarSwap库存交换偏移Y", + "The vertical offset of the hotbar swap overlay": "库存进行交换的垂直偏移量", "itemSwapDurabilityThreshold": "itemSwap最低工具耐久阈值", "This is the durability threshold (in uses left)\nfor the low-durability item swap feature.\nNote that items with low total durability will go lower\nand be swapped at 5%% left.": "这是低耐久工具切换的阈值,当剩余约5%时会被交换", - "lavaVisibilityOptifineCompat": "lavaVisibility岩浆可见度", - "Use an alternative version of the Lava Visibility,\nwhich is Optifine compatible (but more hacky).\nImplementation credit to Nessie.": "作为岩浆可见性的另一个版本,这个与Optifine兼容", + "lavaVisibilityOptifineCompat": "lavaVisibility熔岩可见度", + "Use an alternative version of the Lava Visibility,\nwhich is Optifine compatible (but more hacky).\nImplementation credit to Nessie.": "作为熔岩可见性的另一个版本,这个与Optifine兼容", "mapPreviewSize": "mapPreviewSize地图预览大小", "The size of the rendered map previews": "渲染地图预览时的大小", "periodicAttackInterval": "periodicAttack自动攻击间隔", @@ -396,19 +396,19 @@ "placementRestrictionMode": "placement放置模式限制", "The Placement Restriction mode to use (hotkey-selectable)": "使用的放置模式限制(可使用热键调节)", "placementRestrictionTiedToFast": "placement放置模式限制切换", - "When enabled, the Placement Restriction mode will toggle\nits state of/off when you toggle the Fast Placement mode.": "启用后,当使用快速放置模式时,放置模式限制将切换为关闭状态", - "potionWarningBeneficialOnly": "potionWarning药水buff消失告警", - "Only warn about potion effects running out that are marked as \"beneficial\"": "只对于正向的药水buff进行消失告警", - "potionWarningThreshold": "potionWarning药水告警阈值", - "The remaining duration of potion effects (in ticks)\nafter which the warning will start showing": "药水buff时长在设定的剩余持续时间告警阈值内时\n对玩家进行告警提示", + "When enabled, the Placement Restriction mode will toggle\nits state of/off when you toggle the Fast Placement mode.": "启用后,当使用快速放置模式时,放置模式限制将切换为关掉状态", + "potionWarningBeneficialOnly": "potionWarning溶液buff消失告警", + "Only warn about potion effects running out that are marked as \"beneficial\"": "只对于正向的溶液buff进行消失告警", + "potionWarningThreshold": "potionWarning溶液告警阈值", + "The remaining duration of potion effects (in ticks)\nafter which the warning will start showing": "溶液buff时长在设定的剩余持续时间告警阈值内时\n对玩家进行告警提示", "renderLimitItem": "renderLimitItem实体渲染限制", "Maximum number of item entities rendered per frame.\nUse -1 for normal behaviour, ie. to disable this limit.": "每帧渲染实体的最大数量,使用-1表示正常行为,\n即是禁用此渲染限制。", "renderLimitXPOrb": "renderLimitXPOrb经验球渲染限制", "Maximum number of XP orb entities rendered per frame.\nUse -1 for normal behaviour, ie. to disable this limit.": "每帧渲染经验球的最大数量,使用-1表示正常行为,\n即是禁用此渲染限制。", - "shulkerDisplayBgColor": "shulkerDisplay潜影盒界面颜色", - "Enables tinting/coloring the Shulker Box display\nbackground texture with the dye color of the box": "使得潜影盒的GUI可以染色,显示与当前潜影盒颜色相同的主题色", - "shulkerDisplayRequireShift": "shulkerDisplay潜影盒预览", - "Whether or not holding shift is required for the Shulker Box preview": "潜影盒预览是否需要按住shift键", + "shulkerDisplayBgColor": "shulkerDisplay傻瓜盒子界面颜色", + "Enables tinting/coloring the Shulker Box display\nbackground texture with the dye color of the box": "使得傻瓜盒子的GUI可以染色,显示与当前傻瓜盒子颜色相同的主题色", + "shulkerDisplayRequireShift": "shulkerDisplay傻瓜盒子预览", + "Whether or not holding shift is required for the Shulker Box preview": "傻瓜盒子预览是否需要按住shift键", "slotSyncWorkaround": "slotSync同步方案", "This prevents the server from overriding the durability or\nstack size on items that are being used quickly for example\nwith the fast right click tweak.": "这可以防止服务器覆盖正在快速使用的项目,比如连点器。", "snapAimIndicator": "snapAimIndicator瞄准辅助", @@ -423,8 +423,8 @@ "The pitch angle step of the snap aim tweak": "瞄准辅助的翻转角度调整", "snapAimYawStep": "snapAimYawStep瞄准辅助转角", "The yaw angle step of the snap aim tweak": "瞄准辅助的旋转角度调整", - "structureBlockMaxSize": "structureBlock结构方块范围", - "The maximum dimensions for a Structure Block's saved area": "结构方块所能保存的最大范围", + "structureBlockMaxSize": "structureBlock剽窃方块范围", + "The maximum dimensions for a Structure Block's saved area": "剽窃方块所能保存的最大范围", "zoomFov": "zoomFov缩放视角", "The FOV value used for the zoom feature": "用于缩放功能的视野值", @@ -449,37 +449,36 @@ "disableInventoryEffectRendering": "disableInventoryEffect禁用GUI界面buff渲染", "Removes the potion effect rendering from the inventory GUIs": "移除在GUI界面当中的buff效果渲染", "disableItemSwitchRenderCooldown": "disableItemSwitch禁用装备动画", - "If true, then there won't be any cooldown/equip animation\nwhen switching the held item or using the item.": "当此功能开启,切换手持物品或使用物品时不会有动画", + "If true, then there won't be any cooldown/equip animation\nwhen switching the held item or using the item.": "当此功能打开,切换手持物品或使用物品时不会有动画", "disableMobSpawnerMobRendering": "disableMobSpawnerMob禁用怪物生成渲染", "Removes the entity rendering from mob spawners": "移除了怪物生成时的实体渲染", "disableNetherFog": "disableNetherFog禁用尼德兰迷雾", "Removes the fog in the Nether": "消除尼德兰的空气迷雾", - "disableObserver": "disableObserver禁用观察者", - "Disable Observers from triggering at all": "完全禁止观察者触发", + "disableObserver": "disableObserver禁用思辨者", + "Disable Observers from triggering at all": "完全禁止思辨者触发", "disableOffhandRendering": "disableOffhand禁用即时加载", "Disables the offhand item from getting rendered": "禁用当前项目的渲染", "disableParticles": "disableParticles禁用粒子", - "Disables all particles": "关闭所有粒子效果", - "disablePortalGuiClosing": "disablePortalGuiClosing禁用门户GUI关闭", + "Disables all particles": "关掉所有粒子效果", + "disablePortalGuiClosing": "disablePortalGuiClosing禁用门户GUI关掉", "If enabled, then you can still open GUIs while in a Nether Portal": "如果启用,那么当你处于地狱门当中,你仍然可以打开GUI", "disableRainEffects": "disableRainEffects禁用雨渲染", "Disables rain rendering and sounds": "使雨无法正常渲染与发声", "disableRenderDistanceFog": "disableRender禁用距离迷雾", "Disables the fog that increases around the render distance": "禁用在可视距离过近的情况下产生的迷雾", - "disableSignGui": "disableSignGui禁用告示牌GUI", - "Prevent the Sign edit GUI from opening": "防止告示板可以打开编辑的GUI界面", + "disableSignGui": "disableSignGui禁用搞事牌GUI", + "Prevent the Sign edit GUI from opening": "防止搞事牌可以打开编辑的GUI界面", "disableSlimeBlockSlowdown": "disableSlimeBlock禁用史莱姆块减速", "Removes the slowdown from walking on Slime Blocks.\n(This is originally from usefulmod by nessie.)": "消除了在史莱姆方块上移动的速度削弱", "disableTileEntityRendering": "disableTileEntity禁用瓷砖渲染", "Prevents all TileEntity renderers from rendering": "阻止所有的瓷砖实体渲染", "disableTileEntityTicking": "disableTileEntity禁用瓷砖计算", "Prevent all TileEntities from getting ticked": "防止所有的瓷砖实体被加入时间刻", - "disableVillagerTradeLocking": "disableVillager禁用村民交易锁定", - "Prevents villager trades from ever locking, by always incrementing\nthe max uses as well when the recipe uses is incremented": "防止村民交易永久锁定,通过增加最大使用及配方,\n这个过程是递增的", + "disableVillagerTradeLocking": "disableVillager禁用奸商交易锁定", + "Prevents villager trades from ever locking, by always incrementing\nthe max uses as well when the recipe uses is incremented": "防止奸商交易永久锁定,通过增加最大使用及配方,\n这个过程是递增的", "disableWallUnsprint": "disableWallUnsprint禁用触壁停滞", "Touching a wall doesn't drop you out from sprint mode": "奔跑时触碰墙壁不会让奔跑状态停止。", - "Advanced Keybind settings": "高级按键绑定设置", "Activate On:": "激活", "Allow empty keybind:": "允许绑定为空", @@ -491,4 +490,4 @@ "- Left click to configure": "-点击左键配置", "- Right click to reset to defaults": "-右键重置配置", "Advanced Keybind Settings for placementRestrictionModeline": "高级热键绑定设置的位置限制模式" -} \ No newline at end of file +} diff --git a/mods/vanilla_hammers.json b/mods/vanilla_hammers.json index 113fcdeff..ed6b02a3e 100644 --- a/mods/vanilla_hammers.json +++ b/mods/vanilla_hammers.json @@ -1,32 +1,32 @@ { - "item.vanilla-hammers.wooden_hammer": "木锤", - "item.vanilla-hammers.stone_hammer": "石锤", - "item.vanilla-hammers.iron_hammer": "铁锤", - "item.vanilla-hammers.golden_hammer": "金锤", - "item.vanilla-hammers.diamond_hammer": "钻石锤", - "item.vanilla-hammers.emerald_hammer": "绿宝石锤", - "item.vanilla-hammers.obsidian_hammer": "黑曜石锤", - "item.vanilla-hammers.lapis_hammer": "青金石锤", - "item.vanilla-hammers.quartz_hammer": "石英锤", - "item.vanilla-hammers.tater_hammer": "Lil 马铃薯锤", - "item.vanilla-hammers.fiery_hammer": "炽烈锤", - "item.vanilla-hammers.prismarine_hammer": "海晶锤", - "item.vanilla-hammers.slime_hammer": "史莱姆锤", - "item.vanilla-hammers.ender_hammer": "末影锤", + "item.vanilla-hammers.wooden_hammer": "木锤", + "item.vanilla-hammers.stone_hammer": "石锤", + "item.vanilla-hammers.iron_hammer": "老铁锤", + "item.vanilla-hammers.golden_hammer": "黄油锤", + "item.vanilla-hammers.diamond_hammer": "祖安石锤", + "item.vanilla-hammers.emerald_hammer": "原谅石锤", + "item.vanilla-hammers.obsidian_hammer": "黑曜石锤", + "item.vanilla-hammers.lapis_hammer": "蓝宝石锤", + "item.vanilla-hammers.quartz_hammer": "石英锤", + "item.vanilla-hammers.tater_hammer": "Lil 马铃薯锤", + "item.vanilla-hammers.fiery_hammer": "炽烈锤", + "item.vanilla-hammers.prismarine_hammer": "海磷锤", + "item.vanilla-hammers.slime_hammer": "粘液锤", + "item.vanilla-hammers.ender_hammer": "末影锤", - "item.vanilla-hammers.vibranium_hammer": "振金锤", - "item.vanilla-hammers.glowstone_hammer": "萤石锤", - "item.vanilla-hammers.nether_hammer": "尼德兰锤", - - "text.autoconfig.vanilla-hammers.option.fullBlockHitbox": "完整方块碰撞箱", - "text.autoconfig.vanilla-hammers.option.enableExtraMaterials": "额外的原版材质锤子", - "text.autoconfig.vanilla-hammers.option.enableTaterHammer": "马铃薯锤", - "text.autoconfig.vanilla-hammers.option.enableFull3x3": "完整 3x3 碰撞箱", - "text.autoconfig.vanilla-hammers.option.alwaysShowSingleBlockHitbox": "始终显示单个碰撞箱", - "text.autoconfig.vanilla-hammers.option.showSingleBlockWhenSneaking": "潜行时显示单个碰撞箱", - "text.autoconfig.vanilla-hammers.option.breakSingleBlockWhenSneaking": "潜行时只破坏单个方块", - "text.autoconfig.vanilla-hammers.category.default": "常规", - "text.autoconfig.vanilla-hammers.title": "原版锤子配置文件", - - "item.vanilla-hammers.dynagear_hammer": "%s 锤" + "item.vanilla-hammers.vibranium_hammer": "振金锤", + "item.vanilla-hammers.glowstone_hammer": "发光石锤", + "item.vanilla-hammers.nether_hammer": "尼德兰锤", + + "text.autoconfig.vanilla-hammers.option.fullBlockHitbox": "完整方块碰撞箱", + "text.autoconfig.vanilla-hammers.option.enableExtraMaterials": "额外的原版纹理锤子", + "text.autoconfig.vanilla-hammers.option.enableTaterHammer": "马铃薯锤", + "text.autoconfig.vanilla-hammers.option.enableFull3x3": "完整 3x3 碰撞箱", + "text.autoconfig.vanilla-hammers.option.alwaysShowSingleBlockHitbox": "始终显示单个碰撞箱", + "text.autoconfig.vanilla-hammers.option.showSingleBlockWhenSneaking": "潜行时显示单个碰撞箱", + "text.autoconfig.vanilla-hammers.option.breakSingleBlockWhenSneaking": "潜行时只破坏单个方块", + "text.autoconfig.vanilla-hammers.category.default": "常规", + "text.autoconfig.vanilla-hammers.title": "原版锤子配置文件", + + "item.vanilla-hammers.dynagear_hammer": "%s 锤" } diff --git a/mods/voxelmap.json b/mods/voxelmap.json index cd81b23b0..3324634cd 100644 --- a/mods/voxelmap.json +++ b/mods/voxelmap.json @@ -5,31 +5,31 @@ "minimap.ui.welcome4": "您还可以使用一堆功能和命令", "minimap.ui.welcome5a": "变大/变小", "minimap.ui.welcome5b": "选项", - "minimap.ui.welcome6": "切换到大地图.", + "minimap.ui.welcome6": "切换到大映射.", "minimap.ui.welcome7": "快速添加一个导航点.", "minimap.ui.welcome8": "隐藏此信息", "minimap.ui.zoomlevel": "缩放级别:", "minimap.ui.otheroptions": "其他选项", - - "options.minimap.title": "小地图选项", + + "options.minimap.title": "小映射选项", "options.minimap.showcoordinates": "坐标显示", - "options.minimap.hideminimap": "隐藏小地图", + "options.minimap.hideminimap": "隐藏小映射", "options.minimap.cavemode": "洞穴模式", "options.minimap.dynamiclighting": "动态光照", "options.minimap.terraindepth": "地形深度", - "options.minimap.squaremap": "方形地图", - "options.minimap.rotation": "方向旋转", + "options.minimap.squaremap": "方形映射", + "options.minimap.rotation": "方向旋转", "options.minimap.oldnorth": "日落北方", "options.minimap.ingamewaypoints": "导航点显示类型", "options.minimap.ingamewaypoints.beacons": "仅显示光柱", "options.minimap.ingamewaypoints.signs": "仅显示标记", "options.minimap.ingamewaypoints.both": "两者都显示", - "options.minimap.location": "地图位置", + "options.minimap.location": "映射位置", "options.minimap.location.topleft": "左上角", "options.minimap.location.topright": "右上角", "options.minimap.location.bottomright": "右下角", "options.minimap.location.bottomleft": "左下角", - "options.minimap.size": "地图尺寸", + "options.minimap.size": "映射尺寸", "options.minimap.size.small": "小", "options.minimap.size.medium": "中", "options.minimap.size.large": "大", @@ -67,7 +67,7 @@ "options.minimap.biomeoverlay.solid": "实心", "options.minimap.chunkgrid": "区块网格", "options.minimap.slimechunks": "史莱姆区块", - "options.minimap.worldseed": "地图种子", + "options.minimap.worldseed": "映射种子", "options.minimap.waypoints": "导航点...", "options.minimap.waypoints.title": "导航点选项", "options.minimap.waypoints.distance": "最远距离", @@ -76,26 +76,25 @@ "options.minimap.waypoints.deathpoints.mostrecent": "最近的", "options.minimap.waypoints.deathpoints.all": "全部", "options.minimap.waypoints.deathpoints.tooltip": "在下一次死亡时生效", - "options.minimap.waypoints.showwaypointnames": "显示名字在地图上", + "options.minimap.waypoints.showwaypointnames": "显示名字在映射上", "options.minimap.mobs.title": "显示或隐藏个别生物类型", "options.minimap.mobs.enable": "显示生物图标", "options.minimap.mobs.disable": "隐藏生物图标", "options.minimap.mobs.enabled": "生物显示已启用.", "options.minimap.mobs.disabled": "生物显示已禁用.", - - "controls.minimap.title": "小地图按键选项", + + "controls.minimap.title": "小映射按键选项", "controls.minimap.unbind1": "要解除一个按键的绑定,先选择它然后按下 'Esc'.", "controls.minimap.unbind2": "(除了菜单键 - 它要解除绑定可就用不了了)", "key.minimap.zoom": "缩放", - "key.minimap.togglefullscreen": "切换大地图", + "key.minimap.togglefullscreen": "切换大映射", "key.minimap.voxelmapmenu": "VoxelMap 菜单", "key.minimap.menu": "菜单", "key.minimap.waypointmenu": "导航点 菜单", "key.minimap.waypointhotkey": "导航点快捷键", "key.minimap.togglemobs": "切换显示生物", "key.minimap.toggleingamewaypoints": "切换显示导航点", - - + "minimap.waypoints.title": "导航点", "minimap.waypoints.teleportto": "传送到该导航点", "minimap.waypoints.highlight": "高亮", @@ -119,7 +118,7 @@ "minimap.waypoints.sortbycreated": "创建", "minimap.waypoints.sortbycolor": "颜色", "minimap.waypoints.sortbyicon": "图标", - + "minimap.waypointshare.title": "分享导航点", "minimap.waypointshare.titlecoordinate": "分享坐标", "minimap.waypointshare.sharemessage": "添加信息 (可选)", @@ -130,10 +129,10 @@ "minimap.waypointshare.all": "所有人", "minimap.waypointshare.tooltip1": "单击以高亮显示坐标,", "minimap.waypointshare.tooltip2": "或者单击 添加/编辑 导航点.", - - "options.minimap.worldmap": "世界地图...", + + "options.minimap.worldmap": "世界映射...", "worldmap.title": "VoxelMap", - "options.worldmap.title": "世界地图选项", + "options.worldmap.title": "世界映射选项", "options.worldmap.cachesettings": "缩放/缓存 设置", "options.worldmap.warning": "修改此选项后果自负", "options.worldmap.showwaypoints": "显示导航点", @@ -142,7 +141,7 @@ "options.worldmap.maxzoom": "最大缩放等级", "options.worldmap.cachesize": "区域缓存大小", "options.worldmap.multiworld": "多世界...", - + "worldmap.multiworld.title": "VoxelMap - 多世界选择", "worldmap.multiworld.select": "请选择你所在的世界?", "worldmap.multiworld.newname": "新名称", @@ -152,5 +151,5 @@ "worldmap.multiworld.foundworld1": "检测到新世界", "worldmap.multiworld.foundworld2": "如果检测不正确,请在多世界选项中重新选择.", "worldmap.multiworld.unknownsubworld": "不认得这个世界! 请在多世界选项中重新选择.", - "options.worldmap.multiworld.auto": "自动开启" -} \ No newline at end of file + "options.worldmap.multiworld.auto": "自动打开" +} diff --git a/modules/20w14inf/add.json b/modules/20w14inf/add.json deleted file mode 100644 index 9df71b23d..000000000 --- a/modules/20w14inf/add.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "block.minecraft.cursor": "光标", - "block.minecraft.zone": "剩菜", - "block.minecraft.neither_portal": "不界传送门", - "block.minecraft.netherite_stairs": "史上最炫楼梯", - "block.minecraft.book_box": "无限书盒", - "block.minecraft.ant": "一只兰顿蚂蚁", - "item.minecraft.footprint": "脚印", - "item.minecraft.fine_item": "一个极妙之物", - "stat.minecraft.change_dimension": "去过的的维度数", - "advancements.adventure.almost_there.title": "就快到了", - "advancements.adventure.almost_there.description": "你学会/advancement的用法了吗?", - "biome.minecraft.between": "之间", - "biome.minecraft.shapes": "形状", - "biome.minecraft.busy": "给那些没时间胡搞的玩家准备的生物群系" -} \ No newline at end of file diff --git a/modules/20w14inf/module_manifest.json b/modules/20w14inf/module_manifest.json deleted file mode 100644 index 550d6c06a..000000000 --- a/modules/20w14inf/module_manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "20w14inf", - "type": "resource", - "description": "提供对20w14inf快照的梗体中文有限支持", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file diff --git a/modules/Linus_Minecraft_Craps/add.json b/modules/Linus_Minecraft_Craps/add.json deleted file mode 100644 index fb84f78f0..000000000 --- a/modules/Linus_Minecraft_Craps/add.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "block.minecraft.dropper": "Linus Sebastian", - "container.dropper": "Linus Sebastian", - "stat.minecraft.inspect_dropper": "搜查Linus Sebastian次数" -} \ No newline at end of file diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/kebab.png b/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/kebab.png deleted file mode 100644 index 8e4ee622f..000000000 Binary files a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/kebab.png and /dev/null differ diff --git a/modules/LocusAzzurro/assets/minecraft/models/item/chicken_spawn_egg.json b/modules/LocusAzzurro/assets/minecraft/models/item/chicken_spawn_egg.json deleted file mode 100644 index 785c9e0f1..000000000 --- a/modules/LocusAzzurro/assets/minecraft/models/item/chicken_spawn_egg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "minecraft:item/locus_azzurro_spawn_egg" - } -} \ No newline at end of file diff --git a/modules/LocusAzzurro/module_manifest.json b/modules/LocusAzzurro/module_manifest.json deleted file mode 100644 index c6865c99a..000000000 --- a/modules/LocusAzzurro/module_manifest.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "locusazzurro", - "type": "resource", - "description": "鸡,蓝色,聪明,会建筑", - "author": [ - "Dianliang233", - "locusazzurro", - "最亮的信标" - ], - "classifier": [ - "modified_language", - "modified_resource" - ] -} \ No newline at end of file diff --git a/modules/a_letter/assets/minecraft/texts/end.txt b/modules/a_letter/assets/minecraft/texts/end.txt index b124e9bcf..a8da93223 100644 --- a/modules/a_letter/assets/minecraft/texts/end.txt +++ b/modules/a_letter/assets/minecraft/texts/end.txt @@ -86,7 +86,7 @@ DrLee_lihr§r: 梗体中文真的很好用,不仅...(被拖走 §9LakeJason§r: 像图像品质的提示文字,就是§b星云子§r提议的。 -§5§lGu_ZT(古镇天)§r:感觉自己除了水几个模块外没多大作用,一段时间不来看甚至差点写不来了... +§5§lGugle(古镇天)§r:感觉自己除了水几个模块外没多大作用,一段时间不来看甚至差点写不来了... §5IcyPhantom§r:这边是IcyPhantom,某幻翼。这玩意怎么说呢……一开始只是乐着玩的,但最后搞大了,甚至发到了贵坛。 diff --git a/modules/a_letter/module_manifest.json b/modules/a_letter/module_manifest.json index 506f83f5a..ab736fa8b 100644 --- a/modules/a_letter/module_manifest.json +++ b/modules/a_letter/module_manifest.json @@ -2,13 +2,6 @@ "name": "a_letter", "type": "resource", "description": "一封信,也许打完龙会出现", - "author": [ - "梗体中文内容组" - ], - "incompatible_with": [ - "a_piece_of_seriousness" - ], - "classifier": [ - "modified_resource" - ] + "author": ["梗体中文内容组"], + "incompatible_with": ["a_piece_of_seriousness"] } diff --git a/modules/a_piece_of_seriousness/module_manifest.json b/modules/a_piece_of_seriousness/module_manifest.json index 4c9bcbf6d..84616dc9d 100644 --- a/modules/a_piece_of_seriousness/module_manifest.json +++ b/modules/a_piece_of_seriousness/module_manifest.json @@ -2,13 +2,6 @@ "name": "a_piece_of_seriousness", "type": "resource", "description": "一份取代终末之诗的文章。", - "author": [ - "siiftun1857" - ], - "incompatible_with": [ - "a_letter" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["siiftun1857"], + "incompatible_with": ["a_letter"] +} diff --git a/modules/air_pods/assets/minecraft/textures/item/iron_boots.png b/modules/air_pods/assets/minecraft/textures/item/iron_boots.png new file mode 100644 index 000000000..989b9a6b6 Binary files /dev/null and b/modules/air_pods/assets/minecraft/textures/item/iron_boots.png differ diff --git a/modules/air_pods/module_manifest.json b/modules/air_pods/module_manifest.json new file mode 100644 index 000000000..a201f97e1 --- /dev/null +++ b/modules/air_pods/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "air_pods", + "type": "resource", + "description": "Wow,四个铁锭儿就能换到介么好的耳机", + "author": ["Zh9c418"] +} \ No newline at end of file diff --git a/modules/first_anniversary/assets/mcwzhmeme/textures/block/one.png b/modules/anniversary/assets/mcwzhmeme/textures/block/two.png similarity index 100% rename from modules/first_anniversary/assets/mcwzhmeme/textures/block/one.png rename to modules/anniversary/assets/mcwzhmeme/textures/block/two.png diff --git a/modules/anniversary/assets/minecraft/models/block/cake.json b/modules/anniversary/assets/minecraft/models/block/cake.json new file mode 100644 index 000000000..cad667319 --- /dev/null +++ b/modules/anniversary/assets/minecraft/models/block/cake.json @@ -0,0 +1,123 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "two": "mcwzhmeme:block/two", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side" + }, + "elements": [ + { + "from": [1, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [1, 8, 15, 16], "texture": "#side" }, + "east": { "uv": [1, 8, 15, 16], "texture": "#side" }, + "south": { "uv": [1, 8, 15, 16], "texture": "#side" }, + "west": { "uv": [1, 8, 15, 16], "texture": "#side" }, + "up": { "uv": [1, 1, 15, 15], "texture": "#top" }, + "down": { + "uv": [1, 1, 15, 15], + "texture": "#bottom", + "cullface": "down" + } + } + }, + { + "from": [5.5, 9, 7.5], + "to": [10.5, 10, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 10.5, 8] }, + "faces": { + "north": { "uv": [0, 0, 4, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 4, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 4, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 4, 1], "texture": "#two" } + } + }, + { + "from": [5.5, 10, 7.5], + "to": [6.5, 11, 8.5], + "faces": { + "north": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 1, 1], "texture": "#two" } + } + }, + { + "from": [6.5, 11, 7.5], + "to": [7.5, 12, 8.5], + "faces": { + "north": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 1, 1], "texture": "#two" } + } + }, + { + "from": [5.5, 14, 7.5], + "to": [6.5, 15, 8.5], + "faces": { + "north": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 1, 1], "texture": "#two" } + } + }, + { + "from": [7.5, 12, 7.5], + "to": [9.5, 13, 8.5], + "faces": { + "north": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 1, 1], "texture": "#two" } + } + }, + { + "from": [9.5, 13, 7.5], + "to": [10.5, 15, 8.5], + "faces": { + "north": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 1, 1], "texture": "#two" } + } + }, + { + "from": [6.5, 15, 7.5], + "to": [9.5, 16, 8.5], + "faces": { + "north": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "east": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "south": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "west": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "up": { "uv": [0, 0, 1, 1], "texture": "#two" }, + "down": { "uv": [0, 0, 1, 1], "texture": "#two" } + } + } + ], + "display": {}, + "groups": [ + 0, + { + "name": "two", + "origin": [8, 8, 8], + "color": 0, + "children": [1, 2, 3, 4, 5, 6, 7] + } + ] +} diff --git a/modules/anniversary/module_manifest.json b/modules/anniversary/module_manifest.json new file mode 100644 index 000000000..15a0824fc --- /dev/null +++ b/modules/anniversary/module_manifest.json @@ -0,0 +1,7 @@ +{ + "name": "anniversary", + "type": "resource", + "description": "我们两周年啦!", + "author": ["Lakejason0", "Dianliang233"], + "incompatible_with": ["reverse_cake_model"] +} diff --git a/modules/annoying_sounds/assets/minecraft/sounds.json b/modules/annoying_sounds/assets/minecraft/sounds.json index 579117aa8..31310b81b 100644 --- a/modules/annoying_sounds/assets/minecraft/sounds.json +++ b/modules/annoying_sounds/assets/minecraft/sounds.json @@ -20,6 +20,16 @@ "name": "ding", "weight": 1000 }, + { + "name": "ghost", + "weight": 1000, + "volume": 1 + }, + { + "name": "yee", + "weight": 750, + "volume": 1 + }, { "name": "random/anvil_land", "weight": 1000 diff --git a/modules/annoying_sounds/assets/minecraft/sounds/ghost.ogg b/modules/annoying_sounds/assets/minecraft/sounds/ghost.ogg new file mode 100644 index 000000000..416850d4b Binary files /dev/null and b/modules/annoying_sounds/assets/minecraft/sounds/ghost.ogg differ diff --git a/modules/annoying_sounds/assets/minecraft/sounds/yee.ogg b/modules/annoying_sounds/assets/minecraft/sounds/yee.ogg new file mode 100644 index 000000000..dfea26790 Binary files /dev/null and b/modules/annoying_sounds/assets/minecraft/sounds/yee.ogg differ diff --git a/modules/annoying_sounds/module_manifest.json b/modules/annoying_sounds/module_manifest.json index cf2b619eb..6b59dbbbc 100644 --- a/modules/annoying_sounds/module_manifest.json +++ b/modules/annoying_sounds/module_manifest.json @@ -2,11 +2,5 @@ "name": "annoying_sounds", "type": "resource", "description": "烦人的音效", - "author": [ - "Lakejason0", - "Neubulae" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Lakejason0", "Neubulae"] +} diff --git a/modules/author_zombies/module_manifest.json b/modules/author_zombies/module_manifest.json index 979e852bc..b74b3f1ed 100644 --- a/modules/author_zombies/module_manifest.json +++ b/modules/author_zombies/module_manifest.json @@ -2,10 +2,5 @@ "name": "author_zombies", "type": "resource", "description": "让僵尸随机变成各个作者的亚子", - "author": [ - "Gu_ZT" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Gugle"] +} diff --git a/modules/bagify/assets/minecraft/textures/item/bone_meal.png b/modules/bagify/assets/minecraft/textures/item/bone_meal.png new file mode 100644 index 000000000..16a8699d7 Binary files /dev/null and b/modules/bagify/assets/minecraft/textures/item/bone_meal.png differ diff --git a/modules/bagify/assets/minecraft/textures/item/empty.png b/modules/bagify/assets/minecraft/textures/item/empty.png new file mode 100644 index 000000000..df0e6dc9d Binary files /dev/null and b/modules/bagify/assets/minecraft/textures/item/empty.png differ diff --git a/modules/bagify/assets/minecraft/textures/item/empty_slot_redstone_dust.png b/modules/bagify/assets/minecraft/textures/item/empty_slot_redstone_dust.png new file mode 100644 index 000000000..cf2bb2eca Binary files /dev/null and b/modules/bagify/assets/minecraft/textures/item/empty_slot_redstone_dust.png differ diff --git a/modules/bagify/assets/minecraft/textures/item/torchflower_seeds.png b/modules/bagify/assets/minecraft/textures/item/torchflower_seeds.png new file mode 100644 index 000000000..7304d8642 Binary files /dev/null and b/modules/bagify/assets/minecraft/textures/item/torchflower_seeds.png differ diff --git a/modules/bagify/module_manifest.json b/modules/bagify/module_manifest.json index 934befcea..39c40bafc 100644 --- a/modules/bagify/module_manifest.json +++ b/modules/bagify/module_manifest.json @@ -2,10 +2,5 @@ "name": "bagify", "type": "resource", "description": "帮你把所有粉末装到袋子里", - "author": [ - "SkyEye_FAST" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["SkyEye_FAST", "DoroWolf"] +} diff --git a/modules/baguette/assets/minecraft/models/item/bread.json b/modules/baguette/assets/minecraft/models/item/bread.json index e9bd891fe..0840dd424 100644 --- a/modules/baguette/assets/minecraft/models/item/bread.json +++ b/modules/baguette/assets/minecraft/models/item/bread.json @@ -1,7 +1,7 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "minecraft:item/bread" + "layer0": "minecraft:item/bread" }, "display": { "thirdperson_righthand": { @@ -14,4 +14,4 @@ "scale": [2.0, 2.0, 2.0] } } -} \ No newline at end of file +} diff --git a/modules/baguette/module_manifest.json b/modules/baguette/module_manifest.json index fb309a097..a7990aeca 100644 --- a/modules/baguette/module_manifest.json +++ b/modules/baguette/module_manifest.json @@ -2,11 +2,5 @@ "name": "baguette", "type": "resource", "description": "真·法国面包", - "author": [ - "DoroWolf", - "Lakejason0" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["DoroWolf", "Lakejason0"] +} diff --git a/modules/bb_mace/add.json b/modules/bb_mace/add.json new file mode 100644 index 000000000..d23903639 --- /dev/null +++ b/modules/bb_mace/add.json @@ -0,0 +1,6 @@ +{ + "item.minecraft.mace":"BB锤", + "subtitles.item.mace.smash_ground":"BB锤:八十", + "subtitles.item.mace.smash_air":"BB锤:八十" +} + diff --git a/modules/bb_mace/assets/minecraft/models/item/mace.json b/modules/bb_mace/assets/minecraft/models/item/mace.json new file mode 100644 index 000000000..3259d992a --- /dev/null +++ b/modules/bb_mace/assets/minecraft/models/item/mace.json @@ -0,0 +1,113 @@ +{ + "credit": "Made by Don_Trueno with Blockbench", + "texture_size": [64, 32], + "textures": { + "0": "item/bb_mace", + "particle": "item/bb_mace" + }, + "elements": [ + { + "from": [6.5, 16, 0], + "to": [6.5, 18, 3], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, 21]}, + "faces": { + "east": {"uv": [0.5, 1.5, 1.25, 2.5], "texture": "#0"}, + "west": {"uv": [1.25, 1.5, 0.5, 2.5], "texture": "#0"} + } + }, + { + "from": [-2.5, 18.1, 5], + "to": [6.5, 18.1, 11], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, 21]}, + "faces": { + "up": {"uv": [1.5, 12, 3.75, 9], "texture": "#0"}, + "down": {"uv": [1.5, 9, 3.75, 12], "texture": "#0"} + } + }, + { + "from": [9.5, 16, 0], + "to": [9.5, 18, 3], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, 21]}, + "faces": { + "east": {"uv": [2.25, 3, 1.5, 4], "texture": "#0"}, + "west": {"uv": [1.5, 3, 2.25, 4], "texture": "#0"} + } + }, + { + "from": [9.5, 18.1, 5], + "to": [18.5, 18.1, 11], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, 21]}, + "faces": { + "up": {"uv": [3.75, 12, 1.5, 9], "texture": "#0"}, + "down": {"uv": [3.75, 9, 1.5, 12], "texture": "#0"} + } + }, + { + "from": [8, 14, 13], + "to": [8, 15, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, 21]}, + "faces": { + "east": {"uv": [6.5, 4.5, 6.75, 5], "texture": "#0"}, + "west": {"uv": [6.75, 4.5, 7, 5], "texture": "#0"} + } + }, + { + "from": [4.5, 11, 3], + "to": [11.5, 18, 13], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, 21]}, + "faces": { + "north": {"uv": [2.5, 5, 4.25, 8.5], "texture": "#0"}, + "east": {"uv": [0, 5, 2.5, 8.5], "texture": "#0"}, + "south": {"uv": [6.75, 5, 8.5, 8.5], "texture": "#0"}, + "west": {"uv": [4.25, 5, 6.75, 8.5], "texture": "#0"}, + "up": {"uv": [4.25, 5, 2.5, 0], "texture": "#0"}, + "down": {"uv": [6, 0, 4.25, 5], "texture": "#0"} + } + }, + { + "from": [7, -1, 7], + "to": [9, 11, 9], + "faces": { + "north": {"uv": [9.5, 1.5, 10, 7.5], "texture": "#0"}, + "east": {"uv": [9, 1.5, 9.5, 7.5], "texture": "#0"}, + "south": {"uv": [10.5, 1.5, 11, 7.5], "texture": "#0"}, + "west": {"uv": [10, 1.5, 10.5, 7.5], "texture": "#0"}, + "up": {"uv": [10, 1.5, 9.5, 0.5], "texture": "#0"}, + "down": {"uv": [10.5, 0.5, 10, 1.5], "texture": "#0"} + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "scale": [0.8, 0.8, 0.8] + }, + "thirdperson_lefthand": { + "scale": [0.8, 0.8, 0.8] + }, + "firstperson_righthand": { + "rotation": [-30, 0, 0], + "translation": [5, 0, 0], + "scale": [0.8, 0.8, 0.8] + }, + "firstperson_lefthand": { + "rotation": [-30, 0, 0], + "translation": [5, 0, 0], + "scale": [0.8, 0.8, 0.8] + }, + "ground": { + "rotation": [0, -90, 0], + "translation": [0, 0, 3], + "scale": [0.8, 0.8, 0.8] + }, + "gui": { + "rotation": [0, -135, 0], + "translation": [0, -0.5, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "translation": [0, -7.9, 0], + "scale": [1.5, 1.5, 1.5] + } + } +} \ No newline at end of file diff --git a/modules/bb_mace/assets/minecraft/sounds.json b/modules/bb_mace/assets/minecraft/sounds.json new file mode 100644 index 000000000..44dd8a252 --- /dev/null +++ b/modules/bb_mace/assets/minecraft/sounds.json @@ -0,0 +1,16 @@ +{ + "item.mace.smash_air": { + "replace":true, + "sounds": [ + "item/mace/smash_air" + ], + "subtitle": "subtitles.item.mace.smash_air" + }, + "item.mace.smash_ground": { + "replace":true, + "sounds": [ + "item/mace/smash_ground" + ], + "subtitle": "subtitles.item.mace.smash_ground" + } +} \ No newline at end of file diff --git a/modules/bb_mace/assets/minecraft/sounds/item/mace/smash_air.ogg b/modules/bb_mace/assets/minecraft/sounds/item/mace/smash_air.ogg new file mode 100644 index 000000000..1c81127aa Binary files /dev/null and b/modules/bb_mace/assets/minecraft/sounds/item/mace/smash_air.ogg differ diff --git a/modules/bb_mace/assets/minecraft/sounds/item/mace/smash_ground.ogg b/modules/bb_mace/assets/minecraft/sounds/item/mace/smash_ground.ogg new file mode 100644 index 000000000..1c81127aa Binary files /dev/null and b/modules/bb_mace/assets/minecraft/sounds/item/mace/smash_ground.ogg differ diff --git a/modules/bb_mace/assets/minecraft/textures/item/bb_mace.png b/modules/bb_mace/assets/minecraft/textures/item/bb_mace.png new file mode 100644 index 000000000..6a309a53a Binary files /dev/null and b/modules/bb_mace/assets/minecraft/textures/item/bb_mace.png differ diff --git a/modules/bb_mace/module_manifest.json b/modules/bb_mace/module_manifest.json new file mode 100644 index 000000000..7c47cd284 --- /dev/null +++ b/modules/bb_mace/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "bb_mace", + "type": "resource", + "description": "锤蜂机。", + "author": ["Don_Trueno"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/beautiful_chicken/assets/minecraft/sounds/mob/chicken/hurt1.ogg b/modules/beautiful_chicken/assets/minecraft/sounds/mob/chicken/hurt1.ogg new file mode 100644 index 000000000..f55615f81 Binary files /dev/null and b/modules/beautiful_chicken/assets/minecraft/sounds/mob/chicken/hurt1.ogg differ diff --git a/modules/beautiful_chicken/assets/minecraft/sounds/mob/chicken/hurt2.ogg b/modules/beautiful_chicken/assets/minecraft/sounds/mob/chicken/hurt2.ogg new file mode 100644 index 000000000..f55615f81 Binary files /dev/null and b/modules/beautiful_chicken/assets/minecraft/sounds/mob/chicken/hurt2.ogg differ diff --git a/modules/beautiful_chicken/assets/minecraft/textures/entity/chicken.png b/modules/beautiful_chicken/assets/minecraft/textures/entity/chicken.png new file mode 100644 index 000000000..76b037f3e Binary files /dev/null and b/modules/beautiful_chicken/assets/minecraft/textures/entity/chicken.png differ diff --git a/modules/beautiful_chicken/assets/minecraft/textures/item/egg.png b/modules/beautiful_chicken/assets/minecraft/textures/item/egg.png new file mode 100644 index 000000000..f782887af Binary files /dev/null and b/modules/beautiful_chicken/assets/minecraft/textures/item/egg.png differ diff --git a/modules/beautiful_chicken/module_manifest.json b/modules/beautiful_chicken/module_manifest.json new file mode 100644 index 000000000..5180061de --- /dev/null +++ b/modules/beautiful_chicken/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "beautiful_chicken", + "type": "resource", + "description": "你干嘛~哎呦~", + "author": ["DoroWolf","Don_Trueno"] +} diff --git a/modules/bee_breeze/add.json b/modules/bee_breeze/add.json new file mode 100644 index 000000000..b6d20922f --- /dev/null +++ b/modules/bee_breeze/add.json @@ -0,0 +1,20 @@ +{ + "entity.minecraft.breeze": "蜂人", + "entity.minecraft.wind_charge": "蜂弹", + "entity.minecraft.breeze_wind_charge": "蜂弹", + "item.minecraft.wind_charge": "蜂弹", + "item.minecraft.breeze_spawn_egg": "蜂人刷怪蛋", + "subtitles.entity.breeze.charge": "蜂人:蓄力", + "subtitles.entity.breeze.death": "蜂人:啊我死了", + "subtitles.entity.breeze.deflect": "蜂人:反弹", + "subtitles.entity.breeze.hurt": "蜂人:哎呦", + "subtitles.entity.breeze.idle_air": "蜂人:飞行", + "subtitles.entity.breeze.idle_ground": "旋蜂人:呼啸", + "subtitles.entity.breeze.inhale": "蜂人:吸气", + "subtitles.entity.breeze.jump": "蜂人:跳跃", + "subtitles.entity.breeze.land": "蜂人:着陆", + "subtitles.entity.breeze.shoot": "蜂人:射击", + "subtitles.entity.breeze.slide": "蜂人:滑行", + "subtitles.entity.breeze.whirl": "蜂人:旋转" +} + diff --git a/modules/bee_breeze/assets/minecraft/textures/entity/breeze/breeze.png b/modules/bee_breeze/assets/minecraft/textures/entity/breeze/breeze.png new file mode 100644 index 000000000..2922b1dbe Binary files /dev/null and b/modules/bee_breeze/assets/minecraft/textures/entity/breeze/breeze.png differ diff --git a/modules/bee_breeze/assets/minecraft/textures/entity/projectiles/wind_charge.png b/modules/bee_breeze/assets/minecraft/textures/entity/projectiles/wind_charge.png new file mode 100644 index 000000000..2fa27a367 Binary files /dev/null and b/modules/bee_breeze/assets/minecraft/textures/entity/projectiles/wind_charge.png differ diff --git a/modules/bee_breeze/assets/minecraft/textures/item/bb_mace.png b/modules/bee_breeze/assets/minecraft/textures/item/bb_mace.png new file mode 100644 index 000000000..2752b39ca Binary files /dev/null and b/modules/bee_breeze/assets/minecraft/textures/item/bb_mace.png differ diff --git a/modules/bee_breeze/assets/minecraft/textures/item/breeze_rod.png b/modules/bee_breeze/assets/minecraft/textures/item/breeze_rod.png new file mode 100644 index 000000000..85caa3880 Binary files /dev/null and b/modules/bee_breeze/assets/minecraft/textures/item/breeze_rod.png differ diff --git a/modules/bee_breeze/assets/minecraft/textures/item/wind_charge.png b/modules/bee_breeze/assets/minecraft/textures/item/wind_charge.png new file mode 100644 index 000000000..854cdf213 Binary files /dev/null and b/modules/bee_breeze/assets/minecraft/textures/item/wind_charge.png differ diff --git a/modules/bee_breeze/module_manifest.json b/modules/bee_breeze/module_manifest.json new file mode 100644 index 000000000..828c2a32c --- /dev/null +++ b/modules/bee_breeze/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "bee_breeze", + "type": "resource", + "description": "旋风人也蜂了。", + "author": ["Don_Trueno"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/bee_pickaxe/module_manifest.json b/modules/bee_pickaxe/module_manifest.json index e4940833f..3ea7ea3a1 100644 --- a/modules/bee_pickaxe/module_manifest.json +++ b/modules/bee_pickaxe/module_manifest.json @@ -2,13 +2,5 @@ "name": "bee_pickaxe", "type": "resource", "description": "镐蜂了!", - "author": [ - "SkyEye_FAST" - ], - "incompatible_with": [ - "fake_multitool" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["SkyEye_FAST"] +} diff --git a/modules/bell_sound/module_manifest.json b/modules/bell_sound/module_manifest.json index de3ba8f00..2f3f476ac 100644 --- a/modules/bell_sound/module_manifest.json +++ b/modules/bell_sound/module_manifest.json @@ -2,10 +2,5 @@ "name": "bell_sound", "type": "resource", "description": "噔 噔 咚(钟声)", - "author": [ - "DoroWolf" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["DoroWolf"] +} diff --git a/modules/block_animation_reverse/module_manifest.json b/modules/block_animation_reverse/module_manifest.json index 2253e74c2..04a4261df 100644 --- a/modules/block_animation_reverse/module_manifest.json +++ b/modules/block_animation_reverse/module_manifest.json @@ -2,11 +2,5 @@ "name": "block_animation_reverse", "type": "resource", "description": "倒序播放方块纹理动画。", - "author": [ - "siiftun1857" - ], - "incompatible_with": [], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["siiftun1857"] +} diff --git a/modules/blue_basin/add.json b/modules/blue_basin/add.json new file mode 100644 index 000000000..14e350d47 --- /dev/null +++ b/modules/blue_basin/add.json @@ -0,0 +1,30 @@ +{ + "advancements.husbandry.axolotl_in_a_bucket.description": "让六角恐龙入住蓝的盆", + "advancements.husbandry.tadpole_in_a_bucket.description": "让初音未来入住蓝的盆", + "advancements.story.lava_bucket.description": "让蓝的盆红温", + "item.minecraft.axolotl_bucket": "蓝的盆:六角恐龙", + "item.minecraft.bucket":"蓝的盆", + "item.minecraft.cod_bucket": "蓝的盆:使命召唤®", + "item.minecraft.frog_spawn_egg": "初音未来扭蛋(真)", + "item.minecraft.lava_bucket": "蓝的盆:红温了", + "item.minecraft.milk_bucket": "奶的盆", + "item.minecraft.powder_snow_bucket": "凉的盆", + "item.minecraft.pufferfish_bucket": "蓝的盆:泡芙鱼", + "item.minecraft.salmon_bucket": "蓝的盆:鲑鱼", + "item.minecraft.tadpole_bucket": "蓝的盆:初音未来", + "item.minecraft.tadpole_spawn_egg": "初音未来扭蛋(伪)", + "item.minecraft.tropical_fish_bucket": "蓝的盆:小鱼君", + "item.minecraft.water_bucket": "蓝的盆:贴吧", + "subtitles.item.bucket.empty": "蓝的盆:盆了", + "subtitles.item.bucket.fill": "蓝的盆:舀了", + "subtitles.item.bucket.fill_axolotl": "六角恐龙:蓝的盆", + "subtitles.item.bucket.fill_fish": "鱼:蓝的盆", + "subtitles.item.bucket.fill_tadpole": "初音未来:蓝的盆", + "subtitles.block.frogspawn.hatch": "初音未来扭蛋:打开", + "subtitles.entity.tadpole.death": "初音未来:啊我死了", + "subtitles.entity.tadpole.flop": "初音未来:扑腾", + "subtitles.entity.tadpole.grow_up": "初音未来:我有双重人格", + "subtitles.entity.tadpole.hurt": "初音未来:疼!", + "subtitles.entity.wandering_trader.drink_milk": "流浪奸商:奶的盆,喝!" + +} diff --git a/modules/blue_basin/assets/minecraft/textures/item/axolotl_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/axolotl_bucket.png new file mode 100644 index 000000000..04e1c2f2c Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/axolotl_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/bucket.png b/modules/blue_basin/assets/minecraft/textures/item/bucket.png new file mode 100644 index 000000000..c88d3f7a5 Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/cod_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/cod_bucket.png new file mode 100644 index 000000000..33a3835be Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/cod_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/lava_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/lava_bucket.png new file mode 100644 index 000000000..d39f719cd Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/lava_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/milk_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/milk_bucket.png new file mode 100644 index 000000000..31614656c Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/milk_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/powder_snow_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/powder_snow_bucket.png new file mode 100644 index 000000000..b740d22d4 Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/powder_snow_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/pufferfish_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/pufferfish_bucket.png new file mode 100644 index 000000000..f1998a629 Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/pufferfish_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/salmon_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/salmon_bucket.png new file mode 100644 index 000000000..3c61ff92f Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/salmon_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/tadpole_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/tadpole_bucket.png new file mode 100644 index 000000000..7d79a9c1f Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/tadpole_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/tropical_fish_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/tropical_fish_bucket.png new file mode 100644 index 000000000..0571e154f Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/tropical_fish_bucket.png differ diff --git a/modules/blue_basin/assets/minecraft/textures/item/water_bucket.png b/modules/blue_basin/assets/minecraft/textures/item/water_bucket.png new file mode 100644 index 000000000..44d366483 Binary files /dev/null and b/modules/blue_basin/assets/minecraft/textures/item/water_bucket.png differ diff --git a/modules/blue_basin/module_manifest.json b/modules/blue_basin/module_manifest.json new file mode 100644 index 000000000..d77be6889 --- /dev/null +++ b/modules/blue_basin/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "blue_basin", + "type": "resource", + "description": "蓝的盆,,,", + "author": ["Don_Trueno"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/alex.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/alex.json deleted file mode 100644 index f24958b15..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/alex.json +++ /dev/null @@ -1,231 +0,0 @@ -{ - "credit": "Made with Blockbench by LakeJason", - "textures": { - "0": "block/smooth_stone", - "1": "entity/alex", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 9]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6, 7], - "to": [9, 8, 9], - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.375, 7.5], - "to": [9, 6.375, 8.5], - "faces": { - "north": {"uv": [5, 5, 7, 8], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 8], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9, 3.375, 7.5], - "to": [9.75, 6.375, 8.5], - "faces": { - "north": {"uv": [11, 5, 11.75, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [12.75, 5, 13.5, 8], "texture": "#1"}, - "west": {"uv": [11.75, 5, 12.75, 8], "texture": "#1"}, - "up": {"uv": [11.75, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [12.5, 4, 11.75, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [6.25, 3.375, 7.5], - "to": [7, 6.375, 8.5], - "faces": { - "north": {"uv": [9, 13, 9.75, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [10.75, 13, 11.5, 16], "texture": "#1"}, - "west": {"uv": [9.75, 13, 10.75, 16], "texture": "#1"}, - "up": {"uv": [9.75, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [10.5, 12, 9.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [7, 0.375, 7.5], - "to": [8, 3.375, 8.5], - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [8, 0.375, 7.5], - "to": [9, 3.375, 8.5], - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.875, 5.75, 6.875], - "to": [9.125, 8, 9.125], - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [7, 3.255, 7.3725], - "to": [9, 6.5075, 8.6225], - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [8.875, 3.25, 7.375], - "to": [9.875, 6.5, 8.625], - "faces": { - "north": {"uv": [10.75, 9, 11.5, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [12.75, 9, 13.5, 12], "texture": "#1"}, - "west": {"uv": [11.75, 9, 12.75, 12], "texture": "#1"}, - "up": {"uv": [11.75, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [12.5, 8, 11.75, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [6.125, 3.25, 7.375], - "to": [7.125, 6.5, 8.625], - "faces": { - "north": {"uv": [13, 13, 13.75, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [14.75, 13, 15.5, 16], "texture": "#1"}, - "west": {"uv": [13.75, 13, 14.75, 16], "texture": "#1"}, - "up": {"uv": [13.75, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [14.5, 12, 13.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.875, 0.25, 7.375], - "to": [9.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.875, 0.25, 7.375], - "to": [8.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 13, 1, 12], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 19.25, 0], - "scale": [1.6, 1.6, 1.6] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "alex", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/dianliang.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/dianliang.json deleted file mode 100644 index e4ef34a9a..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/dianliang.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/dianliang", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/gu_zt.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/gu_zt.json deleted file mode 100644 index 4303baca3..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/gu_zt.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/gu_zt", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/lake.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/lake.json deleted file mode 100644 index 535193137..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/lake.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/lakejason", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/littlec.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/littlec.json deleted file mode 100644 index 92692a9f5..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/littlec.json +++ /dev/null @@ -1,231 +0,0 @@ -{ - "credit": "Made with Blockbench by LakeJason", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/littlec", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 9]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6, 7], - "to": [9, 8, 9], - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.375, 7.5], - "to": [9, 6.375, 8.5], - "faces": { - "north": {"uv": [5, 5, 7, 8], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 8], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9, 3.375, 7.5], - "to": [9.75, 6.375, 8.5], - "faces": { - "north": {"uv": [11, 5, 11.75, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [12.75, 5, 13.5, 8], "texture": "#1"}, - "west": {"uv": [11.75, 5, 12.75, 8], "texture": "#1"}, - "up": {"uv": [11.75, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [12.5, 4, 11.75, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [6.25, 3.375, 7.5], - "to": [7, 6.375, 8.5], - "faces": { - "north": {"uv": [9, 13, 9.75, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [10.75, 13, 11.5, 16], "texture": "#1"}, - "west": {"uv": [9.75, 13, 10.75, 16], "texture": "#1"}, - "up": {"uv": [9.75, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [10.5, 12, 9.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [7, 0.375, 7.5], - "to": [8, 3.375, 8.5], - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [8, 0.375, 7.5], - "to": [9, 3.375, 8.5], - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.875, 5.75, 6.875], - "to": [9.125, 8, 9.125], - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [7, 3.255, 7.3725], - "to": [9, 6.5075, 8.6225], - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [8.875, 3.25, 7.375], - "to": [9.875, 6.5, 8.625], - "faces": { - "north": {"uv": [10.75, 9, 11.5, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [12.75, 9, 13.5, 12], "texture": "#1"}, - "west": {"uv": [11.75, 9, 12.75, 12], "texture": "#1"}, - "up": {"uv": [11.75, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [12.5, 8, 11.75, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [6.125, 3.25, 7.375], - "to": [7.125, 6.5, 8.625], - "faces": { - "north": {"uv": [13, 13, 13.75, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [14.75, 13, 15.5, 16], "texture": "#1"}, - "west": {"uv": [13.75, 13, 14.75, 16], "texture": "#1"}, - "up": {"uv": [13.75, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [14.5, 12, 13.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.875, 0.25, 7.375], - "to": [9.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.875, 0.25, 7.375], - "to": [8.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 13, 1, 12], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 19.25, 0], - "scale": [1.6, 1.6, 1.6] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "alex", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/lxazl5770.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/lxazl5770.json deleted file mode 100644 index c48cf2476..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/lxazl5770.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/lxazl5770", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/mysticnebula70.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/mysticnebula70.json deleted file mode 100644 index 0a94fef77..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/mysticnebula70.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "texture_size": [64, 64], - "textures": { - "0": "mcwzhmeme:entity/mysticnebula70", - "1": "block/smooth_stone", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "head_main", - "from": [7, 4, 0.5], - "to": [9.5, 6, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [1.25, 1.25, 2.5, 2.25], "texture": "#0"}, - "east": {"uv": [0, 1.25, 1.25, 2.25], "texture": "#0"}, - "south": {"uv": [3.75, 1.25, 5, 2.25], "texture": "#0"}, - "west": {"uv": [2.5, 1.25, 3.75, 2.25], "texture": "#0"}, - "up": {"uv": [1.25, 0, 2.5, 1.25], "texture": "#0"}, - "down": {"uv": [2.5, 0, 3.75, 1.25], "texture": "#0"} - } - }, - { - "name": "head_nose", - "from": [7.5, 4, 0], - "to": [9, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [0.5, 6.5, 1.25, 7], "texture": "#0"}, - "east": {"uv": [0, 6.5, 0.5, 7], "texture": "#0"}, - "west": {"uv": [1.25, 6.5, 1.75, 7], "texture": "#0"}, - "up": {"uv": [0.5, 6, 1.25, 6.5], "texture": "#0"}, - "down": {"uv": [1.25, 6, 2, 6.5], "texture": "#0"} - } - }, - { - "name": "head_ear_1", - "from": [8.75, 6, 1.5], - "to": [9.25, 6.5, 2.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [0.5, 3, 0.75, 3.25], "texture": "#0"}, - "east": {"uv": [0, 3, 0.5, 3.25], "texture": "#0"}, - "south": {"uv": [1.5, 3, 1.75, 3.25], "texture": "#0"}, - "west": {"uv": [1, 3, 1.5, 3.25], "texture": "#0"}, - "up": {"uv": [0.5, 2.5, 0.75, 3], "texture": "#0"}, - "down": {"uv": [0.75, 2.5, 1, 3], "texture": "#0"} - } - }, - { - "name": "head_ear_1", - "from": [7.25, 6, 1.5], - "to": [7.75, 6.5, 2.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [2, 3, 2.25, 3.25], "texture": "#0"}, - "east": {"uv": [1.5, 3, 2, 3.25], "texture": "#0"}, - "south": {"uv": [3, 3, 3.25, 3.25], "texture": "#0"}, - "west": {"uv": [2.5, 3, 3, 3.25], "texture": "#0"}, - "up": {"uv": [2, 2.5, 2.25, 3], "texture": "#0"}, - "down": {"uv": [2.25, 2.5, 2.5, 3], "texture": "#0"} - } - }, - { - "name": "body", - "from": [7.25, 2.5, 3], - "to": [9.25, 5.5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [6.5, 0, 7.5, 1.5], "texture": "#0"}, - "east": {"uv": [5, 1.5, 6.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 0, 8.5, 1.5], "texture": "#0"}, - "west": {"uv": [7.5, 1.5, 9, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 1.5, 10, 5.5], "texture": "#0"}, - "down": {"uv": [6.5, 1.5, 7.5, 5.5], "texture": "#0"} - } - }, - { - "name": "left", - "from": [7, 0.5, 4], - "to": [8, 5.5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "east": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "south": {"uv": [11.5, 0.5, 12, 3], "texture": "#0"}, - "west": {"uv": [11, 0.5, 11.5, 3], "texture": "#0"}, - "up": {"uv": [10.5, 0, 11, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [11, 0, 11.5, 0.5], "texture": "#0"} - } - }, - { - "name": "right", - "from": [8.5, 0.5, 4], - "to": [9.5, 5.5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "east": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "south": {"uv": [11.5, 0.5, 12, 3], "texture": "#0"}, - "west": {"uv": [11, 0.5, 11.5, 3], "texture": "#0"}, - "up": {"uv": [10.5, 0, 11, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [11, 0, 11.5, 0.5], "texture": "#0"} - } - }, - { - "name": "left", - "from": [7, 0.5, 9.5], - "to": [8, 3.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [2.5, 3.5, 3, 5], "texture": "#0"}, - "east": {"uv": [2, 3.75, 2.5, 5.25], "texture": "#0"}, - "south": {"uv": [3.5, 3.75, 4, 5.25], "texture": "#0"}, - "west": {"uv": [3, 3.75, 3.5, 5.25], "texture": "#0"}, - "up": {"uv": [2.5, 3.25, 3, 3.75], "texture": "#0"}, - "down": {"uv": [3, 3.25, 3.5, 3.75], "texture": "#0"} - } - }, - { - "name": "right", - "from": [8.5, 0.5, 9.5], - "to": [9.5, 3.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [2.5, 3.5, 3, 5], "texture": "#0"}, - "east": {"uv": [2, 3.75, 2.5, 5.25], "texture": "#0"}, - "south": {"uv": [3.5, 3.75, 4, 5.25], "texture": "#0"}, - "west": {"uv": [3, 3.75, 3.5, 5.25], "texture": "#0"}, - "up": {"uv": [2.5, 3.25, 3, 3.75], "texture": "#0"}, - "down": {"uv": [3, 3.25, 3.5, 3.75], "texture": "#0"} - } - }, - { - "name": "tail", - "from": [8, 4.88268, 10.92388], - "to": [8.5, 5.38268, 14.92388], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4.5, 10]}, - "faces": { - "north": {"uv": [0.25, 3.75, 0.5, 4], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 4, 0.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 3.75, 0.75, 4], "texture": "#0"}, - "west": {"uv": [0.5, 4, 0.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 4, 1, 6], "texture": "#0"}, - "down": {"uv": [0.25, 4, 0.5, 6], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "tail_end", - "from": [8, 2.61732, 14.92388], - "to": [8.5, 3.11732, 18.92388], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 3, 14]}, - "faces": { - "north": {"uv": [1.25, 3.75, 1.5, 4], "rotation": 180, "texture": "#0"}, - "east": {"uv": [1, 4, 1.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 3.75, 1.75, 4], "texture": "#0"}, - "west": {"uv": [1.5, 4, 1.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 4, 2, 6], "texture": "#0"}, - "down": {"uv": [1.25, 4, 1.5, 6], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "plate", - "from": [4, 0, 3.5], - "to": [12, 0.5, 11.5], - "faces": { - "north": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4, 2], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 4, 2], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [1, 0, 0], - "translation": [0, 3, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [1, 0, 0], - "translation": [0, 3, 0], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 4, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "translation": [0, -6.25, -15.5], - "scale": [1.2, 1.2, 1.2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "head", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3] - }, - { - "name": "body", - "origin": [8, 8, 8], - "children": [4] - }, - { - "name": "leg", - "origin": [8, 8, 8], - "children": [ - { - "name": "front", - "origin": [8, 8, 8], - "children": [5, 6] - }, - { - "name": "back", - "origin": [8, 8, 8], - "children": [7, 8] - } - ] - }, - { - "name": "tail", - "origin": [8, 8, 8], - "children": [9, 10] - } - ] - }, - { - "name": "plate", - "origin": [8, 8, 8], - "children": [11] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/skyeyefast.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/skyeyefast.json deleted file mode 100644 index 2f440a564..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/skyeyefast.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/skyeyefast", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/steve.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/author/steve.json deleted file mode 100644 index 0ef19d3b4..000000000 --- a/modules/brewing_stand_model/assets/mcwzhmeme/models/author/steve.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "entity/steve", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/dianliang.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/dianliang.json new file mode 100644 index 000000000..1d5a9cf23 --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/dianliang.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:block/author/dianliang", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/gugle.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/gugle.json new file mode 100644 index 000000000..991321c01 --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/gugle.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:block/author/gugle", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/lake.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/lake.json new file mode 100644 index 000000000..900ff8d68 --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/lake.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:block/author/lakejason", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/littlec.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/littlec.json new file mode 100644 index 000000000..bf7d369b0 --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/littlec.json @@ -0,0 +1,239 @@ +{ + "credit": "Made with Blockbench by LakeJason", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:block/author/littlec", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 7, 9] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6, 7], + "to": [9, 8, 9], + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.375, 7.5], + "to": [9, 6.375, 8.5], + "faces": { + "north": { "uv": [5, 5, 7, 8], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 8], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9, 3.375, 7.5], + "to": [9.75, 6.375, 8.5], + "faces": { + "north": { "uv": [11, 5, 11.75, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [12.75, 5, 13.5, 8], "texture": "#1" }, + "west": { "uv": [11.75, 5, 12.75, 8], "texture": "#1" }, + "up": { "uv": [11.75, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [12.5, 4, 11.75, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [6.25, 3.375, 7.5], + "to": [7, 6.375, 8.5], + "faces": { + "north": { "uv": [9, 13, 9.75, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [10.75, 13, 11.5, 16], "texture": "#1" }, + "west": { "uv": [9.75, 13, 10.75, 16], "texture": "#1" }, + "up": { "uv": [9.75, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [10.5, 12, 9.75, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [7, 0.375, 7.5], + "to": [8, 3.375, 8.5], + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [8, 0.375, 7.5], + "to": [9, 3.375, 8.5], + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.875, 5.75, 6.875], + "to": [9.125, 8, 9.125], + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [7, 3.255, 7.3725], + "to": [9, 6.5075, 8.6225], + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [8.875, 3.25, 7.375], + "to": [9.875, 6.5, 8.625], + "faces": { + "north": { "uv": [10.75, 9, 11.5, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [12.75, 9, 13.5, 12], "texture": "#1" }, + "west": { "uv": [11.75, 9, 12.75, 12], "texture": "#1" }, + "up": { "uv": [11.75, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [12.5, 8, 11.75, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [6.125, 3.25, 7.375], + "to": [7.125, 6.5, 8.625], + "faces": { + "north": { "uv": [13, 13, 13.75, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [14.75, 13, 15.5, 16], "texture": "#1" }, + "west": { "uv": [13.75, 13, 14.75, 16], "texture": "#1" }, + "up": { "uv": [13.75, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [14.5, 12, 13.75, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.875, 0.25, 7.375], + "to": [9.125, 3.5, 8.625], + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.875, 0.25, 7.375], + "to": [8.125, 3.5, 8.625], + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 13, 1, 12], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 19.25, 0], + "scale": [1.6, 1.6, 1.6] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "alex", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/lxazl5770.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/lxazl5770.json new file mode 100644 index 000000000..cf2fcb826 --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/lxazl5770.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:block/author/lxazl5770", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/mysticnebula70.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/mysticnebula70.json new file mode 100644 index 000000000..8db09ddae --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/mysticnebula70.json @@ -0,0 +1,305 @@ +{ + "credit": "Made with Blockbench by Gugle", + "texture_size": [64, 64], + "textures": { + "0": "mcwzhmeme:block/author/mysticnebula70", + "1": "block/smooth_stone", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "head_main", + "from": [7, 4, 0.5], + "to": [9.5, 6, 3], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [1.25, 1.25, 2.5, 2.25], "texture": "#0" }, + "east": { "uv": [0, 1.25, 1.25, 2.25], "texture": "#0" }, + "south": { "uv": [3.75, 1.25, 5, 2.25], "texture": "#0" }, + "west": { "uv": [2.5, 1.25, 3.75, 2.25], "texture": "#0" }, + "up": { "uv": [1.25, 0, 2.5, 1.25], "texture": "#0" }, + "down": { "uv": [2.5, 0, 3.75, 1.25], "texture": "#0" } + } + }, + { + "name": "head_nose", + "from": [7.5, 4, 0], + "to": [9, 5, 1], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [0.5, 6.5, 1.25, 7], "texture": "#0" }, + "east": { "uv": [0, 6.5, 0.5, 7], "texture": "#0" }, + "west": { "uv": [1.25, 6.5, 1.75, 7], "texture": "#0" }, + "up": { "uv": [0.5, 6, 1.25, 6.5], "texture": "#0" }, + "down": { "uv": [1.25, 6, 2, 6.5], "texture": "#0" } + } + }, + { + "name": "head_ear_1", + "from": [8.75, 6, 1.5], + "to": [9.25, 6.5, 2.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [0.5, 3, 0.75, 3.25], "texture": "#0" }, + "east": { "uv": [0, 3, 0.5, 3.25], "texture": "#0" }, + "south": { "uv": [1.5, 3, 1.75, 3.25], "texture": "#0" }, + "west": { "uv": [1, 3, 1.5, 3.25], "texture": "#0" }, + "up": { "uv": [0.5, 2.5, 0.75, 3], "texture": "#0" }, + "down": { "uv": [0.75, 2.5, 1, 3], "texture": "#0" } + } + }, + { + "name": "head_ear_1", + "from": [7.25, 6, 1.5], + "to": [7.75, 6.5, 2.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [2, 3, 2.25, 3.25], "texture": "#0" }, + "east": { "uv": [1.5, 3, 2, 3.25], "texture": "#0" }, + "south": { "uv": [3, 3, 3.25, 3.25], "texture": "#0" }, + "west": { "uv": [2.5, 3, 3, 3.25], "texture": "#0" }, + "up": { "uv": [2, 2.5, 2.25, 3], "texture": "#0" }, + "down": { "uv": [2.25, 2.5, 2.5, 3], "texture": "#0" } + } + }, + { + "name": "body", + "from": [7.25, 2.5, 3], + "to": [9.25, 5.5, 11], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [6.5, 0, 7.5, 1.5], "texture": "#0" }, + "east": { + "uv": [5, 1.5, 6.5, 5.5], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [7.5, 0, 8.5, 1.5], "texture": "#0" }, + "west": { + "uv": [7.5, 1.5, 9, 5.5], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [9, 1.5, 10, 5.5], "texture": "#0" }, + "down": { "uv": [6.5, 1.5, 7.5, 5.5], "texture": "#0" } + } + }, + { + "name": "left", + "from": [7, 0.5, 4], + "to": [8, 5.5, 5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "east": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "south": { "uv": [11.5, 0.5, 12, 3], "texture": "#0" }, + "west": { "uv": [11, 0.5, 11.5, 3], "texture": "#0" }, + "up": { + "uv": [10.5, 0, 11, 0.5], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [11, 0, 11.5, 0.5], "texture": "#0" } + } + }, + { + "name": "right", + "from": [8.5, 0.5, 4], + "to": [9.5, 5.5, 5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "east": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "south": { "uv": [11.5, 0.5, 12, 3], "texture": "#0" }, + "west": { "uv": [11, 0.5, 11.5, 3], "texture": "#0" }, + "up": { + "uv": [10.5, 0, 11, 0.5], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [11, 0, 11.5, 0.5], "texture": "#0" } + } + }, + { + "name": "left", + "from": [7, 0.5, 9.5], + "to": [8, 3.5, 10.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [2.5, 3.5, 3, 5], "texture": "#0" }, + "east": { "uv": [2, 3.75, 2.5, 5.25], "texture": "#0" }, + "south": { "uv": [3.5, 3.75, 4, 5.25], "texture": "#0" }, + "west": { "uv": [3, 3.75, 3.5, 5.25], "texture": "#0" }, + "up": { "uv": [2.5, 3.25, 3, 3.75], "texture": "#0" }, + "down": { "uv": [3, 3.25, 3.5, 3.75], "texture": "#0" } + } + }, + { + "name": "right", + "from": [8.5, 0.5, 9.5], + "to": [9.5, 3.5, 10.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [2.5, 3.5, 3, 5], "texture": "#0" }, + "east": { "uv": [2, 3.75, 2.5, 5.25], "texture": "#0" }, + "south": { "uv": [3.5, 3.75, 4, 5.25], "texture": "#0" }, + "west": { "uv": [3, 3.75, 3.5, 5.25], "texture": "#0" }, + "up": { "uv": [2.5, 3.25, 3, 3.75], "texture": "#0" }, + "down": { "uv": [3, 3.25, 3.5, 3.75], "texture": "#0" } + } + }, + { + "name": "tail", + "from": [8, 4.88268, 10.92388], + "to": [8.5, 5.38268, 14.92388], + "rotation": { "angle": 22.5, "axis": "x", "origin": [8, 4.5, 10] }, + "faces": { + "north": { + "uv": [0.25, 3.75, 0.5, 4], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [0, 4, 0.25, 6], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0.5, 3.75, 0.75, 4], "texture": "#0" }, + "west": { + "uv": [0.5, 4, 0.75, 6], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0.75, 4, 1, 6], "texture": "#0" }, + "down": { + "uv": [0.25, 4, 0.5, 6], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "tail_end", + "from": [8, 2.61732, 14.92388], + "to": [8.5, 3.11732, 18.92388], + "rotation": { "angle": -22.5, "axis": "x", "origin": [8, 3, 14] }, + "faces": { + "north": { + "uv": [1.25, 3.75, 1.5, 4], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [1, 4, 1.25, 6], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [1.5, 3.75, 1.75, 4], "texture": "#0" }, + "west": { + "uv": [1.5, 4, 1.75, 6], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [1.75, 4, 2, 6], "texture": "#0" }, + "down": { + "uv": [1.25, 4, 1.5, 6], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "plate", + "from": [4, 0, 3.5], + "to": [12, 0.5, 11.5], + "faces": { + "north": { "uv": [0, 15, 16, 16], "texture": "#1" }, + "east": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "south": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "west": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "up": { "uv": [0, 0, 16, 16], "texture": "#1" }, + "down": { "uv": [0, 0, 16, 16], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.8, 0.8, 0.8] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 4, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "translation": [0, 14.25, 0] + }, + "fixed": { + "translation": [0, -6.25, -15.5], + "scale": [1.2, 1.2, 1.2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "head", + "origin": [8, 8, 8], + "children": [0, 1, 2, 3] + }, + { + "name": "body", + "origin": [8, 8, 8], + "children": [4] + }, + { + "name": "leg", + "origin": [8, 8, 8], + "children": [ + { + "name": "front", + "origin": [8, 8, 8], + "children": [5, 6] + }, + { + "name": "back", + "origin": [8, 8, 8], + "children": [7, 8] + } + ] + }, + { + "name": "tail", + "origin": [8, 8, 8], + "children": [9, 10] + } + ] + }, + { + "name": "plate", + "origin": [8, 8, 8], + "children": [11] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/skyeyefast.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/skyeyefast.json new file mode 100644 index 000000000..e5752382f --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/skyeyefast.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:block/author/skyeyefast", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/wolf.json b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/wolf.json new file mode 100644 index 000000000..9ecf1928d --- /dev/null +++ b/modules/brewing_stand_model/assets/mcwzhmeme/models/block/author/wolf.json @@ -0,0 +1,337 @@ +{ + "credit": "Made with Blockbench by LakeJason", + "texture_size": [64, 32], + "textures": { + "0": "mcwzhmeme:block/author/wolf", + "1": "block/smooth_stone", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "head", + "from": [6.5, 4.5, 3.25], + "to": [9.5, 7.5, 5.25], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 6, 4] }, + "faces": { + "north": { "uv": [1, 2, 2.5, 5], "texture": "#0" }, + "east": { "uv": [0, 2, 1, 5], "texture": "#0" }, + "south": { "uv": [3.5, 2, 5, 5], "texture": "#0" }, + "west": { "uv": [2.5, 2, 3.5, 5], "texture": "#0" }, + "up": { "uv": [1, 0, 2.5, 2], "texture": "#0" }, + "down": { "uv": [2.5, 0, 4, 2], "texture": "#0" } + } + }, + { + "name": "nose", + "from": [7.25, 4.5, 1.75], + "to": [8.75, 6, 3.75], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 5.25, 2.75] }, + "faces": { + "north": { "uv": [1, 7, 1.75, 8.5], "texture": "#0" }, + "east": { "uv": [0, 7, 0.75, 8.5], "texture": "#0" }, + "south": { + "uv": [3, 7, 3.75, 8.5], + "rotation": 270, + "texture": "#0" + }, + "west": { "uv": [1.75, 7, 2.5, 8.5], "texture": "#0" }, + "up": { + "uv": [1, 5, 1.75, 7], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [1.75, 5, 2.5, 7], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "left_ear", + "from": [6.5, 7.5, 4.25], + "to": [7.5, 8.5, 4.75], + "rotation": { "angle": 0, "axis": "y", "origin": [7, 8, 4.5] }, + "faces": { + "north": { "uv": [4.25, 7.5, 4.75, 8.5], "texture": "#0" }, + "east": { "uv": [4, 7.5, 4.25, 8.5], "texture": "#0" }, + "south": { "uv": [5, 7.5, 5.5, 8.5], "texture": "#0" }, + "west": { "uv": [4.75, 7.5, 5, 8.5], "texture": "#0" }, + "up": { "uv": [4.25, 7, 4.75, 7.5], "texture": "#0" }, + "down": { "uv": [4.75, 7, 5.25, 7.5], "texture": "#0" } + } + }, + { + "name": "right_ear", + "from": [8.5, 7.5, 4.25], + "to": [9.5, 8.5, 4.75], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [8.75, 7.75, 5.25] + }, + "faces": { + "north": { "uv": [4.25, 7.5, 4.75, 8.5], "texture": "#0" }, + "east": { "uv": [4, 7.5, 4.25, 8.5], "texture": "#0" }, + "south": { "uv": [5, 7.5, 5.5, 8.5], "texture": "#0" }, + "west": { "uv": [4.75, 7.5, 5, 8.5], "texture": "#0" }, + "up": { "uv": [4.25, 7, 4.75, 7.5], "texture": "#0" }, + "down": { "uv": [4.75, 7, 5.25, 7.5], "texture": "#0" } + } + }, + { + "name": "neck", + "from": [6, 3.1765, 4.8832], + "to": [10, 6.6765, 7.8832], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [8, 4.9265, 6.3832] + }, + "faces": { + "north": { "uv": [7, 0, 9, 3.5], "texture": "#0" }, + "east": { + "uv": [5.25, 3.5, 7, 6.5], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [9, 0, 11, 3.5], "texture": "#0" }, + "west": { + "uv": [9, 3.5, 10.75, 6.5], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [10.75, 3.5, 12.75, 6.5], "texture": "#0" }, + "down": { "uv": [7, 3.5, 9, 6.5], "texture": "#0" } + } + }, + { + "name": "body", + "from": [6.5, 1.5, 6.5], + "to": [9.5, 4.5, 11], + "rotation": { "angle": 45, "axis": "x", "origin": [8, 3, 8.75] }, + "faces": { + "north": { "uv": [6, 7, 7.5, 10], "texture": "#0" }, + "east": { + "uv": [4.5, 10, 6, 14.5], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [9, 7, 7.5, 10], "texture": "#0" }, + "west": { + "uv": [7.5, 10, 9, 14.5], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [9, 10, 10.5, 14.5], "texture": "#0" }, + "down": { "uv": [6, 10, 7.5, 14.5], "texture": "#0" } + } + }, + { + "name": "left_front_leg", + "from": [6.5, 0.5, 4.5], + "to": [7.5, 4.5, 5.5], + "rotation": { "angle": 22.5, "axis": "x", "origin": [7, 2.5, 5] }, + "faces": { + "north": { "uv": [0.5, 10, 1, 14], "texture": "#0" }, + "east": { "uv": [0, 10, 0.5, 14], "texture": "#0" }, + "south": { "uv": [1.5, 10, 2, 14], "texture": "#0" }, + "west": { "uv": [1, 10, 1.5, 14], "texture": "#0" }, + "up": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "down": { "uv": [1, 9, 1.5, 10], "texture": "#0" } + } + }, + { + "name": "left_back_leg", + "from": [6.75, 0.5, 5], + "to": [7.75, 1.5, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [7, 1, 7] }, + "faces": { + "north": { + "uv": [1, 9, 1.5, 10], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [0, 10, 0.5, 14], + "rotation": 270, + "texture": "#0" + }, + "south": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "west": { + "uv": [1, 10, 1.5, 14], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [0.5, 10, 1, 14], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [1.5, 10, 2, 14], "texture": "#0" } + } + }, + { + "name": "right_front_leg", + "from": [8.5, 0.5, 4.5], + "to": [9.5, 4.5, 5.5], + "rotation": { "angle": 22.5, "axis": "x", "origin": [9, 2.5, 5] }, + "faces": { + "north": { "uv": [0.5, 10, 1, 14], "texture": "#0" }, + "east": { "uv": [0, 10, 0.5, 14], "texture": "#0" }, + "south": { "uv": [1.5, 10, 2, 14], "texture": "#0" }, + "west": { "uv": [1, 10, 1.5, 14], "texture": "#0" }, + "up": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "down": { "uv": [1, 9, 1.5, 10], "texture": "#0" } + } + }, + { + "name": "right_back_leg", + "from": [8.25, 0.5, 5], + "to": [9.25, 1.5, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [9, 1, 7] }, + "faces": { + "north": { + "uv": [1, 9, 1.5, 10], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [0, 10, 0.5, 14], + "rotation": 270, + "texture": "#0" + }, + "south": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "west": { + "uv": [1, 10, 1.5, 14], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [0.5, 10, 1, 14], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [1.5, 10, 2, 14], "texture": "#0" } + } + }, + { + "name": "tail", + "from": [7.5, 1, 10], + "to": [8.5, 2, 14], + "rotation": { "angle": 22.5, "axis": "x", "origin": [8, 1.5, 12] }, + "faces": { + "north": { + "uv": [2.75, 9, 3.25, 10], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [2.25, 10, 2.75, 14], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [3.75, 9, 3.25, 10], "texture": "#0" }, + "west": { + "uv": [3.25, 10, 3.75, 14], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [3.75, 10, 4.25, 14], "texture": "#0" }, + "down": { + "uv": [2.75, 10, 3.25, 14], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "plate", + "from": [4, 0, 4], + "to": [12, 0.5, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 0.125, 7.75] }, + "faces": { + "north": { "uv": [0, 15, 16, 16], "texture": "#1" }, + "east": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "south": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "west": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "up": { "uv": [0, 0, 16, 16], "texture": "#1" }, + "down": { "uv": [0, 0, 16, 16], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.8, 0.8, 0.8] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 6, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 14.25, 0] + }, + "fixed": { + "translation": [0, -6.25, -15.5], + "scale": [1.2, 1.2, 1.2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "head", + "origin": [8, 8, 8], + "children": [0, 1, 2, 3] + }, + { + "name": "neck", + "origin": [8, 8, 8], + "children": [4] + }, + { + "name": "body", + "origin": [8, 8, 8], + "children": [5] + }, + { + "name": "legs", + "origin": [8, 8, 8], + "children": [6, 7, 8, 9] + }, + { + "name": "tail", + "origin": [8, 8, 8], + "children": [10] + } + ] + }, + { + "name": "plate", + "origin": [8, 8, 8], + "children": [11] + } + ] +} diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/dianliang.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/dianliang.png similarity index 100% rename from modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/dianliang.png rename to modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/dianliang.png diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/gugle.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/gugle.png new file mode 100644 index 000000000..d0131675c Binary files /dev/null and b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/gugle.png differ diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/lakejason.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/lakejason.png similarity index 100% rename from modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/lakejason.png rename to modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/lakejason.png diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/littlec.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/littlec.png similarity index 100% rename from modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/littlec.png rename to modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/littlec.png diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/lxazl5770.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/lxazl5770.png similarity index 100% rename from modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/lxazl5770.png rename to modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/lxazl5770.png diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/mysticnebula70.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/mysticnebula70.png similarity index 100% rename from modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/mysticnebula70.png rename to modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/mysticnebula70.png diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/skyeyefast.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/skyeyefast.png similarity index 100% rename from modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/skyeyefast.png rename to modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/skyeyefast.png diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/wolf.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/wolf.png new file mode 100644 index 000000000..701d18d5e Binary files /dev/null and b/modules/brewing_stand_model/assets/mcwzhmeme/textures/block/author/wolf.png differ diff --git a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/gu_zt.png b/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/gu_zt.png deleted file mode 100644 index b2aa92eab..000000000 Binary files a/modules/brewing_stand_model/assets/mcwzhmeme/textures/entity/gu_zt.png and /dev/null differ diff --git a/modules/brewing_stand_model/assets/minecraft/blockstates/brewing_stand.json b/modules/brewing_stand_model/assets/minecraft/blockstates/brewing_stand.json index 72d2f529e..da3eb0582 100644 --- a/modules/brewing_stand_model/assets/minecraft/blockstates/brewing_stand.json +++ b/modules/brewing_stand_model/assets/minecraft/blockstates/brewing_stand.json @@ -1,28 +1,28 @@ { - "variants":{ - "has_bottle_0=true,has_bottle_1=true,has_bottle_2=false":{ - "model": "mcwzhmeme:author/lake" - }, - "has_bottle_0=true,has_bottle_1=true,has_bottle_2=true":{ - "model": "mcwzhmeme:author/mysticnebula70" - }, - "has_bottle_0=true,has_bottle_1=false,has_bottle_2=true":{ - "model": "mcwzhmeme:author/dianliang" - }, - "has_bottle_0=false,has_bottle_1=false,has_bottle_2=false":{ - "model": "mcwzhmeme:author/lxazl5770" - }, - "has_bottle_0=true,has_bottle_1=false,has_bottle_2=false":{ - "model": "mcwzhmeme:author/gu_zt" - }, - "has_bottle_0=false,has_bottle_1=true,has_bottle_2=false":{ - "model": "mcwzhmeme:author/skyeyefast" - }, - "has_bottle_0=false,has_bottle_1=true,has_bottle_2=true":{ - "model": "mcwzhmeme:author/littlec" - }, - "has_bottle_0=false,has_bottle_1=false,has_bottle_2=true":{ - "model": "mcwzhmeme:author/steve" + "variants": { + "has_bottle_0=true,has_bottle_1=true,has_bottle_2=false": { + "model": "mcwzhmeme:block/author/lake" + }, + "has_bottle_0=true,has_bottle_1=true,has_bottle_2=true": { + "model": "mcwzhmeme:block/author/mysticnebula70" + }, + "has_bottle_0=true,has_bottle_1=false,has_bottle_2=true": { + "model": "mcwzhmeme:block/author/dianliang" + }, + "has_bottle_0=false,has_bottle_1=false,has_bottle_2=false": { + "model": "mcwzhmeme:block/author/lxazl5770" + }, + "has_bottle_0=true,has_bottle_1=false,has_bottle_2=false": { + "model": "mcwzhmeme:block/author/gugle" + }, + "has_bottle_0=false,has_bottle_1=true,has_bottle_2=false": { + "model": "mcwzhmeme:block/author/skyeyefast" + }, + "has_bottle_0=false,has_bottle_1=true,has_bottle_2=true": { + "model": "mcwzhmeme:block/author/littlec" + }, + "has_bottle_0=false,has_bottle_1=false,has_bottle_2=true": { + "model": "mcwzhmeme:block/author/wolf" + } } - } -} \ No newline at end of file +} diff --git a/modules/brewing_stand_model/module_manifest.json b/modules/brewing_stand_model/module_manifest.json index eed673e9f..e5b3b6276 100644 --- a/modules/brewing_stand_model/module_manifest.json +++ b/modules/brewing_stand_model/module_manifest.json @@ -2,11 +2,5 @@ "name": "brewing_stand_model", "type": "resource", "description": "将炼药台变成手办", - "author": [ - "Lakejason0", - "Gu_ZT" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Lakejason0", "Gugle"] +} diff --git a/modules/BUGJUMP/assets/minecraft/textures/gui/title/mojang.png b/modules/bugjump/assets/minecraft/textures/gui/title/mojang.png similarity index 100% rename from modules/BUGJUMP/assets/minecraft/textures/gui/title/mojang.png rename to modules/bugjump/assets/minecraft/textures/gui/title/mojang.png diff --git a/modules/BUGJUMP/assets/minecraft/textures/gui/title/mojangstudios.png b/modules/bugjump/assets/minecraft/textures/gui/title/mojangstudios.png similarity index 100% rename from modules/BUGJUMP/assets/minecraft/textures/gui/title/mojangstudios.png rename to modules/bugjump/assets/minecraft/textures/gui/title/mojangstudios.png diff --git a/modules/BUGJUMP/module_manifest.json b/modules/bugjump/module_manifest.json similarity index 58% rename from modules/BUGJUMP/module_manifest.json rename to modules/bugjump/module_manifest.json index a6ccc17df..c4c6081a1 100644 --- a/modules/BUGJUMP/module_manifest.json +++ b/modules/bugjump/module_manifest.json @@ -2,10 +2,5 @@ "name": "bugjump", "type": "resource", "description": "啥?这个公司不是叫Bugjump吗?(需要OptiFine)", - "author": [ - "CR-019" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["CR-019"] +} diff --git a/modules/caves_and_cliffs_experimental/add.json b/modules/caves_and_cliffs_experimental/add.json deleted file mode 100644 index 03d121ad2..000000000 --- a/modules/caves_and_cliffs_experimental/add.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "biome.minecraft.extreme_hills": "峭壁", - "biome.minecraft.gravelly_hills": "沙砾峭壁", - "commands.jfr.dump.failed": "无法转存JFR记录:%s", - "commands.jfr.dumped": "JFR分析已转存到:%s", - "commands.jfr.notRunning": "JFR分析尚未开始", - "commands.jfr.start.failed": "无法开启JFR分析", - "commands.jfr.started": "已开启JFR分析", - "commands.jfr.stopped": "JFR分析结束,数据已转存到%s", - "selectWorld.incompatible_series": "MJSB不让我打开别的版本的世界!!!" -} \ No newline at end of file diff --git a/modules/caves_and_cliffs_experimental/module_manifest.json b/modules/caves_and_cliffs_experimental/module_manifest.json deleted file mode 100644 index e4ed95753..000000000 --- a/modules/caves_and_cliffs_experimental/module_manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "caves_and_cliffs_experimental", - "type": "resource", - "description": "提供对洞穴与山崖更新实验性快照的梗体中文有限支持", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file diff --git a/modules/chicken_soup/add.json b/modules/chicken_soup/add.json new file mode 100644 index 000000000..443b68d20 --- /dev/null +++ b/modules/chicken_soup/add.json @@ -0,0 +1,3 @@ +{ + "item.minecraft.suspicious_stew": "鸡汤" +} diff --git a/modules/chicken_soup/assets/minecraft/textures/item/suspicious_stew.png b/modules/chicken_soup/assets/minecraft/textures/item/suspicious_stew.png new file mode 100644 index 000000000..818a5446e Binary files /dev/null and b/modules/chicken_soup/assets/minecraft/textures/item/suspicious_stew.png differ diff --git a/modules/chicken_soup/module_manifest.json b/modules/chicken_soup/module_manifest.json new file mode 100644 index 000000000..3fb72a332 --- /dev/null +++ b/modules/chicken_soup/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "chicken_soup", + "type": "resource", + "description": "喝!为什么不喝?", + "author": ["Zh9c418"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} + diff --git a/modules/chiseled_bookshelf/add.json b/modules/chiseled_bookshelf/add.json new file mode 100644 index 000000000..25666b98d --- /dev/null +++ b/modules/chiseled_bookshelf/add.json @@ -0,0 +1,3 @@ +{ + "block.minecraft.chiseled_bookshelf": "錾制书架" +} \ No newline at end of file diff --git a/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_empty.png b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_empty.png new file mode 100644 index 000000000..f313a51af Binary files /dev/null and b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_empty.png differ diff --git a/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_occupied.png b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_occupied.png new file mode 100644 index 000000000..4026ad1e3 Binary files /dev/null and b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_occupied.png differ diff --git a/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_side.png b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_side.png new file mode 100644 index 000000000..8d71fb528 Binary files /dev/null and b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_side.png differ diff --git a/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_top.png b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_top.png new file mode 100644 index 000000000..8d71fb528 Binary files /dev/null and b/modules/chiseled_bookshelf/assets/minecraft/textures/block/chiseled_bookshelf_top.png differ diff --git a/modules/chiseled_bookshelf/module_manifest.json b/modules/chiseled_bookshelf/module_manifest.json new file mode 100644 index 000000000..408dc775d --- /dev/null +++ b/modules/chiseled_bookshelf/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "chiseled_bookshelf", + "type": "resource", + "description": "錾制书架", + "author": ["Sheep-realms"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} \ No newline at end of file diff --git a/modules/choice_module_netease/module_manifest.json b/modules/choice_module_netease/module_manifest.json index 3a113abb6..115a33121 100644 --- a/modules/choice_module_netease/module_manifest.json +++ b/modules/choice_module_netease/module_manifest.json @@ -2,29 +2,36 @@ "name": "choice_modules_netease", "type": "collection", "description": "中国版的预设打包。", - "author": [ - "电量量" - ], + "author": ["电量量", "ff98sha"], "contains": [ - "open_close_sound", - "famous_scene", - "questioning_totem", - "disco_ball", + "a_piece_of_seriousness", "annoying_sounds", - "bell_sound", - "ekac", + "bagify", "baguette", - "mopemope", - "bugjump", - "locusazzurro", - "meme_splashes", "bee_pickaxe", - "minecart_helmet", - "a_letter", - "brewing_stand_model", - "author_zombies", + "bell_sound", + "chicken_soup", + "disco_ball", "dorowolf_texture", + "enchantment_level_extend", + "famous_scene", + "firework_sound", + "goat_horn_sound", + "jinkela", + "lang_netease", + "latiao", + "locusazzurro", "map_override", - "observer_think" + "minecart_helmet", + "minecraft_cjk_character_supplement", + "mopemope", + "observer_think", + "open_close_sound", + "questioning_totem", + "real_grass", + "reverse_cake_texture", + "sculk_sound", + "sus_stuff", + "vulpes_ferrilata" ] } diff --git a/modules/choice_modules_1/module_manifest.json b/modules/choice_modules_1/module_manifest.json deleted file mode 100644 index 15ffde55c..000000000 --- a/modules/choice_modules_1/module_manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "choice_modules_1", - "type": "collection", - "description": "精选模块集合·一", - "author": [ - "梗体中文内容组" - ], - "contains": [ - "a_piece_of_seriousness", - "bagify", - "locusazzurro", - "map_override", - "meme_splashes", - "observer_think", - "glyph_sizes_fix", - "mooncake" - ] -} diff --git a/modules/choice_modules_default/module_manifest.json b/modules/choice_modules_default/module_manifest.json new file mode 100644 index 000000000..ce534a819 --- /dev/null +++ b/modules/choice_modules_default/module_manifest.json @@ -0,0 +1,27 @@ +{ + "name": "choice_modules_default", + "type": "collection", + "description": "模块精选合集", + "author": ["梗体中文内容组"], + "contains": [ + "a_piece_of_seriousness", + "anniversary", + "bagify", + "bee_pickaxe", + "dorowolf_texture", + "enchantment_level_extend", + "enable_compliancies", + "goat_horn_sound", + "locusazzurro", + "map_override", + "meme_resourcepack", + "meme_splashes", + "minecraft_cjk_character_supplement", + "mopemope", + "observer_think", + "questioning_totem", + "rainbow_enchanting", + "real_grass", + "sus_stuff" + ] +} diff --git a/modules/combat_test_6/module_manifest.json b/modules/combat_test_6/module_manifest.json deleted file mode 100644 index 1be5cab64..000000000 --- a/modules/combat_test_6/module_manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "combat_test_6", - "type": "resource", - "description": "提供对Combat Test 6快照的梗体中文有限支持", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file diff --git a/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp.png b/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp.png index 22849e64a..3f54f4f44 100644 Binary files a/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp.png and b/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp.png differ diff --git a/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp_on.png b/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp_on.png index fa9eca6a2..03313b2eb 100644 Binary files a/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp_on.png and b/modules/disco_ball/assets/minecraft/textures/block/redstone_lamp_on.png differ diff --git a/modules/disco_ball/module_manifest.json b/modules/disco_ball/module_manifest.json index 5d7b07eac..90cf9c22c 100644 --- a/modules/disco_ball/module_manifest.json +++ b/modules/disco_ball/module_manifest.json @@ -1,12 +1,6 @@ { "name": "disco_ball", "type": "resource", - "description": "红石灯球,有动态材质的那种", - "author": [ - "Gu_ZT", - "Zh9c418" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "description": "红石灯球,有动态纹理的那种", + "author": ["Gugle", "Zh9c418", "DoroWolf"] +} diff --git a/modules/dorowolf_texture/assets/minecraft/models/item/wolf_spawn_egg.json b/modules/dorowolf_texture/assets/minecraft/models/item/wolf_spawn_egg.json new file mode 100644 index 000000000..3d3f11a26 --- /dev/null +++ b/modules/dorowolf_texture/assets/minecraft/models/item/wolf_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/doro_wolf_spawn_egg" + } +} diff --git a/modules/dorowolf_texture/assets/minecraft/textures/item/doro_wolf_spawn_egg.png b/modules/dorowolf_texture/assets/minecraft/textures/item/doro_wolf_spawn_egg.png new file mode 100644 index 000000000..9295ed9bb Binary files /dev/null and b/modules/dorowolf_texture/assets/minecraft/textures/item/doro_wolf_spawn_egg.png differ diff --git a/modules/dorowolf_texture/module_manifest.json b/modules/dorowolf_texture/module_manifest.json index a4bc4016c..3e2c17093 100644 --- a/modules/dorowolf_texture/module_manifest.json +++ b/modules/dorowolf_texture/module_manifest.json @@ -2,10 +2,5 @@ "name": "dorowolf_texture", "type": "resource", "description": "超可爱的多洛洛狼!", - "author": [ - "DoroWolf" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["DoroWolf"] +} diff --git a/modules/eastern_meme_modules/module_manifest.json b/modules/eastern_meme_modules/module_manifest.json deleted file mode 100644 index b8cbe1081..000000000 --- a/modules/eastern_meme_modules/module_manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "eastern_meme_modules", - "type": "collection", - "description": "东方迷因模块集合", - "author": [ - "DoroWolf" - ], - "incompatible_with": [ - "western_meme_modules" - ], - "contains": [ - "open_close_sound", - "famous_scene", - "bell_sound", - "mopemope", - "real_grass" - ] -} diff --git a/modules/ekac/module_manifest.json b/modules/ekac/module_manifest.json deleted file mode 100644 index e3a5189b8..000000000 --- a/modules/ekac/module_manifest.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ekac", - "type": "resource", - "description": "上面放三个小麦,下面放三个牛奶...", - "author": [ - "DoroWolf" - ], - "incompatible_with": [ - "first_anniversary" - ], - "classifier": [ - "modified_resource", - "modified_language" - ] -} diff --git a/modules/enable_compliancies/assets/minecraft/regional_compliancies.json b/modules/enable_compliancies/assets/minecraft/regional_compliancies.json new file mode 100644 index 000000000..83c15d3ba --- /dev/null +++ b/modules/enable_compliancies/assets/minecraft/regional_compliancies.json @@ -0,0 +1,106 @@ +{ + "CHN": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "USA": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "KOR": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "HKG": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "TWN": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "JPN": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "MAC": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ], + "GBR": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ] +} diff --git a/modules/enable_compliancies/module_manifest.json b/modules/enable_compliancies/module_manifest.json new file mode 100644 index 000000000..de4bc47d9 --- /dev/null +++ b/modules/enable_compliancies/module_manifest.json @@ -0,0 +1,7 @@ +{ + "name": "enable_compliancies", + "type": "resource", + "description": "为一些地区(包括两岸三地)启用防沉迷警告。", + "author": ["Dianliang233"], + "incompatible_with": ["too_much_compliancies"] +} diff --git a/modules/enchantment_level_extend/add.json b/modules/enchantment_level_extend/add.json new file mode 100644 index 000000000..0ff8379f1 --- /dev/null +++ b/modules/enchantment_level_extend/add.json @@ -0,0 +1,247 @@ +{ + "enchantment.level.11": "B₁₆", + "enchantment.level.12": "C₁₆", + "enchantment.level.13": "D₁₆", + "enchantment.level.14": "E₁₆", + "enchantment.level.15": "F₁₆", + "enchantment.level.16": "4²", + "enchantment.level.17": "2⁴+1", + "enchantment.level.18": "2×3³", + "enchantment.level.19": "2³×5-1", + "enchantment.level.20": "2³×5", + "enchantment.level.21": "3×7", + "enchantment.level.22": "2×11", + "enchantment.level.23": "4!-1", + "enchantment.level.24": "4!", + "enchantment.level.25": "5²", + "enchantment.level.26": "2×13", + "enchantment.level.27": "3³", + "enchantment.level.28": "2²×7", + "enchantment.level.29": "2²+3²+4²", + "enchantment.level.30": "2×3×5", + "enchantment.level.31": "2⁵-1", + "enchantment.level.32": "2⁵", + "enchantment.level.33": "3×11", + "enchantment.level.34": "2×17", + "enchantment.level.35": "5×7", + "enchantment.level.36": "6²", + "enchantment.level.37": "-i×(1+6i)×(6+i)", + "enchantment.level.38": "2²+3²+5²", + "enchantment.level.39": "3+5+7+11+13", + "enchantment.level.40": "2³×5", + "enchantment.level.41": "11+13+17", + "enchantment.level.42": "终极答案", + "enchantment.level.43": "3+5+7+11+17", + "enchantment.level.44": "2²×11", + "enchantment.level.45": "3²×5", + "enchantment.level.46": "2×23", + "enchantment.level.47": "2⁴×3-1", + "enchantment.level.48": "2⁴×3", + "enchantment.level.49": "7²", + "enchantment.level.50": "2×5²", + "enchantment.level.51": "3×17", + "enchantment.level.52": "2²×13", + "enchantment.level.53": "-i×(2+7i)×(7+2i)", + "enchantment.level.54": "2×3³", + "enchantment.level.55": "5×11", + "enchantment.level.56": "2³×7", + "enchantment.level.57": "3×19", + "enchantment.level.58": "2×29", + "enchantment.level.59": "(15!+1)/22163972339", + "enchantment.level.60": "2²×3×5", + "enchantment.level.61": "5²+6²", + "enchantment.level.62": "2×31", + "enchantment.level.63": "3²×7", + "enchantment.level.64": "1组", + "enchantment.level.65": "5×13", + "enchantment.level.66": "2×3×11", + "enchantment.level.67": "7+11+13+17+19", + "enchantment.level.68": "2²×17", + "enchantment.level.69": "3×23", + "enchantment.level.70": "2×5×7", + "enchantment.level.71": "√(7!+1)", + "enchantment.level.72": "2³×3²", + "enchantment.level.73": "-i×(3+8i)×(8+3i)", + "enchantment.level.74": "2×37", + "enchantment.level.75": "3×5²", + "enchantment.level.76": "2²×19", + "enchantment.level.77": "7×11", + "enchantment.level.78": "2×3×13", + "enchantment.level.79": "2⁷-7²", + "enchantment.level.80": "2⁴×5", + "enchantment.level.81": "9²", + "enchantment.level.82": "2×41", + "enchantment.level.83": "23+29+31", + "enchantment.level.84": "2²×3×7", + "enchantment.level.85": "5×17", + "enchantment.level.86": "2×43", + "enchantment.level.87": "5!-4!-3!-2!-1!", + "enchantment.level.88": "2³×11", + "enchantment.level.89": "-i×(5+8i)×(8+5i)", + "enchantment.level.90": "2×3²×5", + "enchantment.level.91": "7×13", + "enchantment.level.92": "2²×23", + "enchantment.level.93": "3×31", + "enchantment.level.94": "2×47", + "enchantment.level.95": "5×19", + "enchantment.level.96": "2⁵×3", + "enchantment.level.97": "3×2⁵+1", + "enchantment.level.98": "2×7²", + "enchantment.level.99": "3²×11", + "enchantment.level.100": "10²", + "enchantment.level.101": "13+17+19+23+29", + "enchantment.level.102": "2×3×17", + "enchantment.level.103": "10²+3", + "enchantment.level.104": "2³×13", + "enchantment.level.105": "3×5×7", + "enchantment.level.106": "2×53", + "enchantment.level.107": "2×5×11-3", + "enchantment.level.108": "2²×3³", + "enchantment.level.109": "-i×(10+3i)×(3+10i)", + "enchantment.level.110": "2×5×11", + "enchantment.level.111": "3×37", + "enchantment.level.112": "2⁴×7", + "enchantment.level.113": "-i×(7+8i)×(8+7i)", + "enchantment.level.114": "2×3×19", + "enchantment.level.115": "5×23", + "enchantment.level.116": "2²×29", + "enchantment.level.117": "3²×13", + "enchantment.level.118": "2×59", + "enchantment.level.119": "7×17", + "enchantment.level.120": "5!", + "enchantment.level.121": "11²", + "enchantment.level.122": "2×61", + "enchantment.level.123": "3×41", + "enchantment.level.124": "2²×31", + "enchantment.level.125": "5³", + "enchantment.level.126": "2×3²×7", + "enchantment.level.127": "2⁷-1", + "enchantment.level.128": "2⁷", + "enchantment.level.129": "3×43", + "enchantment.level.130": "2×5×13", + "enchantment.level.131": "41+43+47", + "enchantment.level.132": "2²×3×11", + "enchantment.level.133": "7×19", + "enchantment.level.134": "2×67", + "enchantment.level.135": "3³×5", + "enchantment.level.136": "2³×17", + "enchantment.level.137": "-i×(11+4i)×(4+11i)", + "enchantment.level.138": "2×3×23", + "enchantment.level.139": "19+23+29+31+37", + "enchantment.level.140": "2²×5×7", + "enchantment.level.141": "3×47", + "enchantment.level.142": "2×71", + "enchantment.level.143": "11×13", + "enchantment.level.144": "12²", + "enchantment.level.145": "5×29", + "enchantment.level.146": "2×73", + "enchantment.level.147": "3×7²", + "enchantment.level.148": "2²×37", + "enchantment.level.149": "-i×(10+7i)×(7+10i)", + "enchantment.level.150": "2×3×5²", + "enchantment.level.151": "2×3×5²+1", + "enchantment.level.152": "2³×19", + "enchantment.level.153": "3²×17", + "enchantment.level.154": "2×7×11", + "enchantment.level.155": "5×31", + "enchantment.level.156": "2²×3×13", + "enchantment.level.157": "-i×(11+6i)×(6+11i)", + "enchantment.level.158": "2×79", + "enchantment.level.159": "3×53", + "enchantment.level.160": "2⁵×5", + "enchantment.level.161": "7×23", + "enchantment.level.162": "2×3⁴", + "enchantment.level.163": "2×3⁴+1", + "enchantment.level.164": "2²×41", + "enchantment.level.165": "3×5×11", + "enchantment.level.166": "2×83", + "enchantment.level.167": "11²+6²+3²+1", + "enchantment.level.168": "2³×3×7", + "enchantment.level.169": "13²", + "enchantment.level.170": "2×5×17", + "enchantment.level.171": "3²×19", + "enchantment.level.172": "2²×43", + "enchantment.level.173": "2²+13²", + "enchantment.level.174": "2×3×29", + "enchantment.level.175": "5²×7", + "enchantment.level.176": "2⁴×11", + "enchantment.level.177": "3×59", + "enchantment.level.178": "2×89", + "enchantment.level.179": "2²×3²×5-1", + "enchantment.level.180": "2²×3²×5", + "enchantment.level.181": "9²+10²", + "enchantment.level.182": "2×7×13", + "enchantment.level.183": "3×61", + "enchantment.level.184": "2³×23", + "enchantment.level.185": "5×37", + "enchantment.level.186": "2×3×31", + "enchantment.level.187": "11×17", + "enchantment.level.188": "2²×47", + "enchantment.level.189": "3³×7", + "enchantment.level.190": "2×5×19", + "enchantment.level.191": "2×5×19+1", + "enchantment.level.192": "2⁶×3", + "enchantment.level.193": "-i×(12+7i)×(7+12i)", + "enchantment.level.194": "2×97", + "enchantment.level.195": "3×5×13", + "enchantment.level.196": "14²", + "enchantment.level.197": "-i×(+14i)×(14+i)", + "enchantment.level.198": "2×3²×11", + "enchantment.level.199": "2³×5²-1", + "enchantment.level.200": "2³×5²", + "enchantment.level.201": "3×67", + "enchantment.level.202": "2×101", + "enchantment.level.203": "7×29", + "enchantment.level.204": "2²×3×17", + "enchantment.level.205": "5×41", + "enchantment.level.206": "2×103", + "enchantment.level.207": "3²×23", + "enchantment.level.208": "2⁴×13", + "enchantment.level.209": "11×19", + "enchantment.level.210": "2×3×5×7", + "enchantment.level.211": "67+71+73", + "enchantment.level.212": "2²×53", + "enchantment.level.213": "3×71", + "enchantment.level.214": "2×107", + "enchantment.level.215": "5×43", + "enchantment.level.216": "2³×3³", + "enchantment.level.217": "7×31", + "enchantment.level.218": "2×109", + "enchantment.level.219": "3×73", + "enchantment.level.220": "2²×5×11", + "enchantment.level.221": "13×17", + "enchantment.level.222": "2×3×37", + "enchantment.level.223": "71+73+79", + "enchantment.level.224": "2⁵×7", + "enchantment.level.225": "15²", + "enchantment.level.226": "2×113", + "enchantment.level.227": "(2+3+5+7)+(2×3×5×7)", + "enchantment.level.228": "2²×3×19", + "enchantment.level.229": "-i×(15+2i)×(2+15i)", + "enchantment.level.230": "2×5×23", + "enchantment.level.231": "3×7×11", + "enchantment.level.232": "2³×29", + "enchantment.level.233": "233", + "enchantment.level.234": "2×3²×13", + "enchantment.level.235": "5×47", + "enchantment.level.236": "2²×59", + "enchantment.level.237": "3×79", + "enchantment.level.238": "2×7×17", + "enchantment.level.239": "5³+4³+3³+2³+1", + "enchantment.level.240": "2⁴×3×5", + "enchantment.level.241": "-i×(15+4i)×(4+15i)", + "enchantment.level.242": "2×11²", + "enchantment.level.243": "3⁵", + "enchantment.level.244": "2²×61", + "enchantment.level.245": "5×7²", + "enchantment.level.246": "2×3×41", + "enchantment.level.247": "13×19", + "enchantment.level.248": "2³×31", + "enchantment.level.249": "3×83", + "enchantment.level.250": "250", + "enchantment.level.251": "2³+3³+6³", + "enchantment.level.252": "2²×3²×7", + "enchantment.level.253": "11×23", + "enchantment.level.254": "2×127", + "enchantment.level.255": "3×5×17" +} diff --git a/modules/enchantment_level_extend/module_manifest.json b/modules/enchantment_level_extend/module_manifest.json new file mode 100644 index 000000000..84f7469f8 --- /dev/null +++ b/modules/enchantment_level_extend/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "enchantment_level_extend", + "type": "resource", + "description": "附魔等级扩展", + "author": ["DoroWolf"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/fake_multitool/add.json b/modules/fake_multitool/add.json index 18b7fd1c9..d2058f937 100644 --- a/modules/fake_multitool/add.json +++ b/modules/fake_multitool/add.json @@ -1,32 +1,32 @@ { - "item.minecraft.wooden_axe": "木工具", - "item.minecraft.wooden_pickaxe": "木工具", - "item.minecraft.wooden_hoe": "木工具", - "item.minecraft.wooden_shovel": "木工具", - "item.minecraft.wooden_sword": "木工具", - "item.minecraft.stone_axe": "石工具", - "item.minecraft.stone_pickaxe": "石工具", - "item.minecraft.stone_hoe": "石工具", - "item.minecraft.stone_shovel": "石工具", - "item.minecraft.stone_sword": "石工具", - "item.minecraft.iron_axe": "铁工具", - "item.minecraft.iron_pickaxe": "铁工具", - "item.minecraft.iron_hoe": "铁工具", - "item.minecraft.iron_shovel": "铁工具", - "item.minecraft.iron_sword": "铁工具", - "item.minecraft.diamond_axe": "钻石工具", - "item.minecraft.diamond_pickaxe": "钻石工具", - "item.minecraft.diamond_hoe": "钻石工具", - "item.minecraft.diamond_shovel": "钻石工具", - "item.minecraft.diamond_sword": "钻石工具", - "item.minecraft.golden_axe": "金工具", - "item.minecraft.golden_pickaxe": "金工具", - "item.minecraft.golden_hoe": "金工具", - "item.minecraft.golden_shovel": "金工具", - "item.minecraft.golden_sword": "金工具", - "item.minecraft.netherite_axe": "下界合金工具", - "item.minecraft.netherite_pickaxe": "下界合金工具", - "item.minecraft.netherite_hoe": "下界合金工具", - "item.minecraft.netherite_shovel": "下界合金工具", - "item.minecraft.netherite_sword": "下界合金工具" -} \ No newline at end of file + "item.minecraft.wooden_axe": "木工具", + "item.minecraft.wooden_pickaxe": "木工具", + "item.minecraft.wooden_hoe": "木工具", + "item.minecraft.wooden_shovel": "木工具", + "item.minecraft.wooden_sword": "木工具", + "item.minecraft.stone_axe": "石工具", + "item.minecraft.stone_pickaxe": "石工具", + "item.minecraft.stone_hoe": "石工具", + "item.minecraft.stone_shovel": "石工具", + "item.minecraft.stone_sword": "石工具", + "item.minecraft.iron_axe": "老铁工具", + "item.minecraft.iron_pickaxe": "老铁工具", + "item.minecraft.iron_hoe": "老铁工具", + "item.minecraft.iron_shovel": "老铁工具", + "item.minecraft.iron_sword": "老铁工具", + "item.minecraft.diamond_axe": "祖安石工具", + "item.minecraft.diamond_pickaxe": "祖安石工具", + "item.minecraft.diamond_hoe": "祖安石工具", + "item.minecraft.diamond_shovel": "祖安石工具", + "item.minecraft.diamond_sword": "祖安石工具", + "item.minecraft.golden_axe": "黄油工具", + "item.minecraft.golden_pickaxe": "黄油工具", + "item.minecraft.golden_hoe": "黄油工具", + "item.minecraft.golden_shovel": "黄油工具", + "item.minecraft.golden_sword": "黄油工具", + "item.minecraft.netherite_axe": "下界玄素工具", + "item.minecraft.netherite_pickaxe": "下界玄素工具", + "item.minecraft.netherite_hoe": "下界玄素工具", + "item.minecraft.netherite_shovel": "下界玄素工具", + "item.minecraft.netherite_sword": "下界玄素工具" +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/debug_stick.json b/modules/fake_multitool/assets/minecraft/models/item/debug_stick.json deleted file mode 100644 index 80d09e5da..000000000 --- a/modules/fake_multitool/assets/minecraft/models/item/debug_stick.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/orangice_multitool" - } -} \ No newline at end of file diff --git a/modules/fake_multitool/assets/minecraft/models/item/diamond_axe.json b/modules/fake_multitool/assets/minecraft/models/item/diamond_axe.json index 9fd8e76f7..542e3127f 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/diamond_axe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/diamond_axe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/diamond_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/diamond_hoe.json b/modules/fake_multitool/assets/minecraft/models/item/diamond_hoe.json index 9fd8e76f7..542e3127f 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/diamond_hoe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/diamond_hoe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/diamond_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/diamond_pickaxe.json b/modules/fake_multitool/assets/minecraft/models/item/diamond_pickaxe.json index 9fd8e76f7..542e3127f 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/diamond_pickaxe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/diamond_pickaxe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/diamond_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/diamond_shovel.json b/modules/fake_multitool/assets/minecraft/models/item/diamond_shovel.json index 9fd8e76f7..542e3127f 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/diamond_shovel.json +++ b/modules/fake_multitool/assets/minecraft/models/item/diamond_shovel.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/diamond_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/diamond_sword.json b/modules/fake_multitool/assets/minecraft/models/item/diamond_sword.json index 9fd8e76f7..542e3127f 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/diamond_sword.json +++ b/modules/fake_multitool/assets/minecraft/models/item/diamond_sword.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/diamond_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/golden_axe.json b/modules/fake_multitool/assets/minecraft/models/item/golden_axe.json index f2f2d155f..f417b0af9 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/golden_axe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/golden_axe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/golden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/golden_hoe.json b/modules/fake_multitool/assets/minecraft/models/item/golden_hoe.json index f2f2d155f..f417b0af9 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/golden_hoe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/golden_hoe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/golden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/golden_pickaxe.json b/modules/fake_multitool/assets/minecraft/models/item/golden_pickaxe.json index f2f2d155f..f417b0af9 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/golden_pickaxe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/golden_pickaxe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/golden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/golden_shovel.json b/modules/fake_multitool/assets/minecraft/models/item/golden_shovel.json index f2f2d155f..f417b0af9 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/golden_shovel.json +++ b/modules/fake_multitool/assets/minecraft/models/item/golden_shovel.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/golden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/golden_sword.json b/modules/fake_multitool/assets/minecraft/models/item/golden_sword.json index f2f2d155f..f417b0af9 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/golden_sword.json +++ b/modules/fake_multitool/assets/minecraft/models/item/golden_sword.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/golden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/iron_axe.json b/modules/fake_multitool/assets/minecraft/models/item/iron_axe.json index 630fd691d..84e95bd12 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/iron_axe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/iron_axe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/iron_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/iron_hoe.json b/modules/fake_multitool/assets/minecraft/models/item/iron_hoe.json index 630fd691d..84e95bd12 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/iron_hoe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/iron_hoe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/iron_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/iron_pickaxe.json b/modules/fake_multitool/assets/minecraft/models/item/iron_pickaxe.json index 630fd691d..84e95bd12 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/iron_pickaxe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/iron_pickaxe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/iron_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/iron_shovel.json b/modules/fake_multitool/assets/minecraft/models/item/iron_shovel.json index 630fd691d..84e95bd12 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/iron_shovel.json +++ b/modules/fake_multitool/assets/minecraft/models/item/iron_shovel.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/iron_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/iron_sword.json b/modules/fake_multitool/assets/minecraft/models/item/iron_sword.json index 630fd691d..84e95bd12 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/iron_sword.json +++ b/modules/fake_multitool/assets/minecraft/models/item/iron_sword.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/iron_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/netherite_axe.json b/modules/fake_multitool/assets/minecraft/models/item/netherite_axe.json index 91dfba1cf..9f21bc319 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/netherite_axe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/netherite_axe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/netherite_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/netherite_hoe.json b/modules/fake_multitool/assets/minecraft/models/item/netherite_hoe.json index 91dfba1cf..9f21bc319 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/netherite_hoe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/netherite_hoe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/netherite_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/netherite_pickaxe.json b/modules/fake_multitool/assets/minecraft/models/item/netherite_pickaxe.json index 91dfba1cf..9f21bc319 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/netherite_pickaxe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/netherite_pickaxe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/netherite_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/netherite_shovel.json b/modules/fake_multitool/assets/minecraft/models/item/netherite_shovel.json index 91dfba1cf..9f21bc319 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/netherite_shovel.json +++ b/modules/fake_multitool/assets/minecraft/models/item/netherite_shovel.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/netherite_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/netherite_sword.json b/modules/fake_multitool/assets/minecraft/models/item/netherite_sword.json index 91dfba1cf..9f21bc319 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/netherite_sword.json +++ b/modules/fake_multitool/assets/minecraft/models/item/netherite_sword.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/netherite_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/stone_axe.json b/modules/fake_multitool/assets/minecraft/models/item/stone_axe.json index 65ee9a3c2..dd3d76913 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/stone_axe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/stone_axe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/stone_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/stone_hoe.json b/modules/fake_multitool/assets/minecraft/models/item/stone_hoe.json index 65ee9a3c2..dd3d76913 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/stone_hoe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/stone_hoe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/stone_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/stone_pickaxe.json b/modules/fake_multitool/assets/minecraft/models/item/stone_pickaxe.json index 65ee9a3c2..dd3d76913 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/stone_pickaxe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/stone_pickaxe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/stone_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/stone_shovel.json b/modules/fake_multitool/assets/minecraft/models/item/stone_shovel.json index 65ee9a3c2..dd3d76913 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/stone_shovel.json +++ b/modules/fake_multitool/assets/minecraft/models/item/stone_shovel.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/stone_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/stone_sword.json b/modules/fake_multitool/assets/minecraft/models/item/stone_sword.json index 65ee9a3c2..dd3d76913 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/stone_sword.json +++ b/modules/fake_multitool/assets/minecraft/models/item/stone_sword.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/stone_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/wooden_axe.json b/modules/fake_multitool/assets/minecraft/models/item/wooden_axe.json index 910d0cc43..4c58d2d89 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/wooden_axe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/wooden_axe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/wooden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/wooden_hoe.json b/modules/fake_multitool/assets/minecraft/models/item/wooden_hoe.json index 910d0cc43..4c58d2d89 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/wooden_hoe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/wooden_hoe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/wooden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/wooden_pickaxe.json b/modules/fake_multitool/assets/minecraft/models/item/wooden_pickaxe.json index 910d0cc43..4c58d2d89 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/wooden_pickaxe.json +++ b/modules/fake_multitool/assets/minecraft/models/item/wooden_pickaxe.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/wooden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/wooden_shovel.json b/modules/fake_multitool/assets/minecraft/models/item/wooden_shovel.json index 910d0cc43..4c58d2d89 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/wooden_shovel.json +++ b/modules/fake_multitool/assets/minecraft/models/item/wooden_shovel.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/wooden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/models/item/wooden_sword.json b/modules/fake_multitool/assets/minecraft/models/item/wooden_sword.json index 910d0cc43..4c58d2d89 100644 --- a/modules/fake_multitool/assets/minecraft/models/item/wooden_sword.json +++ b/modules/fake_multitool/assets/minecraft/models/item/wooden_sword.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:item/handheld", - "textures": { - "layer0": "minecraft:item/wooden_multitool" - } -} \ No newline at end of file + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_multitool" + } +} diff --git a/modules/fake_multitool/assets/minecraft/textures/item/orangice_multitool.png b/modules/fake_multitool/assets/minecraft/textures/item/orangice_multitool.png deleted file mode 100644 index f7a967058..000000000 Binary files a/modules/fake_multitool/assets/minecraft/textures/item/orangice_multitool.png and /dev/null differ diff --git a/modules/fake_multitool/module_manifest.json b/modules/fake_multitool/module_manifest.json index 9c8cf2654..043855f56 100644 --- a/modules/fake_multitool/module_manifest.json +++ b/modules/fake_multitool/module_manifest.json @@ -2,15 +2,11 @@ "name": "fake_multitool", "type": "resource", "description": "工具的用途被模糊。", - "author": [ - "siiftun1857" - ], - "incompatible_with": [ - "lang_sfc", - "bee_pickaxe" - ], - "classifier": [ - "modified_language", - "modified_resource" + "author": ["siiftun1857"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/famous_scene/add.json b/modules/famous_scene/add.json new file mode 100644 index 000000000..2e6f9d9bb --- /dev/null +++ b/modules/famous_scene/add.json @@ -0,0 +1,54 @@ +{ + "painting.minecraft.alban.author": "金馆长", + "painting.minecraft.alban.title": "《金馆长脸》", + "painting.minecraft.aztec.author": "洪世贤", + "painting.minecraft.aztec.title": "《品如的衣服》", + "painting.minecraft.aztec2.author": "张学友", + "painting.minecraft.aztec2.title": "《吔洗啦你》", + "painting.minecraft.bomb.author": "蛋蛋哥", + "painting.minecraft.bomb.title": "《雪花飘飘》", + "painting.minecraft.burning_skull.author": "野兽先辈", + "painting.minecraft.burning_skull.title": "《压力马斯内》", + "painting.minecraft.bust.author": "范·达克霍姆", + "painting.minecraft.bust.title": "《Fa♂Q》", + "painting.minecraft.courbet.author": "卢本伟", + "painting.minecraft.courbet.title": "《十七张牌》", + "painting.minecraft.creebet.author": "梁逸峰", + "painting.minecraft.creebet.title": "《特别的朗诵技巧》", + "painting.minecraft.donkey_kong.author": "Daisuke", + "painting.minecraft.donkey_kong.title": "《浴霸不能》", + "painting.minecraft.fighters.author": "刘轩", + "painting.minecraft.fighters.title": "《我们受过严格训练》", + "painting.minecraft.graham.author": "影流之主", + "painting.minecraft.graham.title": "《影 流 之 主》", + "painting.minecraft.kebab.author": "香蕉君", + "painting.minecraft.kebab.title": "《回眸一笑》", + "painting.minecraft.match.author": "诸葛亮", + "painting.minecraft.match.title": "《厚颜无耻》", + "painting.minecraft.pigscene.author": "绵羊", + "painting.minecraft.pigscene.title": "《张口闭眼》", + "painting.minecraft.plant.author": "大力哥", + "painting.minecraft.plant.title": "《大力出奇迹》", + "painting.minecraft.pointer.author": "假面骑士V3", + "painting.minecraft.pointer.title": "《你马的为什么》", + "painting.minecraft.pool.author": "葛平", + "painting.minecraft.pool.title": "《我有知识我自豪》", + "painting.minecraft.sea.author": "面筋哥", + "painting.minecraft.sea.title": "《我的烤面筋》", + "painting.minecraft.skeleton.author": "专业团队", + "painting.minecraft.skeleton.title": "《黑人抬棺》", + "painting.minecraft.skull_and_roses.author": "元首", + "painting.minecraft.skull_and_roses.title": "《我到河北省来》", + "painting.minecraft.stage.author": "刘醒", + "painting.minecraft.stage.title": "《啵嘴》", + "painting.minecraft.sunset.author": "王境泽", + "painting.minecraft.sunset.title": "《真香》", + "painting.minecraft.void.author": "冬泳怪鸽", + "painting.minecraft.void.title": "《奥利给》", + "painting.minecraft.wanderer.author": "奥尔加", + "painting.minecraft.wanderer.title": "《希望之花》", + "painting.minecraft.wasteland.author": "森下下士", + "painting.minecraft.wasteland.title": "《很有精神》", + "painting.minecraft.wither.author": "孙笑川", + "painting.minecraft.wither.title": "《不爱别伤害》" +} diff --git a/modules/famous_scene/assets/minecraft/textures/painting/pigscene.png b/modules/famous_scene/assets/minecraft/textures/painting/pigscene.png index 241cd1fc4..d35122276 100644 Binary files a/modules/famous_scene/assets/minecraft/textures/painting/pigscene.png and b/modules/famous_scene/assets/minecraft/textures/painting/pigscene.png differ diff --git a/modules/famous_scene/module_manifest.json b/modules/famous_scene/module_manifest.json index 8bddec7d6..e2d69a4de 100644 --- a/modules/famous_scene/module_manifest.json +++ b/modules/famous_scene/module_manifest.json @@ -2,13 +2,12 @@ "name": "famous_scene", "type": "resource", "description": "世 界 名 画", - "author": [ - "DoroWolf" + "author": ["DoroWolf"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ], - "incompatible_with": [ - "linus_minecraft_craps" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "incompatible_with": ["linus_minecraft_craps"] +} diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/blast1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/blast1.ogg new file mode 100644 index 000000000..acace5631 Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/blast1.ogg differ diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/blast_far1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/blast_far1.ogg new file mode 100644 index 000000000..367be514d Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/blast_far1.ogg differ diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/largeblast1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/largeblast1.ogg new file mode 100644 index 000000000..b7c57c13d Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/largeblast1.ogg differ diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/largeblast_far1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/largeblast_far1.ogg new file mode 100644 index 000000000..05af0cdb0 Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/largeblast_far1.ogg differ diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/launch1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/launch1.ogg new file mode 100644 index 000000000..814643176 Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/launch1.ogg differ diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/twinkle1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/twinkle1.ogg new file mode 100644 index 000000000..150605cbf Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/twinkle1.ogg differ diff --git a/modules/firework_sound/assets/minecraft/sounds/fireworks/twinkle_far1.ogg b/modules/firework_sound/assets/minecraft/sounds/fireworks/twinkle_far1.ogg new file mode 100644 index 000000000..ab0d4abf6 Binary files /dev/null and b/modules/firework_sound/assets/minecraft/sounds/fireworks/twinkle_far1.ogg differ diff --git a/modules/firework_sound/module_manifest.json b/modules/firework_sound/module_manifest.json new file mode 100644 index 000000000..f007b574f --- /dev/null +++ b/modules/firework_sound/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "firework_sound", + "type": "resource", + "description": "专 业 配 音 员", + "author": ["DoroWolf"] +} diff --git a/modules/first_anniversary/add.json b/modules/first_anniversary/add.json deleted file mode 100644 index c4d048831..000000000 --- a/modules/first_anniversary/add.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "block.minecraft.cake": "梗体中文一周年生日快乐!" -} diff --git a/modules/first_anniversary/assets/minecraft/models/block/cake.json b/modules/first_anniversary/assets/minecraft/models/block/cake.json deleted file mode 100644 index 825f327bb..000000000 --- a/modules/first_anniversary/assets/minecraft/models/block/cake.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "one": "mcwzhmeme:block/one", - "bottom": "block/cake_bottom", - "top": "block/cake_top", - "particle": "block/cake_side", - "side": "block/cake_side" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [15, 8, 15], - "faces": { - "north": {"uv": [1, 8, 15, 16], "texture": "#side"}, - "east": {"uv": [1, 8, 15, 16], "texture": "#side"}, - "south": {"uv": [1, 8, 15, 16], "texture": "#side"}, - "west": {"uv": [1, 8, 15, 16], "texture": "#side"}, - "up": {"uv": [1, 1, 15, 15], "texture": "#top"}, - "down": {"uv": [1, 1, 15, 15], "texture": "#bottom", "cullface": "down"} - } - }, - { - "from": [6, 10, 7.5], - "to": [10, 11, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 10.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 4, 1], "texture": "#one"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "south": {"uv": [0, 0, 4, 1], "texture": "#one"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "up": {"uv": [0, 0, 4, 1], "texture": "#one"}, - "down": {"uv": [0, 0, 4, 1], "texture": "#one"} - } - }, - { - "from": [7.5, 11, 7.5], - "to": [8.5, 18, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 7], "texture": "#one"}, - "east": {"uv": [0, 0, 1, 7], "texture": "#one"}, - "south": {"uv": [0, 0, 1, 7], "texture": "#one"}, - "west": {"uv": [0, 0, 1, 7], "texture": "#one"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#one"} - } - }, - { - "from": [8.5, 16, 7.5], - "to": [9.5, 17, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 16.5, 8.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#one"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#one"} - } - } - ], - "groups": [0, - { - "name": "one", - "origin": [8, 8, 8], - "children": [1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/modules/first_anniversary/module_manifest.json b/modules/first_anniversary/module_manifest.json deleted file mode 100644 index 686d32f38..000000000 --- a/modules/first_anniversary/module_manifest.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "first_anniversary", - "type": "resource", - "description": "我们一周年啦!", - "author": [ - "Lakejason0" - ], - "incompatible_with": [ - "ekac" - ], - "classifier": [ - "modified_resource", - "modified_language" - ] -} \ No newline at end of file diff --git a/modules/fursuit/add.json b/modules/fursuit/add.json index e0fd606bf..57edd29c3 100644 --- a/modules/fursuit/add.json +++ b/modules/fursuit/add.json @@ -1,9 +1,9 @@ -{ - "block.minecraft.attached_pumpkin_stem": "结果的蓝瓜茎", - "block.minecraft.carved_pumpkin": "光锋蓝瓜", - "block.minecraft.jack_o_lantern": "真·“光”锋", - "block.minecraft.pumpkin": "没脸的光锋", - "block.minecraft.pumpkin_stem": "蓝瓜茎", - "item.minecraft.pumpkin_pie": "蓝瓜π", - "item.minecraft.pumpkin_seeds": "蓝瓜.torrent" -} \ No newline at end of file +{ + "block.minecraft.attached_pumpkin_stem": "结果的蓝瓜梗", + "block.minecraft.carved_pumpkin": "光锋蓝瓜", + "block.minecraft.jack_o_lantern": "真·“光”锋", + "block.minecraft.pumpkin": "蓝瓜", + "block.minecraft.pumpkin_stem": "蓝瓜梗", + "item.minecraft.pumpkin_pie": "蓝瓜π", + "item.minecraft.pumpkin_seeds": "蓝瓜.torrent" +} diff --git a/modules/fursuit/module_manifest.json b/modules/fursuit/module_manifest.json index 8189355c1..124ed5bb0 100644 --- a/modules/fursuit/module_manifest.json +++ b/modules/fursuit/module_manifest.json @@ -1,12 +1,12 @@ -{ - "name": "fursuit", - "type": "resource", - "description": "奇怪的南瓜?", - "author": [ - "ZH9c418" - ], - "classifier": [ - "modified_resource", - "modified_language" - ] -} +{ + "name": "fursuit", + "type": "resource", + "description": "奇怪的南瓜?", + "author": ["ZH9c418"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/break/creaking_heart_break.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/break/creaking_heart_break.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/break/creaking_heart_break.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/fall/creaking_heart_fall.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/fall/creaking_heart_fall.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/fall/creaking_heart_fall.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit1.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit1.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit2.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit2.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit3.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit3.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit4.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit4.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit5.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit5.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hit/creaking_heart_hit5.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail1.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail1.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail2.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail2.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail3.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail3.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail4.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail4.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail5.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail5.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail5.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail6.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail6.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail6.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail7.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail7.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/hurt/trail7.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle1.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle1.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle2.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle2.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle3.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle3.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle4.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle4.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/idle/creaking_heart_idle4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood1.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood1.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood2.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood2.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood3.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood3.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood4.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood4.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/place/wood4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/spawnmob/creaking_heart_spawnmob.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/spawnmob/creaking_heart_spawnmob.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/spawnmob/creaking_heart_spawnmob.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step1.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step1.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step2.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step2.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step3.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step3.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step4.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step4.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step5.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step5.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step5.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step6.ogg b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step6.ogg new file mode 100644 index 000000000..c8865a044 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/block/creaking_heart/step/creaking_heart_step6.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/attack.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/attack.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/attack.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_activate.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_activate.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_activate.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack1.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack1.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack2.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack2.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack3.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack3.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack4.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack4.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_attack4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_deactive.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_deactive.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_deactive.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_death.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_death.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_death.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze1.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze1.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze2.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze2.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze3.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze3.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze4.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze4.ogg new file mode 100644 index 000000000..797edaa6c Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_freeze4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle1.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle1.ogg new file mode 100644 index 000000000..b1d046442 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle2.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle2.ogg new file mode 100644 index 000000000..b1d046442 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle3.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle3.ogg new file mode 100644 index 000000000..b1d046442 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle4.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle4.ogg new file mode 100644 index 000000000..b1d046442 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle5.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle5.ogg new file mode 100644 index 000000000..b1d046442 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle5.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle6.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle6.ogg new file mode 100644 index 000000000..b1d046442 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_idle6.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_spawn.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_spawn.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_spawn.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step1.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step1.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step2.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step2.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step3.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step3.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step3.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step4.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step4.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step4.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step5.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step5.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_step5.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_sway.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_sway.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_sway.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze1.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze1.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze1.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze2.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze2.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze2.ogg differ diff --git a/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze3.ogg b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze3.ogg new file mode 100644 index 000000000..d02dde177 Binary files /dev/null and b/modules/ga_zhi/assets/minecraft/sounds/mob/creaking/creaking_unfreeze3.ogg differ diff --git a/modules/ga_zhi/module_manifest.json b/modules/ga_zhi/module_manifest.json new file mode 100644 index 000000000..ec02f9e2d --- /dev/null +++ b/modules/ga_zhi/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "ga_zhi", + "type": "resource", + "description": "把嘎枝怪音效替换成山药的嘎↓吱↑", + "author": ["LD_Anvil"] +} diff --git a/modules/gameplay_confuser/module_manifest.json b/modules/gameplay_confuser/module_manifest.json index daf7cce3a..a5e80c7ec 100644 --- a/modules/gameplay_confuser/module_manifest.json +++ b/modules/gameplay_confuser/module_manifest.json @@ -2,11 +2,6 @@ "name": "gameplay_confuser", "type": "collection", "description": "一系列改变游戏体验并引发困惑和障碍的无梗模块集合", - "author": [ - "siiftun1857" - ], - "contains": [ - "block_animation_reverse", - "fake_multitool" - ] + "author": ["siiftun1857"], + "contains": ["block_animation_reverse", "fake_multitool", "fake_omniore"] } diff --git a/modules/glyph_sizes_fix/module_manifest.json b/modules/glyph_sizes_fix/module_manifest.json deleted file mode 100644 index 0ea406f65..000000000 --- a/modules/glyph_sizes_fix/module_manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "glyph_sizes_fix", - "type": "resource", - "description": "修复全角标点周围没有空隙的问题", - "author": [ - "Lakejason0" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file diff --git a/modules/goat_horn_sound/add.json b/modules/goat_horn_sound/add.json new file mode 100644 index 000000000..9db3aef95 --- /dev/null +++ b/modules/goat_horn_sound/add.json @@ -0,0 +1,10 @@ +{ + "instrument.minecraft.admire_goat_horn": "威廉", + "instrument.minecraft.call_goat_horn": "山羊", + "instrument.minecraft.dream_goat_horn": "怒吼", + "instrument.minecraft.feel_goat_horn": "欢呼", + "instrument.minecraft.ponder_goat_horn": "喇叭", + "instrument.minecraft.seek_goat_horn": "失败", + "instrument.minecraft.sing_goat_horn": "出场", + "instrument.minecraft.yearn_goat_horn": "恐龙" +} diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call0.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call0.ogg new file mode 100644 index 000000000..1a1dad880 Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call0.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call1.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call1.ogg new file mode 100644 index 000000000..7a16f0eb2 Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call1.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call2.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call2.ogg new file mode 100644 index 000000000..bda8c654f Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call2.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call3.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call3.ogg new file mode 100644 index 000000000..34013d7e3 Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call3.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call4.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call4.ogg new file mode 100644 index 000000000..db0adadc8 Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call4.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call5.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call5.ogg new file mode 100644 index 000000000..7f305d213 Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call5.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call6.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call6.ogg new file mode 100644 index 000000000..e70fd4ff9 Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call6.ogg differ diff --git a/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call7.ogg b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call7.ogg new file mode 100644 index 000000000..41476bcad Binary files /dev/null and b/modules/goat_horn_sound/assets/minecraft/sounds/item/goat_horn/call7.ogg differ diff --git a/modules/goat_horn_sound/module_manifest.json b/modules/goat_horn_sound/module_manifest.json new file mode 100644 index 000000000..0669cd986 --- /dev/null +++ b/modules/goat_horn_sound/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "goat_horn_sound", + "type": "resource", + "description": "山羊角的音效(音量注意)", + "author": ["DoroWolf"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/grass_enchanted/assets/minecraft/textures/block/short_grass.png b/modules/grass_enchanted/assets/minecraft/textures/block/short_grass.png new file mode 100644 index 000000000..ba9baad27 Binary files /dev/null and b/modules/grass_enchanted/assets/minecraft/textures/block/short_grass.png differ diff --git a/modules/grass_enchanted/module_manifest.json b/modules/grass_enchanted/module_manifest.json index 2af717227..5e8a7c571 100644 --- a/modules/grass_enchanted/module_manifest.json +++ b/modules/grass_enchanted/module_manifest.json @@ -2,13 +2,6 @@ "name": "grass_enchanted", "type": "resource", "description": "草(附魔)", - "author": [ - "MiemieMethod" - ], - "incompatible_with": [ - "real_grass" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["MiemieMethod"], + "incompatible_with": ["real_grass"] +} diff --git a/modules/jinkela/add.json b/modules/jinkela/add.json index 385c55685..32062f67c 100644 --- a/modules/jinkela/add.json +++ b/modules/jinkela/add.json @@ -1,3 +1,4 @@ { - "item.minecraft.bone_meal": "金坷垃" + "item.minecraft.bone_meal": "金坷垃", + "subtitles.item.bone_meal.use": "金坷垃:被扬" } diff --git a/modules/jinkela/module_manifest.json b/modules/jinkela/module_manifest.json index fc77b8b7b..e90d5d53d 100644 --- a/modules/jinkela/module_manifest.json +++ b/modules/jinkela/module_manifest.json @@ -2,11 +2,11 @@ "name": "jinkela", "type": "resource", "description": "阿妹你看,上帝压狗", - "author": [ - "DoroWolf" - ], - "classifier": [ - "modified_resource", - "modified_language" + "author": ["DoroWolf"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_achievements_1.11-1.11.2/add.json b/modules/lang_achievements_1.11-1.11.2/add.json index e0eb1989a..75632f5e9 100644 --- a/modules/lang_achievements_1.11-1.11.2/add.json +++ b/modules/lang_achievements_1.11-1.11.2/add.json @@ -29,17 +29,17 @@ "achievement.diamondsToYou.desc": "给你的一位好♂基♂友扔祖安石", "achievement.enchantments": "附膜术士", "achievement.enchantments.desc": "用聪明人才能翻开的书、黑曜石和祖安石来制作一个覆膜台", - "achievement.exploreAllBiomes": "踏破祖安靴有觅处", - "achievement.exploreAllBiomes.desc": "我曾经跨过山和大海", + "achievement.exploreAllBiomes": "我曾经跨过山和大海", + "achievement.exploreAllBiomes.desc": "踏破祖安靴有觅处", "achievement.flyPig": "当猪飞的时候", "achievement.flyPig.desc": "骑着猪从悬崖飞下", "achievement.fullBeacon": "最亮的信标", "achievement.fullBeacon.desc": "让一个培根方块发挥最大功效", "achievement.get": "成就get☆daze!", - "achievement.ghast": "见鬼去吧", + "achievement.ghast": "请打开麦克风交流", "achievement.ghast.desc": "用一团火球弄死一只地狱轰炸机", "achievement.killCow": "斗牛士", - "achievement.killCow.desc": "获得一些皮", + "achievement.killCow.desc": "获得一些皮革", "achievement.killEnemy": "猛汉", "achievement.killEnemy.desc": "弄死一只怪物", "achievement.killWither": "又开始了。", @@ -50,8 +50,8 @@ "achievement.mineWood.desc": "撸一棵树直到跳出一个日志", "achievement.onARail": "在铁路上", "achievement.onARail.desc": "通过《我的世界》旅行,移动到至少离出发点1000格的位置", - "achievement.openInventory": "打开物品栏", - "achievement.openInventory.desc": "按“%1$s”来打开你的物品栏", + "achievement.openInventory": "打开库存", + "achievement.openInventory.desc": "按“%1$s”来打开你的库存", "achievement.overkill": "太杀了", "achievement.overkill.desc": "在一击内造成9颗心的伤害", "achievement.overpowered": "君临天下", @@ -65,10 +65,11 @@ "achievement.snipeSkeleton.desc": "50米开外,一箭干掉一只骷髅", "achievement.spawnWither": "又开始了?", "achievement.spawnWither.desc": "传唤凋零怪", - "achievement.taken": "成就get☆daze!", + "achievement.taken": "成果get☆daze!", "achievement.theEnd": "结束了?", - "achievement.theEnd.desc": "找到终点", + "achievement.theEnd.desc": "找到终端", "achievement.theEnd2": "结束了。", "achievement.theEnd2.desc": "弄死昆图库塔卡提考特苏瓦西拉松", - "achievement.unknown": "???" + "achievement.unknown": "???", + "gui.achievements": "成果" } diff --git a/modules/lang_achievements_1.11-1.11.2/module_manifest.json b/modules/lang_achievements_1.11-1.11.2/module_manifest.json index 263925176..9983692a1 100644 --- a/modules/lang_achievements_1.11-1.11.2/module_manifest.json +++ b/modules/lang_achievements_1.11-1.11.2/module_manifest.json @@ -2,10 +2,11 @@ "name": "lang_achievements_1.11-1.11.2", "type": "resource", "description": "17w13a之前的成就字符串", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_april_fools_snapshots/add.json b/modules/lang_april_fools_snapshots/add.json new file mode 100644 index 000000000..6c14a239a --- /dev/null +++ b/modules/lang_april_fools_snapshots/add.json @@ -0,0 +1,530 @@ +{ + "action.approve": "批准“%s”", + "action.repeal": "撤销“%s”", + "advancements.adventure.almost_there.description": "你学会/advancement的用法了吗?", + "advancements.adventure.almost_there.title": "就快到了", + "advancements.adventure.vote_1.description": "第一次投票", + "advancements.adventure.vote_1.title": "第一票!", + "advancements.adventure.vote_256.description": "投票256次", + "advancements.adventure.vote_256.title": "投票大神", + "advancements.end.ride_dragon.description": "骑昆图库塔卡提考特苏瓦西拉松针不戳", + "advancements.end.ride_dragon.title": "骑昆图库塔卡提考特苏瓦西拉松者", + "attribute.name.generic.scale": "实体尺寸", + "biome.minecraft.between": "之间", + "biome.minecraft.busy": "给那些没时间胡搞的玩家准备的生物群系", + "biome.minecraft.shapes": "形状", + "block.minecraft.ant": "一只兰顿蚂蚁", + "block.minecraft.banner.m.black": "黑色阿莫古斯", + "block.minecraft.banner.m.blue": "蓝色阿莫古斯", + "block.minecraft.banner.m.brown": "棕色阿莫古斯", + "block.minecraft.banner.m.cyan": "青色阿莫古斯", + "block.minecraft.banner.m.gray": "灰色阿莫古斯", + "block.minecraft.banner.m.green": "原谅色阿莫古斯", + "block.minecraft.banner.m.light_blue": "亮蓝色阿莫古斯", + "block.minecraft.banner.m.light_gray": "亮灰色阿莫古斯", + "block.minecraft.banner.m.lime": "酸橙色阿莫古斯", + "block.minecraft.banner.m.magenta": "品红色阿莫古斯", + "block.minecraft.banner.m.orange": "橙色阿莫古斯", + "block.minecraft.banner.m.pink": "粉红色阿莫古斯", + "block.minecraft.banner.m.purple": "紫色阿莫古斯", + "block.minecraft.banner.m.red": "红色阿莫古斯", + "block.minecraft.banner.m.white": "白色阿莫古斯", + "block.minecraft.banner.m.yellow": "黄色阿莫古斯", + "block.minecraft.bed.no_sleep_v2": "你想做黑日梦?", + "block.minecraft.book_box": "无限书盒", + "block.minecraft.cheese": "真·硬奶酪", + "block.minecraft.chest.lab": "月球实验室设备", + "block.minecraft.chest.moon": "月球任务补给箱", + "block.minecraft.copper_sink": "铜水槽", + "block.minecraft.copper_spleaves": "铜枝叶", + "block.minecraft.cursor": "光标", + "block.minecraft.filled_copper_sink": "装满的铜水槽", + "block.minecraft.neither_portal": "不界门户", + "block.minecraft.netherite_stairs": "史上最炫楼梯", + "block.minecraft.other_portal": "其他门户", + "block.minecraft.packed_air": "打包的废气", + "block.minecraft.pickaxe_block": "破坏者", + "block.minecraft.place_block": "放置者", + "block.minecraft.zone": "剩菜", + "death.attack.nightmare": "%1$s对这个世界来说太软了", + "death.attack.nightmare.player": "%1$s对这个世界来说太软了(%2$s干的)", + "death.attack.onMoon": "%1$s:我去,是吴奇隆", + "death.midas.turned_into_gold": "%1$s变成了黄油", + "demo.help.buy": "打开登记表", + "demo.help.nag1": "请考虑注册我们的游戏", + "demo.help.nag2": "以访问所有章节和", + "demo.help.nag3": "所有武器!", + "demo.help.title": "MineCraft共享软件", + "effect.minecraft.big": "变大", + "effect.minecraft.small": "变小", + "entity.minecraft.moon_cow": "月球牛", + "entity.minecraft.ray_tracing": "光线追踪", + "entity.minecraft.stencil_display": "模板展示实体", + "feedback.line1": "点子?特性?拍马屁?给我们发明信片!", + "feedback.line2": "我们的地址:Mojang AB, Söder Mälarstrand 43, 118 25 Stockholm, Sweden", + "gui.pending_votes.title": "待定投票", + "gui.voting.do_it": "已投票!", + "gui.voting.next": "下一个投票", + "gui.voting.prev": "上一个投票", + "gui.voting.title": "投票中", + "item.key.tooltip": "打开%s门", + "item.minecraft.3d": "3D", + "item.minecraft.air_block": "废气", + "item.minecraft.bit": "比特", + "item.minecraft.blue_key": "蓝色房卡", + "item.minecraft.bottle_of_entity": "实体瓶子", + "item.minecraft.bottle_of_entity.specific": "%s瓶子", + "item.minecraft.bottle_of_void": "虚无瓶子", + "item.minecraft.byte_tag": "字节标签", + "item.minecraft.compound_tag": "复合标签", + "item.minecraft.double_tag": "双精度浮点数标签", + "item.minecraft.dupe_hack": "minecraft:dupe_hack", + "item.minecraft.fine_item": "一个极妙之物", + "item.minecraft.float_tag": "浮点数标签", + "item.minecraft.footprint": "脚印", + "item.minecraft.glass_bottle_air": "废气瓶子", + "item.minecraft.int_tag": "整型标签", + "item.minecraft.la_baguette": "真·法国面包", + "item.minecraft.le_tricolore": "真·法国国旗", + "item.minecraft.left_curly": "左大括号", + "item.minecraft.left_square": "左方括号", + "item.minecraft.lingering_potion.effect.big": "滞留型变大溶液", + "item.minecraft.lingering_potion.effect.small": "滞留型变小溶液", + "item.minecraft.list_tag": "列表标签", + "item.minecraft.long_tag": "长整型标签", + "item.minecraft.m_banner_pattern": "旗帜图案", + "item.minecraft.m_banner_pattern.desc": "阿莫古斯", + "item.minecraft.moon_cow_spawn_egg": "月球牛幼体", + "item.minecraft.name": "名称", + "item.minecraft.potion.effect.big": "变大溶液", + "item.minecraft.potion.effect.small": "变小溶液", + "item.minecraft.red_key": "红色房卡", + "item.minecraft.right_curly": "右大括号", + "item.minecraft.right_square": "右方括号", + "item.minecraft.ruby": "红宝石", + "item.minecraft.short_tag": "短整型标签", + "item.minecraft.splash_bottle_of_entity": "喷溅型实体瓶子", + "item.minecraft.splash_bottle_of_entity.specific": "喷溅型%s瓶子", + "item.minecraft.splash_potion.effect.big": "喷溅型变大溶液", + "item.minecraft.splash_potion.effect.small": "喷溅型变小溶液", + "item.minecraft.string2": "长字符串", + "item.minecraft.string_tag": "字符串标签", + "item.minecraft.syntax_error": "语法错误", + "item.minecraft.tag": "标签", + "item.minecraft.tipped_arrow.effect.big": "变大之箭", + "item.minecraft.tipped_arrow.effect.small": "变小之箭", + "item.minecraft.yellow_key": "黄色房卡", + "key.boss_mode": "老板模式", + "key.decrease_view": "屏幕尺寸---", + "key.increase_view": "屏幕尺寸+++", + "key.voting": "投票", + "menu.modem_play": "猫玩™", + "menu.modem_played1": "歪比巴卜", + "menu.modem_played2": "爬!", + "menu.select_episode": "选择你的章节", + "rule.ai_attack": "将玩家%s替代为先进(迫真)AI机器人", + "rule.ai_attack.decorate": "[BOT] %s", + "rule.air_blocks": "解锁可食用的废气、打包的废气以在月球上生存,并解锁可骑乘的气球牛", + "rule.always_flying": "根据所有已知的航空法,暴徒不享受行走的权利", + "rule.anonymize_skins": "匿名化玩家皮肤", + "rule.attack_knockback": "将鸡腿乘以%s%%", + "rule.autoJump.also_default_vanilla_to_true": "打开自动跳跳。同时打开原版的自动跳跳的默认设置", + "rule.autoJump.of_course": "自动跳跳是好文明", + "rule.autojump.off": "关掉自动跳跳", + "rule.autoJump.on": "打开自动跳跳", + "rule.autoJump.true": "自动跳跳:打开", + "rule.autoJump.yes": "自动跳跳女子", + "rule.bed_pvp": "床 上 大 战", + "rule.bed_pvp.tooltip": "极易爆炸!", + "rule.bedrock_shadows": "Minecraft基岩版风格的实体阴影", + "rule.beds_on_banners": "旗帜变床", + "rule.beeloons": "打开蜂气球", + "rule.beta_entity_ids": "在所有实体上方显示ID", + "rule.big_heads": "大头模式", + "rule.biome_color.fog": "将%s的雾颜色设为%s", + "rule.biome_color.foliage": "将%s的树叶颜色设为%s", + "rule.biome_color.grass": "将%s的草颜色设为%s", + "rule.biome_color.sky": "将%s的天空颜色设为%s", + "rule.biome_color.water": "将%s的水颜色设为%s", + "rule.biome_color.water_fog": "将%s的水雾颜色设为%s", + "rule.boat_collisions.break": "《明日方舟》在高速碰撞时损坏", + "rule.boat_collisions.explode": "《明日方舟》在高速碰撞时瞬间爆炸", + "rule.boat_collisions.none": "关掉《明日方舟》在高速碰撞时损坏规则", + "rule.bouncy_castle": "超级弹弹黏糊糊方块", + "rule.buff_fishing": "滥权级钓鱼", + "rule.buttons_on_things": "你可以在更多东西上放按钮", + "rule.caep.awesom": "给所有人一个吊炸天的披风", + "rule.caep.no_circle": "OP爬", + "rule.caep.nyan": "喵喵喵!UwU", + "rule.caep.squid": "给所有人一个八爪鱼披风", + "rule.caep.veterinarian": "给所有动物爱好者一个兽医披风", + "rule.change_integer_gamerule": "将游戏规则“%s”的值改为%s", + "rule.change_world_shape": "改变主世界形状", + "rule.charged_creepers": "所有爪巴者都充上电了", + "rule.codepoint_replace": "将“%s”替换为“%s”", + "rule.colored_light": "加入%s光", + "rule.connector": "%s,但是%s", + "rule.copper_sink": "加入铜水槽", + "rule.copy_skin": "所有人复制%s!", + "rule.damage_modifier": "将伤害类型“%s”乘以%s", + "rule.day_beds": "床跳过白天而不是晚上", + "rule.day_length.change": "将日长从%s改为%s", + "rule.day_length.set": "将日长设为%s", + "rule.dead_bush_renewability": "死掉的布什现在可再生了,但是树宝宝不是了", + "rule.decrease_scale": "将玩家的尺寸减小%sx", + "rule.default_sheep_color": "将产卵的羊颜色设为%s", + "rule.dinnerbonize": "倒立%s", + "rule.disable_item_tooltips": "关掉物品提示框", + "rule.disable_shield": "关掉盾牌防御", + "rule.dream_mode": "人生如“梦”", + "rule.drink_air": "虚无瓶子:通过喝玻璃瓶获得,可能会有副作用", + "rule.dupe_hack_break_chance": "将dupe_hack损坏的概率设为%s%%", + "rule.dupe_hack_occurrence_chance": "将dupe_hack出现的概率设为%s%%", + "rule.egg_free.item": "鸡下%s", + "rule.egg_free.seed": "鸡下随机分配的物品", + "rule.egg_free.seed_reshuffle": "鸡下随机分配的物品(重新混合)", + "rule.endermen_block_update": "教小黑如何正确的放置方块", + "rule.endermen_pick_up_anything": "小黑可以捡起任何东西", + "rule.entity_collisions": "实体之间相互碰撞", + "rule.evil_eye": "得到邪恶之眼", + "rule.exploding_phantoms": "碰到IcyPhantom时瞬间爆炸", + "rule.explosion_power.change": "将额外爆炸力量从%s改为%s", + "rule.explosion_power.set": "将额外爆炸力量设为%s", + "rule.fast_hoppers": "H O P更快,但是带H O P的《我的世界》更慢", + "rule.fire_sponge": "黄 色 大 发 糕可以吸收熔岩", + "rule.fish_anything": "海洋污染:任何东西都能钓上来!", + "rule.fix_piston": "↓↑激活时瞬间爆炸", + "rule.fix_qc": "准固定连接", + "rule.flailing.extreme": "四肢无处不在", + "rule.flailing.mild": "轻度摇摆", + "rule.flailing.none": "停止所有摇摆", + "rule.flailing.normal": "正常的摇摆水平", + "rule.flailing.wild": "随便摇摆", + "rule.flailing.windmill": "大风车吱呀吱呀哟地转!!!!", + "rule.flammability.high": "将%s的可燃性改为高", + "rule.flammability.low": "将%s的可燃性改为低", + "rule.flammability.medium": "将%s的可燃性改为中", + "rule.flammability.very_high": "将%s的可燃性改为“一点就着”(确信)", + "rule.flintsploder": "真·哪里不会点哪里", + "rule.flip_binary_gamerule": "翻转游戏规则“%s”", + "rule.floating_heads": "浮头模式", + "rule.fog_off": "有雾的地方移除雾,反之亦然", + "rule.food_restriction.any": "均衡饮食", + "rule.food_restriction.apple": "苹果派对饮食", + "rule.food_restriction.baked_potato": "烘培饮食", + "rule.food_restriction.beef": "牛寿司饮食", + "rule.food_restriction.beetroot": "甜菜饮食", + "rule.food_restriction.beetroot_soup": "流动饮食", + "rule.food_restriction.bread": "鲜美饮食", + "rule.food_restriction.cake": "生日饮食", + "rule.food_restriction.carrot": "兔子饮食", + "rule.food_restriction.chicken": "沙门氏菌饮食", + "rule.food_restriction.chorus_fruit": "营养饮食", + "rule.food_restriction.cod": "腥味饮食", + "rule.food_restriction.cooked_beef": "肉食爱好者饮食", + "rule.food_restriction.cooked_chicken": "鸡块饮食", + "rule.food_restriction.cooked_cod": "没有薯条的炸鱼饮食", + "rule.food_restriction.cooked_mutton": "羊毛饮食", + "rule.food_restriction.cooked_porkchop": "带培根回家饮食", + "rule.food_restriction.cooked_rabbit": "正确饮食", + "rule.food_restriction.cooked_salmon": "江の饮食", + "rule.food_restriction.cookie": "不健康饮食", + "rule.food_restriction.dried_kelp": "脆脆饮食", + "rule.food_restriction.edible": "吃吃喝喝", + "rule.food_restriction.enchanted_golden_apple": "米其林饮食", + "rule.food_restriction.glow_berries": "X光饮食", + "rule.food_restriction.golden_apple": "健康饮食", + "rule.food_restriction.golden_carrot": "昂贵的兔崽子饮食", + "rule.food_restriction.honey_bottle": "甜蜜蜜饮食", + "rule.food_restriction.inedible.apple": "迫真橡树果实", + "rule.food_restriction.inedible.baked_potato": "烤过的块茎", + "rule.food_restriction.inedible.beef": "切牛肉", + "rule.food_restriction.inedible.beetroot": "红色块茎", + "rule.food_restriction.inedible.beetroot_soup": "猪血?", + "rule.food_restriction.inedible.bread": "近战武器", + "rule.food_restriction.inedible.cake": "谎言", + "rule.food_restriction.inedible.carrot": "兔粮", + "rule.food_restriction.inedible.chicken": "一片鸟", + "rule.food_restriction.inedible.chorus_fruit": "紫色外星球", + "rule.food_restriction.inedible.cod": "黏糊糊的水货", + "rule.food_restriction.inedible.cooked_beef": "火化的牛", + "rule.food_restriction.inedible.cooked_chicken": "你干嘛哎呦", + "rule.food_restriction.inedible.cooked_cod": "毁掉的寿司", + "rule.food_restriction.inedible.cooked_mutton": "恶心的烧焦羊肉片", + "rule.food_restriction.inedible.cooked_porkchop": "烧过的猪肉片", + "rule.food_restriction.inedible.cooked_rabbit": "兔兔这么可爱为什么要吃兔兔???", + "rule.food_restriction.inedible.cooked_salmon": "黏糊糊鱼肉酱", + "rule.food_restriction.inedible.cookie": "难吃的黄色东西", + "rule.food_restriction.inedible.dried_kelp": "干巴巴的,但是粘糊糊的", + "rule.food_restriction.inedible.enchanted_golden_apple": "不能吃的闪亮球", + "rule.food_restriction.inedible.glow_berries": "灯泡", + "rule.food_restriction.inedible.golden_apple": "不能吃的黄色球", + "rule.food_restriction.inedible.golden_carrot": "兔崽子吃的", + "rule.food_restriction.inedible.honey_bottle": "糖尿病警告", + "rule.food_restriction.inedible.melon_slice": "家人们谁懂啊", + "rule.food_restriction.inedible.mushroom_stew": "蘑菇酱", + "rule.food_restriction.inedible.mutton": "一片羊", + "rule.food_restriction.inedible.poisonous_potato": "垃圾", + "rule.food_restriction.inedible.porkchop": "一片猪", + "rule.food_restriction.inedible.potato": "这是根还是茎?", + "rule.food_restriction.inedible.pufferfish": "恐怖深渊", + "rule.food_restriction.inedible.pumpkin_pie": "这不是π,你甚至没有烤过它", + "rule.food_restriction.inedible.rabbit": "兔——兔——", + "rule.food_restriction.inedible.rabbit_stew": "谁炖了兔崽子罗杰?", + "rule.food_restriction.inedible.rotten_flesh": "垃圾食品", + "rule.food_restriction.inedible.salmon": "红色黏糊糊水货", + "rule.food_restriction.inedible.spider_eye": "蛛形球", + "rule.food_restriction.inedible.suspicious_stew": "SUS", + "rule.food_restriction.inedible.sweet_berries": "棒棒糖", + "rule.food_restriction.inedible.tropical_fish": "尼莫", + "rule.food_restriction.maybe_edible": "吃吃喝喝(可能有副作用)", + "rule.food_restriction.melon_slice": "切片饮食", + "rule.food_restriction.mushroom_stew": "蘑菇!都是蘑菇!", + "rule.food_restriction.mutton": "生机饮食", + "rule.food_restriction.poisonous_potato": "奇怪饮食", + "rule.food_restriction.porkchop": "五花肉饮食", + "rule.food_restriction.potato": "服务器饮食", + "rule.food_restriction.pufferfish": "作死饮食", + "rule.food_restriction.pumpkin_pie": "3.14159265358979...", + "rule.food_restriction.rabbit": "跳伞饮食", + "rule.food_restriction.rabbit_stew": "自动跳跳饮食", + "rule.food_restriction.rotten_flesh": "垃圾饮食", + "rule.food_restriction.salmon": "寿司饮食", + "rule.food_restriction.spider_eye": "巫术饮食", + "rule.food_restriction.suspicious_stew": "SUS饮食", + "rule.food_restriction.sweet_berries": "超级甜甜饮食", + "rule.food_restriction.tropical_fish": "只吃尼莫", + "rule.footprint": "推进脚印计划状态从“%s”到“%s”", + "rule.footprint.0": "脚印?什么脚印?", + "rule.footprint.1": "打开恢复脚印流程", + "rule.footprint.10": "是否参加会议", + "rule.footprint.11": "打开脚印", + "rule.footprint.2": "重新评估脚印原则", + "rule.footprint.3": "预估脚印时间表", + "rule.footprint.4": "研究竞争产品中现有的脚印解决方案", + "rule.footprint.5": "获得脚印倡议相关各方的支持", + "rule.footprint.6": "脚印焦点小组的研究结果", + "rule.footprint.7": "迭代脚印外观", + "rule.footprint.8": "在更广泛的论坛上询问有关脚印对游戏玩法的影响", + "rule.footprint.9": "脚印质量和可靠性测试", + "rule.french_mode": "法国模式", + "rule.give_effect": "给所有玩家无限%s", + "rule.give_items": "给所有在线玩家%s个%s", + "rule.global_pitch": "将每个声音的音调升高%s%%", + "rule.glow_bees": "蜂子发光", + "rule.glowing_glow_squids": "让珊瑚感染八爪鱼真正发光", + "rule.god_of_lightning": "不只获得雷 霆 之 力", + "rule.grappling_fishing_rods": "抓钩沙滩男孩", + "rule.grummize": "颠倒%s", + "rule.haunted_world": "世界闹鬼了", + "rule.increase_scale": "玩家尺寸增加%sx", + "rule.infinite_cakes": "无限蛋糕", + "rule.instacheese": "桶装奶酪", + "rule.invisible_armor": "让盔甲变透明", + "rule.item.disabled": "还没打开的物品:你还没给这投票呢!", + "rule.item_despawn.despawn_all": "使所有掉落在地面的物品消失", + "rule.item_despawn.despawn_none": "不要使掉落在地面的物品消失", + "rule.item_despawn.keep_player_drops": "不要使玩家掉落的物品消失", + "rule.item_despawn_time.change": "将物品消失时间从%s改为%s ", + "rule.item_despawn_time.set": "将物品消失时间设为%s", + "rule.item_use_speed": "将工具速度乘以%s%%", + "rule.keep_friends_close": "让你的好♂基♂友离你近点", + "rule.lava_blue_ice_replace": "熔岩与滑滑冰相互作用时生成%s而不是%s", + "rule.lava_spread_tick_delay": "熔岩扩散时间刻设为:%s", + "rule.lava_water_replace": "熔岩与水相互作用时生成%s而不是%s", + "rule.less_gravity": "反转重力规则。主世界现在感觉像月球", + "rule.less_interaction_updates": "减少玩家互动导致的方块更新。事实上根本没有...", + "rule.loot_double_or_half": "将%s的战利品掉落数量乘以%s", + "rule.mbe": "Minecraft基岩版(又名可移动可破坏的实体)", + "rule.midas_touch": "得到迈达斯之力(迫真)", + "rule.milk_every_mob": "所有暴徒都能被挤奶", + "rule.minecart_collisions.break": "《我的世界》会在高速碰撞时损坏", + "rule.minecart_collisions.explode": "《我的世界》会在高速碰撞时瞬间爆炸", + "rule.minecart_collisions.none": "关掉《我的世界》在高速碰撞时损坏规则", + "rule.minecart_lies": "揭露《我的世界》的谎言!", + "rule.mini_players": "迷你玩家模式", + "rule.moon.0": "只是正常的月球", + "rule.moon.1": "浪漫的大月亮。小心你的愿望,我们的科学家警告我们注意意想不到的后果。", + "rule.moon.2": "让月球变得更大更强!", + "rule.moon.3": "最大的月亮!!!", + "rule.morrowind_power_player_movement": "和上古卷轴速通玩家一样移动", + "rule.name_visibility.none": "永不显示实体名称", + "rule.name_visibility.normal": "隐藏方块后方的实体名称", + "rule.name_visibility.see_through": "始终显示方块后方的实体名称", + "rule.natural_spawn_disable": "永不自然生成%s", + "rule.natural_spawn_replace": "将自然生成的%s替换为%s", + "rule.nbt_crafting": "打开NBT合成", + "rule.new_vote_approve_option_count": "将每个新批准投票的最大选项数设为%s", + "rule.new_vote_chance_per_tick": "将每一时间刻开始新投票的概率设为1/%s", + "rule.new_vote_cost": "将投票成本和限制设置为:%s", + "rule.new_vote_disable_opt_out": "不要选择退出有多种选择的新投票选项", + "rule.new_vote_duration_minutes": "将新投票的持续时间设为%s分钟", + "rule.new_vote_extra_effect_chance": "将创建组合投票的概率设为%s%%", + "rule.new_vote_extra_effect_max_count": "将新组合投票的额外效果的最大数量设为%s", + "rule.new_vote_max_approve_vote_count": "将最大批准票数设为%s", + "rule.new_vote_max_repeal_vote_count": "将最大废除票数设为%s", + "rule.new_vote_repeal_option_count": "将每个新废除投票的最大选项数设为%s", + "rule.new_vote_repeal_vote_chance": "将新投票转为废除投票的概率设为%s%%", + "rule.normal_name_visibility": "将正常的实体显示名称设为:%s", + "rule.nothing": "啥也别改", + "rule.obfuscate_player_names": "混淆玩家名称", + "rule.optimize.change": "将优化级别从%s改为%s", + "rule.optimize.set": "将优化等级设为%s", + "rule.optimize_light_engine.always_light": "打开所有灯以提高光引擎性能", + "rule.optimize_light_engine.loadshedding": "实施减载以提高光引擎性能", + "rule.optimize_light_engine.never_light": "关掉所有灯以提高光引擎性能", + "rule.optimize_light_engine.none": "去优化光引擎", + "rule.other_portal": "打开其他门户", + "rule.other_portal.oops": "发生错误:未找到地形", + "rule.parent_trap": "父母的圈套", + "rule.payment.item": "奸商接受%s而不是宝石", + "rule.payment.seed": "奸商接受随机分配的物品而不是宝石", + "rule.payment.seed_reshuffle": "奸商接受随机分配的物品而不是宝石(重新混合)", + "rule.persistent_parrots": "执着的咕咕。他们永远不会离开你", + "rule.phantom_phantom": "幻影Icyphantom", + "rule.pickaxe_block": "加入破坏者", + "rule.place_block": "加入放置者", + "rule.player_head_drop": "玩家在闪电爪巴者附近爆炸后会掉落头颅", + "rule.pot_gems": "饰纹陶罐被破坏时会掉落宝石", + "rule.potions_of_big": "用覆膜之瓶调和变大溶液", + "rule.potions_of_small": "用兔崽子皮调和变小溶液", + "rule.president": "%s竞选总统", + "rule.president.tag": "总统%s", + "rule.prevent_floating_trees": "不 要 让 树 漂 浮", + "rule.proposal": "提案#%s", + "rule.push_limit": "↓↑推动限制:%s", + "rule.quorum_percent": "设置投票通过所需的玩家数量为在线玩家的%s%%", + "rule.random_tnt_fuse": "随机大伊万嘶嘶时间", + "rule.ray_tracing": "加入光线追踪。注意:光线追踪需要额外的处理资源。", + "rule.recipe.minecraft.diamond_drows": "打开popilolytF", + "rule.recipe.minecraft.m_banner_pattern": "打开SUS旗帜图案", + "rule.recipe.minecraft.string_concatenation": "打开字符串连接", + "rule.recipe.minecraft.wob": "打开反弓食谱", + "rule.recipe_double_or_half": "将食谱输出的%s改为原先的%s", + "rule.recipe_flip.both": "合成食谱可以接受所有方向", + "rule.recipe_flip.flipped_only": "合成食谱只接受镜像食谱", + "rule.recipe_flip.normal_only": "合成食谱只接受精确食谱", + "rule.remove_phantoms": "移除IcyPhantom", + "rule.replace_block_model": "将%s的方块模型替换为%s", + "rule.replace_item_model": "将%s的物品模型替换为%s", + "rule.replace_items": "将玩家库存中的所有%s替换为%s", + "rule.replace_loot_drop": "将%s的战利品替换为%s", + "rule.replace_recipe_output": "将食谱输出的%s替换至%s", + "rule.replace_sound": "将声音%s替换为%s", + "rule.reset_entity_transform": "清除所有玩家的实体变换", + "rule.reset_scale": "重置所有玩家的尺寸", + "rule.reset_skin": "重置所有玩家的皮肤", + "rule.rideable_entities": "使所有的实体%s都可骑行", + "rule.rowing_up_that_hill": "承认《明日方舟》是最好的交通方式", + "rule.rubies": "用红宝石替换原谅石物品(仅此而已,我们懒得好好做了)", + "rule.silent_vote": "不显示投票输出", + "rule.sneaking_name_visibility": "将潜行实体的显示名称设为:%s", + "rule.snitch": "在唠嗑中宣布玩家投票", + "rule.snitch.msg": "%s已投票%s:%s", + "rule.spawn_egg_chance": "将实体掉落幼体的概率设为%s%%", + "rule.stack_size_double_or_half": "将%s的最大堆叠尺寸乘以%s", + "rule.sticky": "真实的黏糊糊的↓↑规则。现在不违和了!", + "rule.swap_skies": "调换主世界和终端的天空", + "rule.text_style.aqua": "将“%s”改为始终渲染为淡蓝色", + "rule.text_style.black": "将“%s”改为始终渲染为黑色", + "rule.text_style.blank": "使“%s”改为空格", + "rule.text_style.blue": "将“%s”改为始终渲染为蓝色", + "rule.text_style.bold": "将“%s”改为粗", + "rule.text_style.dark_aqua": "将“%s”改为始终渲染为深蓝色", + "rule.text_style.dark_blue": "将“%s”改为始终渲染为深蓝色", + "rule.text_style.dark_gray": "将“%s”改为始终渲染为深灰色", + "rule.text_style.dark_green": "将“%s”改为始终渲染为深原谅色", + "rule.text_style.dark_purple": "将“%s”改为始终渲染为深紫色", + "rule.text_style.dark_red": "将“%s”改为始终渲染为深红色", + "rule.text_style.gold": "将“%s”改为始终渲染为金色", + "rule.text_style.gray": "将“%s”改为始终渲染为灰色", + "rule.text_style.green": "将“%s”改为始终渲染为原谅色", + "rule.text_style.hide": "将“%s”改为永不渲染", + "rule.text_style.illager": "将“%s”送到地下城", + "rule.text_style.italic": "倾斜“%s”", + "rule.text_style.light_purple": "将“%s”改为始终渲染为浅紫色", + "rule.text_style.obfuscated": "将“%s”改为乱七八糟的像素", + "rule.text_style.red": "将“%s”改为始终渲染为红色", + "rule.text_style.sga": "将“%s”变得有魔法", + "rule.text_style.strikethrough": "将“%s”加上上划线", + "rule.text_style.thin": "将“%s”更改为细", + "rule.text_style.underline": "将“%s”加上下划线", + "rule.text_style.white": "将“%s”改为始终渲染为白色", + "rule.text_style.yellow": "将“%s”改为始终渲染为黄色", + "rule.the_joke": "保持忽略Mobbo", + "rule.tie_strategy.pick_all": "在平局时选择所有选项", + "rule.tie_strategy.pick_high": "在平局时选择数字较高的选项", + "rule.tie_strategy.pick_low": "在平局时选择数字较低的选项", + "rule.tie_strategy.pick_none": "在平局时移除平局选项", + "rule.tie_strategy.pick_random": "在平局中选择随机选项", + "rule.tnt_tennis": "被激活的大伊万可以被鸡腿", + "rule.trails_and_tails": "获得足迹与尾巴更新", + "rule.transform_entity": "将所有玩家变为%s", + "rule.transparent_players": "鬼魂模式", + "rule.ultra_realistic_mode": "超级真实模式", + "rule.uncontrolable_lave": "不可控的熔岩", + "rule.undead_players": "玩家是亡灵", + "rule.universal_jeb": "万能jeb_公司™", + "rule.unstable_tnt": "所有新放置的大伊万都不稳定", + "rule.vote_max_results": "每票最多通过%s条规则", + "rule.vote_result_pass_without_voters": "即使没有玩家投票支持,也会通过投票", + "rule.vote_result_pass_without_votes": "也适用于没有获得任何投票的选项", + "rule.vote_result_pick_random_if_vote_fails": "如果投票失败,则随机选择", + "rule.vote_result_reverse_counts": "通过票数最低的选项,而不是票数最高的选项", + "rule.vote_result_show_options": "不显示最终票数", + "rule.vote_result_show_voters": "在投票结束后揭示投票者的情况", + "rule.votes_to_win_percent": "要求通过票数至少获得所有投票的%s%%。", + "rule.voting_fireworks": "庆祝投票!", + "rule.weather.rain.always": "永远下雨", + "rule.weather.rain.default": "默认下雨规则", + "rule.weather.rain.never": "永不下雨", + "rule.weather.thunder.always": "永远打雷", + "rule.weather.thunder.default": " 默认打雷规则", + "rule.weather.thunder.never": "永不打雷", + "rule.wheels_on_minecarts": "“四”轮《我的世界》", + "rule.world_of_giants": "巨大世界", + "rule.zombie_apocalypse": "这是姜丝启示录!当心蘑菇和姜丝", + "selectWorld.edit.resetVotes": "重置所有投票数据", + "selectWorld.edit.resetVotes.msg": "继续操作将删除所有投票数据,包括所有待处理和/或已批准的提案。\n只有当你无法忍受自己的行为后果和/或你的世界无法恢复时才能使用。", + "stat.minecraft.change_dimension": "去过的的维度数", + "stat.minecraft.votes": "投票数", + "tooltip.more_like_cooltip": "T长工具提示框", + "tooltip.too_long": "提示框太长,按住Ctrl并单击以显示全部", + "ui.next_disk.contents": "在A盘插入%s碟然后按ENTER", + "ui.next_disk.title": "需要下一张碟", + "ui.next_disk.wrong_contents": "爷说ENTER!", + "vote.cost": "花费:", + "vote.cost.health": "生命值", + "vote.cost.xp": "覆膜点数", + "vote.cost_diplay": "%s × %s", + "vote.count_per_option.description": "每个选项的投票数", + "vote.count_per_option.limit": "%s/%s投票赞成此选项", + "vote.count_per_option.no_limit": "%s投票赞成此选项", + "vote.count_per_proposal.description": "每个提案的投票数", + "vote.count_per_proposal.limit": "%s/%s投票赞成此提案", + "vote.count_per_proposal.no_limit": "%s投票赞成此提案", + "vote.current_rules": "所有批准的规则(目前为止)", + "vote.failed": "投票失败:%s", + "vote.finished": "%s的投票已完成", + "vote.no_change": "没有变化", + "vote.no_more_votes": "没有更多投票了", + "vote.no_option": "无选项通过", + "vote.no_option.random": "无选项通过,将随机选择", + "vote.no_resources": "缺少资源", + "vote.option_count": "选项#%s “%s”收到%s名玩家投票!", + "vote.option_display": "%s %s", + "vote.option_no_count": "选项#%s “%s”投票玩家:", + "vote.option_vote_title": "%s:选项%s/%s", + "vote.option_won": "选项#%s “%s”胜利", + "vote.option_won.no_effect": "选项#%s “%s”胜利,但是没有效果", + "vote.quorum.not_reached": "未达到通过人数(%s)", + "vote.quorum.passed": "已达到通过人数:%s,共%s", + "vote.show_current_rules": "显示已应用的提案", + "vote.started": "%s(%s) 的投票已开始", + "vote.tie": "投票平局,使用策略“%s”", + "vote.total_count": "从%2$s名玩家中收到了%1$s票", + "vote.vote_count.minimum": "通过选项至少需要%s票", + "vote.voted": "\u2BEA已投票!\u2BEB", + "vote.voter": " %s:%s", + "vote.voters": "投票者:" +} diff --git a/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/hotbar.png b/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/hotbar.png new file mode 100644 index 000000000..17cc49af8 Binary files /dev/null and b/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/hotbar.png differ diff --git a/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/mojang_text.png b/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/mojang_text.png new file mode 100644 index 000000000..bb856a084 Binary files /dev/null and b/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/mojang_text.png differ diff --git a/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/voting.png b/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/voting.png new file mode 100644 index 000000000..931eb897a Binary files /dev/null and b/modules/lang_april_fools_snapshots/assets/minecraft/textures/gui/voting.png differ diff --git a/modules/lang_april_fools_snapshots/assets/nothingtoseeheremovealong/sounds/ananas/papapaya.ogg b/modules/lang_april_fools_snapshots/assets/nothingtoseeheremovealong/sounds/ananas/papapaya.ogg new file mode 100644 index 000000000..89f9272db Binary files /dev/null and b/modules/lang_april_fools_snapshots/assets/nothingtoseeheremovealong/sounds/ananas/papapaya.ogg differ diff --git a/modules/lang_april_fools_snapshots/assets/nothingtoseeheremovealong/sounds/ananas/papaya.ogg b/modules/lang_april_fools_snapshots/assets/nothingtoseeheremovealong/sounds/ananas/papaya.ogg new file mode 100644 index 000000000..b4d9c7c9e Binary files /dev/null and b/modules/lang_april_fools_snapshots/assets/nothingtoseeheremovealong/sounds/ananas/papaya.ogg differ diff --git a/modules/lang_april_fools_snapshots/module_manifest.json b/modules/lang_april_fools_snapshots/module_manifest.json new file mode 100644 index 000000000..2c0cec896 --- /dev/null +++ b/modules/lang_april_fools_snapshots/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_april_fools_snapshots", + "type": "resource", + "description": "提供对愚人节快照的有限支持", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/lang_attributes_1.12.2-1.15.2/add.json b/modules/lang_attributes_1.12.2-1.15.2/add.json index d5b0edf1c..3119280e5 100644 --- a/modules/lang_attributes_1.12.2-1.15.2/add.json +++ b/modules/lang_attributes_1.12.2-1.15.2/add.json @@ -10,4 +10,4 @@ "attribute.name.generic.movementSpeed": "速度", "attribute.name.horse.jumpStrength": "马匹跳跃能力", "attribute.name.zombie.spawnReinforcements": "僵尸增援" -} \ No newline at end of file +} diff --git a/modules/lang_attributes_1.12.2-1.15.2/module_manifest.json b/modules/lang_attributes_1.12.2-1.15.2/module_manifest.json index 03fe36153..7051451f0 100644 --- a/modules/lang_attributes_1.12.2-1.15.2/module_manifest.json +++ b/modules/lang_attributes_1.12.2-1.15.2/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_attributes_1.12.2-1.15.2", "type": "resource", "description": "1.12.2至1.15.2间的属性名称", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_attributes_1.12.2-1.15.2/remove.json b/modules/lang_attributes_1.12.2-1.15.2/remove.json index 9495099d0..879c4ec8e 100644 --- a/modules/lang_attributes_1.12.2-1.15.2/remove.json +++ b/modules/lang_attributes_1.12.2-1.15.2/remove.json @@ -10,4 +10,4 @@ "attribute.name.generic.movement_speed", "attribute.name.horse.jump_strength", "attribute.name.zombie.spawn_reinforcements" -] \ No newline at end of file +] diff --git a/modules/lang_backupworld_1.12.2-1.16.5/add.json b/modules/lang_backupworld_1.12.2-1.16.5/add.json index 753d987a7..357559dba 100644 --- a/modules/lang_backupworld_1.12.2-1.16.5/add.json +++ b/modules/lang_backupworld_1.12.2-1.16.5/add.json @@ -1,4 +1,4 @@ { "selectWorld.backupQuestion": "你真的真的真的想加载此世界吗?", "selectWorld.backupWarning": "这个世界上次是在%s版本中游玩的,而你却在游玩%s这个版本?请备份你的世界,以免世界崩溃!" -} \ No newline at end of file +} diff --git a/modules/lang_backupworld_1.12.2-1.16.5/module_manifest.json b/modules/lang_backupworld_1.12.2-1.16.5/module_manifest.json index f96237d35..8ce0e5818 100644 --- a/modules/lang_backupworld_1.12.2-1.16.5/module_manifest.json +++ b/modules/lang_backupworld_1.12.2-1.16.5/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_backupworld_1.12.2-1.16.5", "type": "resource", "description": "1.12.2至1.16.5间的备份世界提醒", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_backupworld_1.12.2-1.16.5/remove.json b/modules/lang_backupworld_1.12.2-1.16.5/remove.json index add6b306f..558761685 100644 --- a/modules/lang_backupworld_1.12.2-1.16.5/remove.json +++ b/modules/lang_backupworld_1.12.2-1.16.5/remove.json @@ -1,4 +1 @@ -[ - "selectWorld.backupQuestion.snapshot", - "selectWorld.backupWarning.snapshot" -] \ No newline at end of file +["selectWorld.backupQuestion.snapshot", "selectWorld.backupWarning.snapshot"] diff --git a/modules/lang_chat_preview_1.19.2/add.json b/modules/lang_chat_preview_1.19.2/add.json new file mode 100644 index 000000000..bf5f1cc2b --- /dev/null +++ b/modules/lang_chat_preview_1.19.2/add.json @@ -0,0 +1,18 @@ +{ + "chatPreview.warning.check": "别废话,让我一键进服", + "chatPreview.warning.content": "聊天预览能让服务器在你输入消息的时候就看到你的消息!但是,这也能让你看到你输入的消息会被服务器处理成什么样。\n\n聊天预览默认启用,但你也可以在设置里关掉它。", + "chatPreview.warning.title": "这个服务器会偷看你的聊天消息!", + "chatPreview.warning.toast.title": "聊天预览已启用", + "chatPreview.warning.toast": "聊天预览能让服务器在你输入消息的时候就看到你的消息。你可以在设置里关掉它。", + "chat.previewInput": "按[%s]看看你的消息长啥样", + "chat.tag.filtered": "这条消息被服务器和谐了", + "chat.tag.modified.original": "原始文本:%s", + "chat.tag.modified": "这条消息被服务器乱改了", + "chat.tag.not_secure": "这条消息可能被服务器乱改过", + "options.chatPreview.confirm": "发送时", + "options.chatPreview.live": "输入时", + "options.chatPreview.tooltip.confirm": "若服务器使用聊天预览,相应的聊天预览仅会在尝试发送没有预览或等待预览的消息时生成。\n发送消息需要额外确认。", + "options.chatPreview.tooltip.live": "若服务器使用聊天预览,在聊天消息输入的同时,服务器对聊天消息所做的任何修改都会被动态回传,以便预览。", + "options.chatPreview.tooltip.off": "服务器对你的唠嗑消息进行的所有乱改将不会被预览,且会被标记为不安全。", + "options.chatPreview": "唠嗑预览" +} diff --git a/modules/lang_chat_preview_1.19.2/module_manifest.json b/modules/lang_chat_preview_1.19.2/module_manifest.json new file mode 100644 index 000000000..3b6d3a6d4 --- /dev/null +++ b/modules/lang_chat_preview_1.19.2/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_chat_preview_1.19.2", + "type": "resource", + "description": "22w42a以前的聊天预览消息", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/combat_test_6/add.json b/modules/lang_combat_test_6/add.json similarity index 81% rename from modules/combat_test_6/add.json rename to modules/lang_combat_test_6/add.json index 0e02d8e97..0bd483f2d 100644 --- a/modules/combat_test_6/add.json +++ b/modules/lang_combat_test_6/add.json @@ -1,7 +1,7 @@ { "attribute.name.generic.attack_reach": "攻击距离", - "enchantment.minecraft.chopping": "破盾", + "enchantment.minecraft.chopping": "破防", "enchantment.minecraft.cleaving": "刽子手", "options.shieldIndicator": "盾牌指示器", "options.useShieldOnCrouch": "蹲下时使用盾牌" -} \ No newline at end of file +} diff --git a/modules/lang_combat_test_6/module_manifest.json b/modules/lang_combat_test_6/module_manifest.json new file mode 100644 index 000000000..35cd8fc36 --- /dev/null +++ b/modules/lang_combat_test_6/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_combat_test_6", + "type": "resource", + "description": "提供对Combat Test 6快照的梗体中文有限支持", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/lang_commands_1.11-1.12.2/add.json b/modules/lang_commands_1.11-1.12.2/add.json new file mode 100644 index 000000000..270d40845 --- /dev/null +++ b/modules/lang_commands_1.11-1.12.2/add.json @@ -0,0 +1,440 @@ +{ + "commands.advancement.advancementNotFound": "没有找到名为'%s'的进度", + "commands.advancement.criterionNotFound": "进度'%s'并不包含条件'%s'", + "commands.advancement.grant.criterion.failed": "无法将进度“%1$s”的“%3$s”条件赋予%2$s,因为它们已达成此条件", + "commands.advancement.grant.criterion.success": "已将进度“%1$s”的“%3$s”条件赋予%2$s", + "commands.advancement.grant.everything.failed": "无法给予%1$s任何进度,原因是该玩家已拥有全部", + "commands.advancement.grant.everything.success": "已将全部进度给予%1$s(共计%2$s项)", + "commands.advancement.grant.everything.usage": "/advancement grant <玩家> everything", + "commands.advancement.grant.from.failed": "无法将“%1$s”及其下游进度给予%2$s,原因是该玩家已经拥有全部", + "commands.advancement.grant.from.success": "已将“%1$s”及其全部下游进度授予%2$s(共计%3$s项)", + "commands.advancement.grant.from.usage": "/advancement grant <玩家> from <进度>", + "commands.advancement.grant.only.failed": "无法将进度“%1$s”赋予%2$s,因为它们已达成此进度", + "commands.advancement.grant.only.success": "已将整个进度“%1$s”赋予%2$s", + "commands.advancement.grant.only.usage": "/advancement grant <玩家> only <进度> [条件]", + "commands.advancement.grant.through.failed": "无法将“%1$s”及其上下游进度给予%2$s,原因是该玩家已经拥有全部", + "commands.advancement.grant.through.success": "已将“%1$s”及其全部上下游进度授予%2$s(共计%3$s项)", + "commands.advancement.grant.through.usage": "/advancement grant <玩家> through <进度>", + "commands.advancement.grant.until.failed": "无法将“%1$s”及其上游进度给予%2$s,原因是该玩家已经拥有全部", + "commands.advancement.grant.until.success": "已将“%1$s”及其全部上游进度授予%2$s(共计%3$s项)", + "commands.advancement.grant.until.usage": "/advancement grant <玩家> until <进度>", + "commands.advancement.grant.usage": "/advancement grant <玩家> ", + "commands.advancement.revoke.criterion.failed": "无法从%2$s处移除进度“%1$s”的“%3$s”条件,原因是该玩家还未获得任何进度", + "commands.advancement.revoke.criterion.success": "已从%3$s处移除进度“%1$s”的“%2$s”条件", + "commands.advancement.revoke.everything.failed": "无法移除%1$s的任何进度,原因是该玩家还未获得任何进度", + "commands.advancement.revoke.everything.success": "已移除%1$s的全部进度(共计%2$s项)", + "commands.advancement.revoke.everything.usage": "/advancement revoke <玩家> everything", + "commands.advancement.revoke.from.failed": "无法移除%2$s的“%1$s”及其下游成就,原因是该玩家还未获得任何进度", + "commands.advancement.revoke.from.success": "已移除%2$s的“%1$s”及其全部下游进度(共计%3$s项)", + "commands.advancement.revoke.from.usage": "/advancement revoke <玩家> from <进度>", + "commands.advancement.revoke.only.failed": "无法从%2$s处移除进度“%1$s”,原因是该玩家还未获得任何进度", + "commands.advancement.revoke.only.success": "已从%2$s处将整个进度“%1$s”移除", + "commands.advancement.revoke.only.usage": "/advancement revoke <玩家> only <进度> [条件]", + "commands.advancement.revoke.through.failed": "无法移除%2$s的“%1$s”及其上下游进度,原因是该玩家还未获得任何进度", + "commands.advancement.revoke.through.success": "移除了%2$s的“%1$s”及其上下游的进度(共计%3$s项)", + "commands.advancement.revoke.through.usage": "/advancement revoke <玩家> through <进度>", + "commands.advancement.revoke.until.failed": "无法移除%2$s的“%1$s”及其上游成就,原因是该玩家还未获得任何进度", + "commands.advancement.revoke.until.success": "已移除%2$s的“%1$s”及其全部上游进度(共计%3$s项)", + "commands.advancement.revoke.until.usage": "/advancement revoke <玩家> until <进度>", + "commands.advancement.revoke.usage": "/advancement revoke <玩家> ", + "commands.advancement.test.advancement.notDone": "玩家%s尚未完成进度'%s'", + "commands.advancement.test.advancement.success": "玩家%1$s已达成了“%2$s”进度", + "commands.advancement.test.criterion.notDone": "玩家%1$s尚未完成条件为“%3$s”的“%2$s”进度", + "commands.advancement.test.criterion.success": "玩家%1$s已完成条件为“%3$s”的“%2$s”进度", + "commands.advancement.test.usage": "/advancement test <玩家> <进度> [条件]", + "commands.advancement.usage": "/advancement <玩家>", + "commands.ban.failed": "无法封禁玩家%s", + "commands.ban.success": "已封禁玩家%s", + "commands.ban.usage": "/ban <名称> [原因...]", + "commands.banip.invalid": "你输入了一个无效的IP地址或者此玩家不在线", + "commands.banip.success": "已封禁IP地址%s", + "commands.banip.success.players": "已封禁的IP地址%s是属于%s的", + "commands.banip.usage": "/ban-ip <地址|名称> [原因...]", + "commands.banlist.ips": "总共有%s个被封禁的IP地址:", + "commands.banlist.players": "总共有%s个被封禁的玩家", + "commands.banlist.usage": "/banlist [ips|玩家]", + "commands.blockdata.failed": "数据标签未更改:%s", + "commands.blockdata.notValid": "目标方块没有持有数据", + "commands.blockdata.outOfWorld": "无法更改世界外的方块", + "commands.blockdata.success": "方块数据更新为:%s", + "commands.blockdata.tagError": "数据标签解析失败:%s", + "commands.blockdata.usage": "/blockdata <数据标签>", + "commands.chunkinfo.compiled": "区块已编译。", + "commands.chunkinfo.data": "前64个顶点为:%s", + "commands.chunkinfo.empty": "区块是空的。", + "commands.chunkinfo.hasLayers": "区块含有%s层面", + "commands.chunkinfo.hasNoRenderableLayers": "区块没有渲染层。", + "commands.chunkinfo.isEmpty": "区块有空层面:%s", + "commands.chunkinfo.location": "区块位置:(%s,%s,%s)", + "commands.chunkinfo.noChunk": "没有找到区块位置为%s,%s,%s的区块", + "commands.chunkinfo.notCompiled": "区块未编译。", + "commands.chunkinfo.notEmpty": "区块不为空。", + "commands.chunkinfo.usage": "/chunkinfo [ ]", + "commands.chunkinfo.vertices": "%s层的缓冲包含了%s个点", + "commands.clear.failure": "无法清除%s的物品栏,没有可清除的物品", + "commands.clear.success": "清除了%s的物品栏,删除了%s个物品", + "commands.clear.tagError": "数据标签解析失败:%s", + "commands.clear.testing": "%s有%s个符合条件的物品", + "commands.clear.usage": "/clear [玩家] [物品] [数据] [最大量] [数据标签]", + "commands.clone.failed": "没有方块被复制", + "commands.clone.noOverlap": "源坐标和目标坐标不能重叠", + "commands.clone.outOfWorld": "无法访问世界外的方块", + "commands.clone.success": "已复制%s个方块", + "commands.clone.tooManyBlocks": "选定区域内的方块过多(%s > %s)", + "commands.clone.usage": "/clone [掩码模式] [复制模式]", + "commands.compare.failed": "源坐标和目标坐标不相同", + "commands.compare.outOfWorld": "无法访问世界外的方块", + "commands.compare.success": "已比较%s个方块", + "commands.compare.tooManyBlocks": "选定区域内的方块过多(%s > %s)", + "commands.compare.usage": "/testforblocks [模式]", + "commands.debug.notStarted": "不能在开始前就停止分析!", + "commands.debug.start": "开始调试分析", + "commands.debug.stop": "在%s秒(%s刻)后停止调试分析", + "commands.debug.usage": "/debug ", + "commands.defaultgamemode.success": "世界的默认游戏模式现为%s", + "commands.defaultgamemode.usage": "/defaultgamemode <模式>", + "commands.deop.failed": "无法撤销%s的管理员权限", + "commands.deop.success": "已夺去%s的管理员权限", + "commands.deop.usage": "/deop <玩家>", + "commands.difficulty.success": "将游戏难度设置为%s", + "commands.difficulty.usage": "/difficulty <新的难度>", + "commands.downfall.success": "天气已切换", + "commands.downfall.usage": "/toggledownfall", + "commands.effect.failure.notActive": "无法从%2$s身上消除%1$s因为他们没有此效果", + "commands.effect.failure.notActive.all": "无法从%s身上移除任何效果,因为他们身上什么效果都没有", + "commands.effect.notFound": "没有ID为%s的生物状态效果", + "commands.effect.success": "给予%4$s时长为%5$s秒的%1$s(ID %2$s)*%3$s效果", + "commands.effect.success.removed": "消除了%2$s身上的%1$s", + "commands.effect.success.removed.all": "已将%s身上的全部效果移除", + "commands.effect.usage": "/effect <玩家> <药水效果> [秒数] [等级] [隐藏粒子] 或 /effect <玩家> clear", + "commands.enchant.cantCombine": "%1$s无法和%2$s结合", + "commands.enchant.cantEnchant": "该物品不能添加此魔咒", + "commands.enchant.noItem": "目标没有拿着任何物品", + "commands.enchant.notFound": "没有ID为%s的魔咒", + "commands.enchant.success": "附魔成功", + "commands.enchant.usage": "/enchant <玩家> <魔咒ID> [等级]", + "commands.entitydata.failed": "数据标签未更改:%s", + "commands.entitydata.noPlayers": "%s是一位玩家,不能更改", + "commands.entitydata.success": "实体数据已更新:%s", + "commands.entitydata.tagError": "数据标签解析失败:%s", + "commands.entitydata.usage": "/entitydata <实体> <数据标签>", + "commands.execute.allInvocationsFailed": "全部调用失败:'%s'", + "commands.execute.failed": "无法使%2$s执行“%1$s”", + "commands.execute.usage": "/execute <实体> <命令> 或 /execute <实体> detect <方块> <数据值|-1|状态|*> <命令>|", + "commands.fill.failed": "没有方块被填充", + "commands.fill.outOfWorld": "无法在世界外放置方块", + "commands.fill.success": "已填充%s个方块", + "commands.fill.tagError": "数据标签解析失败:%s", + "commands.fill.tooManyBlocks": "选定区域内的方块过多(%s > %s)", + "commands.fill.usage": "/fill <方块名> [数据值|状态] [旧方块处理方式] [数据标签]", + "commands.function.skipped": "已跳过函数‘%1$s’的执行", + "commands.function.success": "执行了函数“%1$s”中的%2$s个命令", + "commands.function.unknown": "未知函数'%s'", + "commands.function.usage": "/function <名称> [if <选择器>|unless <选择器>]", + "commands.gamemode.success.other": "将%s的游戏模式改为%s", + "commands.gamemode.success.self": "您的游戏模式已被设置为%s ", + "commands.gamemode.usage": "/gamemode <模式> [玩家]", + "commands.gamerule.nopermission": "只有服务器所有人才能修改'%s'", + "commands.gamerule.norule": "不存在叫做'%s'的游戏规则", + "commands.gamerule.success": "游戏规则%s已经更新为 %s", + "commands.gamerule.usage": "/gamerule <规则名称> [值]", + "commands.generic.blockstate.invalid": "'%s'不是%s的方块状态之一", + "commands.generic.boolean.invalid": "'%s'不是个布尔值参数", + "commands.generic.entity.invalidType": "实体类型'%s'是无效的", + "commands.generic.entity.invalidUuid": "实体UUID'%s'并非有效格式", + "commands.generic.entity.notFound": "无法找到实体’%s‘", + "commands.generic.exception": "在执行此命令时出现了未知的错误", + "commands.generic.notFound": "未知命令。请使用/help来查看命令列表。", + "commands.generic.num.invalid": "'%s'不是一个有效的数字", + "commands.generic.num.tooBig": "你输入的数字(%s)太大了,最高只能为%s", + "commands.generic.num.tooSmall": "你输入的数字(%s)太小了,至少需要为%s", + "commands.generic.parameter.invalid": "'%s'为无效参数", + "commands.generic.permission": "您没有使用此命令的权限", + "commands.generic.player.notFound": "无法找到玩家‘%s’", + "commands.generic.player.unspecified": "你必须指定要对其执行这个行为的玩家", + "commands.generic.selector.notFound": "选择器'%s'什么都没找到", + "commands.generic.selector_argument": "无效的选择器参数:'%s'", + "commands.generic.syntax": "无效的命令语法", + "commands.generic.usage": "用法:%s", + "commands.give.block.notFound": "没有名为%s的方块", + "commands.give.item.notFound": "没有名为%s的物品", + "commands.give.success": "成功将%s*%s给予%s", + "commands.give.tagError": "数据标签分析失败:%s", + "commands.give.usage": "/give <玩家> <物品> [数量] [数据值] [数据标签]", + "commands.help.footer": "小提示: 在输入命令时可以使用 键来自动补全命令或参数。", + "commands.help.header": "--- 显示帮助手册总%2$s页中的第%1$s页(/help <页码>) ---", + "commands.help.usage": "/help [页码|命令名称]", + "commands.kick.success": "已将%s从游戏中踢出", + "commands.kick.success.reason": "%s被踢出游戏:'%s'", + "commands.kick.usage": "/kick <玩家> [原因...]", + "commands.kill.successful": "已清除%s", + "commands.kill.usage": "/kill [玩家|实体]", + "commands.locate.failure": "没有找到任何%s结构", + "commands.locate.success": "已在%2$s(y?)%3$s定位到%1$s", + "commands.locate.usage": "/locate <结构>", + "commands.me.usage": "/me <动作...>", + "commands.message.display.incoming": "%s悄悄地对你说:%s", + "commands.message.display.outgoing": "你悄悄地对%s说:%s", + "commands.message.sameTarget": "你不能向自己发出私人信息!", + "commands.message.usage": "/tell <玩家> <私密信息...>", + "commands.op.failed": "无法给予%s管理员权限", + "commands.op.success": "已将%s设为管理员", + "commands.op.usage": "/op <玩家>", + "commands.particle.invalidParam": "提供了无效参数(%s)", + "commands.particle.notFound": "未知的效果名称(%s)", + "commands.particle.success": "播放%s效果%s次", + "commands.particle.usage": "/particle <粒子名称> <速度> [数量] [模式] [玩家] [参数]", + "commands.players.list": "目前有%s/%s个玩家在线:", + "commands.players.usage": "/list", + "commands.playsound.playerTooFar": "玩家%s离得太远了,无法听到这声音", + "commands.playsound.success": "向%2$s播放声音“%1$s”", + "commands.playsound.unknownSoundSource": "声音资源%s未知", + "commands.playsound.usage": "/playsound <声音> <资源> <玩家> [x] [y] [z] [音量] [音调] [最小音量]", + "commands.publish.failed": "无法建立本地游戏", + "commands.publish.started": "本地游戏已在端口%s上开启", + "commands.publish.usage": "/publish", + "commands.recipe.alreadyHave": "玩家%s已获得%s的配方", + "commands.recipe.dontHave": "玩家%s尚未获得%s的配方", + "commands.recipe.give.success.all": "成功将所有配方授予%s", + "commands.recipe.give.success.one": "成功将%2$s的配方授予%1$s", + "commands.recipe.take.success.all": "成功从%s移除所有配方", + "commands.recipe.take.success.one": "成功从%2$s移除%1$s的配方", + "commands.recipe.unknownrecipe": "%s是一个未知配方", + "commands.recipe.unsupported": "配方%s不受支持", + "commands.recipe.usage": "/recipe [玩家] <名字|*>", + "commands.reload.success": "成功刷新战利品表、进度和函数", + "commands.reload.usage": "/reload", + "commands.replaceitem.block.usage": "/replaceitem block <物品栏> <物品> [数量] [数据] [数据标签]", + "commands.replaceitem.entity.usage": "/replaceitem entity <选择器> <物品栏> <物品> [数量] [数据] [数据标签]", + "commands.replaceitem.failed": "无法将%1$s号物品栏物品替换成%3$s*%2$s", + "commands.replaceitem.noContainer": "位于%s,%s,%s的方块不是容器", + "commands.replaceitem.success": "将%1$s号物品栏的物品替换为了%3$s*%2$s", + "commands.replaceitem.tagError": "数据标签解析失败:%s", + "commands.replaceitem.usage": "/replaceitem ...", + "commands.save-off.alreadyOff": "已经关闭世界保存", + "commands.save-off.usage": "/save-off", + "commands.save-on.alreadyOn": "已经打开世界保存", + "commands.save-on.usage": "/save-on", + "commands.save.disabled": "世界自动保存已关闭", + "commands.save.enabled": "世界自动保存已启用", + "commands.save.failed": "保存失败:%s", + "commands.save.flushEnd": "推送已完成", + "commands.save.flushStart": "正在推送所有的存档…", + "commands.save.start": "保存中……", + "commands.save.success": "已保存世界", + "commands.save.usage": "/save-all [flush]", + "commands.say.usage": "/say <信息...>", + "commands.scoreboard.allMatchesFailed": "没有匹配的对象", + "commands.scoreboard.noMultiWildcard": "仅能使用一个用户通配符", + "commands.scoreboard.objectiveNotFound": "没有找到名称为'%s'的记分项", + "commands.scoreboard.objectiveReadOnly": "无法设置只读记分项'%s'", + "commands.scoreboard.objectives.add.alreadyExists": "已经存在名为'%s'的记分项", + "commands.scoreboard.objectives.add.displayTooLong": "'%s'作为记分项的显示名太长了,它最多只能有%s个字", + "commands.scoreboard.objectives.add.success": "成功地添加了新记分项'%s'", + "commands.scoreboard.objectives.add.tooLong": "'%s'作为记分项名太长了,它最多只能有%s个字", + "commands.scoreboard.objectives.add.usage": "/scoreboard objectives add <名称> <准则类型> [显示的名称...]", + "commands.scoreboard.objectives.add.wrongType": "无效的记分项准则类型'%s'", + "commands.scoreboard.objectives.list.count": "记分板正在显示%s个记分项:", + "commands.scoreboard.objectives.list.empty": "记分板上没有记分项", + "commands.scoreboard.objectives.list.entry": "——%s:显示名为'%s',类型为'%s'", + "commands.scoreboard.objectives.remove.success": "成功地移除了记分项'%s'", + "commands.scoreboard.objectives.remove.usage": "/scoreboard objectives remove <名称>", + "commands.scoreboard.objectives.setdisplay.invalidSlot": "没有名称为'%s'的显示位置", + "commands.scoreboard.objectives.setdisplay.successCleared": "清空了'%s'显示位置的记分项", + "commands.scoreboard.objectives.setdisplay.successSet": "已将显示位置'%s'中的记分项设置为'%s'", + "commands.scoreboard.objectives.setdisplay.usage": "/scoreboard objectives setdisplay <位置> [记分项]", + "commands.scoreboard.objectives.usage": "/scoreboard objectives ...", + "commands.scoreboard.players.add.usage": "/scoreboard players add <玩家> <记分项> <数量> [数据标签]", + "commands.scoreboard.players.enable.noTrigger": "记分项%s不是触发型", + "commands.scoreboard.players.enable.success": "已将触发器%s对%s启用", + "commands.scoreboard.players.enable.usage": "/scoreboard players enable <玩家> <触发器>", + "commands.scoreboard.players.list.count": "记分板上正在显示%s个被追踪的玩家:", + "commands.scoreboard.players.list.empty": "记分板上没有追踪的玩家", + "commands.scoreboard.players.list.player.count": "正在给%2$s显示%1$s个被追踪的记分项:", + "commands.scoreboard.players.list.player.empty": "玩家%s没有分数记录", + "commands.scoreboard.players.list.player.entry": "—%2$s:%1$s(%3$s)", + "commands.scoreboard.players.list.usage": "/scoreboard players list [名字]", + "commands.scoreboard.players.name.tooLong": "'%s'作为玩家名太长了,它最多只能有%s个字", + "commands.scoreboard.players.operation.invalidOperation": "操作%s无效", + "commands.scoreboard.players.operation.notFound": "无法找到 %2$s 的 %1$s 分数", + "commands.scoreboard.players.operation.success": "操作已应用成功", + "commands.scoreboard.players.operation.usage": "/scoreboard players operation <目标玩家> <目标记分项> <操作> <选择器> <记分项>", + "commands.scoreboard.players.remove.usage": "/scoreboard players remove <玩家> <记分项> <数量> [数据标签]", + "commands.scoreboard.players.reset.success": "重置玩家%s所有的分数", + "commands.scoreboard.players.reset.usage": "/scoreboard players reset <玩家> [记分项]", + "commands.scoreboard.players.resetscore.success": "已重置玩家%2$s的%1$s的分数", + "commands.scoreboard.players.set.success": "将玩家%2$s的%1$s分数设置为%3$s", + "commands.scoreboard.players.set.tagError": "无法解析数据标签,原因:%s", + "commands.scoreboard.players.set.tagMismatch": "数据标签与%s不匹配", + "commands.scoreboard.players.set.usage": "/scoreboard players set <玩家> <记分项> <分数> [数据标签]", + "commands.scoreboard.players.tag.list": "在实体%s上的标签是:", + "commands.scoreboard.players.tag.notFound": "实体没有%s标签", + "commands.scoreboard.players.tag.success.add": "标签%s已添加", + "commands.scoreboard.players.tag.success.remove": "标签%s已删除", + "commands.scoreboard.players.tag.tagError": "玩家标签命令执行失败,原因:%s", + "commands.scoreboard.players.tag.tagMismatch": "数据标签与 %s 不匹配", + "commands.scoreboard.players.tag.tooMany": "不能给一个实体添加多于%s个的标签", + "commands.scoreboard.players.tag.usage": "/scoreboard players tag <玩家> <标签名称> [数据标签]", + "commands.scoreboard.players.test.failed": "分数%s不在%s到%s的范围内", + "commands.scoreboard.players.test.notFound": "无法找到%2$s的%1$s分数", + "commands.scoreboard.players.test.success": "分数%s在%s到%s的范围内", + "commands.scoreboard.players.test.usage": "/scoreboard players test <玩家> <记分项> <最小> [最大]", + "commands.scoreboard.players.usage": "/scoreboard players ...", + "commands.scoreboard.teamNotFound": "没有找到队名为'%s'的队伍", + "commands.scoreboard.teams.add.alreadyExists": "名为'%s'的队伍已经存在", + "commands.scoreboard.teams.add.displayTooLong": "'%s'作为队伍的显示名太长了,它最多只能有%s个字", + "commands.scoreboard.teams.add.success": "成功地添加了新队伍'%s'", + "commands.scoreboard.teams.add.tooLong": "'%s'作为队名太长了,它最多只能有%s个字", + "commands.scoreboard.teams.add.usage": "/scoreboard teams add <名字> [显示的名字...]", + "commands.scoreboard.teams.empty.alreadyEmpty": "队伍%s已空,无法移除不存在的玩家", + "commands.scoreboard.teams.empty.success": "移除了队伍%2$s内的全部%1$s个玩家", + "commands.scoreboard.teams.empty.usage": "/scoreboard teams empty <队伍>", + "commands.scoreboard.teams.join.failure": "无法给队伍%2$s添加%1$s个玩家:%3$s", + "commands.scoreboard.teams.join.success": "给队伍%2$s添加了%1$s个玩家:%3$s", + "commands.scoreboard.teams.join.usage": "/scoreboard teams join <队名> [玩家]", + "commands.scoreboard.teams.leave.failure": "无法从他们队伍中移除%s个玩家:%s", + "commands.scoreboard.teams.leave.noTeam": "你不在一个队伍中", + "commands.scoreboard.teams.leave.success": "从他们的队伍里移除了%s个玩家:%s", + "commands.scoreboard.teams.leave.usage": "/scoreboard teams leave [玩家]", + "commands.scoreboard.teams.list.count": "记分板上正在显示%s个队伍:", + "commands.scoreboard.teams.list.empty": "记分板上无注册的队伍", + "commands.scoreboard.teams.list.entry": "—%1$s:“%2$s”有%3$s个玩家", + "commands.scoreboard.teams.list.player.count": "正在显示队伍%2$s中的%1$s个玩家:", + "commands.scoreboard.teams.list.player.empty": "队伍%s没有玩家", + "commands.scoreboard.teams.list.player.entry": "—%2$s:%1$s(%3$s)", + "commands.scoreboard.teams.list.usage": "/scoreboard teams list [名字]", + "commands.scoreboard.teams.option.noValue": "选项%s的有效数值有:%s", + "commands.scoreboard.teams.option.success": "将队伍%2$s的选项%1$s设置为%3$s", + "commands.scoreboard.teams.option.usage": "/scoreboard teams option <队伍名> <值>", + "commands.scoreboard.teams.remove.success": "移除了队伍%s", + "commands.scoreboard.teams.remove.usage": "/scoreboard teams remove <名字>", + "commands.scoreboard.teams.usage": "/scoreboard teams ...", + "commands.scoreboard.usage": "/scoreboard ...", + "commands.seed.success": "种子: %s", + "commands.seed.usage": "/seed", + "commands.setblock.failed": "无法放置方块", + "commands.setblock.noChange": "无法放置方块", + "commands.setblock.notFound": "找不到数据值或名称为%s的方块", + "commands.setblock.outOfWorld": "无法在世界外放置方块", + "commands.setblock.success": "方块已放置", + "commands.setblock.tagError": "数据标签解析失败:%s", + "commands.setblock.usage": "/setblock <方块名> [数据值|状态] [旧方块处理方式] [数据标签]", + "commands.setidletimeout.success": "成功将闲置时限设为%s分钟", + "commands.setidletimeout.usage": "/setidletimeout <时间(分)>", + "commands.setworldspawn.success": "已将世界的出生点设置为(%s,%s,%s)", + "commands.setworldspawn.usage": "/setworldspawn [ ]", + "commands.spawnpoint.success": "已将%s的出生点设置为(%s,%s,%s)", + "commands.spawnpoint.usage": "/spawnpoint [玩家] [ ]", + "commands.spreadplayers.failure.players": "无法将%s个玩家扩散至(%s,%s)周围(玩家数量过多 - 最大玩家数为%s)", + "commands.spreadplayers.failure.teams": "无法将%s个队伍扩散至%s个方块远离%s,%s (玩家数量过多 - 最大玩家数为%s)", + "commands.spreadplayers.info.players": "(玩家间的平均距离在迭代%2$s次后为%1$s个方块)", + "commands.spreadplayers.info.teams": "(队伍间的平均距离在迭代%2$s次后为%1$s个方块)", + "commands.spreadplayers.noop": "没有找到可被扩散的玩家", + "commands.spreadplayers.spreading.players": "已将%s个玩家分散至由%s,%s为中心的%s个方块(最少相隔%s个方块)", + "commands.spreadplayers.spreading.teams": "已将%s个队伍分散至由%s,%s为中心的%s个方块(最少相隔%s个方块)", + "commands.spreadplayers.success.players": "成功地将%s个玩家在(%s,%s)周围扩散", + "commands.spreadplayers.success.teams": "成功地将%s个队伍在(%s,%s)周围扩散", + "commands.spreadplayers.usage": "/spreadplayers <扩散距离> <最远距离> <分组 true|false> <玩家 ...>", + "commands.stats.block.clear.usage": "/stats block clear <统计>", + "commands.stats.block.set.usage": "/stats block set <统计> <选择器> <记分项>", + "commands.stats.block.usage": "/stats block <模式> ...", + "commands.stats.cleared": "清除了%s的统计信息", + "commands.stats.entity.clear.usage": "/stats entity <选择器> clear <统计>", + "commands.stats.entity.set.usage": "/stats entity <选择器> set <统计> <选择器> <记分项>", + "commands.stats.entity.usage": "/stats entity <选择器> <模式> ...", + "commands.stats.failed": "无效的参数", + "commands.stats.noCompatibleBlock": "位于%s,%s,%s的方块无法跟踪统计", + "commands.stats.success": "将%s项统计信息储存在了%3$s的%2$s上", + "commands.stats.usage": "/stats ...", + "commands.stop.start": "正在关闭服务器", + "commands.stop.usage": "/stop", + "commands.stopsound.success.all": "为%s停止所有声音", + "commands.stopsound.success.individualSound": "为%3$s停止源自“%2$s”的声音“%1$s”", + "commands.stopsound.success.soundSource": "为%2$s停止声源“%1$s”", + "commands.stopsound.unknownSoundSource": "未知的声音源%s", + "commands.stopsound.usage": "/stopsound <玩家> [声音来源] [声音]", + "commands.summon.failed": "无法召唤实体", + "commands.summon.outOfWorld": "无法在世界外召唤实体", + "commands.summon.success": "成功地召唤了实体", + "commands.summon.tagError": "数据标签解析失败:%s", + "commands.summon.usage": "/summon <实体名> [x] [y] [z] [数据标签]", + "commands.teleport.success.coordinates": "传送%s至%s,%s,%s", + "commands.teleport.usage": "/teleport <实体> [ ]", + "commands.tellraw.jsonException": "无效的json:%s", + "commands.tellraw.usage": "/tellraw <玩家> <原始json消息>", + "commands.testfor.failure": "%s与要求的数据结构不匹配", + "commands.testfor.success": "发现%s", + "commands.testfor.tagError": "数据标签解析失败:%s", + "commands.testfor.usage": "/testfor <玩家> [数据标签]", + "commands.testforblock.failed.data": "位于%s, %s, %s的方块具有数据值%s(预想: %s)", + "commands.testforblock.failed.nbt": "位于%s,%s,%s的方块并没有所需的NBT标签", + "commands.testforblock.failed.tile": "位于%s, %s, %s的方块为%s(预想: %s)", + "commands.testforblock.failed.tileEntity": "位于%s,%s,%s的方块并非方块实体并不支持标签比对", + "commands.testforblock.outOfWorld": "无法测试位于世界外的方块", + "commands.testforblock.success": "成功找到了位于%s,%s,%s的方块", + "commands.testforblock.usage": "/testforblock <方块名> [数据值|-1|状态|*] [数据标签]", + "commands.time.added": "将时间调快了%s", + "commands.time.query": "时间为%s", + "commands.time.set": "将时间设为%s", + "commands.time.usage": "/time <值>", + "commands.title.success": "标题命令执行成功", + "commands.title.usage": "/title <玩家> …", + "commands.title.usage.clear": "/title <玩家> clear|reset", + "commands.title.usage.times": "/title <玩家> times <淡入时间> <保持时间> <淡出时间>", + "commands.title.usage.title": "/title <玩家> title|subtitle|actionbar <纯json标题>", + "commands.tp.notSameDimension": "无法传送,因为目标玩家不存在于同一个空间", + "commands.tp.success": "已将%s传送至%s", + "commands.tp.success.coordinates": "将%s传送到 %s,%s,%s", + "commands.tp.usage": "/tp [目标玩家] <目的地玩家> 或 /tp [目标] [<横向朝向> <纵向朝向>]", + "commands.trigger.disabled": "触发型的%s没有启用", + "commands.trigger.invalidMode": "无效的触发模式:%s", + "commands.trigger.invalidObjective": "触发器的名称%s无效", + "commands.trigger.invalidPlayer": "只有玩家能使用/trigger命令", + "commands.trigger.success": "触发器%s以%s模式改变了%s", + "commands.trigger.usage": "/trigger <记分项> <值>", + "commands.unban.failed": "无法解除玩家%s的封禁", + "commands.unban.success": "已解封玩家%s", + "commands.unban.usage": "/pardon <用户名>", + "commands.unbanip.invalid": "你输入了一个无效的IP地址", + "commands.unbanip.success": "已解封IP地址%s", + "commands.unbanip.usage": "/pardon-ip <地址>", + "commands.weather.clear": "更换到无天气", + "commands.weather.rain": "更换到下雨天", + "commands.weather.thunder": "更换到雷雨天", + "commands.weather.usage": "/weather [持续的秒数]", + "commands.whitelist.add.failed": "无法将%s添加到白名单中", + "commands.whitelist.add.success": "已将%s加入白名单", + "commands.whitelist.add.usage": "/whitelist add <玩家>", + "commands.whitelist.disabled": "白名单验证已关闭", + "commands.whitelist.enabled": "白名单验证已启用", + "commands.whitelist.list": "现在白名单中有%s个(于可见的%s人中)玩家:", + "commands.whitelist.reloaded": "已重新读取白名单", + "commands.whitelist.remove.failed": "无法从白名单中移除%s", + "commands.whitelist.remove.success": "已将%s移出白名单", + "commands.whitelist.remove.usage": "/whitelist remove <玩家>", + "commands.whitelist.usage": "/whitelist ", + "commands.worldborder.add.usage": "/worldborder add <大小(格)> [时间(秒)]", + "commands.worldborder.center.success": "将世界边界的中心设置为%s,%s", + "commands.worldborder.center.usage": "/worldborder center ", + "commands.worldborder.damage.amount.success": "将世界边界伤害设置为每方块%s(原每方块%s)", + "commands.worldborder.damage.amount.usage": "/worldborder damage amount <每格伤害值>", + "commands.worldborder.damage.buffer.success": "将世界边界伤害缓冲区设为%s个方块(原%s个方块)", + "commands.worldborder.damage.buffer.usage": "/worldborder damage buffer <大小(格)>", + "commands.worldborder.damage.usage": "/worldborder damage ...", + "commands.worldborder.get.success": "当前世界边界宽度为%s个方块", + "commands.worldborder.set.success": "设置世界边界的宽度为%s个方块(原%s个方块)", + "commands.worldborder.set.usage": "/worldborder set <大小(格)> [时间(秒)]", + "commands.worldborder.setSlowly.grow.success": "正将世界边界宽度逐渐增加为%s个方块(原%s个方块),时间%s秒", + "commands.worldborder.setSlowly.shrink.success": "正将世界边界宽度逐渐缩小为%s个方块(原%s个方块),时间%s秒", + "commands.worldborder.usage": "/worldborder ...", + "commands.worldborder.warning.distance.success": "将世界边界警告设置到%s方块的距离(从%s方块)", + "commands.worldborder.warning.distance.usage": "/worldborder warning distance <距离>", + "commands.worldborder.warning.time.success": "将世界边界警告设置到%s秒的距离(从%s秒)", + "commands.worldborder.warning.time.usage": "/worldborder warning time <时间(秒)>", + "commands.worldborder.warning.usage": "/worldborder warning ...", + "commands.xp.failure.widthdrawXp": "无法给玩家为负数的经验值", + "commands.xp.success": "已给予%2$s %1$s经验", + "commands.xp.success.levels": "已给予%2$s %1$s级经验", + "commands.xp.success.negative.levels": "从%2$s身上移除了%1$s级经验", + "commands.xp.usage": "/xp <经验数量> [玩家] 或 /xp <等级数量>L [玩家]" +} diff --git a/modules/lang_commands_1.11-1.12.2/module_manifest.json b/modules/lang_commands_1.11-1.12.2/module_manifest.json new file mode 100644 index 000000000..cfbcc9799 --- /dev/null +++ b/modules/lang_commands_1.11-1.12.2/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_commands_1.11-1.12.2", + "type": "resource", + "description": "1.13之前的命令字符串", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/lang_enchantment_level_extend/add.json b/modules/lang_enchantment_level_extend/add.json deleted file mode 100644 index f2c546cfd..000000000 --- a/modules/lang_enchantment_level_extend/add.json +++ /dev/null @@ -1,4991 +0,0 @@ -{ - "enchantment.level.11": "XI", - "enchantment.level.12": "XII", - "enchantment.level.13": "XIII", - "enchantment.level.14": "XIV", - "enchantment.level.15": "XV", - "enchantment.level.16": "XVI", - "enchantment.level.17": "XVII", - "enchantment.level.18": "XVIII", - "enchantment.level.19": "XIX", - "enchantment.level.20": "XX", - "enchantment.level.21": "XXI", - "enchantment.level.22": "XXII", - "enchantment.level.23": "XXIII", - "enchantment.level.24": "XXIV", - "enchantment.level.25": "XXV", - "enchantment.level.26": "XXVI", - "enchantment.level.27": "XXVII", - "enchantment.level.28": "XXVIII", - "enchantment.level.29": "XXIX", - "enchantment.level.30": "XXX", - "enchantment.level.31": "XXXI", - "enchantment.level.32": "XXXII", - "enchantment.level.33": "XXXIII", - "enchantment.level.34": "XXXIV", - "enchantment.level.35": "XXXV", - "enchantment.level.36": "XXXVI", - "enchantment.level.37": "XXXVII", - "enchantment.level.38": "XXXVIII", - "enchantment.level.39": "XXXIX", - "enchantment.level.40": "XL", - "enchantment.level.41": "XLI", - "enchantment.level.42": "XLII", - "enchantment.level.43": "XLIII", - "enchantment.level.44": "XLIV", - "enchantment.level.45": "XLV", - "enchantment.level.46": "XLVI", - "enchantment.level.47": "XLVII", - "enchantment.level.48": "XLVIII", - "enchantment.level.49": "XLIX", - "enchantment.level.50": "L", - "enchantment.level.51": "LI", - "enchantment.level.52": "LII", - "enchantment.level.53": "LIII", - "enchantment.level.54": "LIV", - "enchantment.level.55": "LV", - "enchantment.level.56": "LVI", - "enchantment.level.57": "LVII", - "enchantment.level.58": "LVIII", - "enchantment.level.59": "LIX", - "enchantment.level.60": "LX", - "enchantment.level.61": "LXI", - "enchantment.level.62": "LXII", - "enchantment.level.63": "LXIII", - "enchantment.level.64": "LXIV", - "enchantment.level.65": "LXV", - "enchantment.level.66": "LXVI", - "enchantment.level.67": "LXVII", - "enchantment.level.68": "LXVIII", - "enchantment.level.69": "LXIX", - "enchantment.level.70": "LXX", - "enchantment.level.71": "LXXI", - "enchantment.level.72": "LXXII", - "enchantment.level.73": "LXXIII", - "enchantment.level.74": "LXXIV", - "enchantment.level.75": "LXXV", - "enchantment.level.76": "LXXVI", - "enchantment.level.77": "LXXVII", - "enchantment.level.78": "LXXVIII", - "enchantment.level.79": "LXXIX", - "enchantment.level.80": "LXXX", - "enchantment.level.81": "LXXXI", - "enchantment.level.82": "LXXXII", - "enchantment.level.83": "LXXXIII", - "enchantment.level.84": "LXXXIV", - "enchantment.level.85": "LXXXV", - "enchantment.level.86": "LXXXVI", - "enchantment.level.87": "LXXXVII", - "enchantment.level.88": "LXXXVIII", - "enchantment.level.89": "LXXXIX", - "enchantment.level.90": "XC", - "enchantment.level.91": "XCI", - "enchantment.level.92": "XCII", - "enchantment.level.93": "XCIII", - "enchantment.level.94": "XCIV", - "enchantment.level.95": "XCV", - "enchantment.level.96": "XCVI", - "enchantment.level.97": "XCVII", - "enchantment.level.98": "XCVIII", - "enchantment.level.99": "XCIX", - "enchantment.level.100": "C", - "enchantment.level.101": "CI", - "enchantment.level.102": "CII", - "enchantment.level.103": "CIII", - "enchantment.level.104": "CIV", - "enchantment.level.105": "CV", - "enchantment.level.106": "CVI", - "enchantment.level.107": "CVII", - "enchantment.level.108": "CVIII", - "enchantment.level.109": "CIX", - "enchantment.level.110": "CX", - "enchantment.level.111": "CXI", - "enchantment.level.112": "CXII", - "enchantment.level.113": "CXIII", - "enchantment.level.114": "CXIV", - "enchantment.level.115": "CXV", - "enchantment.level.116": "CXVI", - "enchantment.level.117": "CXVII", - "enchantment.level.118": "CXVIII", - "enchantment.level.119": "CXIX", - "enchantment.level.120": "CXX", - "enchantment.level.121": "CXXI", - "enchantment.level.122": "CXXII", - "enchantment.level.123": "CXXIII", - "enchantment.level.124": "CXXIV", - "enchantment.level.125": "CXXV", - "enchantment.level.126": "CXXVI", - "enchantment.level.127": "CXXVII", - "enchantment.level.128": "CXXVIII", - "enchantment.level.129": "CXXIX", - "enchantment.level.130": "CXXX", - "enchantment.level.131": "CXXXI", - "enchantment.level.132": "CXXXII", - "enchantment.level.133": "CXXXIII", - "enchantment.level.134": "CXXXIV", - "enchantment.level.135": "CXXXV", - "enchantment.level.136": "CXXXVI", - "enchantment.level.137": "CXXXVII", - "enchantment.level.138": "CXXXVIII", - "enchantment.level.139": "CXXXIX", - "enchantment.level.140": "CXL", - "enchantment.level.141": "CXLI", - "enchantment.level.142": "CXLII", - "enchantment.level.143": "CXLIII", - "enchantment.level.144": "CXLIV", - "enchantment.level.145": "CXLV", - "enchantment.level.146": "CXLVI", - "enchantment.level.147": "CXLVII", - "enchantment.level.148": "CXLVIII", - "enchantment.level.149": "CXLIX", - "enchantment.level.150": "CL", - "enchantment.level.151": "CLI", - "enchantment.level.152": "CLII", - "enchantment.level.153": "CLIII", - "enchantment.level.154": "CLIV", - "enchantment.level.155": "CLV", - "enchantment.level.156": "CLVI", - "enchantment.level.157": "CLVII", - "enchantment.level.158": "CLVIII", - "enchantment.level.159": "CLIX", - "enchantment.level.160": "CLX", - "enchantment.level.161": "CLXI", - "enchantment.level.162": "CLXII", - "enchantment.level.163": "CLXIII", - "enchantment.level.164": "CLXIV", - "enchantment.level.165": "CLXV", - "enchantment.level.166": "CLXVI", - "enchantment.level.167": "CLXVII", - "enchantment.level.168": "CLXVIII", - "enchantment.level.169": "CLXIX", - "enchantment.level.170": "CLXX", - "enchantment.level.171": "CLXXI", - "enchantment.level.172": "CLXXII", - "enchantment.level.173": "CLXXIII", - "enchantment.level.174": "CLXXIV", - "enchantment.level.175": "CLXXV", - "enchantment.level.176": "CLXXVI", - "enchantment.level.177": "CLXXVII", - "enchantment.level.178": "CLXXVIII", - "enchantment.level.179": "CLXXIX", - "enchantment.level.180": "CLXXX", - "enchantment.level.181": "CLXXXI", - "enchantment.level.182": "CLXXXII", - "enchantment.level.183": "CLXXXIII", - "enchantment.level.184": "CLXXXIV", - "enchantment.level.185": "CLXXXV", - "enchantment.level.186": "CLXXXVI", - "enchantment.level.187": "CLXXXVII", - "enchantment.level.188": "CLXXXVIII", - "enchantment.level.189": "CLXXXIX", - "enchantment.level.190": "CXC", - "enchantment.level.191": "CXCI", - "enchantment.level.192": "CXCII", - "enchantment.level.193": "CXCIII", - "enchantment.level.194": "CXCIV", - "enchantment.level.195": "CXCV", - "enchantment.level.196": "CXCVI", - "enchantment.level.197": "CXCVII", - "enchantment.level.198": "CXCVIII", - "enchantment.level.199": "CXCIX", - "enchantment.level.200": "CC", - "enchantment.level.201": "CCI", - "enchantment.level.202": "CCII", - "enchantment.level.203": "CCIII", - "enchantment.level.204": "CCIV", - "enchantment.level.205": "CCV", - "enchantment.level.206": "CCVI", - "enchantment.level.207": "CCVII", - "enchantment.level.208": "CCVIII", - "enchantment.level.209": "CCIX", - "enchantment.level.210": "CCX", - "enchantment.level.211": "CCXI", - "enchantment.level.212": "CCXII", - "enchantment.level.213": "CCXIII", - "enchantment.level.214": "CCXIV", - "enchantment.level.215": "CCXV", - "enchantment.level.216": "CCXVI", - "enchantment.level.217": "CCXVII", - "enchantment.level.218": "CCXVIII", - "enchantment.level.219": "CCXIX", - "enchantment.level.220": "CCXX", - "enchantment.level.221": "CCXXI", - "enchantment.level.222": "CCXXII", - "enchantment.level.223": "CCXXIII", - "enchantment.level.224": "CCXXIV", - "enchantment.level.225": "CCXXV", - "enchantment.level.226": "CCXXVI", - "enchantment.level.227": "CCXXVII", - "enchantment.level.228": "CCXXVIII", - "enchantment.level.229": "CCXXIX", - "enchantment.level.230": "CCXXX", - "enchantment.level.231": "CCXXXI", - "enchantment.level.232": "CCXXXII", - "enchantment.level.233": "CCXXXIII", - "enchantment.level.234": "CCXXXIV", - "enchantment.level.235": "CCXXXV", - "enchantment.level.236": "CCXXXVI", - "enchantment.level.237": "CCXXXVII", - "enchantment.level.238": "CCXXXVIII", - "enchantment.level.239": "CCXXXIX", - "enchantment.level.240": "CCXL", - "enchantment.level.241": "CCXLI", - "enchantment.level.242": "CCXLII", - "enchantment.level.243": "CCXLIII", - "enchantment.level.244": "CCXLIV", - "enchantment.level.245": "CCXLV", - "enchantment.level.246": "CCXLVI", - "enchantment.level.247": "CCXLVII", - "enchantment.level.248": "CCXLVIII", - "enchantment.level.249": "CCXLIX", - "enchantment.level.250": "CCL", - "enchantment.level.251": "CCLI", - "enchantment.level.252": "CCLII", - "enchantment.level.253": "CCLIII", - "enchantment.level.254": "CCLIV", - "enchantment.level.255": "CCLV", - "enchantment.level.256": "CCLVI", - "enchantment.level.257": "CCLVII", - "enchantment.level.258": "CCLVIII", - "enchantment.level.259": "CCLIX", - "enchantment.level.260": "CCLX", - "enchantment.level.261": "CCLXI", - "enchantment.level.262": "CCLXII", - "enchantment.level.263": "CCLXIII", - "enchantment.level.264": "CCLXIV", - "enchantment.level.265": "CCLXV", - "enchantment.level.266": "CCLXVI", - "enchantment.level.267": "CCLXVII", - "enchantment.level.268": "CCLXVIII", - "enchantment.level.269": "CCLXIX", - "enchantment.level.270": "CCLXX", - "enchantment.level.271": "CCLXXI", - "enchantment.level.272": "CCLXXII", - "enchantment.level.273": "CCLXXIII", - "enchantment.level.274": "CCLXXIV", - "enchantment.level.275": "CCLXXV", - "enchantment.level.276": "CCLXXVI", - "enchantment.level.277": "CCLXXVII", - "enchantment.level.278": "CCLXXVIII", - "enchantment.level.279": "CCLXXIX", - "enchantment.level.280": "CCLXXX", - "enchantment.level.281": "CCLXXXI", - "enchantment.level.282": "CCLXXXII", - "enchantment.level.283": "CCLXXXIII", - "enchantment.level.284": "CCLXXXIV", - "enchantment.level.285": "CCLXXXV", - "enchantment.level.286": "CCLXXXVI", - "enchantment.level.287": "CCLXXXVII", - "enchantment.level.288": "CCLXXXVIII", - "enchantment.level.289": "CCLXXXIX", - "enchantment.level.290": "CCXC", - "enchantment.level.291": "CCXCI", - "enchantment.level.292": "CCXCII", - "enchantment.level.293": "CCXCIII", - "enchantment.level.294": "CCXCIV", - "enchantment.level.295": "CCXCV", - "enchantment.level.296": "CCXCVI", - "enchantment.level.297": "CCXCVII", - "enchantment.level.298": "CCXCVIII", - "enchantment.level.299": "CCXCIX", - "enchantment.level.300": "CCC", - "enchantment.level.301": "CCCI", - "enchantment.level.302": "CCCII", - "enchantment.level.303": "CCCIII", - "enchantment.level.304": "CCCIV", - "enchantment.level.305": "CCCV", - "enchantment.level.306": "CCCVI", - "enchantment.level.307": "CCCVII", - "enchantment.level.308": "CCCVIII", - "enchantment.level.309": "CCCIX", - "enchantment.level.310": "CCCX", - "enchantment.level.311": "CCCXI", - "enchantment.level.312": "CCCXII", - "enchantment.level.313": "CCCXIII", - "enchantment.level.314": "CCCXIV", - "enchantment.level.315": "CCCXV", - "enchantment.level.316": "CCCXVI", - "enchantment.level.317": "CCCXVII", - "enchantment.level.318": "CCCXVIII", - "enchantment.level.319": "CCCXIX", - "enchantment.level.320": "CCCXX", - "enchantment.level.321": "CCCXXI", - "enchantment.level.322": "CCCXXII", - "enchantment.level.323": "CCCXXIII", - "enchantment.level.324": "CCCXXIV", - "enchantment.level.325": "CCCXXV", - "enchantment.level.326": "CCCXXVI", - "enchantment.level.327": "CCCXXVII", - "enchantment.level.328": "CCCXXVIII", - "enchantment.level.329": "CCCXXIX", - "enchantment.level.330": "CCCXXX", - "enchantment.level.331": "CCCXXXI", - "enchantment.level.332": "CCCXXXII", - "enchantment.level.333": "CCCXXXIII", - "enchantment.level.334": "CCCXXXIV", - "enchantment.level.335": "CCCXXXV", - "enchantment.level.336": "CCCXXXVI", - "enchantment.level.337": "CCCXXXVII", - "enchantment.level.338": "CCCXXXVIII", - "enchantment.level.339": "CCCXXXIX", - "enchantment.level.340": "CCCXL", - "enchantment.level.341": "CCCXLI", - "enchantment.level.342": "CCCXLII", - "enchantment.level.343": "CCCXLIII", - "enchantment.level.344": "CCCXLIV", - "enchantment.level.345": "CCCXLV", - "enchantment.level.346": "CCCXLVI", - "enchantment.level.347": "CCCXLVII", - "enchantment.level.348": "CCCXLVIII", - "enchantment.level.349": "CCCXLIX", - "enchantment.level.350": "CCCL", - "enchantment.level.351": "CCCLI", - "enchantment.level.352": "CCCLII", - "enchantment.level.353": "CCCLIII", - "enchantment.level.354": "CCCLIV", - "enchantment.level.355": "CCCLV", - "enchantment.level.356": "CCCLVI", - "enchantment.level.357": "CCCLVII", - "enchantment.level.358": "CCCLVIII", - "enchantment.level.359": "CCCLIX", - "enchantment.level.360": "CCCLX", - "enchantment.level.361": "CCCLXI", - "enchantment.level.362": "CCCLXII", - "enchantment.level.363": "CCCLXIII", - "enchantment.level.364": "CCCLXIV", - "enchantment.level.365": "CCCLXV", - "enchantment.level.366": "CCCLXVI", - "enchantment.level.367": "CCCLXVII", - "enchantment.level.368": "CCCLXVIII", - "enchantment.level.369": "CCCLXIX", - "enchantment.level.370": "CCCLXX", - "enchantment.level.371": "CCCLXXI", - "enchantment.level.372": "CCCLXXII", - "enchantment.level.373": "CCCLXXIII", - "enchantment.level.374": "CCCLXXIV", - "enchantment.level.375": "CCCLXXV", - "enchantment.level.376": "CCCLXXVI", - "enchantment.level.377": "CCCLXXVII", - "enchantment.level.378": "CCCLXXVIII", - "enchantment.level.379": "CCCLXXIX", - "enchantment.level.380": "CCCLXXX", - "enchantment.level.381": "CCCLXXXI", - "enchantment.level.382": "CCCLXXXII", - "enchantment.level.383": "CCCLXXXIII", - "enchantment.level.384": "CCCLXXXIV", - "enchantment.level.385": "CCCLXXXV", - "enchantment.level.386": "CCCLXXXVI", - "enchantment.level.387": "CCCLXXXVII", - "enchantment.level.388": "CCCLXXXVIII", - "enchantment.level.389": "CCCLXXXIX", - "enchantment.level.390": "CCCXC", - "enchantment.level.391": "CCCXCI", - "enchantment.level.392": "CCCXCII", - "enchantment.level.393": "CCCXCIII", - "enchantment.level.394": "CCCXCIV", - "enchantment.level.395": "CCCXCV", - "enchantment.level.396": "CCCXCVI", - "enchantment.level.397": "CCCXCVII", - "enchantment.level.398": "CCCXCVIII", - "enchantment.level.399": "CCCXCIX", - "enchantment.level.400": "CD", - "enchantment.level.401": "CDI", - "enchantment.level.402": "CDII", - "enchantment.level.403": "CDIII", - "enchantment.level.404": "CDIV", - "enchantment.level.405": "CDV", - "enchantment.level.406": "CDVI", - "enchantment.level.407": "CDVII", - "enchantment.level.408": "CDVIII", - "enchantment.level.409": "CDIX", - "enchantment.level.410": "CDX", - "enchantment.level.411": "CDXI", - "enchantment.level.412": "CDXII", - "enchantment.level.413": "CDXIII", - "enchantment.level.414": "CDXIV", - "enchantment.level.415": "CDXV", - "enchantment.level.416": "CDXVI", - "enchantment.level.417": "CDXVII", - "enchantment.level.418": "CDXVIII", - "enchantment.level.419": "CDXIX", - "enchantment.level.420": "CDXX", - "enchantment.level.421": "CDXXI", - "enchantment.level.422": "CDXXII", - "enchantment.level.423": "CDXXIII", - "enchantment.level.424": "CDXXIV", - "enchantment.level.425": "CDXXV", - "enchantment.level.426": "CDXXVI", - "enchantment.level.427": "CDXXVII", - "enchantment.level.428": "CDXXVIII", - "enchantment.level.429": "CDXXIX", - "enchantment.level.430": "CDXXX", - "enchantment.level.431": "CDXXXI", - "enchantment.level.432": "CDXXXII", - "enchantment.level.433": "CDXXXIII", - "enchantment.level.434": "CDXXXIV", - "enchantment.level.435": "CDXXXV", - "enchantment.level.436": "CDXXXVI", - "enchantment.level.437": "CDXXXVII", - "enchantment.level.438": "CDXXXVIII", - "enchantment.level.439": "CDXXXIX", - "enchantment.level.440": "CDXL", - "enchantment.level.441": "CDXLI", - "enchantment.level.442": "CDXLII", - "enchantment.level.443": "CDXLIII", - "enchantment.level.444": "CDXLIV", - "enchantment.level.445": "CDXLV", - "enchantment.level.446": "CDXLVI", - "enchantment.level.447": "CDXLVII", - "enchantment.level.448": "CDXLVIII", - "enchantment.level.449": "CDXLIX", - "enchantment.level.450": "CDL", - "enchantment.level.451": "CDLI", - "enchantment.level.452": "CDLII", - "enchantment.level.453": "CDLIII", - "enchantment.level.454": "CDLIV", - "enchantment.level.455": "CDLV", - "enchantment.level.456": "CDLVI", - "enchantment.level.457": "CDLVII", - "enchantment.level.458": "CDLVIII", - "enchantment.level.459": "CDLIX", - "enchantment.level.460": "CDLX", - "enchantment.level.461": "CDLXI", - "enchantment.level.462": "CDLXII", - "enchantment.level.463": "CDLXIII", - "enchantment.level.464": "CDLXIV", - "enchantment.level.465": "CDLXV", - "enchantment.level.466": "CDLXVI", - "enchantment.level.467": "CDLXVII", - "enchantment.level.468": "CDLXVIII", - "enchantment.level.469": "CDLXIX", - "enchantment.level.470": "CDLXX", - "enchantment.level.471": "CDLXXI", - "enchantment.level.472": "CDLXXII", - "enchantment.level.473": "CDLXXIII", - "enchantment.level.474": "CDLXXIV", - "enchantment.level.475": "CDLXXV", - "enchantment.level.476": "CDLXXVI", - "enchantment.level.477": "CDLXXVII", - "enchantment.level.478": "CDLXXVIII", - "enchantment.level.479": "CDLXXIX", - "enchantment.level.480": "CDLXXX", - "enchantment.level.481": "CDLXXXI", - "enchantment.level.482": "CDLXXXII", - "enchantment.level.483": "CDLXXXIII", - "enchantment.level.484": "CDLXXXIV", - "enchantment.level.485": "CDLXXXV", - "enchantment.level.486": "CDLXXXVI", - "enchantment.level.487": "CDLXXXVII", - "enchantment.level.488": "CDLXXXVIII", - "enchantment.level.489": "CDLXXXIX", - "enchantment.level.490": "CDXC", - "enchantment.level.491": "CDXCI", - "enchantment.level.492": "CDXCII", - "enchantment.level.493": "CDXCIII", - "enchantment.level.494": "CDXCIV", - "enchantment.level.495": "CDXCV", - "enchantment.level.496": "CDXCVI", - "enchantment.level.497": "CDXCVII", - "enchantment.level.498": "CDXCVIII", - "enchantment.level.499": "CDXCIX", - "enchantment.level.500": "D", - "enchantment.level.501": "DI", - "enchantment.level.502": "DII", - "enchantment.level.503": "DIII", - "enchantment.level.504": "DIV", - "enchantment.level.505": "DV", - "enchantment.level.506": "DVI", - "enchantment.level.507": "DVII", - "enchantment.level.508": "DVIII", - "enchantment.level.509": "DIX", - "enchantment.level.510": "DX", - "enchantment.level.511": "DXI", - "enchantment.level.512": "DXII", - "enchantment.level.513": "DXIII", - "enchantment.level.514": "DXIV", - "enchantment.level.515": "DXV", - "enchantment.level.516": "DXVI", - "enchantment.level.517": "DXVII", - "enchantment.level.518": "DXVIII", - "enchantment.level.519": "DXIX", - "enchantment.level.520": "DXX", - "enchantment.level.521": "DXXI", - "enchantment.level.522": "DXXII", - "enchantment.level.523": "DXXIII", - "enchantment.level.524": "DXXIV", - "enchantment.level.525": "DXXV", - "enchantment.level.526": "DXXVI", - "enchantment.level.527": "DXXVII", - "enchantment.level.528": "DXXVIII", - "enchantment.level.529": "DXXIX", - "enchantment.level.530": "DXXX", - "enchantment.level.531": "DXXXI", - "enchantment.level.532": "DXXXII", - "enchantment.level.533": "DXXXIII", - "enchantment.level.534": "DXXXIV", - "enchantment.level.535": "DXXXV", - "enchantment.level.536": "DXXXVI", - "enchantment.level.537": "DXXXVII", - "enchantment.level.538": "DXXXVIII", - "enchantment.level.539": "DXXXIX", - "enchantment.level.540": "DXL", - "enchantment.level.541": "DXLI", - "enchantment.level.542": "DXLII", - "enchantment.level.543": "DXLIII", - "enchantment.level.544": "DXLIV", - "enchantment.level.545": "DXLV", - "enchantment.level.546": "DXLVI", - "enchantment.level.547": "DXLVII", - "enchantment.level.548": "DXLVIII", - "enchantment.level.549": "DXLIX", - "enchantment.level.550": "DL", - "enchantment.level.551": "DLI", - "enchantment.level.552": "DLII", - "enchantment.level.553": "DLIII", - "enchantment.level.554": "DLIV", - "enchantment.level.555": "DLV", - "enchantment.level.556": "DLVI", - "enchantment.level.557": "DLVII", - "enchantment.level.558": "DLVIII", - "enchantment.level.559": "DLIX", - "enchantment.level.560": "DLX", - "enchantment.level.561": "DLXI", - "enchantment.level.562": "DLXII", - "enchantment.level.563": "DLXIII", - "enchantment.level.564": "DLXIV", - "enchantment.level.565": "DLXV", - "enchantment.level.566": "DLXVI", - "enchantment.level.567": "DLXVII", - "enchantment.level.568": "DLXVIII", - "enchantment.level.569": "DLXIX", - "enchantment.level.570": "DLXX", - "enchantment.level.571": "DLXXI", - "enchantment.level.572": "DLXXII", - "enchantment.level.573": "DLXXIII", - "enchantment.level.574": "DLXXIV", - "enchantment.level.575": "DLXXV", - "enchantment.level.576": "DLXXVI", - "enchantment.level.577": "DLXXVII", - "enchantment.level.578": "DLXXVIII", - "enchantment.level.579": "DLXXIX", - "enchantment.level.580": "DLXXX", - "enchantment.level.581": "DLXXXI", - "enchantment.level.582": "DLXXXII", - "enchantment.level.583": "DLXXXIII", - "enchantment.level.584": "DLXXXIV", - "enchantment.level.585": "DLXXXV", - "enchantment.level.586": "DLXXXVI", - "enchantment.level.587": "DLXXXVII", - "enchantment.level.588": "DLXXXVIII", - "enchantment.level.589": "DLXXXIX", - "enchantment.level.590": "DXC", - "enchantment.level.591": "DXCI", - "enchantment.level.592": "DXCII", - "enchantment.level.593": "DXCIII", - "enchantment.level.594": "DXCIV", - "enchantment.level.595": "DXCV", - "enchantment.level.596": "DXCVI", - "enchantment.level.597": "DXCVII", - "enchantment.level.598": "DXCVIII", - "enchantment.level.599": "DXCIX", - "enchantment.level.600": "DC", - "enchantment.level.601": "DCI", - "enchantment.level.602": "DCII", - "enchantment.level.603": "DCIII", - "enchantment.level.604": "DCIV", - "enchantment.level.605": "DCV", - "enchantment.level.606": "DCVI", - "enchantment.level.607": "DCVII", - "enchantment.level.608": "DCVIII", - "enchantment.level.609": "DCIX", - "enchantment.level.610": "DCX", - "enchantment.level.611": "DCXI", - "enchantment.level.612": "DCXII", - "enchantment.level.613": "DCXIII", - "enchantment.level.614": "DCXIV", - "enchantment.level.615": "DCXV", - "enchantment.level.616": "DCXVI", - "enchantment.level.617": "DCXVII", - "enchantment.level.618": "DCXVIII", - "enchantment.level.619": "DCXIX", - "enchantment.level.620": "DCXX", - "enchantment.level.621": "DCXXI", - "enchantment.level.622": "DCXXII", - "enchantment.level.623": "DCXXIII", - "enchantment.level.624": "DCXXIV", - "enchantment.level.625": "DCXXV", - "enchantment.level.626": "DCXXVI", - "enchantment.level.627": "DCXXVII", - "enchantment.level.628": "DCXXVIII", - "enchantment.level.629": "DCXXIX", - "enchantment.level.630": "DCXXX", - "enchantment.level.631": "DCXXXI", - "enchantment.level.632": "DCXXXII", - "enchantment.level.633": "DCXXXIII", - "enchantment.level.634": "DCXXXIV", - "enchantment.level.635": "DCXXXV", - "enchantment.level.636": "DCXXXVI", - "enchantment.level.637": "DCXXXVII", - "enchantment.level.638": "DCXXXVIII", - "enchantment.level.639": "DCXXXIX", - "enchantment.level.640": "DCXL", - "enchantment.level.641": "DCXLI", - "enchantment.level.642": "DCXLII", - "enchantment.level.643": "DCXLIII", - "enchantment.level.644": "DCXLIV", - "enchantment.level.645": "DCXLV", - "enchantment.level.646": "DCXLVI", - "enchantment.level.647": "DCXLVII", - "enchantment.level.648": "DCXLVIII", - "enchantment.level.649": "DCXLIX", - "enchantment.level.650": "DCL", - "enchantment.level.651": "DCLI", - "enchantment.level.652": "DCLII", - "enchantment.level.653": "DCLIII", - "enchantment.level.654": "DCLIV", - "enchantment.level.655": "DCLV", - "enchantment.level.656": "DCLVI", - "enchantment.level.657": "DCLVII", - "enchantment.level.658": "DCLVIII", - "enchantment.level.659": "DCLIX", - "enchantment.level.660": "DCLX", - "enchantment.level.661": "DCLXI", - "enchantment.level.662": "DCLXII", - "enchantment.level.663": "DCLXIII", - "enchantment.level.664": "DCLXIV", - "enchantment.level.665": "DCLXV", - "enchantment.level.666": "DCLXVI", - "enchantment.level.667": "DCLXVII", - "enchantment.level.668": "DCLXVIII", - "enchantment.level.669": "DCLXIX", - "enchantment.level.670": "DCLXX", - "enchantment.level.671": "DCLXXI", - "enchantment.level.672": "DCLXXII", - "enchantment.level.673": "DCLXXIII", - "enchantment.level.674": "DCLXXIV", - "enchantment.level.675": "DCLXXV", - "enchantment.level.676": "DCLXXVI", - "enchantment.level.677": "DCLXXVII", - "enchantment.level.678": "DCLXXVIII", - "enchantment.level.679": "DCLXXIX", - "enchantment.level.680": "DCLXXX", - "enchantment.level.681": "DCLXXXI", - "enchantment.level.682": "DCLXXXII", - "enchantment.level.683": "DCLXXXIII", - "enchantment.level.684": "DCLXXXIV", - "enchantment.level.685": "DCLXXXV", - "enchantment.level.686": "DCLXXXVI", - "enchantment.level.687": "DCLXXXVII", - "enchantment.level.688": "DCLXXXVIII", - "enchantment.level.689": "DCLXXXIX", - "enchantment.level.690": "DCXC", - "enchantment.level.691": "DCXCI", - "enchantment.level.692": "DCXCII", - "enchantment.level.693": "DCXCIII", - "enchantment.level.694": "DCXCIV", - "enchantment.level.695": "DCXCV", - "enchantment.level.696": "DCXCVI", - "enchantment.level.697": "DCXCVII", - "enchantment.level.698": "DCXCVIII", - "enchantment.level.699": "DCXCIX", - "enchantment.level.700": "DCC", - "enchantment.level.701": "DCCI", - "enchantment.level.702": "DCCII", - "enchantment.level.703": "DCCIII", - "enchantment.level.704": "DCCIV", - "enchantment.level.705": "DCCV", - "enchantment.level.706": "DCCVI", - "enchantment.level.707": "DCCVII", - "enchantment.level.708": "DCCVIII", - "enchantment.level.709": "DCCIX", - "enchantment.level.710": "DCCX", - "enchantment.level.711": "DCCXI", - "enchantment.level.712": "DCCXII", - "enchantment.level.713": "DCCXIII", - "enchantment.level.714": "DCCXIV", - "enchantment.level.715": "DCCXV", - "enchantment.level.716": "DCCXVI", - "enchantment.level.717": "DCCXVII", - "enchantment.level.718": "DCCXVIII", - "enchantment.level.719": "DCCXIX", - "enchantment.level.720": "DCCXX", - "enchantment.level.721": "DCCXXI", - "enchantment.level.722": "DCCXXII", - "enchantment.level.723": "DCCXXIII", - "enchantment.level.724": "DCCXXIV", - "enchantment.level.725": "DCCXXV", - "enchantment.level.726": "DCCXXVI", - "enchantment.level.727": "DCCXXVII", - "enchantment.level.728": "DCCXXVIII", - "enchantment.level.729": "DCCXXIX", - "enchantment.level.730": "DCCXXX", - "enchantment.level.731": "DCCXXXI", - "enchantment.level.732": "DCCXXXII", - "enchantment.level.733": "DCCXXXIII", - "enchantment.level.734": "DCCXXXIV", - "enchantment.level.735": "DCCXXXV", - "enchantment.level.736": "DCCXXXVI", - "enchantment.level.737": "DCCXXXVII", - "enchantment.level.738": "DCCXXXVIII", - "enchantment.level.739": "DCCXXXIX", - "enchantment.level.740": "DCCXL", - "enchantment.level.741": "DCCXLI", - "enchantment.level.742": "DCCXLII", - "enchantment.level.743": "DCCXLIII", - "enchantment.level.744": "DCCXLIV", - "enchantment.level.745": "DCCXLV", - "enchantment.level.746": "DCCXLVI", - "enchantment.level.747": "DCCXLVII", - "enchantment.level.748": "DCCXLVIII", - "enchantment.level.749": "DCCXLIX", - "enchantment.level.750": "DCCL", - "enchantment.level.751": "DCCLI", - "enchantment.level.752": "DCCLII", - "enchantment.level.753": "DCCLIII", - "enchantment.level.754": "DCCLIV", - "enchantment.level.755": "DCCLV", - "enchantment.level.756": "DCCLVI", - "enchantment.level.757": "DCCLVII", - "enchantment.level.758": "DCCLVIII", - "enchantment.level.759": "DCCLIX", - "enchantment.level.760": "DCCLX", - "enchantment.level.761": "DCCLXI", - "enchantment.level.762": "DCCLXII", - "enchantment.level.763": "DCCLXIII", - "enchantment.level.764": "DCCLXIV", - "enchantment.level.765": "DCCLXV", - "enchantment.level.766": "DCCLXVI", - "enchantment.level.767": "DCCLXVII", - "enchantment.level.768": "DCCLXVIII", - "enchantment.level.769": "DCCLXIX", - "enchantment.level.770": "DCCLXX", - "enchantment.level.771": "DCCLXXI", - "enchantment.level.772": "DCCLXXII", - "enchantment.level.773": "DCCLXXIII", - "enchantment.level.774": "DCCLXXIV", - "enchantment.level.775": "DCCLXXV", - "enchantment.level.776": "DCCLXXVI", - "enchantment.level.777": "DCCLXXVII", - "enchantment.level.778": "DCCLXXVIII", - "enchantment.level.779": "DCCLXXIX", - "enchantment.level.780": "DCCLXXX", - "enchantment.level.781": "DCCLXXXI", - "enchantment.level.782": "DCCLXXXII", - "enchantment.level.783": "DCCLXXXIII", - "enchantment.level.784": "DCCLXXXIV", - "enchantment.level.785": "DCCLXXXV", - "enchantment.level.786": "DCCLXXXVI", - "enchantment.level.787": "DCCLXXXVII", - "enchantment.level.788": "DCCLXXXVIII", - "enchantment.level.789": "DCCLXXXIX", - "enchantment.level.790": "DCCXC", - "enchantment.level.791": "DCCXCI", - "enchantment.level.792": "DCCXCII", - "enchantment.level.793": "DCCXCIII", - "enchantment.level.794": "DCCXCIV", - "enchantment.level.795": "DCCXCV", - "enchantment.level.796": "DCCXCVI", - "enchantment.level.797": "DCCXCVII", - "enchantment.level.798": "DCCXCVIII", - "enchantment.level.799": "DCCXCIX", - "enchantment.level.800": "DCCC", - "enchantment.level.801": "DCCCI", - "enchantment.level.802": "DCCCII", - "enchantment.level.803": "DCCCIII", - "enchantment.level.804": "DCCCIV", - "enchantment.level.805": "DCCCV", - "enchantment.level.806": "DCCCVI", - "enchantment.level.807": "DCCCVII", - "enchantment.level.808": "DCCCVIII", - "enchantment.level.809": "DCCCIX", - "enchantment.level.810": "DCCCX", - "enchantment.level.811": "DCCCXI", - "enchantment.level.812": "DCCCXII", - "enchantment.level.813": "DCCCXIII", - "enchantment.level.814": "DCCCXIV", - "enchantment.level.815": "DCCCXV", - "enchantment.level.816": "DCCCXVI", - "enchantment.level.817": "DCCCXVII", - "enchantment.level.818": "DCCCXVIII", - "enchantment.level.819": "DCCCXIX", - "enchantment.level.820": "DCCCXX", - "enchantment.level.821": "DCCCXXI", - "enchantment.level.822": "DCCCXXII", - "enchantment.level.823": "DCCCXXIII", - "enchantment.level.824": "DCCCXXIV", - "enchantment.level.825": "DCCCXXV", - "enchantment.level.826": "DCCCXXVI", - "enchantment.level.827": "DCCCXXVII", - "enchantment.level.828": "DCCCXXVIII", - "enchantment.level.829": "DCCCXXIX", - "enchantment.level.830": "DCCCXXX", - "enchantment.level.831": "DCCCXXXI", - "enchantment.level.832": "DCCCXXXII", - "enchantment.level.833": "DCCCXXXIII", - "enchantment.level.834": "DCCCXXXIV", - "enchantment.level.835": "DCCCXXXV", - "enchantment.level.836": "DCCCXXXVI", - "enchantment.level.837": "DCCCXXXVII", - "enchantment.level.838": "DCCCXXXVIII", - "enchantment.level.839": "DCCCXXXIX", - "enchantment.level.840": "DCCCXL", - "enchantment.level.841": "DCCCXLI", - "enchantment.level.842": "DCCCXLII", - "enchantment.level.843": "DCCCXLIII", - "enchantment.level.844": "DCCCXLIV", - "enchantment.level.845": "DCCCXLV", - "enchantment.level.846": "DCCCXLVI", - "enchantment.level.847": "DCCCXLVII", - "enchantment.level.848": "DCCCXLVIII", - "enchantment.level.849": "DCCCXLIX", - "enchantment.level.850": "DCCCL", - "enchantment.level.851": "DCCCLI", - "enchantment.level.852": "DCCCLII", - "enchantment.level.853": "DCCCLIII", - "enchantment.level.854": "DCCCLIV", - "enchantment.level.855": "DCCCLV", - "enchantment.level.856": "DCCCLVI", - "enchantment.level.857": "DCCCLVII", - "enchantment.level.858": "DCCCLVIII", - "enchantment.level.859": "DCCCLIX", - "enchantment.level.860": "DCCCLX", - "enchantment.level.861": "DCCCLXI", - "enchantment.level.862": "DCCCLXII", - "enchantment.level.863": "DCCCLXIII", - "enchantment.level.864": "DCCCLXIV", - "enchantment.level.865": "DCCCLXV", - "enchantment.level.866": "DCCCLXVI", - "enchantment.level.867": "DCCCLXVII", - "enchantment.level.868": "DCCCLXVIII", - "enchantment.level.869": "DCCCLXIX", - "enchantment.level.870": "DCCCLXX", - "enchantment.level.871": "DCCCLXXI", - "enchantment.level.872": "DCCCLXXII", - "enchantment.level.873": "DCCCLXXIII", - "enchantment.level.874": "DCCCLXXIV", - "enchantment.level.875": "DCCCLXXV", - "enchantment.level.876": "DCCCLXXVI", - "enchantment.level.877": "DCCCLXXVII", - "enchantment.level.878": "DCCCLXXVIII", - "enchantment.level.879": "DCCCLXXIX", - "enchantment.level.880": "DCCCLXXX", - "enchantment.level.881": "DCCCLXXXI", - "enchantment.level.882": "DCCCLXXXII", - "enchantment.level.883": "DCCCLXXXIII", - "enchantment.level.884": "DCCCLXXXIV", - "enchantment.level.885": "DCCCLXXXV", - "enchantment.level.886": "DCCCLXXXVI", - "enchantment.level.887": "DCCCLXXXVII", - "enchantment.level.888": "DCCCLXXXVIII", - "enchantment.level.889": "DCCCLXXXIX", - "enchantment.level.890": "DCCCXC", - "enchantment.level.891": "DCCCXCI", - "enchantment.level.892": "DCCCXCII", - "enchantment.level.893": "DCCCXCIII", - "enchantment.level.894": "DCCCXCIV", - "enchantment.level.895": "DCCCXCV", - "enchantment.level.896": "DCCCXCVI", - "enchantment.level.897": "DCCCXCVII", - "enchantment.level.898": "DCCCXCVIII", - "enchantment.level.899": "DCCCXCIX", - "enchantment.level.900": "CM", - "enchantment.level.901": "CMI", - "enchantment.level.902": "CMII", - "enchantment.level.903": "CMIII", - "enchantment.level.904": "CMIV", - "enchantment.level.905": "CMV", - "enchantment.level.906": "CMVI", - "enchantment.level.907": "CMVII", - "enchantment.level.908": "CMVIII", - "enchantment.level.909": "CMIX", - "enchantment.level.910": "CMX", - "enchantment.level.911": "CMXI", - "enchantment.level.912": "CMXII", - "enchantment.level.913": "CMXIII", - "enchantment.level.914": "CMXIV", - "enchantment.level.915": "CMXV", - "enchantment.level.916": "CMXVI", - "enchantment.level.917": "CMXVII", - "enchantment.level.918": "CMXVIII", - "enchantment.level.919": "CMXIX", - "enchantment.level.920": "CMXX", - "enchantment.level.921": "CMXXI", - "enchantment.level.922": "CMXXII", - "enchantment.level.923": "CMXXIII", - "enchantment.level.924": "CMXXIV", - "enchantment.level.925": "CMXXV", - "enchantment.level.926": "CMXXVI", - "enchantment.level.927": "CMXXVII", - "enchantment.level.928": "CMXXVIII", - "enchantment.level.929": "CMXXIX", - "enchantment.level.930": "CMXXX", - "enchantment.level.931": "CMXXXI", - "enchantment.level.932": "CMXXXII", - "enchantment.level.933": "CMXXXIII", - "enchantment.level.934": "CMXXXIV", - "enchantment.level.935": "CMXXXV", - "enchantment.level.936": "CMXXXVI", - "enchantment.level.937": "CMXXXVII", - "enchantment.level.938": "CMXXXVIII", - "enchantment.level.939": "CMXXXIX", - "enchantment.level.940": "CMXL", - "enchantment.level.941": "CMXLI", - "enchantment.level.942": "CMXLII", - "enchantment.level.943": "CMXLIII", - "enchantment.level.944": "CMXLIV", - "enchantment.level.945": "CMXLV", - "enchantment.level.946": "CMXLVI", - "enchantment.level.947": "CMXLVII", - "enchantment.level.948": "CMXLVIII", - "enchantment.level.949": "CMXLIX", - "enchantment.level.950": "CML", - "enchantment.level.951": "CMLI", - "enchantment.level.952": "CMLII", - "enchantment.level.953": "CMLIII", - "enchantment.level.954": "CMLIV", - "enchantment.level.955": "CMLV", - "enchantment.level.956": "CMLVI", - "enchantment.level.957": "CMLVII", - "enchantment.level.958": "CMLVIII", - "enchantment.level.959": "CMLIX", - "enchantment.level.960": "CMLX", - "enchantment.level.961": "CMLXI", - "enchantment.level.962": "CMLXII", - "enchantment.level.963": "CMLXIII", - "enchantment.level.964": "CMLXIV", - "enchantment.level.965": "CMLXV", - "enchantment.level.966": "CMLXVI", - "enchantment.level.967": "CMLXVII", - "enchantment.level.968": "CMLXVIII", - "enchantment.level.969": "CMLXIX", - "enchantment.level.970": "CMLXX", - "enchantment.level.971": "CMLXXI", - "enchantment.level.972": "CMLXXII", - "enchantment.level.973": "CMLXXIII", - "enchantment.level.974": "CMLXXIV", - "enchantment.level.975": "CMLXXV", - "enchantment.level.976": "CMLXXVI", - "enchantment.level.977": "CMLXXVII", - "enchantment.level.978": "CMLXXVIII", - "enchantment.level.979": "CMLXXIX", - "enchantment.level.980": "CMLXXX", - "enchantment.level.981": "CMLXXXI", - "enchantment.level.982": "CMLXXXII", - "enchantment.level.983": "CMLXXXIII", - "enchantment.level.984": "CMLXXXIV", - "enchantment.level.985": "CMLXXXV", - "enchantment.level.986": "CMLXXXVI", - "enchantment.level.987": "CMLXXXVII", - "enchantment.level.988": "CMLXXXVIII", - "enchantment.level.989": "CMLXXXIX", - "enchantment.level.990": "CMXC", - "enchantment.level.991": "CMXCI", - "enchantment.level.992": "CMXCII", - "enchantment.level.993": "CMXCIII", - "enchantment.level.994": "CMXCIV", - "enchantment.level.995": "CMXCV", - "enchantment.level.996": "CMXCVI", - "enchantment.level.997": "CMXCVII", - "enchantment.level.998": "CMXCVIII", - "enchantment.level.999": "CMXCIX", - "enchantment.level.1000": "M", - "enchantment.level.1001": "MI", - "enchantment.level.1002": "MII", - "enchantment.level.1003": "MIII", - "enchantment.level.1004": "MIV", - "enchantment.level.1005": "MV", - "enchantment.level.1006": "MVI", - "enchantment.level.1007": "MVII", - "enchantment.level.1008": "MVIII", - "enchantment.level.1009": "MIX", - "enchantment.level.1010": "MX", - "enchantment.level.1011": "MXI", - "enchantment.level.1012": "MXII", - "enchantment.level.1013": "MXIII", - "enchantment.level.1014": "MXIV", - "enchantment.level.1015": "MXV", - "enchantment.level.1016": "MXVI", - "enchantment.level.1017": "MXVII", - "enchantment.level.1018": "MXVIII", - "enchantment.level.1019": "MXIX", - "enchantment.level.1020": "MXX", - "enchantment.level.1021": "MXXI", - "enchantment.level.1022": "MXXII", - "enchantment.level.1023": "MXXIII", - "enchantment.level.1024": "MXXIV", - "enchantment.level.1025": "MXXV", - "enchantment.level.1026": "MXXVI", - "enchantment.level.1027": "MXXVII", - "enchantment.level.1028": "MXXVIII", - "enchantment.level.1029": "MXXIX", - "enchantment.level.1030": "MXXX", - "enchantment.level.1031": "MXXXI", - "enchantment.level.1032": "MXXXII", - "enchantment.level.1033": "MXXXIII", - "enchantment.level.1034": "MXXXIV", - "enchantment.level.1035": "MXXXV", - "enchantment.level.1036": "MXXXVI", - "enchantment.level.1037": "MXXXVII", - "enchantment.level.1038": "MXXXVIII", - "enchantment.level.1039": "MXXXIX", - "enchantment.level.1040": "MXL", - "enchantment.level.1041": "MXLI", - "enchantment.level.1042": "MXLII", - "enchantment.level.1043": "MXLIII", - "enchantment.level.1044": "MXLIV", - "enchantment.level.1045": "MXLV", - "enchantment.level.1046": "MXLVI", - "enchantment.level.1047": "MXLVII", - "enchantment.level.1048": "MXLVIII", - "enchantment.level.1049": "MXLIX", - "enchantment.level.1050": "ML", - "enchantment.level.1051": "MLI", - "enchantment.level.1052": "MLII", - "enchantment.level.1053": "MLIII", - "enchantment.level.1054": "MLIV", - "enchantment.level.1055": "MLV", - "enchantment.level.1056": "MLVI", - "enchantment.level.1057": "MLVII", - "enchantment.level.1058": "MLVIII", - "enchantment.level.1059": "MLIX", - "enchantment.level.1060": "MLX", - "enchantment.level.1061": "MLXI", - "enchantment.level.1062": "MLXII", - "enchantment.level.1063": "MLXIII", - "enchantment.level.1064": "MLXIV", - "enchantment.level.1065": "MLXV", - "enchantment.level.1066": "MLXVI", - "enchantment.level.1067": "MLXVII", - "enchantment.level.1068": "MLXVIII", - "enchantment.level.1069": "MLXIX", - "enchantment.level.1070": "MLXX", - "enchantment.level.1071": "MLXXI", - "enchantment.level.1072": "MLXXII", - "enchantment.level.1073": "MLXXIII", - "enchantment.level.1074": "MLXXIV", - "enchantment.level.1075": "MLXXV", - "enchantment.level.1076": "MLXXVI", - "enchantment.level.1077": "MLXXVII", - "enchantment.level.1078": "MLXXVIII", - "enchantment.level.1079": "MLXXIX", - "enchantment.level.1080": "MLXXX", - "enchantment.level.1081": "MLXXXI", - "enchantment.level.1082": "MLXXXII", - "enchantment.level.1083": "MLXXXIII", - "enchantment.level.1084": "MLXXXIV", - "enchantment.level.1085": "MLXXXV", - "enchantment.level.1086": "MLXXXVI", - "enchantment.level.1087": "MLXXXVII", - "enchantment.level.1088": "MLXXXVIII", - "enchantment.level.1089": "MLXXXIX", - "enchantment.level.1090": "MXC", - "enchantment.level.1091": "MXCI", - "enchantment.level.1092": "MXCII", - "enchantment.level.1093": "MXCIII", - "enchantment.level.1094": "MXCIV", - "enchantment.level.1095": "MXCV", - "enchantment.level.1096": "MXCVI", - "enchantment.level.1097": "MXCVII", - "enchantment.level.1098": "MXCVIII", - "enchantment.level.1099": "MXCIX", - "enchantment.level.1100": "MC", - "enchantment.level.1101": "MCI", - "enchantment.level.1102": "MCII", - "enchantment.level.1103": "MCIII", - "enchantment.level.1104": "MCIV", - "enchantment.level.1105": "MCV", - "enchantment.level.1106": "MCVI", - "enchantment.level.1107": "MCVII", - "enchantment.level.1108": "MCVIII", - "enchantment.level.1109": "MCIX", - "enchantment.level.1110": "MCX", - "enchantment.level.1111": "MCXI", - "enchantment.level.1112": "MCXII", - "enchantment.level.1113": "MCXIII", - "enchantment.level.1114": "MCXIV", - "enchantment.level.1115": "MCXV", - "enchantment.level.1116": "MCXVI", - "enchantment.level.1117": "MCXVII", - "enchantment.level.1118": "MCXVIII", - "enchantment.level.1119": "MCXIX", - "enchantment.level.1120": "MCXX", - "enchantment.level.1121": "MCXXI", - "enchantment.level.1122": "MCXXII", - "enchantment.level.1123": "MCXXIII", - "enchantment.level.1124": "MCXXIV", - "enchantment.level.1125": "MCXXV", - "enchantment.level.1126": "MCXXVI", - "enchantment.level.1127": "MCXXVII", - "enchantment.level.1128": "MCXXVIII", - "enchantment.level.1129": "MCXXIX", - "enchantment.level.1130": "MCXXX", - "enchantment.level.1131": "MCXXXI", - "enchantment.level.1132": "MCXXXII", - "enchantment.level.1133": "MCXXXIII", - "enchantment.level.1134": "MCXXXIV", - "enchantment.level.1135": "MCXXXV", - "enchantment.level.1136": "MCXXXVI", - "enchantment.level.1137": "MCXXXVII", - "enchantment.level.1138": "MCXXXVIII", - "enchantment.level.1139": "MCXXXIX", - "enchantment.level.1140": "MCXL", - "enchantment.level.1141": "MCXLI", - "enchantment.level.1142": "MCXLII", - "enchantment.level.1143": "MCXLIII", - "enchantment.level.1144": "MCXLIV", - "enchantment.level.1145": "MCXLV", - "enchantment.level.1146": "MCXLVI", - "enchantment.level.1147": "MCXLVII", - "enchantment.level.1148": "MCXLVIII", - "enchantment.level.1149": "MCXLIX", - "enchantment.level.1150": "MCL", - "enchantment.level.1151": "MCLI", - "enchantment.level.1152": "MCLII", - "enchantment.level.1153": "MCLIII", - "enchantment.level.1154": "MCLIV", - "enchantment.level.1155": "MCLV", - "enchantment.level.1156": "MCLVI", - "enchantment.level.1157": "MCLVII", - "enchantment.level.1158": "MCLVIII", - "enchantment.level.1159": "MCLIX", - "enchantment.level.1160": "MCLX", - "enchantment.level.1161": "MCLXI", - "enchantment.level.1162": "MCLXII", - "enchantment.level.1163": "MCLXIII", - "enchantment.level.1164": "MCLXIV", - "enchantment.level.1165": "MCLXV", - "enchantment.level.1166": "MCLXVI", - "enchantment.level.1167": "MCLXVII", - "enchantment.level.1168": "MCLXVIII", - "enchantment.level.1169": "MCLXIX", - "enchantment.level.1170": "MCLXX", - "enchantment.level.1171": "MCLXXI", - "enchantment.level.1172": "MCLXXII", - "enchantment.level.1173": "MCLXXIII", - "enchantment.level.1174": "MCLXXIV", - "enchantment.level.1175": "MCLXXV", - "enchantment.level.1176": "MCLXXVI", - "enchantment.level.1177": "MCLXXVII", - "enchantment.level.1178": "MCLXXVIII", - "enchantment.level.1179": "MCLXXIX", - "enchantment.level.1180": "MCLXXX", - "enchantment.level.1181": "MCLXXXI", - "enchantment.level.1182": "MCLXXXII", - "enchantment.level.1183": "MCLXXXIII", - "enchantment.level.1184": "MCLXXXIV", - "enchantment.level.1185": "MCLXXXV", - "enchantment.level.1186": "MCLXXXVI", - "enchantment.level.1187": "MCLXXXVII", - "enchantment.level.1188": "MCLXXXVIII", - "enchantment.level.1189": "MCLXXXIX", - "enchantment.level.1190": "MCXC", - "enchantment.level.1191": "MCXCI", - "enchantment.level.1192": "MCXCII", - "enchantment.level.1193": "MCXCIII", - "enchantment.level.1194": "MCXCIV", - "enchantment.level.1195": "MCXCV", - "enchantment.level.1196": "MCXCVI", - "enchantment.level.1197": "MCXCVII", - "enchantment.level.1198": "MCXCVIII", - "enchantment.level.1199": "MCXCIX", - "enchantment.level.1200": "MCC", - "enchantment.level.1201": "MCCI", - "enchantment.level.1202": "MCCII", - "enchantment.level.1203": "MCCIII", - "enchantment.level.1204": "MCCIV", - "enchantment.level.1205": "MCCV", - "enchantment.level.1206": "MCCVI", - "enchantment.level.1207": "MCCVII", - "enchantment.level.1208": "MCCVIII", - "enchantment.level.1209": "MCCIX", - "enchantment.level.1210": "MCCX", - "enchantment.level.1211": "MCCXI", - "enchantment.level.1212": "MCCXII", - "enchantment.level.1213": "MCCXIII", - "enchantment.level.1214": "MCCXIV", - "enchantment.level.1215": "MCCXV", - "enchantment.level.1216": "MCCXVI", - "enchantment.level.1217": "MCCXVII", - "enchantment.level.1218": "MCCXVIII", - "enchantment.level.1219": "MCCXIX", - "enchantment.level.1220": "MCCXX", - "enchantment.level.1221": "MCCXXI", - "enchantment.level.1222": "MCCXXII", - "enchantment.level.1223": "MCCXXIII", - "enchantment.level.1224": "MCCXXIV", - "enchantment.level.1225": "MCCXXV", - "enchantment.level.1226": "MCCXXVI", - "enchantment.level.1227": "MCCXXVII", - "enchantment.level.1228": "MCCXXVIII", - "enchantment.level.1229": "MCCXXIX", - "enchantment.level.1230": "MCCXXX", - "enchantment.level.1231": "MCCXXXI", - "enchantment.level.1232": "MCCXXXII", - "enchantment.level.1233": "MCCXXXIII", - "enchantment.level.1234": "MCCXXXIV", - "enchantment.level.1235": "MCCXXXV", - "enchantment.level.1236": "MCCXXXVI", - "enchantment.level.1237": "MCCXXXVII", - "enchantment.level.1238": "MCCXXXVIII", - "enchantment.level.1239": "MCCXXXIX", - "enchantment.level.1240": "MCCXL", - "enchantment.level.1241": "MCCXLI", - "enchantment.level.1242": "MCCXLII", - "enchantment.level.1243": "MCCXLIII", - "enchantment.level.1244": "MCCXLIV", - "enchantment.level.1245": "MCCXLV", - "enchantment.level.1246": "MCCXLVI", - "enchantment.level.1247": "MCCXLVII", - "enchantment.level.1248": "MCCXLVIII", - "enchantment.level.1249": "MCCXLIX", - "enchantment.level.1250": "MCCL", - "enchantment.level.1251": "MCCLI", - "enchantment.level.1252": "MCCLII", - "enchantment.level.1253": "MCCLIII", - "enchantment.level.1254": "MCCLIV", - "enchantment.level.1255": "MCCLV", - "enchantment.level.1256": "MCCLVI", - "enchantment.level.1257": "MCCLVII", - "enchantment.level.1258": "MCCLVIII", - "enchantment.level.1259": "MCCLIX", - "enchantment.level.1260": "MCCLX", - "enchantment.level.1261": "MCCLXI", - "enchantment.level.1262": "MCCLXII", - "enchantment.level.1263": "MCCLXIII", - "enchantment.level.1264": "MCCLXIV", - "enchantment.level.1265": "MCCLXV", - "enchantment.level.1266": "MCCLXVI", - "enchantment.level.1267": "MCCLXVII", - "enchantment.level.1268": "MCCLXVIII", - "enchantment.level.1269": "MCCLXIX", - "enchantment.level.1270": "MCCLXX", - "enchantment.level.1271": "MCCLXXI", - "enchantment.level.1272": "MCCLXXII", - "enchantment.level.1273": "MCCLXXIII", - "enchantment.level.1274": "MCCLXXIV", - "enchantment.level.1275": "MCCLXXV", - "enchantment.level.1276": "MCCLXXVI", - "enchantment.level.1277": "MCCLXXVII", - "enchantment.level.1278": "MCCLXXVIII", - "enchantment.level.1279": "MCCLXXIX", - "enchantment.level.1280": "MCCLXXX", - "enchantment.level.1281": "MCCLXXXI", - "enchantment.level.1282": "MCCLXXXII", - "enchantment.level.1283": "MCCLXXXIII", - "enchantment.level.1284": "MCCLXXXIV", - "enchantment.level.1285": "MCCLXXXV", - "enchantment.level.1286": "MCCLXXXVI", - "enchantment.level.1287": "MCCLXXXVII", - "enchantment.level.1288": "MCCLXXXVIII", - "enchantment.level.1289": "MCCLXXXIX", - "enchantment.level.1290": "MCCXC", - "enchantment.level.1291": "MCCXCI", - "enchantment.level.1292": "MCCXCII", - "enchantment.level.1293": "MCCXCIII", - "enchantment.level.1294": "MCCXCIV", - "enchantment.level.1295": "MCCXCV", - "enchantment.level.1296": "MCCXCVI", - "enchantment.level.1297": "MCCXCVII", - "enchantment.level.1298": "MCCXCVIII", - "enchantment.level.1299": "MCCXCIX", - "enchantment.level.1300": "MCCC", - "enchantment.level.1301": "MCCCI", - "enchantment.level.1302": "MCCCII", - "enchantment.level.1303": "MCCCIII", - "enchantment.level.1304": "MCCCIV", - "enchantment.level.1305": "MCCCV", - "enchantment.level.1306": "MCCCVI", - "enchantment.level.1307": "MCCCVII", - "enchantment.level.1308": "MCCCVIII", - "enchantment.level.1309": "MCCCIX", - "enchantment.level.1310": "MCCCX", - "enchantment.level.1311": "MCCCXI", - "enchantment.level.1312": "MCCCXII", - "enchantment.level.1313": "MCCCXIII", - "enchantment.level.1314": "MCCCXIV", - "enchantment.level.1315": "MCCCXV", - "enchantment.level.1316": "MCCCXVI", - "enchantment.level.1317": "MCCCXVII", - "enchantment.level.1318": "MCCCXVIII", - "enchantment.level.1319": "MCCCXIX", - "enchantment.level.1320": "MCCCXX", - "enchantment.level.1321": "MCCCXXI", - "enchantment.level.1322": "MCCCXXII", - "enchantment.level.1323": "MCCCXXIII", - "enchantment.level.1324": "MCCCXXIV", - "enchantment.level.1325": "MCCCXXV", - "enchantment.level.1326": "MCCCXXVI", - "enchantment.level.1327": "MCCCXXVII", - "enchantment.level.1328": "MCCCXXVIII", - "enchantment.level.1329": "MCCCXXIX", - "enchantment.level.1330": "MCCCXXX", - "enchantment.level.1331": "MCCCXXXI", - "enchantment.level.1332": "MCCCXXXII", - "enchantment.level.1333": "MCCCXXXIII", - "enchantment.level.1334": "MCCCXXXIV", - "enchantment.level.1335": "MCCCXXXV", - "enchantment.level.1336": "MCCCXXXVI", - "enchantment.level.1337": "MCCCXXXVII", - "enchantment.level.1338": "MCCCXXXVIII", - "enchantment.level.1339": "MCCCXXXIX", - "enchantment.level.1340": "MCCCXL", - "enchantment.level.1341": "MCCCXLI", - "enchantment.level.1342": "MCCCXLII", - "enchantment.level.1343": "MCCCXLIII", - "enchantment.level.1344": "MCCCXLIV", - "enchantment.level.1345": "MCCCXLV", - "enchantment.level.1346": "MCCCXLVI", - "enchantment.level.1347": "MCCCXLVII", - "enchantment.level.1348": "MCCCXLVIII", - "enchantment.level.1349": "MCCCXLIX", - "enchantment.level.1350": "MCCCL", - "enchantment.level.1351": "MCCCLI", - "enchantment.level.1352": "MCCCLII", - "enchantment.level.1353": "MCCCLIII", - "enchantment.level.1354": "MCCCLIV", - "enchantment.level.1355": "MCCCLV", - "enchantment.level.1356": "MCCCLVI", - "enchantment.level.1357": "MCCCLVII", - "enchantment.level.1358": "MCCCLVIII", - "enchantment.level.1359": "MCCCLIX", - "enchantment.level.1360": "MCCCLX", - "enchantment.level.1361": "MCCCLXI", - "enchantment.level.1362": "MCCCLXII", - "enchantment.level.1363": "MCCCLXIII", - "enchantment.level.1364": "MCCCLXIV", - "enchantment.level.1365": "MCCCLXV", - "enchantment.level.1366": "MCCCLXVI", - "enchantment.level.1367": "MCCCLXVII", - "enchantment.level.1368": "MCCCLXVIII", - "enchantment.level.1369": "MCCCLXIX", - "enchantment.level.1370": "MCCCLXX", - "enchantment.level.1371": "MCCCLXXI", - "enchantment.level.1372": "MCCCLXXII", - "enchantment.level.1373": "MCCCLXXIII", - "enchantment.level.1374": "MCCCLXXIV", - "enchantment.level.1375": "MCCCLXXV", - "enchantment.level.1376": "MCCCLXXVI", - "enchantment.level.1377": "MCCCLXXVII", - "enchantment.level.1378": "MCCCLXXVIII", - "enchantment.level.1379": "MCCCLXXIX", - "enchantment.level.1380": "MCCCLXXX", - "enchantment.level.1381": "MCCCLXXXI", - "enchantment.level.1382": "MCCCLXXXII", - "enchantment.level.1383": "MCCCLXXXIII", - "enchantment.level.1384": "MCCCLXXXIV", - "enchantment.level.1385": "MCCCLXXXV", - "enchantment.level.1386": "MCCCLXXXVI", - "enchantment.level.1387": "MCCCLXXXVII", - "enchantment.level.1388": "MCCCLXXXVIII", - "enchantment.level.1389": "MCCCLXXXIX", - "enchantment.level.1390": "MCCCXC", - "enchantment.level.1391": "MCCCXCI", - "enchantment.level.1392": "MCCCXCII", - "enchantment.level.1393": "MCCCXCIII", - "enchantment.level.1394": "MCCCXCIV", - "enchantment.level.1395": "MCCCXCV", - "enchantment.level.1396": "MCCCXCVI", - "enchantment.level.1397": "MCCCXCVII", - "enchantment.level.1398": "MCCCXCVIII", - "enchantment.level.1399": "MCCCXCIX", - "enchantment.level.1400": "MCD", - "enchantment.level.1401": "MCDI", - "enchantment.level.1402": "MCDII", - "enchantment.level.1403": "MCDIII", - "enchantment.level.1404": "MCDIV", - "enchantment.level.1405": "MCDV", - "enchantment.level.1406": "MCDVI", - "enchantment.level.1407": "MCDVII", - "enchantment.level.1408": "MCDVIII", - "enchantment.level.1409": "MCDIX", - "enchantment.level.1410": "MCDX", - "enchantment.level.1411": "MCDXI", - "enchantment.level.1412": "MCDXII", - "enchantment.level.1413": "MCDXIII", - "enchantment.level.1414": "MCDXIV", - "enchantment.level.1415": "MCDXV", - "enchantment.level.1416": "MCDXVI", - "enchantment.level.1417": "MCDXVII", - "enchantment.level.1418": "MCDXVIII", - "enchantment.level.1419": "MCDXIX", - "enchantment.level.1420": "MCDXX", - "enchantment.level.1421": "MCDXXI", - "enchantment.level.1422": "MCDXXII", - "enchantment.level.1423": "MCDXXIII", - "enchantment.level.1424": "MCDXXIV", - "enchantment.level.1425": "MCDXXV", - "enchantment.level.1426": "MCDXXVI", - "enchantment.level.1427": "MCDXXVII", - "enchantment.level.1428": "MCDXXVIII", - "enchantment.level.1429": "MCDXXIX", - "enchantment.level.1430": "MCDXXX", - "enchantment.level.1431": "MCDXXXI", - "enchantment.level.1432": "MCDXXXII", - "enchantment.level.1433": "MCDXXXIII", - "enchantment.level.1434": "MCDXXXIV", - "enchantment.level.1435": "MCDXXXV", - "enchantment.level.1436": "MCDXXXVI", - "enchantment.level.1437": "MCDXXXVII", - "enchantment.level.1438": "MCDXXXVIII", - "enchantment.level.1439": "MCDXXXIX", - "enchantment.level.1440": "MCDXL", - "enchantment.level.1441": "MCDXLI", - "enchantment.level.1442": "MCDXLII", - "enchantment.level.1443": "MCDXLIII", - "enchantment.level.1444": "MCDXLIV", - "enchantment.level.1445": "MCDXLV", - "enchantment.level.1446": "MCDXLVI", - "enchantment.level.1447": "MCDXLVII", - "enchantment.level.1448": "MCDXLVIII", - "enchantment.level.1449": "MCDXLIX", - "enchantment.level.1450": "MCDL", - "enchantment.level.1451": "MCDLI", - "enchantment.level.1452": "MCDLII", - "enchantment.level.1453": "MCDLIII", - "enchantment.level.1454": "MCDLIV", - "enchantment.level.1455": "MCDLV", - "enchantment.level.1456": "MCDLVI", - "enchantment.level.1457": "MCDLVII", - "enchantment.level.1458": "MCDLVIII", - "enchantment.level.1459": "MCDLIX", - "enchantment.level.1460": "MCDLX", - "enchantment.level.1461": "MCDLXI", - "enchantment.level.1462": "MCDLXII", - "enchantment.level.1463": "MCDLXIII", - "enchantment.level.1464": "MCDLXIV", - "enchantment.level.1465": "MCDLXV", - "enchantment.level.1466": "MCDLXVI", - "enchantment.level.1467": "MCDLXVII", - "enchantment.level.1468": "MCDLXVIII", - "enchantment.level.1469": "MCDLXIX", - "enchantment.level.1470": "MCDLXX", - "enchantment.level.1471": "MCDLXXI", - "enchantment.level.1472": "MCDLXXII", - "enchantment.level.1473": "MCDLXXIII", - "enchantment.level.1474": "MCDLXXIV", - "enchantment.level.1475": "MCDLXXV", - "enchantment.level.1476": "MCDLXXVI", - "enchantment.level.1477": "MCDLXXVII", - "enchantment.level.1478": "MCDLXXVIII", - "enchantment.level.1479": "MCDLXXIX", - "enchantment.level.1480": "MCDLXXX", - "enchantment.level.1481": "MCDLXXXI", - "enchantment.level.1482": "MCDLXXXII", - "enchantment.level.1483": "MCDLXXXIII", - "enchantment.level.1484": "MCDLXXXIV", - "enchantment.level.1485": "MCDLXXXV", - "enchantment.level.1486": "MCDLXXXVI", - "enchantment.level.1487": "MCDLXXXVII", - "enchantment.level.1488": "MCDLXXXVIII", - "enchantment.level.1489": "MCDLXXXIX", - "enchantment.level.1490": "MCDXC", - "enchantment.level.1491": "MCDXCI", - "enchantment.level.1492": "MCDXCII", - "enchantment.level.1493": "MCDXCIII", - "enchantment.level.1494": "MCDXCIV", - "enchantment.level.1495": "MCDXCV", - "enchantment.level.1496": "MCDXCVI", - "enchantment.level.1497": "MCDXCVII", - "enchantment.level.1498": "MCDXCVIII", - "enchantment.level.1499": "MCDXCIX", - "enchantment.level.1500": "MD", - "enchantment.level.1501": "MDI", - "enchantment.level.1502": "MDII", - "enchantment.level.1503": "MDIII", - "enchantment.level.1504": "MDIV", - "enchantment.level.1505": "MDV", - "enchantment.level.1506": "MDVI", - "enchantment.level.1507": "MDVII", - "enchantment.level.1508": "MDVIII", - "enchantment.level.1509": "MDIX", - "enchantment.level.1510": "MDX", - "enchantment.level.1511": "MDXI", - "enchantment.level.1512": "MDXII", - "enchantment.level.1513": "MDXIII", - "enchantment.level.1514": "MDXIV", - "enchantment.level.1515": "MDXV", - "enchantment.level.1516": "MDXVI", - "enchantment.level.1517": "MDXVII", - "enchantment.level.1518": "MDXVIII", - "enchantment.level.1519": "MDXIX", - "enchantment.level.1520": "MDXX", - "enchantment.level.1521": "MDXXI", - "enchantment.level.1522": "MDXXII", - "enchantment.level.1523": "MDXXIII", - "enchantment.level.1524": "MDXXIV", - "enchantment.level.1525": "MDXXV", - "enchantment.level.1526": "MDXXVI", - "enchantment.level.1527": "MDXXVII", - "enchantment.level.1528": "MDXXVIII", - "enchantment.level.1529": "MDXXIX", - "enchantment.level.1530": "MDXXX", - "enchantment.level.1531": "MDXXXI", - "enchantment.level.1532": "MDXXXII", - "enchantment.level.1533": "MDXXXIII", - "enchantment.level.1534": "MDXXXIV", - "enchantment.level.1535": "MDXXXV", - "enchantment.level.1536": "MDXXXVI", - "enchantment.level.1537": "MDXXXVII", - "enchantment.level.1538": "MDXXXVIII", - "enchantment.level.1539": "MDXXXIX", - "enchantment.level.1540": "MDXL", - "enchantment.level.1541": "MDXLI", - "enchantment.level.1542": "MDXLII", - "enchantment.level.1543": "MDXLIII", - "enchantment.level.1544": "MDXLIV", - "enchantment.level.1545": "MDXLV", - "enchantment.level.1546": "MDXLVI", - "enchantment.level.1547": "MDXLVII", - "enchantment.level.1548": "MDXLVIII", - "enchantment.level.1549": "MDXLIX", - "enchantment.level.1550": "MDL", - "enchantment.level.1551": "MDLI", - "enchantment.level.1552": "MDLII", - "enchantment.level.1553": "MDLIII", - "enchantment.level.1554": "MDLIV", - "enchantment.level.1555": "MDLV", - "enchantment.level.1556": "MDLVI", - "enchantment.level.1557": "MDLVII", - "enchantment.level.1558": "MDLVIII", - "enchantment.level.1559": "MDLIX", - "enchantment.level.1560": "MDLX", - "enchantment.level.1561": "MDLXI", - "enchantment.level.1562": "MDLXII", - "enchantment.level.1563": "MDLXIII", - "enchantment.level.1564": "MDLXIV", - "enchantment.level.1565": "MDLXV", - "enchantment.level.1566": "MDLXVI", - "enchantment.level.1567": "MDLXVII", - "enchantment.level.1568": "MDLXVIII", - "enchantment.level.1569": "MDLXIX", - "enchantment.level.1570": "MDLXX", - "enchantment.level.1571": "MDLXXI", - "enchantment.level.1572": "MDLXXII", - "enchantment.level.1573": "MDLXXIII", - "enchantment.level.1574": "MDLXXIV", - "enchantment.level.1575": "MDLXXV", - "enchantment.level.1576": "MDLXXVI", - "enchantment.level.1577": "MDLXXVII", - "enchantment.level.1578": "MDLXXVIII", - "enchantment.level.1579": "MDLXXIX", - "enchantment.level.1580": "MDLXXX", - "enchantment.level.1581": "MDLXXXI", - "enchantment.level.1582": "MDLXXXII", - "enchantment.level.1583": "MDLXXXIII", - "enchantment.level.1584": "MDLXXXIV", - "enchantment.level.1585": "MDLXXXV", - "enchantment.level.1586": "MDLXXXVI", - "enchantment.level.1587": "MDLXXXVII", - "enchantment.level.1588": "MDLXXXVIII", - "enchantment.level.1589": "MDLXXXIX", - "enchantment.level.1590": "MDXC", - "enchantment.level.1591": "MDXCI", - "enchantment.level.1592": "MDXCII", - "enchantment.level.1593": "MDXCIII", - "enchantment.level.1594": "MDXCIV", - "enchantment.level.1595": "MDXCV", - "enchantment.level.1596": "MDXCVI", - "enchantment.level.1597": "MDXCVII", - "enchantment.level.1598": "MDXCVIII", - "enchantment.level.1599": "MDXCIX", - "enchantment.level.1600": "MDC", - "enchantment.level.1601": "MDCI", - "enchantment.level.1602": "MDCII", - "enchantment.level.1603": "MDCIII", - "enchantment.level.1604": "MDCIV", - "enchantment.level.1605": "MDCV", - "enchantment.level.1606": "MDCVI", - "enchantment.level.1607": "MDCVII", - "enchantment.level.1608": "MDCVIII", - "enchantment.level.1609": "MDCIX", - "enchantment.level.1610": "MDCX", - "enchantment.level.1611": "MDCXI", - "enchantment.level.1612": "MDCXII", - "enchantment.level.1613": "MDCXIII", - "enchantment.level.1614": "MDCXIV", - "enchantment.level.1615": "MDCXV", - "enchantment.level.1616": "MDCXVI", - "enchantment.level.1617": "MDCXVII", - "enchantment.level.1618": "MDCXVIII", - "enchantment.level.1619": "MDCXIX", - "enchantment.level.1620": "MDCXX", - "enchantment.level.1621": "MDCXXI", - "enchantment.level.1622": "MDCXXII", - "enchantment.level.1623": "MDCXXIII", - "enchantment.level.1624": "MDCXXIV", - "enchantment.level.1625": "MDCXXV", - "enchantment.level.1626": "MDCXXVI", - "enchantment.level.1627": "MDCXXVII", - "enchantment.level.1628": "MDCXXVIII", - "enchantment.level.1629": "MDCXXIX", - "enchantment.level.1630": "MDCXXX", - "enchantment.level.1631": "MDCXXXI", - "enchantment.level.1632": "MDCXXXII", - "enchantment.level.1633": "MDCXXXIII", - "enchantment.level.1634": "MDCXXXIV", - "enchantment.level.1635": "MDCXXXV", - "enchantment.level.1636": "MDCXXXVI", - "enchantment.level.1637": "MDCXXXVII", - "enchantment.level.1638": "MDCXXXVIII", - "enchantment.level.1639": "MDCXXXIX", - "enchantment.level.1640": "MDCXL", - "enchantment.level.1641": "MDCXLI", - "enchantment.level.1642": "MDCXLII", - "enchantment.level.1643": "MDCXLIII", - "enchantment.level.1644": "MDCXLIV", - "enchantment.level.1645": "MDCXLV", - "enchantment.level.1646": "MDCXLVI", - "enchantment.level.1647": "MDCXLVII", - "enchantment.level.1648": "MDCXLVIII", - "enchantment.level.1649": "MDCXLIX", - "enchantment.level.1650": "MDCL", - "enchantment.level.1651": "MDCLI", - "enchantment.level.1652": "MDCLII", - "enchantment.level.1653": "MDCLIII", - "enchantment.level.1654": "MDCLIV", - "enchantment.level.1655": "MDCLV", - "enchantment.level.1656": "MDCLVI", - "enchantment.level.1657": "MDCLVII", - "enchantment.level.1658": "MDCLVIII", - "enchantment.level.1659": "MDCLIX", - "enchantment.level.1660": "MDCLX", - "enchantment.level.1661": "MDCLXI", - "enchantment.level.1662": "MDCLXII", - "enchantment.level.1663": "MDCLXIII", - "enchantment.level.1664": "MDCLXIV", - "enchantment.level.1665": "MDCLXV", - "enchantment.level.1666": "MDCLXVI", - "enchantment.level.1667": "MDCLXVII", - "enchantment.level.1668": "MDCLXVIII", - "enchantment.level.1669": "MDCLXIX", - "enchantment.level.1670": "MDCLXX", - "enchantment.level.1671": "MDCLXXI", - "enchantment.level.1672": "MDCLXXII", - "enchantment.level.1673": "MDCLXXIII", - "enchantment.level.1674": "MDCLXXIV", - "enchantment.level.1675": "MDCLXXV", - "enchantment.level.1676": "MDCLXXVI", - "enchantment.level.1677": "MDCLXXVII", - "enchantment.level.1678": "MDCLXXVIII", - "enchantment.level.1679": "MDCLXXIX", - "enchantment.level.1680": "MDCLXXX", - "enchantment.level.1681": "MDCLXXXI", - "enchantment.level.1682": "MDCLXXXII", - "enchantment.level.1683": "MDCLXXXIII", - "enchantment.level.1684": "MDCLXXXIV", - "enchantment.level.1685": "MDCLXXXV", - "enchantment.level.1686": "MDCLXXXVI", - "enchantment.level.1687": "MDCLXXXVII", - "enchantment.level.1688": "MDCLXXXVIII", - "enchantment.level.1689": "MDCLXXXIX", - "enchantment.level.1690": "MDCXC", - "enchantment.level.1691": "MDCXCI", - "enchantment.level.1692": "MDCXCII", - "enchantment.level.1693": "MDCXCIII", - "enchantment.level.1694": "MDCXCIV", - "enchantment.level.1695": "MDCXCV", - "enchantment.level.1696": "MDCXCVI", - "enchantment.level.1697": "MDCXCVII", - "enchantment.level.1698": "MDCXCVIII", - "enchantment.level.1699": "MDCXCIX", - "enchantment.level.1700": "MDCC", - "enchantment.level.1701": "MDCCI", - "enchantment.level.1702": "MDCCII", - "enchantment.level.1703": "MDCCIII", - "enchantment.level.1704": "MDCCIV", - "enchantment.level.1705": "MDCCV", - "enchantment.level.1706": "MDCCVI", - "enchantment.level.1707": "MDCCVII", - "enchantment.level.1708": "MDCCVIII", - "enchantment.level.1709": "MDCCIX", - "enchantment.level.1710": "MDCCX", - "enchantment.level.1711": "MDCCXI", - "enchantment.level.1712": "MDCCXII", - "enchantment.level.1713": "MDCCXIII", - "enchantment.level.1714": "MDCCXIV", - "enchantment.level.1715": "MDCCXV", - "enchantment.level.1716": "MDCCXVI", - "enchantment.level.1717": "MDCCXVII", - "enchantment.level.1718": "MDCCXVIII", - "enchantment.level.1719": "MDCCXIX", - "enchantment.level.1720": "MDCCXX", - "enchantment.level.1721": "MDCCXXI", - "enchantment.level.1722": "MDCCXXII", - "enchantment.level.1723": "MDCCXXIII", - "enchantment.level.1724": "MDCCXXIV", - "enchantment.level.1725": "MDCCXXV", - "enchantment.level.1726": "MDCCXXVI", - "enchantment.level.1727": "MDCCXXVII", - "enchantment.level.1728": "MDCCXXVIII", - "enchantment.level.1729": "MDCCXXIX", - "enchantment.level.1730": "MDCCXXX", - "enchantment.level.1731": "MDCCXXXI", - "enchantment.level.1732": "MDCCXXXII", - "enchantment.level.1733": "MDCCXXXIII", - "enchantment.level.1734": "MDCCXXXIV", - "enchantment.level.1735": "MDCCXXXV", - "enchantment.level.1736": "MDCCXXXVI", - "enchantment.level.1737": "MDCCXXXVII", - "enchantment.level.1738": "MDCCXXXVIII", - "enchantment.level.1739": "MDCCXXXIX", - "enchantment.level.1740": "MDCCXL", - "enchantment.level.1741": "MDCCXLI", - "enchantment.level.1742": "MDCCXLII", - "enchantment.level.1743": "MDCCXLIII", - "enchantment.level.1744": "MDCCXLIV", - "enchantment.level.1745": "MDCCXLV", - "enchantment.level.1746": "MDCCXLVI", - "enchantment.level.1747": "MDCCXLVII", - "enchantment.level.1748": "MDCCXLVIII", - "enchantment.level.1749": "MDCCXLIX", - "enchantment.level.1750": "MDCCL", - "enchantment.level.1751": "MDCCLI", - "enchantment.level.1752": "MDCCLII", - "enchantment.level.1753": "MDCCLIII", - "enchantment.level.1754": "MDCCLIV", - "enchantment.level.1755": "MDCCLV", - "enchantment.level.1756": "MDCCLVI", - "enchantment.level.1757": "MDCCLVII", - "enchantment.level.1758": "MDCCLVIII", - "enchantment.level.1759": "MDCCLIX", - "enchantment.level.1760": "MDCCLX", - "enchantment.level.1761": "MDCCLXI", - "enchantment.level.1762": "MDCCLXII", - "enchantment.level.1763": "MDCCLXIII", - "enchantment.level.1764": "MDCCLXIV", - "enchantment.level.1765": "MDCCLXV", - "enchantment.level.1766": "MDCCLXVI", - "enchantment.level.1767": "MDCCLXVII", - "enchantment.level.1768": "MDCCLXVIII", - "enchantment.level.1769": "MDCCLXIX", - "enchantment.level.1770": "MDCCLXX", - "enchantment.level.1771": "MDCCLXXI", - "enchantment.level.1772": "MDCCLXXII", - "enchantment.level.1773": "MDCCLXXIII", - "enchantment.level.1774": "MDCCLXXIV", - "enchantment.level.1775": "MDCCLXXV", - "enchantment.level.1776": "MDCCLXXVI", - "enchantment.level.1777": "MDCCLXXVII", - "enchantment.level.1778": "MDCCLXXVIII", - "enchantment.level.1779": "MDCCLXXIX", - "enchantment.level.1780": "MDCCLXXX", - "enchantment.level.1781": "MDCCLXXXI", - "enchantment.level.1782": "MDCCLXXXII", - "enchantment.level.1783": "MDCCLXXXIII", - "enchantment.level.1784": "MDCCLXXXIV", - "enchantment.level.1785": "MDCCLXXXV", - "enchantment.level.1786": "MDCCLXXXVI", - "enchantment.level.1787": "MDCCLXXXVII", - "enchantment.level.1788": "MDCCLXXXVIII", - "enchantment.level.1789": "MDCCLXXXIX", - "enchantment.level.1790": "MDCCXC", - "enchantment.level.1791": "MDCCXCI", - "enchantment.level.1792": "MDCCXCII", - "enchantment.level.1793": "MDCCXCIII", - "enchantment.level.1794": "MDCCXCIV", - "enchantment.level.1795": "MDCCXCV", - "enchantment.level.1796": "MDCCXCVI", - "enchantment.level.1797": "MDCCXCVII", - "enchantment.level.1798": "MDCCXCVIII", - "enchantment.level.1799": "MDCCXCIX", - "enchantment.level.1800": "MDCCC", - "enchantment.level.1801": "MDCCCI", - "enchantment.level.1802": "MDCCCII", - "enchantment.level.1803": "MDCCCIII", - "enchantment.level.1804": "MDCCCIV", - "enchantment.level.1805": "MDCCCV", - "enchantment.level.1806": "MDCCCVI", - "enchantment.level.1807": "MDCCCVII", - "enchantment.level.1808": "MDCCCVIII", - "enchantment.level.1809": "MDCCCIX", - "enchantment.level.1810": "MDCCCX", - "enchantment.level.1811": "MDCCCXI", - "enchantment.level.1812": "MDCCCXII", - "enchantment.level.1813": "MDCCCXIII", - "enchantment.level.1814": "MDCCCXIV", - "enchantment.level.1815": "MDCCCXV", - "enchantment.level.1816": "MDCCCXVI", - "enchantment.level.1817": "MDCCCXVII", - "enchantment.level.1818": "MDCCCXVIII", - "enchantment.level.1819": "MDCCCXIX", - "enchantment.level.1820": "MDCCCXX", - "enchantment.level.1821": "MDCCCXXI", - "enchantment.level.1822": "MDCCCXXII", - "enchantment.level.1823": "MDCCCXXIII", - "enchantment.level.1824": "MDCCCXXIV", - "enchantment.level.1825": "MDCCCXXV", - "enchantment.level.1826": "MDCCCXXVI", - "enchantment.level.1827": "MDCCCXXVII", - "enchantment.level.1828": "MDCCCXXVIII", - "enchantment.level.1829": "MDCCCXXIX", - "enchantment.level.1830": "MDCCCXXX", - "enchantment.level.1831": "MDCCCXXXI", - "enchantment.level.1832": "MDCCCXXXII", - "enchantment.level.1833": "MDCCCXXXIII", - "enchantment.level.1834": "MDCCCXXXIV", - "enchantment.level.1835": "MDCCCXXXV", - "enchantment.level.1836": "MDCCCXXXVI", - "enchantment.level.1837": "MDCCCXXXVII", - "enchantment.level.1838": "MDCCCXXXVIII", - "enchantment.level.1839": "MDCCCXXXIX", - "enchantment.level.1840": "MDCCCXL", - "enchantment.level.1841": "MDCCCXLI", - "enchantment.level.1842": "MDCCCXLII", - "enchantment.level.1843": "MDCCCXLIII", - "enchantment.level.1844": "MDCCCXLIV", - "enchantment.level.1845": "MDCCCXLV", - "enchantment.level.1846": "MDCCCXLVI", - "enchantment.level.1847": "MDCCCXLVII", - "enchantment.level.1848": "MDCCCXLVIII", - "enchantment.level.1849": "MDCCCXLIX", - "enchantment.level.1850": "MDCCCL", - "enchantment.level.1851": "MDCCCLI", - "enchantment.level.1852": "MDCCCLII", - "enchantment.level.1853": "MDCCCLIII", - "enchantment.level.1854": "MDCCCLIV", - "enchantment.level.1855": "MDCCCLV", - "enchantment.level.1856": "MDCCCLVI", - "enchantment.level.1857": "MDCCCLVII", - "enchantment.level.1858": "MDCCCLVIII", - "enchantment.level.1859": "MDCCCLIX", - "enchantment.level.1860": "MDCCCLX", - "enchantment.level.1861": "MDCCCLXI", - "enchantment.level.1862": "MDCCCLXII", - "enchantment.level.1863": "MDCCCLXIII", - "enchantment.level.1864": "MDCCCLXIV", - "enchantment.level.1865": "MDCCCLXV", - "enchantment.level.1866": "MDCCCLXVI", - "enchantment.level.1867": "MDCCCLXVII", - "enchantment.level.1868": "MDCCCLXVIII", - "enchantment.level.1869": "MDCCCLXIX", - "enchantment.level.1870": "MDCCCLXX", - "enchantment.level.1871": "MDCCCLXXI", - "enchantment.level.1872": "MDCCCLXXII", - "enchantment.level.1873": "MDCCCLXXIII", - "enchantment.level.1874": "MDCCCLXXIV", - "enchantment.level.1875": "MDCCCLXXV", - "enchantment.level.1876": "MDCCCLXXVI", - "enchantment.level.1877": "MDCCCLXXVII", - "enchantment.level.1878": "MDCCCLXXVIII", - "enchantment.level.1879": "MDCCCLXXIX", - "enchantment.level.1880": "MDCCCLXXX", - "enchantment.level.1881": "MDCCCLXXXI", - "enchantment.level.1882": "MDCCCLXXXII", - "enchantment.level.1883": "MDCCCLXXXIII", - "enchantment.level.1884": "MDCCCLXXXIV", - "enchantment.level.1885": "MDCCCLXXXV", - "enchantment.level.1886": "MDCCCLXXXVI", - "enchantment.level.1887": "MDCCCLXXXVII", - "enchantment.level.1888": "MDCCCLXXXVIII", - "enchantment.level.1889": "MDCCCLXXXIX", - "enchantment.level.1890": "MDCCCXC", - "enchantment.level.1891": "MDCCCXCI", - "enchantment.level.1892": "MDCCCXCII", - "enchantment.level.1893": "MDCCCXCIII", - "enchantment.level.1894": "MDCCCXCIV", - "enchantment.level.1895": "MDCCCXCV", - "enchantment.level.1896": "MDCCCXCVI", - "enchantment.level.1897": "MDCCCXCVII", - "enchantment.level.1898": "MDCCCXCVIII", - "enchantment.level.1899": "MDCCCXCIX", - "enchantment.level.1900": "MCM", - "enchantment.level.1901": "MCMI", - "enchantment.level.1902": "MCMII", - "enchantment.level.1903": "MCMIII", - "enchantment.level.1904": "MCMIV", - "enchantment.level.1905": "MCMV", - "enchantment.level.1906": "MCMVI", - "enchantment.level.1907": "MCMVII", - "enchantment.level.1908": "MCMVIII", - "enchantment.level.1909": "MCMIX", - "enchantment.level.1910": "MCMX", - "enchantment.level.1911": "MCMXI", - "enchantment.level.1912": "MCMXII", - "enchantment.level.1913": "MCMXIII", - "enchantment.level.1914": "MCMXIV", - "enchantment.level.1915": "MCMXV", - "enchantment.level.1916": "MCMXVI", - "enchantment.level.1917": "MCMXVII", - "enchantment.level.1918": "MCMXVIII", - "enchantment.level.1919": "MCMXIX", - "enchantment.level.1920": "MCMXX", - "enchantment.level.1921": "MCMXXI", - "enchantment.level.1922": "MCMXXII", - "enchantment.level.1923": "MCMXXIII", - "enchantment.level.1924": "MCMXXIV", - "enchantment.level.1925": "MCMXXV", - "enchantment.level.1926": "MCMXXVI", - "enchantment.level.1927": "MCMXXVII", - "enchantment.level.1928": "MCMXXVIII", - "enchantment.level.1929": "MCMXXIX", - "enchantment.level.1930": "MCMXXX", - "enchantment.level.1931": "MCMXXXI", - "enchantment.level.1932": "MCMXXXII", - "enchantment.level.1933": "MCMXXXIII", - "enchantment.level.1934": "MCMXXXIV", - "enchantment.level.1935": "MCMXXXV", - "enchantment.level.1936": "MCMXXXVI", - "enchantment.level.1937": "MCMXXXVII", - "enchantment.level.1938": "MCMXXXVIII", - "enchantment.level.1939": "MCMXXXIX", - "enchantment.level.1940": "MCMXL", - "enchantment.level.1941": "MCMXLI", - "enchantment.level.1942": "MCMXLII", - "enchantment.level.1943": "MCMXLIII", - "enchantment.level.1944": "MCMXLIV", - "enchantment.level.1945": "MCMXLV", - "enchantment.level.1946": "MCMXLVI", - "enchantment.level.1947": "MCMXLVII", - "enchantment.level.1948": "MCMXLVIII", - "enchantment.level.1949": "MCMXLIX", - "enchantment.level.1950": "MCML", - "enchantment.level.1951": "MCMLI", - "enchantment.level.1952": "MCMLII", - "enchantment.level.1953": "MCMLIII", - "enchantment.level.1954": "MCMLIV", - "enchantment.level.1955": "MCMLV", - "enchantment.level.1956": "MCMLVI", - "enchantment.level.1957": "MCMLVII", - "enchantment.level.1958": "MCMLVIII", - "enchantment.level.1959": "MCMLIX", - "enchantment.level.1960": "MCMLX", - "enchantment.level.1961": "MCMLXI", - "enchantment.level.1962": "MCMLXII", - "enchantment.level.1963": "MCMLXIII", - "enchantment.level.1964": "MCMLXIV", - "enchantment.level.1965": "MCMLXV", - "enchantment.level.1966": "MCMLXVI", - "enchantment.level.1967": "MCMLXVII", - "enchantment.level.1968": "MCMLXVIII", - "enchantment.level.1969": "MCMLXIX", - "enchantment.level.1970": "MCMLXX", - "enchantment.level.1971": "MCMLXXI", - "enchantment.level.1972": "MCMLXXII", - "enchantment.level.1973": "MCMLXXIII", - "enchantment.level.1974": "MCMLXXIV", - "enchantment.level.1975": "MCMLXXV", - "enchantment.level.1976": "MCMLXXVI", - "enchantment.level.1977": "MCMLXXVII", - "enchantment.level.1978": "MCMLXXVIII", - "enchantment.level.1979": "MCMLXXIX", - "enchantment.level.1980": "MCMLXXX", - "enchantment.level.1981": "MCMLXXXI", - "enchantment.level.1982": "MCMLXXXII", - "enchantment.level.1983": "MCMLXXXIII", - "enchantment.level.1984": "MCMLXXXIV", - "enchantment.level.1985": "MCMLXXXV", - "enchantment.level.1986": "MCMLXXXVI", - "enchantment.level.1987": "MCMLXXXVII", - "enchantment.level.1988": "MCMLXXXVIII", - "enchantment.level.1989": "MCMLXXXIX", - "enchantment.level.1990": "MCMXC", - "enchantment.level.1991": "MCMXCI", - "enchantment.level.1992": "MCMXCII", - "enchantment.level.1993": "MCMXCIII", - "enchantment.level.1994": "MCMXCIV", - "enchantment.level.1995": "MCMXCV", - "enchantment.level.1996": "MCMXCVI", - "enchantment.level.1997": "MCMXCVII", - "enchantment.level.1998": "MCMXCVIII", - "enchantment.level.1999": "MCMXCIX", - "enchantment.level.2000": "MM", - "enchantment.level.2001": "MMI", - "enchantment.level.2002": "MMII", - "enchantment.level.2003": "MMIII", - "enchantment.level.2004": "MMIV", - "enchantment.level.2005": "MMV", - "enchantment.level.2006": "MMVI", - "enchantment.level.2007": "MMVII", - "enchantment.level.2008": "MMVIII", - "enchantment.level.2009": "MMIX", - "enchantment.level.2010": "MMX", - "enchantment.level.2011": "MMXI", - "enchantment.level.2012": "MMXII", - "enchantment.level.2013": "MMXIII", - "enchantment.level.2014": "MMXIV", - "enchantment.level.2015": "MMXV", - "enchantment.level.2016": "MMXVI", - "enchantment.level.2017": "MMXVII", - "enchantment.level.2018": "MMXVIII", - "enchantment.level.2019": "MMXIX", - "enchantment.level.2020": "MMXX", - "enchantment.level.2021": "MMXXI", - "enchantment.level.2022": "MMXXII", - "enchantment.level.2023": "MMXXIII", - "enchantment.level.2024": "MMXXIV", - "enchantment.level.2025": "MMXXV", - "enchantment.level.2026": "MMXXVI", - "enchantment.level.2027": "MMXXVII", - "enchantment.level.2028": "MMXXVIII", - "enchantment.level.2029": "MMXXIX", - "enchantment.level.2030": "MMXXX", - "enchantment.level.2031": "MMXXXI", - "enchantment.level.2032": "MMXXXII", - "enchantment.level.2033": "MMXXXIII", - "enchantment.level.2034": "MMXXXIV", - "enchantment.level.2035": "MMXXXV", - "enchantment.level.2036": "MMXXXVI", - "enchantment.level.2037": "MMXXXVII", - "enchantment.level.2038": "MMXXXVIII", - "enchantment.level.2039": "MMXXXIX", - "enchantment.level.2040": "MMXL", - "enchantment.level.2041": "MMXLI", - "enchantment.level.2042": "MMXLII", - "enchantment.level.2043": "MMXLIII", - "enchantment.level.2044": "MMXLIV", - "enchantment.level.2045": "MMXLV", - "enchantment.level.2046": "MMXLVI", - "enchantment.level.2047": "MMXLVII", - "enchantment.level.2048": "MMXLVIII", - "enchantment.level.2049": "MMXLIX", - "enchantment.level.2050": "MML", - "enchantment.level.2051": "MMLI", - "enchantment.level.2052": "MMLII", - "enchantment.level.2053": "MMLIII", - "enchantment.level.2054": "MMLIV", - "enchantment.level.2055": "MMLV", - "enchantment.level.2056": "MMLVI", - "enchantment.level.2057": "MMLVII", - "enchantment.level.2058": "MMLVIII", - "enchantment.level.2059": "MMLIX", - "enchantment.level.2060": "MMLX", - "enchantment.level.2061": "MMLXI", - "enchantment.level.2062": "MMLXII", - "enchantment.level.2063": "MMLXIII", - "enchantment.level.2064": "MMLXIV", - "enchantment.level.2065": "MMLXV", - "enchantment.level.2066": "MMLXVI", - "enchantment.level.2067": "MMLXVII", - "enchantment.level.2068": "MMLXVIII", - "enchantment.level.2069": "MMLXIX", - "enchantment.level.2070": "MMLXX", - "enchantment.level.2071": "MMLXXI", - "enchantment.level.2072": "MMLXXII", - "enchantment.level.2073": "MMLXXIII", - "enchantment.level.2074": "MMLXXIV", - "enchantment.level.2075": "MMLXXV", - "enchantment.level.2076": "MMLXXVI", - "enchantment.level.2077": "MMLXXVII", - "enchantment.level.2078": "MMLXXVIII", - "enchantment.level.2079": "MMLXXIX", - "enchantment.level.2080": "MMLXXX", - "enchantment.level.2081": "MMLXXXI", - "enchantment.level.2082": "MMLXXXII", - "enchantment.level.2083": "MMLXXXIII", - "enchantment.level.2084": "MMLXXXIV", - "enchantment.level.2085": "MMLXXXV", - "enchantment.level.2086": "MMLXXXVI", - "enchantment.level.2087": "MMLXXXVII", - "enchantment.level.2088": "MMLXXXVIII", - "enchantment.level.2089": "MMLXXXIX", - "enchantment.level.2090": "MMXC", - "enchantment.level.2091": "MMXCI", - "enchantment.level.2092": "MMXCII", - "enchantment.level.2093": "MMXCIII", - "enchantment.level.2094": "MMXCIV", - "enchantment.level.2095": "MMXCV", - "enchantment.level.2096": "MMXCVI", - "enchantment.level.2097": "MMXCVII", - "enchantment.level.2098": "MMXCVIII", - "enchantment.level.2099": "MMXCIX", - "enchantment.level.2100": "MMC", - "enchantment.level.2101": "MMCI", - "enchantment.level.2102": "MMCII", - "enchantment.level.2103": "MMCIII", - "enchantment.level.2104": "MMCIV", - "enchantment.level.2105": "MMCV", - "enchantment.level.2106": "MMCVI", - "enchantment.level.2107": "MMCVII", - "enchantment.level.2108": "MMCVIII", - "enchantment.level.2109": "MMCIX", - "enchantment.level.2110": "MMCX", - "enchantment.level.2111": "MMCXI", - "enchantment.level.2112": "MMCXII", - "enchantment.level.2113": "MMCXIII", - "enchantment.level.2114": "MMCXIV", - "enchantment.level.2115": "MMCXV", - "enchantment.level.2116": "MMCXVI", - "enchantment.level.2117": "MMCXVII", - "enchantment.level.2118": "MMCXVIII", - "enchantment.level.2119": "MMCXIX", - "enchantment.level.2120": "MMCXX", - "enchantment.level.2121": "MMCXXI", - "enchantment.level.2122": "MMCXXII", - "enchantment.level.2123": "MMCXXIII", - "enchantment.level.2124": "MMCXXIV", - "enchantment.level.2125": "MMCXXV", - "enchantment.level.2126": "MMCXXVI", - "enchantment.level.2127": "MMCXXVII", - "enchantment.level.2128": "MMCXXVIII", - "enchantment.level.2129": "MMCXXIX", - "enchantment.level.2130": "MMCXXX", - "enchantment.level.2131": "MMCXXXI", - "enchantment.level.2132": "MMCXXXII", - "enchantment.level.2133": "MMCXXXIII", - "enchantment.level.2134": "MMCXXXIV", - "enchantment.level.2135": "MMCXXXV", - "enchantment.level.2136": "MMCXXXVI", - "enchantment.level.2137": "MMCXXXVII", - "enchantment.level.2138": "MMCXXXVIII", - "enchantment.level.2139": "MMCXXXIX", - "enchantment.level.2140": "MMCXL", - "enchantment.level.2141": "MMCXLI", - "enchantment.level.2142": "MMCXLII", - "enchantment.level.2143": "MMCXLIII", - "enchantment.level.2144": "MMCXLIV", - "enchantment.level.2145": "MMCXLV", - "enchantment.level.2146": "MMCXLVI", - "enchantment.level.2147": "MMCXLVII", - "enchantment.level.2148": "MMCXLVIII", - "enchantment.level.2149": "MMCXLIX", - "enchantment.level.2150": "MMCL", - "enchantment.level.2151": "MMCLI", - "enchantment.level.2152": "MMCLII", - "enchantment.level.2153": "MMCLIII", - "enchantment.level.2154": "MMCLIV", - "enchantment.level.2155": "MMCLV", - "enchantment.level.2156": "MMCLVI", - "enchantment.level.2157": "MMCLVII", - "enchantment.level.2158": "MMCLVIII", - "enchantment.level.2159": "MMCLIX", - "enchantment.level.2160": "MMCLX", - "enchantment.level.2161": "MMCLXI", - "enchantment.level.2162": "MMCLXII", - "enchantment.level.2163": "MMCLXIII", - "enchantment.level.2164": "MMCLXIV", - "enchantment.level.2165": "MMCLXV", - "enchantment.level.2166": "MMCLXVI", - "enchantment.level.2167": "MMCLXVII", - "enchantment.level.2168": "MMCLXVIII", - "enchantment.level.2169": "MMCLXIX", - "enchantment.level.2170": "MMCLXX", - "enchantment.level.2171": "MMCLXXI", - "enchantment.level.2172": "MMCLXXII", - "enchantment.level.2173": "MMCLXXIII", - "enchantment.level.2174": "MMCLXXIV", - "enchantment.level.2175": "MMCLXXV", - "enchantment.level.2176": "MMCLXXVI", - "enchantment.level.2177": "MMCLXXVII", - "enchantment.level.2178": "MMCLXXVIII", - "enchantment.level.2179": "MMCLXXIX", - "enchantment.level.2180": "MMCLXXX", - "enchantment.level.2181": "MMCLXXXI", - "enchantment.level.2182": "MMCLXXXII", - "enchantment.level.2183": "MMCLXXXIII", - "enchantment.level.2184": "MMCLXXXIV", - "enchantment.level.2185": "MMCLXXXV", - "enchantment.level.2186": "MMCLXXXVI", - "enchantment.level.2187": "MMCLXXXVII", - "enchantment.level.2188": "MMCLXXXVIII", - "enchantment.level.2189": "MMCLXXXIX", - "enchantment.level.2190": "MMCXC", - "enchantment.level.2191": "MMCXCI", - "enchantment.level.2192": "MMCXCII", - "enchantment.level.2193": "MMCXCIII", - "enchantment.level.2194": "MMCXCIV", - "enchantment.level.2195": "MMCXCV", - "enchantment.level.2196": "MMCXCVI", - "enchantment.level.2197": "MMCXCVII", - "enchantment.level.2198": "MMCXCVIII", - "enchantment.level.2199": "MMCXCIX", - "enchantment.level.2200": "MMCC", - "enchantment.level.2201": "MMCCI", - "enchantment.level.2202": "MMCCII", - "enchantment.level.2203": "MMCCIII", - "enchantment.level.2204": "MMCCIV", - "enchantment.level.2205": "MMCCV", - "enchantment.level.2206": "MMCCVI", - "enchantment.level.2207": "MMCCVII", - "enchantment.level.2208": "MMCCVIII", - "enchantment.level.2209": "MMCCIX", - "enchantment.level.2210": "MMCCX", - "enchantment.level.2211": "MMCCXI", - "enchantment.level.2212": "MMCCXII", - "enchantment.level.2213": "MMCCXIII", - "enchantment.level.2214": "MMCCXIV", - "enchantment.level.2215": "MMCCXV", - "enchantment.level.2216": "MMCCXVI", - "enchantment.level.2217": "MMCCXVII", - "enchantment.level.2218": "MMCCXVIII", - "enchantment.level.2219": "MMCCXIX", - "enchantment.level.2220": "MMCCXX", - "enchantment.level.2221": "MMCCXXI", - "enchantment.level.2222": "MMCCXXII", - "enchantment.level.2223": "MMCCXXIII", - "enchantment.level.2224": "MMCCXXIV", - "enchantment.level.2225": "MMCCXXV", - "enchantment.level.2226": "MMCCXXVI", - "enchantment.level.2227": "MMCCXXVII", - "enchantment.level.2228": "MMCCXXVIII", - "enchantment.level.2229": "MMCCXXIX", - "enchantment.level.2230": "MMCCXXX", - "enchantment.level.2231": "MMCCXXXI", - "enchantment.level.2232": "MMCCXXXII", - "enchantment.level.2233": "MMCCXXXIII", - "enchantment.level.2234": "MMCCXXXIV", - "enchantment.level.2235": "MMCCXXXV", - "enchantment.level.2236": "MMCCXXXVI", - "enchantment.level.2237": "MMCCXXXVII", - "enchantment.level.2238": "MMCCXXXVIII", - "enchantment.level.2239": "MMCCXXXIX", - "enchantment.level.2240": "MMCCXL", - "enchantment.level.2241": "MMCCXLI", - "enchantment.level.2242": "MMCCXLII", - "enchantment.level.2243": "MMCCXLIII", - "enchantment.level.2244": "MMCCXLIV", - "enchantment.level.2245": "MMCCXLV", - "enchantment.level.2246": "MMCCXLVI", - "enchantment.level.2247": "MMCCXLVII", - "enchantment.level.2248": "MMCCXLVIII", - "enchantment.level.2249": "MMCCXLIX", - "enchantment.level.2250": "MMCCL", - "enchantment.level.2251": "MMCCLI", - "enchantment.level.2252": "MMCCLII", - "enchantment.level.2253": "MMCCLIII", - "enchantment.level.2254": "MMCCLIV", - "enchantment.level.2255": "MMCCLV", - "enchantment.level.2256": "MMCCLVI", - "enchantment.level.2257": "MMCCLVII", - "enchantment.level.2258": "MMCCLVIII", - "enchantment.level.2259": "MMCCLIX", - "enchantment.level.2260": "MMCCLX", - "enchantment.level.2261": "MMCCLXI", - "enchantment.level.2262": "MMCCLXII", - "enchantment.level.2263": "MMCCLXIII", - "enchantment.level.2264": "MMCCLXIV", - "enchantment.level.2265": "MMCCLXV", - "enchantment.level.2266": "MMCCLXVI", - "enchantment.level.2267": "MMCCLXVII", - "enchantment.level.2268": "MMCCLXVIII", - "enchantment.level.2269": "MMCCLXIX", - "enchantment.level.2270": "MMCCLXX", - "enchantment.level.2271": "MMCCLXXI", - "enchantment.level.2272": "MMCCLXXII", - "enchantment.level.2273": "MMCCLXXIII", - "enchantment.level.2274": "MMCCLXXIV", - "enchantment.level.2275": "MMCCLXXV", - "enchantment.level.2276": "MMCCLXXVI", - "enchantment.level.2277": "MMCCLXXVII", - "enchantment.level.2278": "MMCCLXXVIII", - "enchantment.level.2279": "MMCCLXXIX", - "enchantment.level.2280": "MMCCLXXX", - "enchantment.level.2281": "MMCCLXXXI", - "enchantment.level.2282": "MMCCLXXXII", - "enchantment.level.2283": "MMCCLXXXIII", - "enchantment.level.2284": "MMCCLXXXIV", - "enchantment.level.2285": "MMCCLXXXV", - "enchantment.level.2286": "MMCCLXXXVI", - "enchantment.level.2287": "MMCCLXXXVII", - "enchantment.level.2288": "MMCCLXXXVIII", - "enchantment.level.2289": "MMCCLXXXIX", - "enchantment.level.2290": "MMCCXC", - "enchantment.level.2291": "MMCCXCI", - "enchantment.level.2292": "MMCCXCII", - "enchantment.level.2293": "MMCCXCIII", - "enchantment.level.2294": "MMCCXCIV", - "enchantment.level.2295": "MMCCXCV", - "enchantment.level.2296": "MMCCXCVI", - "enchantment.level.2297": "MMCCXCVII", - "enchantment.level.2298": "MMCCXCVIII", - "enchantment.level.2299": "MMCCXCIX", - "enchantment.level.2300": "MMCCC", - "enchantment.level.2301": "MMCCCI", - "enchantment.level.2302": "MMCCCII", - "enchantment.level.2303": "MMCCCIII", - "enchantment.level.2304": "MMCCCIV", - "enchantment.level.2305": "MMCCCV", - "enchantment.level.2306": "MMCCCVI", - "enchantment.level.2307": "MMCCCVII", - "enchantment.level.2308": "MMCCCVIII", - "enchantment.level.2309": "MMCCCIX", - "enchantment.level.2310": "MMCCCX", - "enchantment.level.2311": "MMCCCXI", - "enchantment.level.2312": "MMCCCXII", - "enchantment.level.2313": "MMCCCXIII", - "enchantment.level.2314": "MMCCCXIV", - "enchantment.level.2315": "MMCCCXV", - "enchantment.level.2316": "MMCCCXVI", - "enchantment.level.2317": "MMCCCXVII", - "enchantment.level.2318": "MMCCCXVIII", - "enchantment.level.2319": "MMCCCXIX", - "enchantment.level.2320": "MMCCCXX", - "enchantment.level.2321": "MMCCCXXI", - "enchantment.level.2322": "MMCCCXXII", - "enchantment.level.2323": "MMCCCXXIII", - "enchantment.level.2324": "MMCCCXXIV", - "enchantment.level.2325": "MMCCCXXV", - "enchantment.level.2326": "MMCCCXXVI", - "enchantment.level.2327": "MMCCCXXVII", - "enchantment.level.2328": "MMCCCXXVIII", - "enchantment.level.2329": "MMCCCXXIX", - "enchantment.level.2330": "MMCCCXXX", - "enchantment.level.2331": "MMCCCXXXI", - "enchantment.level.2332": "MMCCCXXXII", - "enchantment.level.2333": "MMCCCXXXIII", - "enchantment.level.2334": "MMCCCXXXIV", - "enchantment.level.2335": "MMCCCXXXV", - "enchantment.level.2336": "MMCCCXXXVI", - "enchantment.level.2337": "MMCCCXXXVII", - "enchantment.level.2338": "MMCCCXXXVIII", - "enchantment.level.2339": "MMCCCXXXIX", - "enchantment.level.2340": "MMCCCXL", - "enchantment.level.2341": "MMCCCXLI", - "enchantment.level.2342": "MMCCCXLII", - "enchantment.level.2343": "MMCCCXLIII", - "enchantment.level.2344": "MMCCCXLIV", - "enchantment.level.2345": "MMCCCXLV", - "enchantment.level.2346": "MMCCCXLVI", - "enchantment.level.2347": "MMCCCXLVII", - "enchantment.level.2348": "MMCCCXLVIII", - "enchantment.level.2349": "MMCCCXLIX", - "enchantment.level.2350": "MMCCCL", - "enchantment.level.2351": "MMCCCLI", - "enchantment.level.2352": "MMCCCLII", - "enchantment.level.2353": "MMCCCLIII", - "enchantment.level.2354": "MMCCCLIV", - "enchantment.level.2355": "MMCCCLV", - "enchantment.level.2356": "MMCCCLVI", - "enchantment.level.2357": "MMCCCLVII", - "enchantment.level.2358": "MMCCCLVIII", - "enchantment.level.2359": "MMCCCLIX", - "enchantment.level.2360": "MMCCCLX", - "enchantment.level.2361": "MMCCCLXI", - "enchantment.level.2362": "MMCCCLXII", - "enchantment.level.2363": "MMCCCLXIII", - "enchantment.level.2364": "MMCCCLXIV", - "enchantment.level.2365": "MMCCCLXV", - "enchantment.level.2366": "MMCCCLXVI", - "enchantment.level.2367": "MMCCCLXVII", - "enchantment.level.2368": "MMCCCLXVIII", - "enchantment.level.2369": "MMCCCLXIX", - "enchantment.level.2370": "MMCCCLXX", - "enchantment.level.2371": "MMCCCLXXI", - "enchantment.level.2372": "MMCCCLXXII", - "enchantment.level.2373": "MMCCCLXXIII", - "enchantment.level.2374": "MMCCCLXXIV", - "enchantment.level.2375": "MMCCCLXXV", - "enchantment.level.2376": "MMCCCLXXVI", - "enchantment.level.2377": "MMCCCLXXVII", - "enchantment.level.2378": "MMCCCLXXVIII", - "enchantment.level.2379": "MMCCCLXXIX", - "enchantment.level.2380": "MMCCCLXXX", - "enchantment.level.2381": "MMCCCLXXXI", - "enchantment.level.2382": "MMCCCLXXXII", - "enchantment.level.2383": "MMCCCLXXXIII", - "enchantment.level.2384": "MMCCCLXXXIV", - "enchantment.level.2385": "MMCCCLXXXV", - "enchantment.level.2386": "MMCCCLXXXVI", - "enchantment.level.2387": "MMCCCLXXXVII", - "enchantment.level.2388": "MMCCCLXXXVIII", - "enchantment.level.2389": "MMCCCLXXXIX", - "enchantment.level.2390": "MMCCCXC", - "enchantment.level.2391": "MMCCCXCI", - "enchantment.level.2392": "MMCCCXCII", - "enchantment.level.2393": "MMCCCXCIII", - "enchantment.level.2394": "MMCCCXCIV", - "enchantment.level.2395": "MMCCCXCV", - "enchantment.level.2396": "MMCCCXCVI", - "enchantment.level.2397": "MMCCCXCVII", - "enchantment.level.2398": "MMCCCXCVIII", - "enchantment.level.2399": "MMCCCXCIX", - "enchantment.level.2400": "MMCD", - "enchantment.level.2401": "MMCDI", - "enchantment.level.2402": "MMCDII", - "enchantment.level.2403": "MMCDIII", - "enchantment.level.2404": "MMCDIV", - "enchantment.level.2405": "MMCDV", - "enchantment.level.2406": "MMCDVI", - "enchantment.level.2407": "MMCDVII", - "enchantment.level.2408": "MMCDVIII", - "enchantment.level.2409": "MMCDIX", - "enchantment.level.2410": "MMCDX", - "enchantment.level.2411": "MMCDXI", - "enchantment.level.2412": "MMCDXII", - "enchantment.level.2413": "MMCDXIII", - "enchantment.level.2414": "MMCDXIV", - "enchantment.level.2415": "MMCDXV", - "enchantment.level.2416": "MMCDXVI", - "enchantment.level.2417": "MMCDXVII", - "enchantment.level.2418": "MMCDXVIII", - "enchantment.level.2419": "MMCDXIX", - "enchantment.level.2420": "MMCDXX", - "enchantment.level.2421": "MMCDXXI", - "enchantment.level.2422": "MMCDXXII", - "enchantment.level.2423": "MMCDXXIII", - "enchantment.level.2424": "MMCDXXIV", - "enchantment.level.2425": "MMCDXXV", - "enchantment.level.2426": "MMCDXXVI", - "enchantment.level.2427": "MMCDXXVII", - "enchantment.level.2428": "MMCDXXVIII", - "enchantment.level.2429": "MMCDXXIX", - "enchantment.level.2430": "MMCDXXX", - "enchantment.level.2431": "MMCDXXXI", - "enchantment.level.2432": "MMCDXXXII", - "enchantment.level.2433": "MMCDXXXIII", - "enchantment.level.2434": "MMCDXXXIV", - "enchantment.level.2435": "MMCDXXXV", - "enchantment.level.2436": "MMCDXXXVI", - "enchantment.level.2437": "MMCDXXXVII", - "enchantment.level.2438": "MMCDXXXVIII", - "enchantment.level.2439": "MMCDXXXIX", - "enchantment.level.2440": "MMCDXL", - "enchantment.level.2441": "MMCDXLI", - "enchantment.level.2442": "MMCDXLII", - "enchantment.level.2443": "MMCDXLIII", - "enchantment.level.2444": "MMCDXLIV", - "enchantment.level.2445": "MMCDXLV", - "enchantment.level.2446": "MMCDXLVI", - "enchantment.level.2447": "MMCDXLVII", - "enchantment.level.2448": "MMCDXLVIII", - "enchantment.level.2449": "MMCDXLIX", - "enchantment.level.2450": "MMCDL", - "enchantment.level.2451": "MMCDLI", - "enchantment.level.2452": "MMCDLII", - "enchantment.level.2453": "MMCDLIII", - "enchantment.level.2454": "MMCDLIV", - "enchantment.level.2455": "MMCDLV", - "enchantment.level.2456": "MMCDLVI", - "enchantment.level.2457": "MMCDLVII", - "enchantment.level.2458": "MMCDLVIII", - "enchantment.level.2459": "MMCDLIX", - "enchantment.level.2460": "MMCDLX", - "enchantment.level.2461": "MMCDLXI", - "enchantment.level.2462": "MMCDLXII", - "enchantment.level.2463": "MMCDLXIII", - "enchantment.level.2464": "MMCDLXIV", - "enchantment.level.2465": "MMCDLXV", - "enchantment.level.2466": "MMCDLXVI", - "enchantment.level.2467": "MMCDLXVII", - "enchantment.level.2468": "MMCDLXVIII", - "enchantment.level.2469": "MMCDLXIX", - "enchantment.level.2470": "MMCDLXX", - "enchantment.level.2471": "MMCDLXXI", - "enchantment.level.2472": "MMCDLXXII", - "enchantment.level.2473": "MMCDLXXIII", - "enchantment.level.2474": "MMCDLXXIV", - "enchantment.level.2475": "MMCDLXXV", - "enchantment.level.2476": "MMCDLXXVI", - "enchantment.level.2477": "MMCDLXXVII", - "enchantment.level.2478": "MMCDLXXVIII", - "enchantment.level.2479": "MMCDLXXIX", - "enchantment.level.2480": "MMCDLXXX", - "enchantment.level.2481": "MMCDLXXXI", - "enchantment.level.2482": "MMCDLXXXII", - "enchantment.level.2483": "MMCDLXXXIII", - "enchantment.level.2484": "MMCDLXXXIV", - "enchantment.level.2485": "MMCDLXXXV", - "enchantment.level.2486": "MMCDLXXXVI", - "enchantment.level.2487": "MMCDLXXXVII", - "enchantment.level.2488": "MMCDLXXXVIII", - "enchantment.level.2489": "MMCDLXXXIX", - "enchantment.level.2490": "MMCDXC", - "enchantment.level.2491": "MMCDXCI", - "enchantment.level.2492": "MMCDXCII", - "enchantment.level.2493": "MMCDXCIII", - "enchantment.level.2494": "MMCDXCIV", - "enchantment.level.2495": "MMCDXCV", - "enchantment.level.2496": "MMCDXCVI", - "enchantment.level.2497": "MMCDXCVII", - "enchantment.level.2498": "MMCDXCVIII", - "enchantment.level.2499": "MMCDXCIX", - "enchantment.level.2500": "MMD", - "enchantment.level.2501": "MMDI", - "enchantment.level.2502": "MMDII", - "enchantment.level.2503": "MMDIII", - "enchantment.level.2504": "MMDIV", - "enchantment.level.2505": "MMDV", - "enchantment.level.2506": "MMDVI", - "enchantment.level.2507": "MMDVII", - "enchantment.level.2508": "MMDVIII", - "enchantment.level.2509": "MMDIX", - "enchantment.level.2510": "MMDX", - "enchantment.level.2511": "MMDXI", - "enchantment.level.2512": "MMDXII", - "enchantment.level.2513": "MMDXIII", - "enchantment.level.2514": "MMDXIV", - "enchantment.level.2515": "MMDXV", - "enchantment.level.2516": "MMDXVI", - "enchantment.level.2517": "MMDXVII", - "enchantment.level.2518": "MMDXVIII", - "enchantment.level.2519": "MMDXIX", - "enchantment.level.2520": "MMDXX", - "enchantment.level.2521": "MMDXXI", - "enchantment.level.2522": "MMDXXII", - "enchantment.level.2523": "MMDXXIII", - "enchantment.level.2524": "MMDXXIV", - "enchantment.level.2525": "MMDXXV", - "enchantment.level.2526": "MMDXXVI", - "enchantment.level.2527": "MMDXXVII", - "enchantment.level.2528": "MMDXXVIII", - "enchantment.level.2529": "MMDXXIX", - "enchantment.level.2530": "MMDXXX", - "enchantment.level.2531": "MMDXXXI", - "enchantment.level.2532": "MMDXXXII", - "enchantment.level.2533": "MMDXXXIII", - "enchantment.level.2534": "MMDXXXIV", - "enchantment.level.2535": "MMDXXXV", - "enchantment.level.2536": "MMDXXXVI", - "enchantment.level.2537": "MMDXXXVII", - "enchantment.level.2538": "MMDXXXVIII", - "enchantment.level.2539": "MMDXXXIX", - "enchantment.level.2540": "MMDXL", - "enchantment.level.2541": "MMDXLI", - "enchantment.level.2542": "MMDXLII", - "enchantment.level.2543": "MMDXLIII", - "enchantment.level.2544": "MMDXLIV", - "enchantment.level.2545": "MMDXLV", - "enchantment.level.2546": "MMDXLVI", - "enchantment.level.2547": "MMDXLVII", - "enchantment.level.2548": "MMDXLVIII", - "enchantment.level.2549": "MMDXLIX", - "enchantment.level.2550": "MMDL", - "enchantment.level.2551": "MMDLI", - "enchantment.level.2552": "MMDLII", - "enchantment.level.2553": "MMDLIII", - "enchantment.level.2554": "MMDLIV", - "enchantment.level.2555": "MMDLV", - "enchantment.level.2556": "MMDLVI", - "enchantment.level.2557": "MMDLVII", - "enchantment.level.2558": "MMDLVIII", - "enchantment.level.2559": "MMDLIX", - "enchantment.level.2560": "MMDLX", - "enchantment.level.2561": "MMDLXI", - "enchantment.level.2562": "MMDLXII", - "enchantment.level.2563": "MMDLXIII", - "enchantment.level.2564": "MMDLXIV", - "enchantment.level.2565": "MMDLXV", - "enchantment.level.2566": "MMDLXVI", - "enchantment.level.2567": "MMDLXVII", - "enchantment.level.2568": "MMDLXVIII", - "enchantment.level.2569": "MMDLXIX", - "enchantment.level.2570": "MMDLXX", - "enchantment.level.2571": "MMDLXXI", - "enchantment.level.2572": "MMDLXXII", - "enchantment.level.2573": "MMDLXXIII", - "enchantment.level.2574": "MMDLXXIV", - "enchantment.level.2575": "MMDLXXV", - "enchantment.level.2576": "MMDLXXVI", - "enchantment.level.2577": "MMDLXXVII", - "enchantment.level.2578": "MMDLXXVIII", - "enchantment.level.2579": "MMDLXXIX", - "enchantment.level.2580": "MMDLXXX", - "enchantment.level.2581": "MMDLXXXI", - "enchantment.level.2582": "MMDLXXXII", - "enchantment.level.2583": "MMDLXXXIII", - "enchantment.level.2584": "MMDLXXXIV", - "enchantment.level.2585": "MMDLXXXV", - "enchantment.level.2586": "MMDLXXXVI", - "enchantment.level.2587": "MMDLXXXVII", - "enchantment.level.2588": "MMDLXXXVIII", - "enchantment.level.2589": "MMDLXXXIX", - "enchantment.level.2590": "MMDXC", - "enchantment.level.2591": "MMDXCI", - "enchantment.level.2592": "MMDXCII", - "enchantment.level.2593": "MMDXCIII", - "enchantment.level.2594": "MMDXCIV", - "enchantment.level.2595": "MMDXCV", - "enchantment.level.2596": "MMDXCVI", - "enchantment.level.2597": "MMDXCVII", - "enchantment.level.2598": "MMDXCVIII", - "enchantment.level.2599": "MMDXCIX", - "enchantment.level.2600": "MMDC", - "enchantment.level.2601": "MMDCI", - "enchantment.level.2602": "MMDCII", - "enchantment.level.2603": "MMDCIII", - "enchantment.level.2604": "MMDCIV", - "enchantment.level.2605": "MMDCV", - "enchantment.level.2606": "MMDCVI", - "enchantment.level.2607": "MMDCVII", - "enchantment.level.2608": "MMDCVIII", - "enchantment.level.2609": "MMDCIX", - "enchantment.level.2610": "MMDCX", - "enchantment.level.2611": "MMDCXI", - "enchantment.level.2612": "MMDCXII", - "enchantment.level.2613": "MMDCXIII", - "enchantment.level.2614": "MMDCXIV", - "enchantment.level.2615": "MMDCXV", - "enchantment.level.2616": "MMDCXVI", - "enchantment.level.2617": "MMDCXVII", - "enchantment.level.2618": "MMDCXVIII", - "enchantment.level.2619": "MMDCXIX", - "enchantment.level.2620": "MMDCXX", - "enchantment.level.2621": "MMDCXXI", - "enchantment.level.2622": "MMDCXXII", - "enchantment.level.2623": "MMDCXXIII", - "enchantment.level.2624": "MMDCXXIV", - "enchantment.level.2625": "MMDCXXV", - "enchantment.level.2626": "MMDCXXVI", - "enchantment.level.2627": "MMDCXXVII", - "enchantment.level.2628": "MMDCXXVIII", - "enchantment.level.2629": "MMDCXXIX", - "enchantment.level.2630": "MMDCXXX", - "enchantment.level.2631": "MMDCXXXI", - "enchantment.level.2632": "MMDCXXXII", - "enchantment.level.2633": "MMDCXXXIII", - "enchantment.level.2634": "MMDCXXXIV", - "enchantment.level.2635": "MMDCXXXV", - "enchantment.level.2636": "MMDCXXXVI", - "enchantment.level.2637": "MMDCXXXVII", - "enchantment.level.2638": "MMDCXXXVIII", - "enchantment.level.2639": "MMDCXXXIX", - "enchantment.level.2640": "MMDCXL", - "enchantment.level.2641": "MMDCXLI", - "enchantment.level.2642": "MMDCXLII", - "enchantment.level.2643": "MMDCXLIII", - "enchantment.level.2644": "MMDCXLIV", - "enchantment.level.2645": "MMDCXLV", - "enchantment.level.2646": "MMDCXLVI", - "enchantment.level.2647": "MMDCXLVII", - "enchantment.level.2648": "MMDCXLVIII", - "enchantment.level.2649": "MMDCXLIX", - "enchantment.level.2650": "MMDCL", - "enchantment.level.2651": "MMDCLI", - "enchantment.level.2652": "MMDCLII", - "enchantment.level.2653": "MMDCLIII", - "enchantment.level.2654": "MMDCLIV", - "enchantment.level.2655": "MMDCLV", - "enchantment.level.2656": "MMDCLVI", - "enchantment.level.2657": "MMDCLVII", - "enchantment.level.2658": "MMDCLVIII", - "enchantment.level.2659": "MMDCLIX", - "enchantment.level.2660": "MMDCLX", - "enchantment.level.2661": "MMDCLXI", - "enchantment.level.2662": "MMDCLXII", - "enchantment.level.2663": "MMDCLXIII", - "enchantment.level.2664": "MMDCLXIV", - "enchantment.level.2665": "MMDCLXV", - "enchantment.level.2666": "MMDCLXVI", - "enchantment.level.2667": "MMDCLXVII", - "enchantment.level.2668": "MMDCLXVIII", - "enchantment.level.2669": "MMDCLXIX", - "enchantment.level.2670": "MMDCLXX", - "enchantment.level.2671": "MMDCLXXI", - "enchantment.level.2672": "MMDCLXXII", - "enchantment.level.2673": "MMDCLXXIII", - "enchantment.level.2674": "MMDCLXXIV", - "enchantment.level.2675": "MMDCLXXV", - "enchantment.level.2676": "MMDCLXXVI", - "enchantment.level.2677": "MMDCLXXVII", - "enchantment.level.2678": "MMDCLXXVIII", - "enchantment.level.2679": "MMDCLXXIX", - "enchantment.level.2680": "MMDCLXXX", - "enchantment.level.2681": "MMDCLXXXI", - "enchantment.level.2682": "MMDCLXXXII", - "enchantment.level.2683": "MMDCLXXXIII", - "enchantment.level.2684": "MMDCLXXXIV", - "enchantment.level.2685": "MMDCLXXXV", - "enchantment.level.2686": "MMDCLXXXVI", - "enchantment.level.2687": "MMDCLXXXVII", - "enchantment.level.2688": "MMDCLXXXVIII", - "enchantment.level.2689": "MMDCLXXXIX", - "enchantment.level.2690": "MMDCXC", - "enchantment.level.2691": "MMDCXCI", - "enchantment.level.2692": "MMDCXCII", - "enchantment.level.2693": "MMDCXCIII", - "enchantment.level.2694": "MMDCXCIV", - "enchantment.level.2695": "MMDCXCV", - "enchantment.level.2696": "MMDCXCVI", - "enchantment.level.2697": "MMDCXCVII", - "enchantment.level.2698": "MMDCXCVIII", - "enchantment.level.2699": "MMDCXCIX", - "enchantment.level.2700": "MMDCC", - "enchantment.level.2701": "MMDCCI", - "enchantment.level.2702": "MMDCCII", - "enchantment.level.2703": "MMDCCIII", - "enchantment.level.2704": "MMDCCIV", - "enchantment.level.2705": "MMDCCV", - "enchantment.level.2706": "MMDCCVI", - "enchantment.level.2707": "MMDCCVII", - "enchantment.level.2708": "MMDCCVIII", - "enchantment.level.2709": "MMDCCIX", - "enchantment.level.2710": "MMDCCX", - "enchantment.level.2711": "MMDCCXI", - "enchantment.level.2712": "MMDCCXII", - "enchantment.level.2713": "MMDCCXIII", - "enchantment.level.2714": "MMDCCXIV", - "enchantment.level.2715": "MMDCCXV", - "enchantment.level.2716": "MMDCCXVI", - "enchantment.level.2717": "MMDCCXVII", - "enchantment.level.2718": "MMDCCXVIII", - "enchantment.level.2719": "MMDCCXIX", - "enchantment.level.2720": "MMDCCXX", - "enchantment.level.2721": "MMDCCXXI", - "enchantment.level.2722": "MMDCCXXII", - "enchantment.level.2723": "MMDCCXXIII", - "enchantment.level.2724": "MMDCCXXIV", - "enchantment.level.2725": "MMDCCXXV", - "enchantment.level.2726": "MMDCCXXVI", - "enchantment.level.2727": "MMDCCXXVII", - "enchantment.level.2728": "MMDCCXXVIII", - "enchantment.level.2729": "MMDCCXXIX", - "enchantment.level.2730": "MMDCCXXX", - "enchantment.level.2731": "MMDCCXXXI", - "enchantment.level.2732": "MMDCCXXXII", - "enchantment.level.2733": "MMDCCXXXIII", - "enchantment.level.2734": "MMDCCXXXIV", - "enchantment.level.2735": "MMDCCXXXV", - "enchantment.level.2736": "MMDCCXXXVI", - "enchantment.level.2737": "MMDCCXXXVII", - "enchantment.level.2738": "MMDCCXXXVIII", - "enchantment.level.2739": "MMDCCXXXIX", - "enchantment.level.2740": "MMDCCXL", - "enchantment.level.2741": "MMDCCXLI", - "enchantment.level.2742": "MMDCCXLII", - "enchantment.level.2743": "MMDCCXLIII", - "enchantment.level.2744": "MMDCCXLIV", - "enchantment.level.2745": "MMDCCXLV", - "enchantment.level.2746": "MMDCCXLVI", - "enchantment.level.2747": "MMDCCXLVII", - "enchantment.level.2748": "MMDCCXLVIII", - "enchantment.level.2749": "MMDCCXLIX", - "enchantment.level.2750": "MMDCCL", - "enchantment.level.2751": "MMDCCLI", - "enchantment.level.2752": "MMDCCLII", - "enchantment.level.2753": "MMDCCLIII", - "enchantment.level.2754": "MMDCCLIV", - "enchantment.level.2755": "MMDCCLV", - "enchantment.level.2756": "MMDCCLVI", - "enchantment.level.2757": "MMDCCLVII", - "enchantment.level.2758": "MMDCCLVIII", - "enchantment.level.2759": "MMDCCLIX", - "enchantment.level.2760": "MMDCCLX", - "enchantment.level.2761": "MMDCCLXI", - "enchantment.level.2762": "MMDCCLXII", - "enchantment.level.2763": "MMDCCLXIII", - "enchantment.level.2764": "MMDCCLXIV", - "enchantment.level.2765": "MMDCCLXV", - "enchantment.level.2766": "MMDCCLXVI", - "enchantment.level.2767": "MMDCCLXVII", - "enchantment.level.2768": "MMDCCLXVIII", - "enchantment.level.2769": "MMDCCLXIX", - "enchantment.level.2770": "MMDCCLXX", - "enchantment.level.2771": "MMDCCLXXI", - "enchantment.level.2772": "MMDCCLXXII", - "enchantment.level.2773": "MMDCCLXXIII", - "enchantment.level.2774": "MMDCCLXXIV", - "enchantment.level.2775": "MMDCCLXXV", - "enchantment.level.2776": "MMDCCLXXVI", - "enchantment.level.2777": "MMDCCLXXVII", - "enchantment.level.2778": "MMDCCLXXVIII", - "enchantment.level.2779": "MMDCCLXXIX", - "enchantment.level.2780": "MMDCCLXXX", - "enchantment.level.2781": "MMDCCLXXXI", - "enchantment.level.2782": "MMDCCLXXXII", - "enchantment.level.2783": "MMDCCLXXXIII", - "enchantment.level.2784": "MMDCCLXXXIV", - "enchantment.level.2785": "MMDCCLXXXV", - "enchantment.level.2786": "MMDCCLXXXVI", - "enchantment.level.2787": "MMDCCLXXXVII", - "enchantment.level.2788": "MMDCCLXXXVIII", - "enchantment.level.2789": "MMDCCLXXXIX", - "enchantment.level.2790": "MMDCCXC", - "enchantment.level.2791": "MMDCCXCI", - "enchantment.level.2792": "MMDCCXCII", - "enchantment.level.2793": "MMDCCXCIII", - "enchantment.level.2794": "MMDCCXCIV", - "enchantment.level.2795": "MMDCCXCV", - "enchantment.level.2796": "MMDCCXCVI", - "enchantment.level.2797": "MMDCCXCVII", - "enchantment.level.2798": "MMDCCXCVIII", - "enchantment.level.2799": "MMDCCXCIX", - "enchantment.level.2800": "MMDCCC", - "enchantment.level.2801": "MMDCCCI", - "enchantment.level.2802": "MMDCCCII", - "enchantment.level.2803": "MMDCCCIII", - "enchantment.level.2804": "MMDCCCIV", - "enchantment.level.2805": "MMDCCCV", - "enchantment.level.2806": "MMDCCCVI", - "enchantment.level.2807": "MMDCCCVII", - "enchantment.level.2808": "MMDCCCVIII", - "enchantment.level.2809": "MMDCCCIX", - "enchantment.level.2810": "MMDCCCX", - "enchantment.level.2811": "MMDCCCXI", - "enchantment.level.2812": "MMDCCCXII", - "enchantment.level.2813": "MMDCCCXIII", - "enchantment.level.2814": "MMDCCCXIV", - "enchantment.level.2815": "MMDCCCXV", - "enchantment.level.2816": "MMDCCCXVI", - "enchantment.level.2817": "MMDCCCXVII", - "enchantment.level.2818": "MMDCCCXVIII", - "enchantment.level.2819": "MMDCCCXIX", - "enchantment.level.2820": "MMDCCCXX", - "enchantment.level.2821": "MMDCCCXXI", - "enchantment.level.2822": "MMDCCCXXII", - "enchantment.level.2823": "MMDCCCXXIII", - "enchantment.level.2824": "MMDCCCXXIV", - "enchantment.level.2825": "MMDCCCXXV", - "enchantment.level.2826": "MMDCCCXXVI", - "enchantment.level.2827": "MMDCCCXXVII", - "enchantment.level.2828": "MMDCCCXXVIII", - "enchantment.level.2829": "MMDCCCXXIX", - "enchantment.level.2830": "MMDCCCXXX", - "enchantment.level.2831": "MMDCCCXXXI", - "enchantment.level.2832": "MMDCCCXXXII", - "enchantment.level.2833": "MMDCCCXXXIII", - "enchantment.level.2834": "MMDCCCXXXIV", - "enchantment.level.2835": "MMDCCCXXXV", - "enchantment.level.2836": "MMDCCCXXXVI", - "enchantment.level.2837": "MMDCCCXXXVII", - "enchantment.level.2838": "MMDCCCXXXVIII", - "enchantment.level.2839": "MMDCCCXXXIX", - "enchantment.level.2840": "MMDCCCXL", - "enchantment.level.2841": "MMDCCCXLI", - "enchantment.level.2842": "MMDCCCXLII", - "enchantment.level.2843": "MMDCCCXLIII", - "enchantment.level.2844": "MMDCCCXLIV", - "enchantment.level.2845": "MMDCCCXLV", - "enchantment.level.2846": "MMDCCCXLVI", - "enchantment.level.2847": "MMDCCCXLVII", - "enchantment.level.2848": "MMDCCCXLVIII", - "enchantment.level.2849": "MMDCCCXLIX", - "enchantment.level.2850": "MMDCCCL", - "enchantment.level.2851": "MMDCCCLI", - "enchantment.level.2852": "MMDCCCLII", - "enchantment.level.2853": "MMDCCCLIII", - "enchantment.level.2854": "MMDCCCLIV", - "enchantment.level.2855": "MMDCCCLV", - "enchantment.level.2856": "MMDCCCLVI", - "enchantment.level.2857": "MMDCCCLVII", - "enchantment.level.2858": "MMDCCCLVIII", - "enchantment.level.2859": "MMDCCCLIX", - "enchantment.level.2860": "MMDCCCLX", - "enchantment.level.2861": "MMDCCCLXI", - "enchantment.level.2862": "MMDCCCLXII", - "enchantment.level.2863": "MMDCCCLXIII", - "enchantment.level.2864": "MMDCCCLXIV", - "enchantment.level.2865": "MMDCCCLXV", - "enchantment.level.2866": "MMDCCCLXVI", - "enchantment.level.2867": "MMDCCCLXVII", - "enchantment.level.2868": "MMDCCCLXVIII", - "enchantment.level.2869": "MMDCCCLXIX", - "enchantment.level.2870": "MMDCCCLXX", - "enchantment.level.2871": "MMDCCCLXXI", - "enchantment.level.2872": "MMDCCCLXXII", - "enchantment.level.2873": "MMDCCCLXXIII", - "enchantment.level.2874": "MMDCCCLXXIV", - "enchantment.level.2875": "MMDCCCLXXV", - "enchantment.level.2876": "MMDCCCLXXVI", - "enchantment.level.2877": "MMDCCCLXXVII", - "enchantment.level.2878": "MMDCCCLXXVIII", - "enchantment.level.2879": "MMDCCCLXXIX", - "enchantment.level.2880": "MMDCCCLXXX", - "enchantment.level.2881": "MMDCCCLXXXI", - "enchantment.level.2882": "MMDCCCLXXXII", - "enchantment.level.2883": "MMDCCCLXXXIII", - "enchantment.level.2884": "MMDCCCLXXXIV", - "enchantment.level.2885": "MMDCCCLXXXV", - "enchantment.level.2886": "MMDCCCLXXXVI", - "enchantment.level.2887": "MMDCCCLXXXVII", - "enchantment.level.2888": "MMDCCCLXXXVIII", - "enchantment.level.2889": "MMDCCCLXXXIX", - "enchantment.level.2890": "MMDCCCXC", - "enchantment.level.2891": "MMDCCCXCI", - "enchantment.level.2892": "MMDCCCXCII", - "enchantment.level.2893": "MMDCCCXCIII", - "enchantment.level.2894": "MMDCCCXCIV", - "enchantment.level.2895": "MMDCCCXCV", - "enchantment.level.2896": "MMDCCCXCVI", - "enchantment.level.2897": "MMDCCCXCVII", - "enchantment.level.2898": "MMDCCCXCVIII", - "enchantment.level.2899": "MMDCCCXCIX", - "enchantment.level.2900": "MMCM", - "enchantment.level.2901": "MMCMI", - "enchantment.level.2902": "MMCMII", - "enchantment.level.2903": "MMCMIII", - "enchantment.level.2904": "MMCMIV", - "enchantment.level.2905": "MMCMV", - "enchantment.level.2906": "MMCMVI", - "enchantment.level.2907": "MMCMVII", - "enchantment.level.2908": "MMCMVIII", - "enchantment.level.2909": "MMCMIX", - "enchantment.level.2910": "MMCMX", - "enchantment.level.2911": "MMCMXI", - "enchantment.level.2912": "MMCMXII", - "enchantment.level.2913": "MMCMXIII", - "enchantment.level.2914": "MMCMXIV", - "enchantment.level.2915": "MMCMXV", - "enchantment.level.2916": "MMCMXVI", - "enchantment.level.2917": "MMCMXVII", - "enchantment.level.2918": "MMCMXVIII", - "enchantment.level.2919": "MMCMXIX", - "enchantment.level.2920": "MMCMXX", - "enchantment.level.2921": "MMCMXXI", - "enchantment.level.2922": "MMCMXXII", - "enchantment.level.2923": "MMCMXXIII", - "enchantment.level.2924": "MMCMXXIV", - "enchantment.level.2925": "MMCMXXV", - "enchantment.level.2926": "MMCMXXVI", - "enchantment.level.2927": "MMCMXXVII", - "enchantment.level.2928": "MMCMXXVIII", - "enchantment.level.2929": "MMCMXXIX", - "enchantment.level.2930": "MMCMXXX", - "enchantment.level.2931": "MMCMXXXI", - "enchantment.level.2932": "MMCMXXXII", - "enchantment.level.2933": "MMCMXXXIII", - "enchantment.level.2934": "MMCMXXXIV", - "enchantment.level.2935": "MMCMXXXV", - "enchantment.level.2936": "MMCMXXXVI", - "enchantment.level.2937": "MMCMXXXVII", - "enchantment.level.2938": "MMCMXXXVIII", - "enchantment.level.2939": "MMCMXXXIX", - "enchantment.level.2940": "MMCMXL", - "enchantment.level.2941": "MMCMXLI", - "enchantment.level.2942": "MMCMXLII", - "enchantment.level.2943": "MMCMXLIII", - "enchantment.level.2944": "MMCMXLIV", - "enchantment.level.2945": "MMCMXLV", - "enchantment.level.2946": "MMCMXLVI", - "enchantment.level.2947": "MMCMXLVII", - "enchantment.level.2948": "MMCMXLVIII", - "enchantment.level.2949": "MMCMXLIX", - "enchantment.level.2950": "MMCML", - "enchantment.level.2951": "MMCMLI", - "enchantment.level.2952": "MMCMLII", - "enchantment.level.2953": "MMCMLIII", - "enchantment.level.2954": "MMCMLIV", - "enchantment.level.2955": "MMCMLV", - "enchantment.level.2956": "MMCMLVI", - "enchantment.level.2957": "MMCMLVII", - "enchantment.level.2958": "MMCMLVIII", - "enchantment.level.2959": "MMCMLIX", - "enchantment.level.2960": "MMCMLX", - "enchantment.level.2961": "MMCMLXI", - "enchantment.level.2962": "MMCMLXII", - "enchantment.level.2963": "MMCMLXIII", - "enchantment.level.2964": "MMCMLXIV", - "enchantment.level.2965": "MMCMLXV", - "enchantment.level.2966": "MMCMLXVI", - "enchantment.level.2967": "MMCMLXVII", - "enchantment.level.2968": "MMCMLXVIII", - "enchantment.level.2969": "MMCMLXIX", - "enchantment.level.2970": "MMCMLXX", - "enchantment.level.2971": "MMCMLXXI", - "enchantment.level.2972": "MMCMLXXII", - "enchantment.level.2973": "MMCMLXXIII", - "enchantment.level.2974": "MMCMLXXIV", - "enchantment.level.2975": "MMCMLXXV", - "enchantment.level.2976": "MMCMLXXVI", - "enchantment.level.2977": "MMCMLXXVII", - "enchantment.level.2978": "MMCMLXXVIII", - "enchantment.level.2979": "MMCMLXXIX", - "enchantment.level.2980": "MMCMLXXX", - "enchantment.level.2981": "MMCMLXXXI", - "enchantment.level.2982": "MMCMLXXXII", - "enchantment.level.2983": "MMCMLXXXIII", - "enchantment.level.2984": "MMCMLXXXIV", - "enchantment.level.2985": "MMCMLXXXV", - "enchantment.level.2986": "MMCMLXXXVI", - "enchantment.level.2987": "MMCMLXXXVII", - "enchantment.level.2988": "MMCMLXXXVIII", - "enchantment.level.2989": "MMCMLXXXIX", - "enchantment.level.2990": "MMCMXC", - "enchantment.level.2991": "MMCMXCI", - "enchantment.level.2992": "MMCMXCII", - "enchantment.level.2993": "MMCMXCIII", - "enchantment.level.2994": "MMCMXCIV", - "enchantment.level.2995": "MMCMXCV", - "enchantment.level.2996": "MMCMXCVI", - "enchantment.level.2997": "MMCMXCVII", - "enchantment.level.2998": "MMCMXCVIII", - "enchantment.level.2999": "MMCMXCIX", - "enchantment.level.3000": "MMM", - "enchantment.level.3001": "MMMI", - "enchantment.level.3002": "MMMII", - "enchantment.level.3003": "MMMIII", - "enchantment.level.3004": "MMMIV", - "enchantment.level.3005": "MMMV", - "enchantment.level.3006": "MMMVI", - "enchantment.level.3007": "MMMVII", - "enchantment.level.3008": "MMMVIII", - "enchantment.level.3009": "MMMIX", - "enchantment.level.3010": "MMMX", - "enchantment.level.3011": "MMMXI", - "enchantment.level.3012": "MMMXII", - "enchantment.level.3013": "MMMXIII", - "enchantment.level.3014": "MMMXIV", - "enchantment.level.3015": "MMMXV", - "enchantment.level.3016": "MMMXVI", - "enchantment.level.3017": "MMMXVII", - "enchantment.level.3018": "MMMXVIII", - "enchantment.level.3019": "MMMXIX", - "enchantment.level.3020": "MMMXX", - "enchantment.level.3021": "MMMXXI", - "enchantment.level.3022": "MMMXXII", - "enchantment.level.3023": "MMMXXIII", - "enchantment.level.3024": "MMMXXIV", - "enchantment.level.3025": "MMMXXV", - "enchantment.level.3026": "MMMXXVI", - "enchantment.level.3027": "MMMXXVII", - "enchantment.level.3028": "MMMXXVIII", - "enchantment.level.3029": "MMMXXIX", - "enchantment.level.3030": "MMMXXX", - "enchantment.level.3031": "MMMXXXI", - "enchantment.level.3032": "MMMXXXII", - "enchantment.level.3033": "MMMXXXIII", - "enchantment.level.3034": "MMMXXXIV", - "enchantment.level.3035": "MMMXXXV", - "enchantment.level.3036": "MMMXXXVI", - "enchantment.level.3037": "MMMXXXVII", - "enchantment.level.3038": "MMMXXXVIII", - "enchantment.level.3039": "MMMXXXIX", - "enchantment.level.3040": "MMMXL", - "enchantment.level.3041": "MMMXLI", - "enchantment.level.3042": "MMMXLII", - "enchantment.level.3043": "MMMXLIII", - "enchantment.level.3044": "MMMXLIV", - "enchantment.level.3045": "MMMXLV", - "enchantment.level.3046": "MMMXLVI", - "enchantment.level.3047": "MMMXLVII", - "enchantment.level.3048": "MMMXLVIII", - "enchantment.level.3049": "MMMXLIX", - "enchantment.level.3050": "MMML", - "enchantment.level.3051": "MMMLI", - "enchantment.level.3052": "MMMLII", - "enchantment.level.3053": "MMMLIII", - "enchantment.level.3054": "MMMLIV", - "enchantment.level.3055": "MMMLV", - "enchantment.level.3056": "MMMLVI", - "enchantment.level.3057": "MMMLVII", - "enchantment.level.3058": "MMMLVIII", - "enchantment.level.3059": "MMMLIX", - "enchantment.level.3060": "MMMLX", - "enchantment.level.3061": "MMMLXI", - "enchantment.level.3062": "MMMLXII", - "enchantment.level.3063": "MMMLXIII", - "enchantment.level.3064": "MMMLXIV", - "enchantment.level.3065": "MMMLXV", - "enchantment.level.3066": "MMMLXVI", - "enchantment.level.3067": "MMMLXVII", - "enchantment.level.3068": "MMMLXVIII", - "enchantment.level.3069": "MMMLXIX", - "enchantment.level.3070": "MMMLXX", - "enchantment.level.3071": "MMMLXXI", - "enchantment.level.3072": "MMMLXXII", - "enchantment.level.3073": "MMMLXXIII", - "enchantment.level.3074": "MMMLXXIV", - "enchantment.level.3075": "MMMLXXV", - "enchantment.level.3076": "MMMLXXVI", - "enchantment.level.3077": "MMMLXXVII", - "enchantment.level.3078": "MMMLXXVIII", - "enchantment.level.3079": "MMMLXXIX", - "enchantment.level.3080": "MMMLXXX", - "enchantment.level.3081": "MMMLXXXI", - "enchantment.level.3082": "MMMLXXXII", - "enchantment.level.3083": "MMMLXXXIII", - "enchantment.level.3084": "MMMLXXXIV", - "enchantment.level.3085": "MMMLXXXV", - "enchantment.level.3086": "MMMLXXXVI", - "enchantment.level.3087": "MMMLXXXVII", - "enchantment.level.3088": "MMMLXXXVIII", - "enchantment.level.3089": "MMMLXXXIX", - "enchantment.level.3090": "MMMXC", - "enchantment.level.3091": "MMMXCI", - "enchantment.level.3092": "MMMXCII", - "enchantment.level.3093": "MMMXCIII", - "enchantment.level.3094": "MMMXCIV", - "enchantment.level.3095": "MMMXCV", - "enchantment.level.3096": "MMMXCVI", - "enchantment.level.3097": "MMMXCVII", - "enchantment.level.3098": "MMMXCVIII", - "enchantment.level.3099": "MMMXCIX", - "enchantment.level.3100": "MMMC", - "enchantment.level.3101": "MMMCI", - "enchantment.level.3102": "MMMCII", - "enchantment.level.3103": "MMMCIII", - "enchantment.level.3104": "MMMCIV", - "enchantment.level.3105": "MMMCV", - "enchantment.level.3106": "MMMCVI", - "enchantment.level.3107": "MMMCVII", - "enchantment.level.3108": "MMMCVIII", - "enchantment.level.3109": "MMMCIX", - "enchantment.level.3110": "MMMCX", - "enchantment.level.3111": "MMMCXI", - "enchantment.level.3112": "MMMCXII", - "enchantment.level.3113": "MMMCXIII", - "enchantment.level.3114": "MMMCXIV", - "enchantment.level.3115": "MMMCXV", - "enchantment.level.3116": "MMMCXVI", - "enchantment.level.3117": "MMMCXVII", - "enchantment.level.3118": "MMMCXVIII", - "enchantment.level.3119": "MMMCXIX", - "enchantment.level.3120": "MMMCXX", - "enchantment.level.3121": "MMMCXXI", - "enchantment.level.3122": "MMMCXXII", - "enchantment.level.3123": "MMMCXXIII", - "enchantment.level.3124": "MMMCXXIV", - "enchantment.level.3125": "MMMCXXV", - "enchantment.level.3126": "MMMCXXVI", - "enchantment.level.3127": "MMMCXXVII", - "enchantment.level.3128": "MMMCXXVIII", - "enchantment.level.3129": "MMMCXXIX", - "enchantment.level.3130": "MMMCXXX", - "enchantment.level.3131": "MMMCXXXI", - "enchantment.level.3132": "MMMCXXXII", - "enchantment.level.3133": "MMMCXXXIII", - "enchantment.level.3134": "MMMCXXXIV", - "enchantment.level.3135": "MMMCXXXV", - "enchantment.level.3136": "MMMCXXXVI", - "enchantment.level.3137": "MMMCXXXVII", - "enchantment.level.3138": "MMMCXXXVIII", - "enchantment.level.3139": "MMMCXXXIX", - "enchantment.level.3140": "MMMCXL", - "enchantment.level.3141": "MMMCXLI", - "enchantment.level.3142": "MMMCXLII", - "enchantment.level.3143": "MMMCXLIII", - "enchantment.level.3144": "MMMCXLIV", - "enchantment.level.3145": "MMMCXLV", - "enchantment.level.3146": "MMMCXLVI", - "enchantment.level.3147": "MMMCXLVII", - "enchantment.level.3148": "MMMCXLVIII", - "enchantment.level.3149": "MMMCXLIX", - "enchantment.level.3150": "MMMCL", - "enchantment.level.3151": "MMMCLI", - "enchantment.level.3152": "MMMCLII", - "enchantment.level.3153": "MMMCLIII", - "enchantment.level.3154": "MMMCLIV", - "enchantment.level.3155": "MMMCLV", - "enchantment.level.3156": "MMMCLVI", - "enchantment.level.3157": "MMMCLVII", - "enchantment.level.3158": "MMMCLVIII", - "enchantment.level.3159": "MMMCLIX", - "enchantment.level.3160": "MMMCLX", - "enchantment.level.3161": "MMMCLXI", - "enchantment.level.3162": "MMMCLXII", - "enchantment.level.3163": "MMMCLXIII", - "enchantment.level.3164": "MMMCLXIV", - "enchantment.level.3165": "MMMCLXV", - "enchantment.level.3166": "MMMCLXVI", - "enchantment.level.3167": "MMMCLXVII", - "enchantment.level.3168": "MMMCLXVIII", - "enchantment.level.3169": "MMMCLXIX", - "enchantment.level.3170": "MMMCLXX", - "enchantment.level.3171": "MMMCLXXI", - "enchantment.level.3172": "MMMCLXXII", - "enchantment.level.3173": "MMMCLXXIII", - "enchantment.level.3174": "MMMCLXXIV", - "enchantment.level.3175": "MMMCLXXV", - "enchantment.level.3176": "MMMCLXXVI", - "enchantment.level.3177": "MMMCLXXVII", - "enchantment.level.3178": "MMMCLXXVIII", - "enchantment.level.3179": "MMMCLXXIX", - "enchantment.level.3180": "MMMCLXXX", - "enchantment.level.3181": "MMMCLXXXI", - "enchantment.level.3182": "MMMCLXXXII", - "enchantment.level.3183": "MMMCLXXXIII", - "enchantment.level.3184": "MMMCLXXXIV", - "enchantment.level.3185": "MMMCLXXXV", - "enchantment.level.3186": "MMMCLXXXVI", - "enchantment.level.3187": "MMMCLXXXVII", - "enchantment.level.3188": "MMMCLXXXVIII", - "enchantment.level.3189": "MMMCLXXXIX", - "enchantment.level.3190": "MMMCXC", - "enchantment.level.3191": "MMMCXCI", - "enchantment.level.3192": "MMMCXCII", - "enchantment.level.3193": "MMMCXCIII", - "enchantment.level.3194": "MMMCXCIV", - "enchantment.level.3195": "MMMCXCV", - "enchantment.level.3196": "MMMCXCVI", - "enchantment.level.3197": "MMMCXCVII", - "enchantment.level.3198": "MMMCXCVIII", - "enchantment.level.3199": "MMMCXCIX", - "enchantment.level.3200": "MMMCC", - "enchantment.level.3201": "MMMCCI", - "enchantment.level.3202": "MMMCCII", - "enchantment.level.3203": "MMMCCIII", - "enchantment.level.3204": "MMMCCIV", - "enchantment.level.3205": "MMMCCV", - "enchantment.level.3206": "MMMCCVI", - "enchantment.level.3207": "MMMCCVII", - "enchantment.level.3208": "MMMCCVIII", - "enchantment.level.3209": "MMMCCIX", - "enchantment.level.3210": "MMMCCX", - "enchantment.level.3211": "MMMCCXI", - "enchantment.level.3212": "MMMCCXII", - "enchantment.level.3213": "MMMCCXIII", - "enchantment.level.3214": "MMMCCXIV", - "enchantment.level.3215": "MMMCCXV", - "enchantment.level.3216": "MMMCCXVI", - "enchantment.level.3217": "MMMCCXVII", - "enchantment.level.3218": "MMMCCXVIII", - "enchantment.level.3219": "MMMCCXIX", - "enchantment.level.3220": "MMMCCXX", - "enchantment.level.3221": "MMMCCXXI", - "enchantment.level.3222": "MMMCCXXII", - "enchantment.level.3223": "MMMCCXXIII", - "enchantment.level.3224": "MMMCCXXIV", - "enchantment.level.3225": "MMMCCXXV", - "enchantment.level.3226": "MMMCCXXVI", - "enchantment.level.3227": "MMMCCXXVII", - "enchantment.level.3228": "MMMCCXXVIII", - "enchantment.level.3229": "MMMCCXXIX", - "enchantment.level.3230": "MMMCCXXX", - "enchantment.level.3231": "MMMCCXXXI", - "enchantment.level.3232": "MMMCCXXXII", - "enchantment.level.3233": "MMMCCXXXIII", - "enchantment.level.3234": "MMMCCXXXIV", - "enchantment.level.3235": "MMMCCXXXV", - "enchantment.level.3236": "MMMCCXXXVI", - "enchantment.level.3237": "MMMCCXXXVII", - "enchantment.level.3238": "MMMCCXXXVIII", - "enchantment.level.3239": "MMMCCXXXIX", - "enchantment.level.3240": "MMMCCXL", - "enchantment.level.3241": "MMMCCXLI", - "enchantment.level.3242": "MMMCCXLII", - "enchantment.level.3243": "MMMCCXLIII", - "enchantment.level.3244": "MMMCCXLIV", - "enchantment.level.3245": "MMMCCXLV", - "enchantment.level.3246": "MMMCCXLVI", - "enchantment.level.3247": "MMMCCXLVII", - "enchantment.level.3248": "MMMCCXLVIII", - "enchantment.level.3249": "MMMCCXLIX", - "enchantment.level.3250": "MMMCCL", - "enchantment.level.3251": "MMMCCLI", - "enchantment.level.3252": "MMMCCLII", - "enchantment.level.3253": "MMMCCLIII", - "enchantment.level.3254": "MMMCCLIV", - "enchantment.level.3255": "MMMCCLV", - "enchantment.level.3256": "MMMCCLVI", - "enchantment.level.3257": "MMMCCLVII", - "enchantment.level.3258": "MMMCCLVIII", - "enchantment.level.3259": "MMMCCLIX", - "enchantment.level.3260": "MMMCCLX", - "enchantment.level.3261": "MMMCCLXI", - "enchantment.level.3262": "MMMCCLXII", - "enchantment.level.3263": "MMMCCLXIII", - "enchantment.level.3264": "MMMCCLXIV", - "enchantment.level.3265": "MMMCCLXV", - "enchantment.level.3266": "MMMCCLXVI", - "enchantment.level.3267": "MMMCCLXVII", - "enchantment.level.3268": "MMMCCLXVIII", - "enchantment.level.3269": "MMMCCLXIX", - "enchantment.level.3270": "MMMCCLXX", - "enchantment.level.3271": "MMMCCLXXI", - "enchantment.level.3272": "MMMCCLXXII", - "enchantment.level.3273": "MMMCCLXXIII", - "enchantment.level.3274": "MMMCCLXXIV", - "enchantment.level.3275": "MMMCCLXXV", - "enchantment.level.3276": "MMMCCLXXVI", - "enchantment.level.3277": "MMMCCLXXVII", - "enchantment.level.3278": "MMMCCLXXVIII", - "enchantment.level.3279": "MMMCCLXXIX", - "enchantment.level.3280": "MMMCCLXXX", - "enchantment.level.3281": "MMMCCLXXXI", - "enchantment.level.3282": "MMMCCLXXXII", - "enchantment.level.3283": "MMMCCLXXXIII", - "enchantment.level.3284": "MMMCCLXXXIV", - "enchantment.level.3285": "MMMCCLXXXV", - "enchantment.level.3286": "MMMCCLXXXVI", - "enchantment.level.3287": "MMMCCLXXXVII", - "enchantment.level.3288": "MMMCCLXXXVIII", - "enchantment.level.3289": "MMMCCLXXXIX", - "enchantment.level.3290": "MMMCCXC", - "enchantment.level.3291": "MMMCCXCI", - "enchantment.level.3292": "MMMCCXCII", - "enchantment.level.3293": "MMMCCXCIII", - "enchantment.level.3294": "MMMCCXCIV", - "enchantment.level.3295": "MMMCCXCV", - "enchantment.level.3296": "MMMCCXCVI", - "enchantment.level.3297": "MMMCCXCVII", - "enchantment.level.3298": "MMMCCXCVIII", - "enchantment.level.3299": "MMMCCXCIX", - "enchantment.level.3300": "MMMCCC", - "enchantment.level.3301": "MMMCCCI", - "enchantment.level.3302": "MMMCCCII", - "enchantment.level.3303": "MMMCCCIII", - "enchantment.level.3304": "MMMCCCIV", - "enchantment.level.3305": "MMMCCCV", - "enchantment.level.3306": "MMMCCCVI", - "enchantment.level.3307": "MMMCCCVII", - "enchantment.level.3308": "MMMCCCVIII", - "enchantment.level.3309": "MMMCCCIX", - "enchantment.level.3310": "MMMCCCX", - "enchantment.level.3311": "MMMCCCXI", - "enchantment.level.3312": "MMMCCCXII", - "enchantment.level.3313": "MMMCCCXIII", - "enchantment.level.3314": "MMMCCCXIV", - "enchantment.level.3315": "MMMCCCXV", - "enchantment.level.3316": "MMMCCCXVI", - "enchantment.level.3317": "MMMCCCXVII", - "enchantment.level.3318": "MMMCCCXVIII", - "enchantment.level.3319": "MMMCCCXIX", - "enchantment.level.3320": "MMMCCCXX", - "enchantment.level.3321": "MMMCCCXXI", - "enchantment.level.3322": "MMMCCCXXII", - "enchantment.level.3323": "MMMCCCXXIII", - "enchantment.level.3324": "MMMCCCXXIV", - "enchantment.level.3325": "MMMCCCXXV", - "enchantment.level.3326": "MMMCCCXXVI", - "enchantment.level.3327": "MMMCCCXXVII", - "enchantment.level.3328": "MMMCCCXXVIII", - "enchantment.level.3329": "MMMCCCXXIX", - "enchantment.level.3330": "MMMCCCXXX", - "enchantment.level.3331": "MMMCCCXXXI", - "enchantment.level.3332": "MMMCCCXXXII", - "enchantment.level.3333": "MMMCCCXXXIII", - "enchantment.level.3334": "MMMCCCXXXIV", - "enchantment.level.3335": "MMMCCCXXXV", - "enchantment.level.3336": "MMMCCCXXXVI", - "enchantment.level.3337": "MMMCCCXXXVII", - "enchantment.level.3338": "MMMCCCXXXVIII", - "enchantment.level.3339": "MMMCCCXXXIX", - "enchantment.level.3340": "MMMCCCXL", - "enchantment.level.3341": "MMMCCCXLI", - "enchantment.level.3342": "MMMCCCXLII", - "enchantment.level.3343": "MMMCCCXLIII", - "enchantment.level.3344": "MMMCCCXLIV", - "enchantment.level.3345": "MMMCCCXLV", - "enchantment.level.3346": "MMMCCCXLVI", - "enchantment.level.3347": "MMMCCCXLVII", - "enchantment.level.3348": "MMMCCCXLVIII", - "enchantment.level.3349": "MMMCCCXLIX", - "enchantment.level.3350": "MMMCCCL", - "enchantment.level.3351": "MMMCCCLI", - "enchantment.level.3352": "MMMCCCLII", - "enchantment.level.3353": "MMMCCCLIII", - "enchantment.level.3354": "MMMCCCLIV", - "enchantment.level.3355": "MMMCCCLV", - "enchantment.level.3356": "MMMCCCLVI", - "enchantment.level.3357": "MMMCCCLVII", - "enchantment.level.3358": "MMMCCCLVIII", - "enchantment.level.3359": "MMMCCCLIX", - "enchantment.level.3360": "MMMCCCLX", - "enchantment.level.3361": "MMMCCCLXI", - "enchantment.level.3362": "MMMCCCLXII", - "enchantment.level.3363": "MMMCCCLXIII", - "enchantment.level.3364": "MMMCCCLXIV", - "enchantment.level.3365": "MMMCCCLXV", - "enchantment.level.3366": "MMMCCCLXVI", - "enchantment.level.3367": "MMMCCCLXVII", - "enchantment.level.3368": "MMMCCCLXVIII", - "enchantment.level.3369": "MMMCCCLXIX", - "enchantment.level.3370": "MMMCCCLXX", - "enchantment.level.3371": "MMMCCCLXXI", - "enchantment.level.3372": "MMMCCCLXXII", - "enchantment.level.3373": "MMMCCCLXXIII", - "enchantment.level.3374": "MMMCCCLXXIV", - "enchantment.level.3375": "MMMCCCLXXV", - "enchantment.level.3376": "MMMCCCLXXVI", - "enchantment.level.3377": "MMMCCCLXXVII", - "enchantment.level.3378": "MMMCCCLXXVIII", - "enchantment.level.3379": "MMMCCCLXXIX", - "enchantment.level.3380": "MMMCCCLXXX", - "enchantment.level.3381": "MMMCCCLXXXI", - "enchantment.level.3382": "MMMCCCLXXXII", - "enchantment.level.3383": "MMMCCCLXXXIII", - "enchantment.level.3384": "MMMCCCLXXXIV", - "enchantment.level.3385": "MMMCCCLXXXV", - "enchantment.level.3386": "MMMCCCLXXXVI", - "enchantment.level.3387": "MMMCCCLXXXVII", - "enchantment.level.3388": "MMMCCCLXXXVIII", - "enchantment.level.3389": "MMMCCCLXXXIX", - "enchantment.level.3390": "MMMCCCXC", - "enchantment.level.3391": "MMMCCCXCI", - "enchantment.level.3392": "MMMCCCXCII", - "enchantment.level.3393": "MMMCCCXCIII", - "enchantment.level.3394": "MMMCCCXCIV", - "enchantment.level.3395": "MMMCCCXCV", - "enchantment.level.3396": "MMMCCCXCVI", - "enchantment.level.3397": "MMMCCCXCVII", - "enchantment.level.3398": "MMMCCCXCVIII", - "enchantment.level.3399": "MMMCCCXCIX", - "enchantment.level.3400": "MMMCD", - "enchantment.level.3401": "MMMCDI", - "enchantment.level.3402": "MMMCDII", - "enchantment.level.3403": "MMMCDIII", - "enchantment.level.3404": "MMMCDIV", - "enchantment.level.3405": "MMMCDV", - "enchantment.level.3406": "MMMCDVI", - "enchantment.level.3407": "MMMCDVII", - "enchantment.level.3408": "MMMCDVIII", - "enchantment.level.3409": "MMMCDIX", - "enchantment.level.3410": "MMMCDX", - "enchantment.level.3411": "MMMCDXI", - "enchantment.level.3412": "MMMCDXII", - "enchantment.level.3413": "MMMCDXIII", - "enchantment.level.3414": "MMMCDXIV", - "enchantment.level.3415": "MMMCDXV", - "enchantment.level.3416": "MMMCDXVI", - "enchantment.level.3417": "MMMCDXVII", - "enchantment.level.3418": "MMMCDXVIII", - "enchantment.level.3419": "MMMCDXIX", - "enchantment.level.3420": "MMMCDXX", - "enchantment.level.3421": "MMMCDXXI", - "enchantment.level.3422": "MMMCDXXII", - "enchantment.level.3423": "MMMCDXXIII", - "enchantment.level.3424": "MMMCDXXIV", - "enchantment.level.3425": "MMMCDXXV", - "enchantment.level.3426": "MMMCDXXVI", - "enchantment.level.3427": "MMMCDXXVII", - "enchantment.level.3428": "MMMCDXXVIII", - "enchantment.level.3429": "MMMCDXXIX", - "enchantment.level.3430": "MMMCDXXX", - "enchantment.level.3431": "MMMCDXXXI", - "enchantment.level.3432": "MMMCDXXXII", - "enchantment.level.3433": "MMMCDXXXIII", - "enchantment.level.3434": "MMMCDXXXIV", - "enchantment.level.3435": "MMMCDXXXV", - "enchantment.level.3436": "MMMCDXXXVI", - "enchantment.level.3437": "MMMCDXXXVII", - "enchantment.level.3438": "MMMCDXXXVIII", - "enchantment.level.3439": "MMMCDXXXIX", - "enchantment.level.3440": "MMMCDXL", - "enchantment.level.3441": "MMMCDXLI", - "enchantment.level.3442": "MMMCDXLII", - "enchantment.level.3443": "MMMCDXLIII", - "enchantment.level.3444": "MMMCDXLIV", - "enchantment.level.3445": "MMMCDXLV", - "enchantment.level.3446": "MMMCDXLVI", - "enchantment.level.3447": "MMMCDXLVII", - "enchantment.level.3448": "MMMCDXLVIII", - "enchantment.level.3449": "MMMCDXLIX", - "enchantment.level.3450": "MMMCDL", - "enchantment.level.3451": "MMMCDLI", - "enchantment.level.3452": "MMMCDLII", - "enchantment.level.3453": "MMMCDLIII", - "enchantment.level.3454": "MMMCDLIV", - "enchantment.level.3455": "MMMCDLV", - "enchantment.level.3456": "MMMCDLVI", - "enchantment.level.3457": "MMMCDLVII", - "enchantment.level.3458": "MMMCDLVIII", - "enchantment.level.3459": "MMMCDLIX", - "enchantment.level.3460": "MMMCDLX", - "enchantment.level.3461": "MMMCDLXI", - "enchantment.level.3462": "MMMCDLXII", - "enchantment.level.3463": "MMMCDLXIII", - "enchantment.level.3464": "MMMCDLXIV", - "enchantment.level.3465": "MMMCDLXV", - "enchantment.level.3466": "MMMCDLXVI", - "enchantment.level.3467": "MMMCDLXVII", - "enchantment.level.3468": "MMMCDLXVIII", - "enchantment.level.3469": "MMMCDLXIX", - "enchantment.level.3470": "MMMCDLXX", - "enchantment.level.3471": "MMMCDLXXI", - "enchantment.level.3472": "MMMCDLXXII", - "enchantment.level.3473": "MMMCDLXXIII", - "enchantment.level.3474": "MMMCDLXXIV", - "enchantment.level.3475": "MMMCDLXXV", - "enchantment.level.3476": "MMMCDLXXVI", - "enchantment.level.3477": "MMMCDLXXVII", - "enchantment.level.3478": "MMMCDLXXVIII", - "enchantment.level.3479": "MMMCDLXXIX", - "enchantment.level.3480": "MMMCDLXXX", - "enchantment.level.3481": "MMMCDLXXXI", - "enchantment.level.3482": "MMMCDLXXXII", - "enchantment.level.3483": "MMMCDLXXXIII", - "enchantment.level.3484": "MMMCDLXXXIV", - "enchantment.level.3485": "MMMCDLXXXV", - "enchantment.level.3486": "MMMCDLXXXVI", - "enchantment.level.3487": "MMMCDLXXXVII", - "enchantment.level.3488": "MMMCDLXXXVIII", - "enchantment.level.3489": "MMMCDLXXXIX", - "enchantment.level.3490": "MMMCDXC", - "enchantment.level.3491": "MMMCDXCI", - "enchantment.level.3492": "MMMCDXCII", - "enchantment.level.3493": "MMMCDXCIII", - "enchantment.level.3494": "MMMCDXCIV", - "enchantment.level.3495": "MMMCDXCV", - "enchantment.level.3496": "MMMCDXCVI", - "enchantment.level.3497": "MMMCDXCVII", - "enchantment.level.3498": "MMMCDXCVIII", - "enchantment.level.3499": "MMMCDXCIX", - "enchantment.level.3500": "MMMD", - "enchantment.level.3501": "MMMDI", - "enchantment.level.3502": "MMMDII", - "enchantment.level.3503": "MMMDIII", - "enchantment.level.3504": "MMMDIV", - "enchantment.level.3505": "MMMDV", - "enchantment.level.3506": "MMMDVI", - "enchantment.level.3507": "MMMDVII", - "enchantment.level.3508": "MMMDVIII", - "enchantment.level.3509": "MMMDIX", - "enchantment.level.3510": "MMMDX", - "enchantment.level.3511": "MMMDXI", - "enchantment.level.3512": "MMMDXII", - "enchantment.level.3513": "MMMDXIII", - "enchantment.level.3514": "MMMDXIV", - "enchantment.level.3515": "MMMDXV", - "enchantment.level.3516": "MMMDXVI", - "enchantment.level.3517": "MMMDXVII", - "enchantment.level.3518": "MMMDXVIII", - "enchantment.level.3519": "MMMDXIX", - "enchantment.level.3520": "MMMDXX", - "enchantment.level.3521": "MMMDXXI", - "enchantment.level.3522": "MMMDXXII", - "enchantment.level.3523": "MMMDXXIII", - "enchantment.level.3524": "MMMDXXIV", - "enchantment.level.3525": "MMMDXXV", - "enchantment.level.3526": "MMMDXXVI", - "enchantment.level.3527": "MMMDXXVII", - "enchantment.level.3528": "MMMDXXVIII", - "enchantment.level.3529": "MMMDXXIX", - "enchantment.level.3530": "MMMDXXX", - "enchantment.level.3531": "MMMDXXXI", - "enchantment.level.3532": "MMMDXXXII", - "enchantment.level.3533": "MMMDXXXIII", - "enchantment.level.3534": "MMMDXXXIV", - "enchantment.level.3535": "MMMDXXXV", - "enchantment.level.3536": "MMMDXXXVI", - "enchantment.level.3537": "MMMDXXXVII", - "enchantment.level.3538": "MMMDXXXVIII", - "enchantment.level.3539": "MMMDXXXIX", - "enchantment.level.3540": "MMMDXL", - "enchantment.level.3541": "MMMDXLI", - "enchantment.level.3542": "MMMDXLII", - "enchantment.level.3543": "MMMDXLIII", - "enchantment.level.3544": "MMMDXLIV", - "enchantment.level.3545": "MMMDXLV", - "enchantment.level.3546": "MMMDXLVI", - "enchantment.level.3547": "MMMDXLVII", - "enchantment.level.3548": "MMMDXLVIII", - "enchantment.level.3549": "MMMDXLIX", - "enchantment.level.3550": "MMMDL", - "enchantment.level.3551": "MMMDLI", - "enchantment.level.3552": "MMMDLII", - "enchantment.level.3553": "MMMDLIII", - "enchantment.level.3554": "MMMDLIV", - "enchantment.level.3555": "MMMDLV", - "enchantment.level.3556": "MMMDLVI", - "enchantment.level.3557": "MMMDLVII", - "enchantment.level.3558": "MMMDLVIII", - "enchantment.level.3559": "MMMDLIX", - "enchantment.level.3560": "MMMDLX", - "enchantment.level.3561": "MMMDLXI", - "enchantment.level.3562": "MMMDLXII", - "enchantment.level.3563": "MMMDLXIII", - "enchantment.level.3564": "MMMDLXIV", - "enchantment.level.3565": "MMMDLXV", - "enchantment.level.3566": "MMMDLXVI", - "enchantment.level.3567": "MMMDLXVII", - "enchantment.level.3568": "MMMDLXVIII", - "enchantment.level.3569": "MMMDLXIX", - "enchantment.level.3570": "MMMDLXX", - "enchantment.level.3571": "MMMDLXXI", - "enchantment.level.3572": "MMMDLXXII", - "enchantment.level.3573": "MMMDLXXIII", - "enchantment.level.3574": "MMMDLXXIV", - "enchantment.level.3575": "MMMDLXXV", - "enchantment.level.3576": "MMMDLXXVI", - "enchantment.level.3577": "MMMDLXXVII", - "enchantment.level.3578": "MMMDLXXVIII", - "enchantment.level.3579": "MMMDLXXIX", - "enchantment.level.3580": "MMMDLXXX", - "enchantment.level.3581": "MMMDLXXXI", - "enchantment.level.3582": "MMMDLXXXII", - "enchantment.level.3583": "MMMDLXXXIII", - "enchantment.level.3584": "MMMDLXXXIV", - "enchantment.level.3585": "MMMDLXXXV", - "enchantment.level.3586": "MMMDLXXXVI", - "enchantment.level.3587": "MMMDLXXXVII", - "enchantment.level.3588": "MMMDLXXXVIII", - "enchantment.level.3589": "MMMDLXXXIX", - "enchantment.level.3590": "MMMDXC", - "enchantment.level.3591": "MMMDXCI", - "enchantment.level.3592": "MMMDXCII", - "enchantment.level.3593": "MMMDXCIII", - "enchantment.level.3594": "MMMDXCIV", - "enchantment.level.3595": "MMMDXCV", - "enchantment.level.3596": "MMMDXCVI", - "enchantment.level.3597": "MMMDXCVII", - "enchantment.level.3598": "MMMDXCVIII", - "enchantment.level.3599": "MMMDXCIX", - "enchantment.level.3600": "MMMDC", - "enchantment.level.3601": "MMMDCI", - "enchantment.level.3602": "MMMDCII", - "enchantment.level.3603": "MMMDCIII", - "enchantment.level.3604": "MMMDCIV", - "enchantment.level.3605": "MMMDCV", - "enchantment.level.3606": "MMMDCVI", - "enchantment.level.3607": "MMMDCVII", - "enchantment.level.3608": "MMMDCVIII", - "enchantment.level.3609": "MMMDCIX", - "enchantment.level.3610": "MMMDCX", - "enchantment.level.3611": "MMMDCXI", - "enchantment.level.3612": "MMMDCXII", - "enchantment.level.3613": "MMMDCXIII", - "enchantment.level.3614": "MMMDCXIV", - "enchantment.level.3615": "MMMDCXV", - "enchantment.level.3616": "MMMDCXVI", - "enchantment.level.3617": "MMMDCXVII", - "enchantment.level.3618": "MMMDCXVIII", - "enchantment.level.3619": "MMMDCXIX", - "enchantment.level.3620": "MMMDCXX", - "enchantment.level.3621": "MMMDCXXI", - "enchantment.level.3622": "MMMDCXXII", - "enchantment.level.3623": "MMMDCXXIII", - "enchantment.level.3624": "MMMDCXXIV", - "enchantment.level.3625": "MMMDCXXV", - "enchantment.level.3626": "MMMDCXXVI", - "enchantment.level.3627": "MMMDCXXVII", - "enchantment.level.3628": "MMMDCXXVIII", - "enchantment.level.3629": "MMMDCXXIX", - "enchantment.level.3630": "MMMDCXXX", - "enchantment.level.3631": "MMMDCXXXI", - "enchantment.level.3632": "MMMDCXXXII", - "enchantment.level.3633": "MMMDCXXXIII", - "enchantment.level.3634": "MMMDCXXXIV", - "enchantment.level.3635": "MMMDCXXXV", - "enchantment.level.3636": "MMMDCXXXVI", - "enchantment.level.3637": "MMMDCXXXVII", - "enchantment.level.3638": "MMMDCXXXVIII", - "enchantment.level.3639": "MMMDCXXXIX", - "enchantment.level.3640": "MMMDCXL", - "enchantment.level.3641": "MMMDCXLI", - "enchantment.level.3642": "MMMDCXLII", - "enchantment.level.3643": "MMMDCXLIII", - "enchantment.level.3644": "MMMDCXLIV", - "enchantment.level.3645": "MMMDCXLV", - "enchantment.level.3646": "MMMDCXLVI", - "enchantment.level.3647": "MMMDCXLVII", - "enchantment.level.3648": "MMMDCXLVIII", - "enchantment.level.3649": "MMMDCXLIX", - "enchantment.level.3650": "MMMDCL", - "enchantment.level.3651": "MMMDCLI", - "enchantment.level.3652": "MMMDCLII", - "enchantment.level.3653": "MMMDCLIII", - "enchantment.level.3654": "MMMDCLIV", - "enchantment.level.3655": "MMMDCLV", - "enchantment.level.3656": "MMMDCLVI", - "enchantment.level.3657": "MMMDCLVII", - "enchantment.level.3658": "MMMDCLVIII", - "enchantment.level.3659": "MMMDCLIX", - "enchantment.level.3660": "MMMDCLX", - "enchantment.level.3661": "MMMDCLXI", - "enchantment.level.3662": "MMMDCLXII", - "enchantment.level.3663": "MMMDCLXIII", - "enchantment.level.3664": "MMMDCLXIV", - "enchantment.level.3665": "MMMDCLXV", - "enchantment.level.3666": "MMMDCLXVI", - "enchantment.level.3667": "MMMDCLXVII", - "enchantment.level.3668": "MMMDCLXVIII", - "enchantment.level.3669": "MMMDCLXIX", - "enchantment.level.3670": "MMMDCLXX", - "enchantment.level.3671": "MMMDCLXXI", - "enchantment.level.3672": "MMMDCLXXII", - "enchantment.level.3673": "MMMDCLXXIII", - "enchantment.level.3674": "MMMDCLXXIV", - "enchantment.level.3675": "MMMDCLXXV", - "enchantment.level.3676": "MMMDCLXXVI", - "enchantment.level.3677": "MMMDCLXXVII", - "enchantment.level.3678": "MMMDCLXXVIII", - "enchantment.level.3679": "MMMDCLXXIX", - "enchantment.level.3680": "MMMDCLXXX", - "enchantment.level.3681": "MMMDCLXXXI", - "enchantment.level.3682": "MMMDCLXXXII", - "enchantment.level.3683": "MMMDCLXXXIII", - "enchantment.level.3684": "MMMDCLXXXIV", - "enchantment.level.3685": "MMMDCLXXXV", - "enchantment.level.3686": "MMMDCLXXXVI", - "enchantment.level.3687": "MMMDCLXXXVII", - "enchantment.level.3688": "MMMDCLXXXVIII", - "enchantment.level.3689": "MMMDCLXXXIX", - "enchantment.level.3690": "MMMDCXC", - "enchantment.level.3691": "MMMDCXCI", - "enchantment.level.3692": "MMMDCXCII", - "enchantment.level.3693": "MMMDCXCIII", - "enchantment.level.3694": "MMMDCXCIV", - "enchantment.level.3695": "MMMDCXCV", - "enchantment.level.3696": "MMMDCXCVI", - "enchantment.level.3697": "MMMDCXCVII", - "enchantment.level.3698": "MMMDCXCVIII", - "enchantment.level.3699": "MMMDCXCIX", - "enchantment.level.3700": "MMMDCC", - "enchantment.level.3701": "MMMDCCI", - "enchantment.level.3702": "MMMDCCII", - "enchantment.level.3703": "MMMDCCIII", - "enchantment.level.3704": "MMMDCCIV", - "enchantment.level.3705": "MMMDCCV", - "enchantment.level.3706": "MMMDCCVI", - "enchantment.level.3707": "MMMDCCVII", - "enchantment.level.3708": "MMMDCCVIII", - "enchantment.level.3709": "MMMDCCIX", - "enchantment.level.3710": "MMMDCCX", - "enchantment.level.3711": "MMMDCCXI", - "enchantment.level.3712": "MMMDCCXII", - "enchantment.level.3713": "MMMDCCXIII", - "enchantment.level.3714": "MMMDCCXIV", - "enchantment.level.3715": "MMMDCCXV", - "enchantment.level.3716": "MMMDCCXVI", - "enchantment.level.3717": "MMMDCCXVII", - "enchantment.level.3718": "MMMDCCXVIII", - "enchantment.level.3719": "MMMDCCXIX", - "enchantment.level.3720": "MMMDCCXX", - "enchantment.level.3721": "MMMDCCXXI", - "enchantment.level.3722": "MMMDCCXXII", - "enchantment.level.3723": "MMMDCCXXIII", - "enchantment.level.3724": "MMMDCCXXIV", - "enchantment.level.3725": "MMMDCCXXV", - "enchantment.level.3726": "MMMDCCXXVI", - "enchantment.level.3727": "MMMDCCXXVII", - "enchantment.level.3728": "MMMDCCXXVIII", - "enchantment.level.3729": "MMMDCCXXIX", - "enchantment.level.3730": "MMMDCCXXX", - "enchantment.level.3731": "MMMDCCXXXI", - "enchantment.level.3732": "MMMDCCXXXII", - "enchantment.level.3733": "MMMDCCXXXIII", - "enchantment.level.3734": "MMMDCCXXXIV", - "enchantment.level.3735": "MMMDCCXXXV", - "enchantment.level.3736": "MMMDCCXXXVI", - "enchantment.level.3737": "MMMDCCXXXVII", - "enchantment.level.3738": "MMMDCCXXXVIII", - "enchantment.level.3739": "MMMDCCXXXIX", - "enchantment.level.3740": "MMMDCCXL", - "enchantment.level.3741": "MMMDCCXLI", - "enchantment.level.3742": "MMMDCCXLII", - "enchantment.level.3743": "MMMDCCXLIII", - "enchantment.level.3744": "MMMDCCXLIV", - "enchantment.level.3745": "MMMDCCXLV", - "enchantment.level.3746": "MMMDCCXLVI", - "enchantment.level.3747": "MMMDCCXLVII", - "enchantment.level.3748": "MMMDCCXLVIII", - "enchantment.level.3749": "MMMDCCXLIX", - "enchantment.level.3750": "MMMDCCL", - "enchantment.level.3751": "MMMDCCLI", - "enchantment.level.3752": "MMMDCCLII", - "enchantment.level.3753": "MMMDCCLIII", - "enchantment.level.3754": "MMMDCCLIV", - "enchantment.level.3755": "MMMDCCLV", - "enchantment.level.3756": "MMMDCCLVI", - "enchantment.level.3757": "MMMDCCLVII", - "enchantment.level.3758": "MMMDCCLVIII", - "enchantment.level.3759": "MMMDCCLIX", - "enchantment.level.3760": "MMMDCCLX", - "enchantment.level.3761": "MMMDCCLXI", - "enchantment.level.3762": "MMMDCCLXII", - "enchantment.level.3763": "MMMDCCLXIII", - "enchantment.level.3764": "MMMDCCLXIV", - "enchantment.level.3765": "MMMDCCLXV", - "enchantment.level.3766": "MMMDCCLXVI", - "enchantment.level.3767": "MMMDCCLXVII", - "enchantment.level.3768": "MMMDCCLXVIII", - "enchantment.level.3769": "MMMDCCLXIX", - "enchantment.level.3770": "MMMDCCLXX", - "enchantment.level.3771": "MMMDCCLXXI", - "enchantment.level.3772": "MMMDCCLXXII", - "enchantment.level.3773": "MMMDCCLXXIII", - "enchantment.level.3774": "MMMDCCLXXIV", - "enchantment.level.3775": "MMMDCCLXXV", - "enchantment.level.3776": "MMMDCCLXXVI", - "enchantment.level.3777": "MMMDCCLXXVII", - "enchantment.level.3778": "MMMDCCLXXVIII", - "enchantment.level.3779": "MMMDCCLXXIX", - "enchantment.level.3780": "MMMDCCLXXX", - "enchantment.level.3781": "MMMDCCLXXXI", - "enchantment.level.3782": "MMMDCCLXXXII", - "enchantment.level.3783": "MMMDCCLXXXIII", - "enchantment.level.3784": "MMMDCCLXXXIV", - "enchantment.level.3785": "MMMDCCLXXXV", - "enchantment.level.3786": "MMMDCCLXXXVI", - "enchantment.level.3787": "MMMDCCLXXXVII", - "enchantment.level.3788": "MMMDCCLXXXVIII", - "enchantment.level.3789": "MMMDCCLXXXIX", - "enchantment.level.3790": "MMMDCCXC", - "enchantment.level.3791": "MMMDCCXCI", - "enchantment.level.3792": "MMMDCCXCII", - "enchantment.level.3793": "MMMDCCXCIII", - "enchantment.level.3794": "MMMDCCXCIV", - "enchantment.level.3795": "MMMDCCXCV", - "enchantment.level.3796": "MMMDCCXCVI", - "enchantment.level.3797": "MMMDCCXCVII", - "enchantment.level.3798": "MMMDCCXCVIII", - "enchantment.level.3799": "MMMDCCXCIX", - "enchantment.level.3800": "MMMDCCC", - "enchantment.level.3801": "MMMDCCCI", - "enchantment.level.3802": "MMMDCCCII", - "enchantment.level.3803": "MMMDCCCIII", - "enchantment.level.3804": "MMMDCCCIV", - "enchantment.level.3805": "MMMDCCCV", - "enchantment.level.3806": "MMMDCCCVI", - "enchantment.level.3807": "MMMDCCCVII", - "enchantment.level.3808": "MMMDCCCVIII", - "enchantment.level.3809": "MMMDCCCIX", - "enchantment.level.3810": "MMMDCCCX", - "enchantment.level.3811": "MMMDCCCXI", - "enchantment.level.3812": "MMMDCCCXII", - "enchantment.level.3813": "MMMDCCCXIII", - "enchantment.level.3814": "MMMDCCCXIV", - "enchantment.level.3815": "MMMDCCCXV", - "enchantment.level.3816": "MMMDCCCXVI", - "enchantment.level.3817": "MMMDCCCXVII", - "enchantment.level.3818": "MMMDCCCXVIII", - "enchantment.level.3819": "MMMDCCCXIX", - "enchantment.level.3820": "MMMDCCCXX", - "enchantment.level.3821": "MMMDCCCXXI", - "enchantment.level.3822": "MMMDCCCXXII", - "enchantment.level.3823": "MMMDCCCXXIII", - "enchantment.level.3824": "MMMDCCCXXIV", - "enchantment.level.3825": "MMMDCCCXXV", - "enchantment.level.3826": "MMMDCCCXXVI", - "enchantment.level.3827": "MMMDCCCXXVII", - "enchantment.level.3828": "MMMDCCCXXVIII", - "enchantment.level.3829": "MMMDCCCXXIX", - "enchantment.level.3830": "MMMDCCCXXX", - "enchantment.level.3831": "MMMDCCCXXXI", - "enchantment.level.3832": "MMMDCCCXXXII", - "enchantment.level.3833": "MMMDCCCXXXIII", - "enchantment.level.3834": "MMMDCCCXXXIV", - "enchantment.level.3835": "MMMDCCCXXXV", - "enchantment.level.3836": "MMMDCCCXXXVI", - "enchantment.level.3837": "MMMDCCCXXXVII", - "enchantment.level.3838": "MMMDCCCXXXVIII", - "enchantment.level.3839": "MMMDCCCXXXIX", - "enchantment.level.3840": "MMMDCCCXL", - "enchantment.level.3841": "MMMDCCCXLI", - "enchantment.level.3842": "MMMDCCCXLII", - "enchantment.level.3843": "MMMDCCCXLIII", - "enchantment.level.3844": "MMMDCCCXLIV", - "enchantment.level.3845": "MMMDCCCXLV", - "enchantment.level.3846": "MMMDCCCXLVI", - "enchantment.level.3847": "MMMDCCCXLVII", - "enchantment.level.3848": "MMMDCCCXLVIII", - "enchantment.level.3849": "MMMDCCCXLIX", - "enchantment.level.3850": "MMMDCCCL", - "enchantment.level.3851": "MMMDCCCLI", - "enchantment.level.3852": "MMMDCCCLII", - "enchantment.level.3853": "MMMDCCCLIII", - "enchantment.level.3854": "MMMDCCCLIV", - "enchantment.level.3855": "MMMDCCCLV", - "enchantment.level.3856": "MMMDCCCLVI", - "enchantment.level.3857": "MMMDCCCLVII", - "enchantment.level.3858": "MMMDCCCLVIII", - "enchantment.level.3859": "MMMDCCCLIX", - "enchantment.level.3860": "MMMDCCCLX", - "enchantment.level.3861": "MMMDCCCLXI", - "enchantment.level.3862": "MMMDCCCLXII", - "enchantment.level.3863": "MMMDCCCLXIII", - "enchantment.level.3864": "MMMDCCCLXIV", - "enchantment.level.3865": "MMMDCCCLXV", - "enchantment.level.3866": "MMMDCCCLXVI", - "enchantment.level.3867": "MMMDCCCLXVII", - "enchantment.level.3868": "MMMDCCCLXVIII", - "enchantment.level.3869": "MMMDCCCLXIX", - "enchantment.level.3870": "MMMDCCCLXX", - "enchantment.level.3871": "MMMDCCCLXXI", - "enchantment.level.3872": "MMMDCCCLXXII", - "enchantment.level.3873": "MMMDCCCLXXIII", - "enchantment.level.3874": "MMMDCCCLXXIV", - "enchantment.level.3875": "MMMDCCCLXXV", - "enchantment.level.3876": "MMMDCCCLXXVI", - "enchantment.level.3877": "MMMDCCCLXXVII", - "enchantment.level.3878": "MMMDCCCLXXVIII", - "enchantment.level.3879": "MMMDCCCLXXIX", - "enchantment.level.3880": "MMMDCCCLXXX", - "enchantment.level.3881": "MMMDCCCLXXXI", - "enchantment.level.3882": "MMMDCCCLXXXII", - "enchantment.level.3883": "MMMDCCCLXXXIII", - "enchantment.level.3884": "MMMDCCCLXXXIV", - "enchantment.level.3885": "MMMDCCCLXXXV", - "enchantment.level.3886": "MMMDCCCLXXXVI", - "enchantment.level.3887": "MMMDCCCLXXXVII", - "enchantment.level.3888": "MMMDCCCLXXXVIII", - "enchantment.level.3889": "MMMDCCCLXXXIX", - "enchantment.level.3890": "MMMDCCCXC", - "enchantment.level.3891": "MMMDCCCXCI", - "enchantment.level.3892": "MMMDCCCXCII", - "enchantment.level.3893": "MMMDCCCXCIII", - "enchantment.level.3894": "MMMDCCCXCIV", - "enchantment.level.3895": "MMMDCCCXCV", - "enchantment.level.3896": "MMMDCCCXCVI", - "enchantment.level.3897": "MMMDCCCXCVII", - "enchantment.level.3898": "MMMDCCCXCVIII", - "enchantment.level.3899": "MMMDCCCXCIX", - "enchantment.level.3900": "MMMCM", - "enchantment.level.3901": "MMMCMI", - "enchantment.level.3902": "MMMCMII", - "enchantment.level.3903": "MMMCMIII", - "enchantment.level.3904": "MMMCMIV", - "enchantment.level.3905": "MMMCMV", - "enchantment.level.3906": "MMMCMVI", - "enchantment.level.3907": "MMMCMVII", - "enchantment.level.3908": "MMMCMVIII", - "enchantment.level.3909": "MMMCMIX", - "enchantment.level.3910": "MMMCMX", - "enchantment.level.3911": "MMMCMXI", - "enchantment.level.3912": "MMMCMXII", - "enchantment.level.3913": "MMMCMXIII", - "enchantment.level.3914": "MMMCMXIV", - "enchantment.level.3915": "MMMCMXV", - "enchantment.level.3916": "MMMCMXVI", - "enchantment.level.3917": "MMMCMXVII", - "enchantment.level.3918": "MMMCMXVIII", - "enchantment.level.3919": "MMMCMXIX", - "enchantment.level.3920": "MMMCMXX", - "enchantment.level.3921": "MMMCMXXI", - "enchantment.level.3922": "MMMCMXXII", - "enchantment.level.3923": "MMMCMXXIII", - "enchantment.level.3924": "MMMCMXXIV", - "enchantment.level.3925": "MMMCMXXV", - "enchantment.level.3926": "MMMCMXXVI", - "enchantment.level.3927": "MMMCMXXVII", - "enchantment.level.3928": "MMMCMXXVIII", - "enchantment.level.3929": "MMMCMXXIX", - "enchantment.level.3930": "MMMCMXXX", - "enchantment.level.3931": "MMMCMXXXI", - "enchantment.level.3932": "MMMCMXXXII", - "enchantment.level.3933": "MMMCMXXXIII", - "enchantment.level.3934": "MMMCMXXXIV", - "enchantment.level.3935": "MMMCMXXXV", - "enchantment.level.3936": "MMMCMXXXVI", - "enchantment.level.3937": "MMMCMXXXVII", - "enchantment.level.3938": "MMMCMXXXVIII", - "enchantment.level.3939": "MMMCMXXXIX", - "enchantment.level.3940": "MMMCMXL", - "enchantment.level.3941": "MMMCMXLI", - "enchantment.level.3942": "MMMCMXLII", - "enchantment.level.3943": "MMMCMXLIII", - "enchantment.level.3944": "MMMCMXLIV", - "enchantment.level.3945": "MMMCMXLV", - "enchantment.level.3946": "MMMCMXLVI", - "enchantment.level.3947": "MMMCMXLVII", - "enchantment.level.3948": "MMMCMXLVIII", - "enchantment.level.3949": "MMMCMXLIX", - "enchantment.level.3950": "MMMCML", - "enchantment.level.3951": "MMMCMLI", - "enchantment.level.3952": "MMMCMLII", - "enchantment.level.3953": "MMMCMLIII", - "enchantment.level.3954": "MMMCMLIV", - "enchantment.level.3955": "MMMCMLV", - "enchantment.level.3956": "MMMCMLVI", - "enchantment.level.3957": "MMMCMLVII", - "enchantment.level.3958": "MMMCMLVIII", - "enchantment.level.3959": "MMMCMLIX", - "enchantment.level.3960": "MMMCMLX", - "enchantment.level.3961": "MMMCMLXI", - "enchantment.level.3962": "MMMCMLXII", - "enchantment.level.3963": "MMMCMLXIII", - "enchantment.level.3964": "MMMCMLXIV", - "enchantment.level.3965": "MMMCMLXV", - "enchantment.level.3966": "MMMCMLXVI", - "enchantment.level.3967": "MMMCMLXVII", - "enchantment.level.3968": "MMMCMLXVIII", - "enchantment.level.3969": "MMMCMLXIX", - "enchantment.level.3970": "MMMCMLXX", - "enchantment.level.3971": "MMMCMLXXI", - "enchantment.level.3972": "MMMCMLXXII", - "enchantment.level.3973": "MMMCMLXXIII", - "enchantment.level.3974": "MMMCMLXXIV", - "enchantment.level.3975": "MMMCMLXXV", - "enchantment.level.3976": "MMMCMLXXVI", - "enchantment.level.3977": "MMMCMLXXVII", - "enchantment.level.3978": "MMMCMLXXVIII", - "enchantment.level.3979": "MMMCMLXXIX", - "enchantment.level.3980": "MMMCMLXXX", - "enchantment.level.3981": "MMMCMLXXXI", - "enchantment.level.3982": "MMMCMLXXXII", - "enchantment.level.3983": "MMMCMLXXXIII", - "enchantment.level.3984": "MMMCMLXXXIV", - "enchantment.level.3985": "MMMCMLXXXV", - "enchantment.level.3986": "MMMCMLXXXVI", - "enchantment.level.3987": "MMMCMLXXXVII", - "enchantment.level.3988": "MMMCMLXXXVIII", - "enchantment.level.3989": "MMMCMLXXXIX", - "enchantment.level.3990": "MMMCMXC", - "enchantment.level.3991": "MMMCMXCI", - "enchantment.level.3992": "MMMCMXCII", - "enchantment.level.3993": "MMMCMXCIII", - "enchantment.level.3994": "MMMCMXCIV", - "enchantment.level.3995": "MMMCMXCV", - "enchantment.level.3996": "MMMCMXCVI", - "enchantment.level.3997": "MMMCMXCVII", - "enchantment.level.3998": "MMMCMXCVIII", - "enchantment.level.3999": "MMMCMXCIX", - "enchantment.level.4000": "MMMM", - "enchantment.level.4001": "MMMMI", - "enchantment.level.4002": "MMMMII", - "enchantment.level.4003": "MMMMIII", - "enchantment.level.4004": "MMMMIV", - "enchantment.level.4005": "MMMMV", - "enchantment.level.4006": "MMMMVI", - "enchantment.level.4007": "MMMMVII", - "enchantment.level.4008": "MMMMVIII", - "enchantment.level.4009": "MMMMIX", - "enchantment.level.4010": "MMMMX", - "enchantment.level.4011": "MMMMXI", - "enchantment.level.4012": "MMMMXII", - "enchantment.level.4013": "MMMMXIII", - "enchantment.level.4014": "MMMMXIV", - "enchantment.level.4015": "MMMMXV", - "enchantment.level.4016": "MMMMXVI", - "enchantment.level.4017": "MMMMXVII", - "enchantment.level.4018": "MMMMXVIII", - "enchantment.level.4019": "MMMMXIX", - "enchantment.level.4020": "MMMMXX", - "enchantment.level.4021": "MMMMXXI", - "enchantment.level.4022": "MMMMXXII", - "enchantment.level.4023": "MMMMXXIII", - "enchantment.level.4024": "MMMMXXIV", - "enchantment.level.4025": "MMMMXXV", - "enchantment.level.4026": "MMMMXXVI", - "enchantment.level.4027": "MMMMXXVII", - "enchantment.level.4028": "MMMMXXVIII", - "enchantment.level.4029": "MMMMXXIX", - "enchantment.level.4030": "MMMMXXX", - "enchantment.level.4031": "MMMMXXXI", - "enchantment.level.4032": "MMMMXXXII", - "enchantment.level.4033": "MMMMXXXIII", - "enchantment.level.4034": "MMMMXXXIV", - "enchantment.level.4035": "MMMMXXXV", - "enchantment.level.4036": "MMMMXXXVI", - "enchantment.level.4037": "MMMMXXXVII", - "enchantment.level.4038": "MMMMXXXVIII", - "enchantment.level.4039": "MMMMXXXIX", - "enchantment.level.4040": "MMMMXL", - "enchantment.level.4041": "MMMMXLI", - "enchantment.level.4042": "MMMMXLII", - "enchantment.level.4043": "MMMMXLIII", - "enchantment.level.4044": "MMMMXLIV", - "enchantment.level.4045": "MMMMXLV", - "enchantment.level.4046": "MMMMXLVI", - "enchantment.level.4047": "MMMMXLVII", - "enchantment.level.4048": "MMMMXLVIII", - "enchantment.level.4049": "MMMMXLIX", - "enchantment.level.4050": "MMMML", - "enchantment.level.4051": "MMMMLI", - "enchantment.level.4052": "MMMMLII", - "enchantment.level.4053": "MMMMLIII", - "enchantment.level.4054": "MMMMLIV", - "enchantment.level.4055": "MMMMLV", - "enchantment.level.4056": "MMMMLVI", - "enchantment.level.4057": "MMMMLVII", - "enchantment.level.4058": "MMMMLVIII", - "enchantment.level.4059": "MMMMLIX", - "enchantment.level.4060": "MMMMLX", - "enchantment.level.4061": "MMMMLXI", - "enchantment.level.4062": "MMMMLXII", - "enchantment.level.4063": "MMMMLXIII", - "enchantment.level.4064": "MMMMLXIV", - "enchantment.level.4065": "MMMMLXV", - "enchantment.level.4066": "MMMMLXVI", - "enchantment.level.4067": "MMMMLXVII", - "enchantment.level.4068": "MMMMLXVIII", - "enchantment.level.4069": "MMMMLXIX", - "enchantment.level.4070": "MMMMLXX", - "enchantment.level.4071": "MMMMLXXI", - "enchantment.level.4072": "MMMMLXXII", - "enchantment.level.4073": "MMMMLXXIII", - "enchantment.level.4074": "MMMMLXXIV", - "enchantment.level.4075": "MMMMLXXV", - "enchantment.level.4076": "MMMMLXXVI", - "enchantment.level.4077": "MMMMLXXVII", - "enchantment.level.4078": "MMMMLXXVIII", - "enchantment.level.4079": "MMMMLXXIX", - "enchantment.level.4080": "MMMMLXXX", - "enchantment.level.4081": "MMMMLXXXI", - "enchantment.level.4082": "MMMMLXXXII", - "enchantment.level.4083": "MMMMLXXXIII", - "enchantment.level.4084": "MMMMLXXXIV", - "enchantment.level.4085": "MMMMLXXXV", - "enchantment.level.4086": "MMMMLXXXVI", - "enchantment.level.4087": "MMMMLXXXVII", - "enchantment.level.4088": "MMMMLXXXVIII", - "enchantment.level.4089": "MMMMLXXXIX", - "enchantment.level.4090": "MMMMXC", - "enchantment.level.4091": "MMMMXCI", - "enchantment.level.4092": "MMMMXCII", - "enchantment.level.4093": "MMMMXCIII", - "enchantment.level.4094": "MMMMXCIV", - "enchantment.level.4095": "MMMMXCV", - "enchantment.level.4096": "MMMMXCVI", - "enchantment.level.4097": "MMMMXCVII", - "enchantment.level.4098": "MMMMXCVIII", - "enchantment.level.4099": "MMMMXCIX", - "enchantment.level.4100": "MMMMC", - "enchantment.level.4101": "MMMMCI", - "enchantment.level.4102": "MMMMCII", - "enchantment.level.4103": "MMMMCIII", - "enchantment.level.4104": "MMMMCIV", - "enchantment.level.4105": "MMMMCV", - "enchantment.level.4106": "MMMMCVI", - "enchantment.level.4107": "MMMMCVII", - "enchantment.level.4108": "MMMMCVIII", - "enchantment.level.4109": "MMMMCIX", - "enchantment.level.4110": "MMMMCX", - "enchantment.level.4111": "MMMMCXI", - "enchantment.level.4112": "MMMMCXII", - "enchantment.level.4113": "MMMMCXIII", - "enchantment.level.4114": "MMMMCXIV", - "enchantment.level.4115": "MMMMCXV", - "enchantment.level.4116": "MMMMCXVI", - "enchantment.level.4117": "MMMMCXVII", - "enchantment.level.4118": "MMMMCXVIII", - "enchantment.level.4119": "MMMMCXIX", - "enchantment.level.4120": "MMMMCXX", - "enchantment.level.4121": "MMMMCXXI", - "enchantment.level.4122": "MMMMCXXII", - "enchantment.level.4123": "MMMMCXXIII", - "enchantment.level.4124": "MMMMCXXIV", - "enchantment.level.4125": "MMMMCXXV", - "enchantment.level.4126": "MMMMCXXVI", - "enchantment.level.4127": "MMMMCXXVII", - "enchantment.level.4128": "MMMMCXXVIII", - "enchantment.level.4129": "MMMMCXXIX", - "enchantment.level.4130": "MMMMCXXX", - "enchantment.level.4131": "MMMMCXXXI", - "enchantment.level.4132": "MMMMCXXXII", - "enchantment.level.4133": "MMMMCXXXIII", - "enchantment.level.4134": "MMMMCXXXIV", - "enchantment.level.4135": "MMMMCXXXV", - "enchantment.level.4136": "MMMMCXXXVI", - "enchantment.level.4137": "MMMMCXXXVII", - "enchantment.level.4138": "MMMMCXXXVIII", - "enchantment.level.4139": "MMMMCXXXIX", - "enchantment.level.4140": "MMMMCXL", - "enchantment.level.4141": "MMMMCXLI", - "enchantment.level.4142": "MMMMCXLII", - "enchantment.level.4143": "MMMMCXLIII", - "enchantment.level.4144": "MMMMCXLIV", - "enchantment.level.4145": "MMMMCXLV", - "enchantment.level.4146": "MMMMCXLVI", - "enchantment.level.4147": "MMMMCXLVII", - "enchantment.level.4148": "MMMMCXLVIII", - "enchantment.level.4149": "MMMMCXLIX", - "enchantment.level.4150": "MMMMCL", - "enchantment.level.4151": "MMMMCLI", - "enchantment.level.4152": "MMMMCLII", - "enchantment.level.4153": "MMMMCLIII", - "enchantment.level.4154": "MMMMCLIV", - "enchantment.level.4155": "MMMMCLV", - "enchantment.level.4156": "MMMMCLVI", - "enchantment.level.4157": "MMMMCLVII", - "enchantment.level.4158": "MMMMCLVIII", - "enchantment.level.4159": "MMMMCLIX", - "enchantment.level.4160": "MMMMCLX", - "enchantment.level.4161": "MMMMCLXI", - "enchantment.level.4162": "MMMMCLXII", - "enchantment.level.4163": "MMMMCLXIII", - "enchantment.level.4164": "MMMMCLXIV", - "enchantment.level.4165": "MMMMCLXV", - "enchantment.level.4166": "MMMMCLXVI", - "enchantment.level.4167": "MMMMCLXVII", - "enchantment.level.4168": "MMMMCLXVIII", - "enchantment.level.4169": "MMMMCLXIX", - "enchantment.level.4170": "MMMMCLXX", - "enchantment.level.4171": "MMMMCLXXI", - "enchantment.level.4172": "MMMMCLXXII", - "enchantment.level.4173": "MMMMCLXXIII", - "enchantment.level.4174": "MMMMCLXXIV", - "enchantment.level.4175": "MMMMCLXXV", - "enchantment.level.4176": "MMMMCLXXVI", - "enchantment.level.4177": "MMMMCLXXVII", - "enchantment.level.4178": "MMMMCLXXVIII", - "enchantment.level.4179": "MMMMCLXXIX", - "enchantment.level.4180": "MMMMCLXXX", - "enchantment.level.4181": "MMMMCLXXXI", - "enchantment.level.4182": "MMMMCLXXXII", - "enchantment.level.4183": "MMMMCLXXXIII", - "enchantment.level.4184": "MMMMCLXXXIV", - "enchantment.level.4185": "MMMMCLXXXV", - "enchantment.level.4186": "MMMMCLXXXVI", - "enchantment.level.4187": "MMMMCLXXXVII", - "enchantment.level.4188": "MMMMCLXXXVIII", - "enchantment.level.4189": "MMMMCLXXXIX", - "enchantment.level.4190": "MMMMCXC", - "enchantment.level.4191": "MMMMCXCI", - "enchantment.level.4192": "MMMMCXCII", - "enchantment.level.4193": "MMMMCXCIII", - "enchantment.level.4194": "MMMMCXCIV", - "enchantment.level.4195": "MMMMCXCV", - "enchantment.level.4196": "MMMMCXCVI", - "enchantment.level.4197": "MMMMCXCVII", - "enchantment.level.4198": "MMMMCXCVIII", - "enchantment.level.4199": "MMMMCXCIX", - "enchantment.level.4200": "MMMMCC", - "enchantment.level.4201": "MMMMCCI", - "enchantment.level.4202": "MMMMCCII", - "enchantment.level.4203": "MMMMCCIII", - "enchantment.level.4204": "MMMMCCIV", - "enchantment.level.4205": "MMMMCCV", - "enchantment.level.4206": "MMMMCCVI", - "enchantment.level.4207": "MMMMCCVII", - "enchantment.level.4208": "MMMMCCVIII", - "enchantment.level.4209": "MMMMCCIX", - "enchantment.level.4210": "MMMMCCX", - "enchantment.level.4211": "MMMMCCXI", - "enchantment.level.4212": "MMMMCCXII", - "enchantment.level.4213": "MMMMCCXIII", - "enchantment.level.4214": "MMMMCCXIV", - "enchantment.level.4215": "MMMMCCXV", - "enchantment.level.4216": "MMMMCCXVI", - "enchantment.level.4217": "MMMMCCXVII", - "enchantment.level.4218": "MMMMCCXVIII", - "enchantment.level.4219": "MMMMCCXIX", - "enchantment.level.4220": "MMMMCCXX", - "enchantment.level.4221": "MMMMCCXXI", - "enchantment.level.4222": "MMMMCCXXII", - "enchantment.level.4223": "MMMMCCXXIII", - "enchantment.level.4224": "MMMMCCXXIV", - "enchantment.level.4225": "MMMMCCXXV", - "enchantment.level.4226": "MMMMCCXXVI", - "enchantment.level.4227": "MMMMCCXXVII", - "enchantment.level.4228": "MMMMCCXXVIII", - "enchantment.level.4229": "MMMMCCXXIX", - "enchantment.level.4230": "MMMMCCXXX", - "enchantment.level.4231": "MMMMCCXXXI", - "enchantment.level.4232": "MMMMCCXXXII", - "enchantment.level.4233": "MMMMCCXXXIII", - "enchantment.level.4234": "MMMMCCXXXIV", - "enchantment.level.4235": "MMMMCCXXXV", - "enchantment.level.4236": "MMMMCCXXXVI", - "enchantment.level.4237": "MMMMCCXXXVII", - "enchantment.level.4238": "MMMMCCXXXVIII", - "enchantment.level.4239": "MMMMCCXXXIX", - "enchantment.level.4240": "MMMMCCXL", - "enchantment.level.4241": "MMMMCCXLI", - "enchantment.level.4242": "MMMMCCXLII", - "enchantment.level.4243": "MMMMCCXLIII", - "enchantment.level.4244": "MMMMCCXLIV", - "enchantment.level.4245": "MMMMCCXLV", - "enchantment.level.4246": "MMMMCCXLVI", - "enchantment.level.4247": "MMMMCCXLVII", - "enchantment.level.4248": "MMMMCCXLVIII", - "enchantment.level.4249": "MMMMCCXLIX", - "enchantment.level.4250": "MMMMCCL", - "enchantment.level.4251": "MMMMCCLI", - "enchantment.level.4252": "MMMMCCLII", - "enchantment.level.4253": "MMMMCCLIII", - "enchantment.level.4254": "MMMMCCLIV", - "enchantment.level.4255": "MMMMCCLV", - "enchantment.level.4256": "MMMMCCLVI", - "enchantment.level.4257": "MMMMCCLVII", - "enchantment.level.4258": "MMMMCCLVIII", - "enchantment.level.4259": "MMMMCCLIX", - "enchantment.level.4260": "MMMMCCLX", - "enchantment.level.4261": "MMMMCCLXI", - "enchantment.level.4262": "MMMMCCLXII", - "enchantment.level.4263": "MMMMCCLXIII", - "enchantment.level.4264": "MMMMCCLXIV", - "enchantment.level.4265": "MMMMCCLXV", - "enchantment.level.4266": "MMMMCCLXVI", - "enchantment.level.4267": "MMMMCCLXVII", - "enchantment.level.4268": "MMMMCCLXVIII", - "enchantment.level.4269": "MMMMCCLXIX", - "enchantment.level.4270": "MMMMCCLXX", - "enchantment.level.4271": "MMMMCCLXXI", - "enchantment.level.4272": "MMMMCCLXXII", - "enchantment.level.4273": "MMMMCCLXXIII", - "enchantment.level.4274": "MMMMCCLXXIV", - "enchantment.level.4275": "MMMMCCLXXV", - "enchantment.level.4276": "MMMMCCLXXVI", - "enchantment.level.4277": "MMMMCCLXXVII", - "enchantment.level.4278": "MMMMCCLXXVIII", - "enchantment.level.4279": "MMMMCCLXXIX", - "enchantment.level.4280": "MMMMCCLXXX", - "enchantment.level.4281": "MMMMCCLXXXI", - "enchantment.level.4282": "MMMMCCLXXXII", - "enchantment.level.4283": "MMMMCCLXXXIII", - "enchantment.level.4284": "MMMMCCLXXXIV", - "enchantment.level.4285": "MMMMCCLXXXV", - "enchantment.level.4286": "MMMMCCLXXXVI", - "enchantment.level.4287": "MMMMCCLXXXVII", - "enchantment.level.4288": "MMMMCCLXXXVIII", - "enchantment.level.4289": "MMMMCCLXXXIX", - "enchantment.level.4290": "MMMMCCXC", - "enchantment.level.4291": "MMMMCCXCI", - "enchantment.level.4292": "MMMMCCXCII", - "enchantment.level.4293": "MMMMCCXCIII", - "enchantment.level.4294": "MMMMCCXCIV", - "enchantment.level.4295": "MMMMCCXCV", - "enchantment.level.4296": "MMMMCCXCVI", - "enchantment.level.4297": "MMMMCCXCVII", - "enchantment.level.4298": "MMMMCCXCVIII", - "enchantment.level.4299": "MMMMCCXCIX", - "enchantment.level.4300": "MMMMCCC", - "enchantment.level.4301": "MMMMCCCI", - "enchantment.level.4302": "MMMMCCCII", - "enchantment.level.4303": "MMMMCCCIII", - "enchantment.level.4304": "MMMMCCCIV", - "enchantment.level.4305": "MMMMCCCV", - "enchantment.level.4306": "MMMMCCCVI", - "enchantment.level.4307": "MMMMCCCVII", - "enchantment.level.4308": "MMMMCCCVIII", - "enchantment.level.4309": "MMMMCCCIX", - "enchantment.level.4310": "MMMMCCCX", - "enchantment.level.4311": "MMMMCCCXI", - "enchantment.level.4312": "MMMMCCCXII", - "enchantment.level.4313": "MMMMCCCXIII", - "enchantment.level.4314": "MMMMCCCXIV", - "enchantment.level.4315": "MMMMCCCXV", - "enchantment.level.4316": "MMMMCCCXVI", - "enchantment.level.4317": "MMMMCCCXVII", - "enchantment.level.4318": "MMMMCCCXVIII", - "enchantment.level.4319": "MMMMCCCXIX", - "enchantment.level.4320": "MMMMCCCXX", - "enchantment.level.4321": "MMMMCCCXXI", - "enchantment.level.4322": "MMMMCCCXXII", - "enchantment.level.4323": "MMMMCCCXXIII", - "enchantment.level.4324": "MMMMCCCXXIV", - "enchantment.level.4325": "MMMMCCCXXV", - "enchantment.level.4326": "MMMMCCCXXVI", - "enchantment.level.4327": "MMMMCCCXXVII", - "enchantment.level.4328": "MMMMCCCXXVIII", - "enchantment.level.4329": "MMMMCCCXXIX", - "enchantment.level.4330": "MMMMCCCXXX", - "enchantment.level.4331": "MMMMCCCXXXI", - "enchantment.level.4332": "MMMMCCCXXXII", - "enchantment.level.4333": "MMMMCCCXXXIII", - "enchantment.level.4334": "MMMMCCCXXXIV", - "enchantment.level.4335": "MMMMCCCXXXV", - "enchantment.level.4336": "MMMMCCCXXXVI", - "enchantment.level.4337": "MMMMCCCXXXVII", - "enchantment.level.4338": "MMMMCCCXXXVIII", - "enchantment.level.4339": "MMMMCCCXXXIX", - "enchantment.level.4340": "MMMMCCCXL", - "enchantment.level.4341": "MMMMCCCXLI", - "enchantment.level.4342": "MMMMCCCXLII", - "enchantment.level.4343": "MMMMCCCXLIII", - "enchantment.level.4344": "MMMMCCCXLIV", - "enchantment.level.4345": "MMMMCCCXLV", - "enchantment.level.4346": "MMMMCCCXLVI", - "enchantment.level.4347": "MMMMCCCXLVII", - "enchantment.level.4348": "MMMMCCCXLVIII", - "enchantment.level.4349": "MMMMCCCXLIX", - "enchantment.level.4350": "MMMMCCCL", - "enchantment.level.4351": "MMMMCCCLI", - "enchantment.level.4352": "MMMMCCCLII", - "enchantment.level.4353": "MMMMCCCLIII", - "enchantment.level.4354": "MMMMCCCLIV", - "enchantment.level.4355": "MMMMCCCLV", - "enchantment.level.4356": "MMMMCCCLVI", - "enchantment.level.4357": "MMMMCCCLVII", - "enchantment.level.4358": "MMMMCCCLVIII", - "enchantment.level.4359": "MMMMCCCLIX", - "enchantment.level.4360": "MMMMCCCLX", - "enchantment.level.4361": "MMMMCCCLXI", - "enchantment.level.4362": "MMMMCCCLXII", - "enchantment.level.4363": "MMMMCCCLXIII", - "enchantment.level.4364": "MMMMCCCLXIV", - "enchantment.level.4365": "MMMMCCCLXV", - "enchantment.level.4366": "MMMMCCCLXVI", - "enchantment.level.4367": "MMMMCCCLXVII", - "enchantment.level.4368": "MMMMCCCLXVIII", - "enchantment.level.4369": "MMMMCCCLXIX", - "enchantment.level.4370": "MMMMCCCLXX", - "enchantment.level.4371": "MMMMCCCLXXI", - "enchantment.level.4372": "MMMMCCCLXXII", - "enchantment.level.4373": "MMMMCCCLXXIII", - "enchantment.level.4374": "MMMMCCCLXXIV", - "enchantment.level.4375": "MMMMCCCLXXV", - "enchantment.level.4376": "MMMMCCCLXXVI", - "enchantment.level.4377": "MMMMCCCLXXVII", - "enchantment.level.4378": "MMMMCCCLXXVIII", - "enchantment.level.4379": "MMMMCCCLXXIX", - "enchantment.level.4380": "MMMMCCCLXXX", - "enchantment.level.4381": "MMMMCCCLXXXI", - "enchantment.level.4382": "MMMMCCCLXXXII", - "enchantment.level.4383": "MMMMCCCLXXXIII", - "enchantment.level.4384": "MMMMCCCLXXXIV", - "enchantment.level.4385": "MMMMCCCLXXXV", - "enchantment.level.4386": "MMMMCCCLXXXVI", - "enchantment.level.4387": "MMMMCCCLXXXVII", - "enchantment.level.4388": "MMMMCCCLXXXVIII", - "enchantment.level.4389": "MMMMCCCLXXXIX", - "enchantment.level.4390": "MMMMCCCXC", - "enchantment.level.4391": "MMMMCCCXCI", - "enchantment.level.4392": "MMMMCCCXCII", - "enchantment.level.4393": "MMMMCCCXCIII", - "enchantment.level.4394": "MMMMCCCXCIV", - "enchantment.level.4395": "MMMMCCCXCV", - "enchantment.level.4396": "MMMMCCCXCVI", - "enchantment.level.4397": "MMMMCCCXCVII", - "enchantment.level.4398": "MMMMCCCXCVIII", - "enchantment.level.4399": "MMMMCCCXCIX", - "enchantment.level.4400": "MMMMCD", - "enchantment.level.4401": "MMMMCDI", - "enchantment.level.4402": "MMMMCDII", - "enchantment.level.4403": "MMMMCDIII", - "enchantment.level.4404": "MMMMCDIV", - "enchantment.level.4405": "MMMMCDV", - "enchantment.level.4406": "MMMMCDVI", - "enchantment.level.4407": "MMMMCDVII", - "enchantment.level.4408": "MMMMCDVIII", - "enchantment.level.4409": "MMMMCDIX", - "enchantment.level.4410": "MMMMCDX", - "enchantment.level.4411": "MMMMCDXI", - "enchantment.level.4412": "MMMMCDXII", - "enchantment.level.4413": "MMMMCDXIII", - "enchantment.level.4414": "MMMMCDXIV", - "enchantment.level.4415": "MMMMCDXV", - "enchantment.level.4416": "MMMMCDXVI", - "enchantment.level.4417": "MMMMCDXVII", - "enchantment.level.4418": "MMMMCDXVIII", - "enchantment.level.4419": "MMMMCDXIX", - "enchantment.level.4420": "MMMMCDXX", - "enchantment.level.4421": "MMMMCDXXI", - "enchantment.level.4422": "MMMMCDXXII", - "enchantment.level.4423": "MMMMCDXXIII", - "enchantment.level.4424": "MMMMCDXXIV", - "enchantment.level.4425": "MMMMCDXXV", - "enchantment.level.4426": "MMMMCDXXVI", - "enchantment.level.4427": "MMMMCDXXVII", - "enchantment.level.4428": "MMMMCDXXVIII", - "enchantment.level.4429": "MMMMCDXXIX", - "enchantment.level.4430": "MMMMCDXXX", - "enchantment.level.4431": "MMMMCDXXXI", - "enchantment.level.4432": "MMMMCDXXXII", - "enchantment.level.4433": "MMMMCDXXXIII", - "enchantment.level.4434": "MMMMCDXXXIV", - "enchantment.level.4435": "MMMMCDXXXV", - "enchantment.level.4436": "MMMMCDXXXVI", - "enchantment.level.4437": "MMMMCDXXXVII", - "enchantment.level.4438": "MMMMCDXXXVIII", - "enchantment.level.4439": "MMMMCDXXXIX", - "enchantment.level.4440": "MMMMCDXL", - "enchantment.level.4441": "MMMMCDXLI", - "enchantment.level.4442": "MMMMCDXLII", - "enchantment.level.4443": "MMMMCDXLIII", - "enchantment.level.4444": "MMMMCDXLIV", - "enchantment.level.4445": "MMMMCDXLV", - "enchantment.level.4446": "MMMMCDXLVI", - "enchantment.level.4447": "MMMMCDXLVII", - "enchantment.level.4448": "MMMMCDXLVIII", - "enchantment.level.4449": "MMMMCDXLIX", - "enchantment.level.4450": "MMMMCDL", - "enchantment.level.4451": "MMMMCDLI", - "enchantment.level.4452": "MMMMCDLII", - "enchantment.level.4453": "MMMMCDLIII", - "enchantment.level.4454": "MMMMCDLIV", - "enchantment.level.4455": "MMMMCDLV", - "enchantment.level.4456": "MMMMCDLVI", - "enchantment.level.4457": "MMMMCDLVII", - "enchantment.level.4458": "MMMMCDLVIII", - "enchantment.level.4459": "MMMMCDLIX", - "enchantment.level.4460": "MMMMCDLX", - "enchantment.level.4461": "MMMMCDLXI", - "enchantment.level.4462": "MMMMCDLXII", - "enchantment.level.4463": "MMMMCDLXIII", - "enchantment.level.4464": "MMMMCDLXIV", - "enchantment.level.4465": "MMMMCDLXV", - "enchantment.level.4466": "MMMMCDLXVI", - "enchantment.level.4467": "MMMMCDLXVII", - "enchantment.level.4468": "MMMMCDLXVIII", - "enchantment.level.4469": "MMMMCDLXIX", - "enchantment.level.4470": "MMMMCDLXX", - "enchantment.level.4471": "MMMMCDLXXI", - "enchantment.level.4472": "MMMMCDLXXII", - "enchantment.level.4473": "MMMMCDLXXIII", - "enchantment.level.4474": "MMMMCDLXXIV", - "enchantment.level.4475": "MMMMCDLXXV", - "enchantment.level.4476": "MMMMCDLXXVI", - "enchantment.level.4477": "MMMMCDLXXVII", - "enchantment.level.4478": "MMMMCDLXXVIII", - "enchantment.level.4479": "MMMMCDLXXIX", - "enchantment.level.4480": "MMMMCDLXXX", - "enchantment.level.4481": "MMMMCDLXXXI", - "enchantment.level.4482": "MMMMCDLXXXII", - "enchantment.level.4483": "MMMMCDLXXXIII", - "enchantment.level.4484": "MMMMCDLXXXIV", - "enchantment.level.4485": "MMMMCDLXXXV", - "enchantment.level.4486": "MMMMCDLXXXVI", - "enchantment.level.4487": "MMMMCDLXXXVII", - "enchantment.level.4488": "MMMMCDLXXXVIII", - "enchantment.level.4489": "MMMMCDLXXXIX", - "enchantment.level.4490": "MMMMCDXC", - "enchantment.level.4491": "MMMMCDXCI", - "enchantment.level.4492": "MMMMCDXCII", - "enchantment.level.4493": "MMMMCDXCIII", - "enchantment.level.4494": "MMMMCDXCIV", - "enchantment.level.4495": "MMMMCDXCV", - "enchantment.level.4496": "MMMMCDXCVI", - "enchantment.level.4497": "MMMMCDXCVII", - "enchantment.level.4498": "MMMMCDXCVIII", - "enchantment.level.4499": "MMMMCDXCIX", - "enchantment.level.4500": "MMMMD", - "enchantment.level.4501": "MMMMDI", - "enchantment.level.4502": "MMMMDII", - "enchantment.level.4503": "MMMMDIII", - "enchantment.level.4504": "MMMMDIV", - "enchantment.level.4505": "MMMMDV", - "enchantment.level.4506": "MMMMDVI", - "enchantment.level.4507": "MMMMDVII", - "enchantment.level.4508": "MMMMDVIII", - "enchantment.level.4509": "MMMMDIX", - "enchantment.level.4510": "MMMMDX", - "enchantment.level.4511": "MMMMDXI", - "enchantment.level.4512": "MMMMDXII", - "enchantment.level.4513": "MMMMDXIII", - "enchantment.level.4514": "MMMMDXIV", - "enchantment.level.4515": "MMMMDXV", - "enchantment.level.4516": "MMMMDXVI", - "enchantment.level.4517": "MMMMDXVII", - "enchantment.level.4518": "MMMMDXVIII", - "enchantment.level.4519": "MMMMDXIX", - "enchantment.level.4520": "MMMMDXX", - "enchantment.level.4521": "MMMMDXXI", - "enchantment.level.4522": "MMMMDXXII", - "enchantment.level.4523": "MMMMDXXIII", - "enchantment.level.4524": "MMMMDXXIV", - "enchantment.level.4525": "MMMMDXXV", - "enchantment.level.4526": "MMMMDXXVI", - "enchantment.level.4527": "MMMMDXXVII", - "enchantment.level.4528": "MMMMDXXVIII", - "enchantment.level.4529": "MMMMDXXIX", - "enchantment.level.4530": "MMMMDXXX", - "enchantment.level.4531": "MMMMDXXXI", - "enchantment.level.4532": "MMMMDXXXII", - "enchantment.level.4533": "MMMMDXXXIII", - "enchantment.level.4534": "MMMMDXXXIV", - "enchantment.level.4535": "MMMMDXXXV", - "enchantment.level.4536": "MMMMDXXXVI", - "enchantment.level.4537": "MMMMDXXXVII", - "enchantment.level.4538": "MMMMDXXXVIII", - "enchantment.level.4539": "MMMMDXXXIX", - "enchantment.level.4540": "MMMMDXL", - "enchantment.level.4541": "MMMMDXLI", - "enchantment.level.4542": "MMMMDXLII", - "enchantment.level.4543": "MMMMDXLIII", - "enchantment.level.4544": "MMMMDXLIV", - "enchantment.level.4545": "MMMMDXLV", - "enchantment.level.4546": "MMMMDXLVI", - "enchantment.level.4547": "MMMMDXLVII", - "enchantment.level.4548": "MMMMDXLVIII", - "enchantment.level.4549": "MMMMDXLIX", - "enchantment.level.4550": "MMMMDL", - "enchantment.level.4551": "MMMMDLI", - "enchantment.level.4552": "MMMMDLII", - "enchantment.level.4553": "MMMMDLIII", - "enchantment.level.4554": "MMMMDLIV", - "enchantment.level.4555": "MMMMDLV", - "enchantment.level.4556": "MMMMDLVI", - "enchantment.level.4557": "MMMMDLVII", - "enchantment.level.4558": "MMMMDLVIII", - "enchantment.level.4559": "MMMMDLIX", - "enchantment.level.4560": "MMMMDLX", - "enchantment.level.4561": "MMMMDLXI", - "enchantment.level.4562": "MMMMDLXII", - "enchantment.level.4563": "MMMMDLXIII", - "enchantment.level.4564": "MMMMDLXIV", - "enchantment.level.4565": "MMMMDLXV", - "enchantment.level.4566": "MMMMDLXVI", - "enchantment.level.4567": "MMMMDLXVII", - "enchantment.level.4568": "MMMMDLXVIII", - "enchantment.level.4569": "MMMMDLXIX", - "enchantment.level.4570": "MMMMDLXX", - "enchantment.level.4571": "MMMMDLXXI", - "enchantment.level.4572": "MMMMDLXXII", - "enchantment.level.4573": "MMMMDLXXIII", - "enchantment.level.4574": "MMMMDLXXIV", - "enchantment.level.4575": "MMMMDLXXV", - "enchantment.level.4576": "MMMMDLXXVI", - "enchantment.level.4577": "MMMMDLXXVII", - "enchantment.level.4578": "MMMMDLXXVIII", - "enchantment.level.4579": "MMMMDLXXIX", - "enchantment.level.4580": "MMMMDLXXX", - "enchantment.level.4581": "MMMMDLXXXI", - "enchantment.level.4582": "MMMMDLXXXII", - "enchantment.level.4583": "MMMMDLXXXIII", - "enchantment.level.4584": "MMMMDLXXXIV", - "enchantment.level.4585": "MMMMDLXXXV", - "enchantment.level.4586": "MMMMDLXXXVI", - "enchantment.level.4587": "MMMMDLXXXVII", - "enchantment.level.4588": "MMMMDLXXXVIII", - "enchantment.level.4589": "MMMMDLXXXIX", - "enchantment.level.4590": "MMMMDXC", - "enchantment.level.4591": "MMMMDXCI", - "enchantment.level.4592": "MMMMDXCII", - "enchantment.level.4593": "MMMMDXCIII", - "enchantment.level.4594": "MMMMDXCIV", - "enchantment.level.4595": "MMMMDXCV", - "enchantment.level.4596": "MMMMDXCVI", - "enchantment.level.4597": "MMMMDXCVII", - "enchantment.level.4598": "MMMMDXCVIII", - "enchantment.level.4599": "MMMMDXCIX", - "enchantment.level.4600": "MMMMDC", - "enchantment.level.4601": "MMMMDCI", - "enchantment.level.4602": "MMMMDCII", - "enchantment.level.4603": "MMMMDCIII", - "enchantment.level.4604": "MMMMDCIV", - "enchantment.level.4605": "MMMMDCV", - "enchantment.level.4606": "MMMMDCVI", - "enchantment.level.4607": "MMMMDCVII", - "enchantment.level.4608": "MMMMDCVIII", - "enchantment.level.4609": "MMMMDCIX", - "enchantment.level.4610": "MMMMDCX", - "enchantment.level.4611": "MMMMDCXI", - "enchantment.level.4612": "MMMMDCXII", - "enchantment.level.4613": "MMMMDCXIII", - "enchantment.level.4614": "MMMMDCXIV", - "enchantment.level.4615": "MMMMDCXV", - "enchantment.level.4616": "MMMMDCXVI", - "enchantment.level.4617": "MMMMDCXVII", - "enchantment.level.4618": "MMMMDCXVIII", - "enchantment.level.4619": "MMMMDCXIX", - "enchantment.level.4620": "MMMMDCXX", - "enchantment.level.4621": "MMMMDCXXI", - "enchantment.level.4622": "MMMMDCXXII", - "enchantment.level.4623": "MMMMDCXXIII", - "enchantment.level.4624": "MMMMDCXXIV", - "enchantment.level.4625": "MMMMDCXXV", - "enchantment.level.4626": "MMMMDCXXVI", - "enchantment.level.4627": "MMMMDCXXVII", - "enchantment.level.4628": "MMMMDCXXVIII", - "enchantment.level.4629": "MMMMDCXXIX", - "enchantment.level.4630": "MMMMDCXXX", - "enchantment.level.4631": "MMMMDCXXXI", - "enchantment.level.4632": "MMMMDCXXXII", - "enchantment.level.4633": "MMMMDCXXXIII", - "enchantment.level.4634": "MMMMDCXXXIV", - "enchantment.level.4635": "MMMMDCXXXV", - "enchantment.level.4636": "MMMMDCXXXVI", - "enchantment.level.4637": "MMMMDCXXXVII", - "enchantment.level.4638": "MMMMDCXXXVIII", - "enchantment.level.4639": "MMMMDCXXXIX", - "enchantment.level.4640": "MMMMDCXL", - "enchantment.level.4641": "MMMMDCXLI", - "enchantment.level.4642": "MMMMDCXLII", - "enchantment.level.4643": "MMMMDCXLIII", - "enchantment.level.4644": "MMMMDCXLIV", - "enchantment.level.4645": "MMMMDCXLV", - "enchantment.level.4646": "MMMMDCXLVI", - "enchantment.level.4647": "MMMMDCXLVII", - "enchantment.level.4648": "MMMMDCXLVIII", - "enchantment.level.4649": "MMMMDCXLIX", - "enchantment.level.4650": "MMMMDCL", - "enchantment.level.4651": "MMMMDCLI", - "enchantment.level.4652": "MMMMDCLII", - "enchantment.level.4653": "MMMMDCLIII", - "enchantment.level.4654": "MMMMDCLIV", - "enchantment.level.4655": "MMMMDCLV", - "enchantment.level.4656": "MMMMDCLVI", - "enchantment.level.4657": "MMMMDCLVII", - "enchantment.level.4658": "MMMMDCLVIII", - "enchantment.level.4659": "MMMMDCLIX", - "enchantment.level.4660": "MMMMDCLX", - "enchantment.level.4661": "MMMMDCLXI", - "enchantment.level.4662": "MMMMDCLXII", - "enchantment.level.4663": "MMMMDCLXIII", - "enchantment.level.4664": "MMMMDCLXIV", - "enchantment.level.4665": "MMMMDCLXV", - "enchantment.level.4666": "MMMMDCLXVI", - "enchantment.level.4667": "MMMMDCLXVII", - "enchantment.level.4668": "MMMMDCLXVIII", - "enchantment.level.4669": "MMMMDCLXIX", - "enchantment.level.4670": "MMMMDCLXX", - "enchantment.level.4671": "MMMMDCLXXI", - "enchantment.level.4672": "MMMMDCLXXII", - "enchantment.level.4673": "MMMMDCLXXIII", - "enchantment.level.4674": "MMMMDCLXXIV", - "enchantment.level.4675": "MMMMDCLXXV", - "enchantment.level.4676": "MMMMDCLXXVI", - "enchantment.level.4677": "MMMMDCLXXVII", - "enchantment.level.4678": "MMMMDCLXXVIII", - "enchantment.level.4679": "MMMMDCLXXIX", - "enchantment.level.4680": "MMMMDCLXXX", - "enchantment.level.4681": "MMMMDCLXXXI", - "enchantment.level.4682": "MMMMDCLXXXII", - "enchantment.level.4683": "MMMMDCLXXXIII", - "enchantment.level.4684": "MMMMDCLXXXIV", - "enchantment.level.4685": "MMMMDCLXXXV", - "enchantment.level.4686": "MMMMDCLXXXVI", - "enchantment.level.4687": "MMMMDCLXXXVII", - "enchantment.level.4688": "MMMMDCLXXXVIII", - "enchantment.level.4689": "MMMMDCLXXXIX", - "enchantment.level.4690": "MMMMDCXC", - "enchantment.level.4691": "MMMMDCXCI", - "enchantment.level.4692": "MMMMDCXCII", - "enchantment.level.4693": "MMMMDCXCIII", - "enchantment.level.4694": "MMMMDCXCIV", - "enchantment.level.4695": "MMMMDCXCV", - "enchantment.level.4696": "MMMMDCXCVI", - "enchantment.level.4697": "MMMMDCXCVII", - "enchantment.level.4698": "MMMMDCXCVIII", - "enchantment.level.4699": "MMMMDCXCIX", - "enchantment.level.4700": "MMMMDCC", - "enchantment.level.4701": "MMMMDCCI", - "enchantment.level.4702": "MMMMDCCII", - "enchantment.level.4703": "MMMMDCCIII", - "enchantment.level.4704": "MMMMDCCIV", - "enchantment.level.4705": "MMMMDCCV", - "enchantment.level.4706": "MMMMDCCVI", - "enchantment.level.4707": "MMMMDCCVII", - "enchantment.level.4708": "MMMMDCCVIII", - "enchantment.level.4709": "MMMMDCCIX", - "enchantment.level.4710": "MMMMDCCX", - "enchantment.level.4711": "MMMMDCCXI", - "enchantment.level.4712": "MMMMDCCXII", - "enchantment.level.4713": "MMMMDCCXIII", - "enchantment.level.4714": "MMMMDCCXIV", - "enchantment.level.4715": "MMMMDCCXV", - "enchantment.level.4716": "MMMMDCCXVI", - "enchantment.level.4717": "MMMMDCCXVII", - "enchantment.level.4718": "MMMMDCCXVIII", - "enchantment.level.4719": "MMMMDCCXIX", - "enchantment.level.4720": "MMMMDCCXX", - "enchantment.level.4721": "MMMMDCCXXI", - "enchantment.level.4722": "MMMMDCCXXII", - "enchantment.level.4723": "MMMMDCCXXIII", - "enchantment.level.4724": "MMMMDCCXXIV", - "enchantment.level.4725": "MMMMDCCXXV", - "enchantment.level.4726": "MMMMDCCXXVI", - "enchantment.level.4727": "MMMMDCCXXVII", - "enchantment.level.4728": "MMMMDCCXXVIII", - "enchantment.level.4729": "MMMMDCCXXIX", - "enchantment.level.4730": "MMMMDCCXXX", - "enchantment.level.4731": "MMMMDCCXXXI", - "enchantment.level.4732": "MMMMDCCXXXII", - "enchantment.level.4733": "MMMMDCCXXXIII", - "enchantment.level.4734": "MMMMDCCXXXIV", - "enchantment.level.4735": "MMMMDCCXXXV", - "enchantment.level.4736": "MMMMDCCXXXVI", - "enchantment.level.4737": "MMMMDCCXXXVII", - "enchantment.level.4738": "MMMMDCCXXXVIII", - "enchantment.level.4739": "MMMMDCCXXXIX", - "enchantment.level.4740": "MMMMDCCXL", - "enchantment.level.4741": "MMMMDCCXLI", - "enchantment.level.4742": "MMMMDCCXLII", - "enchantment.level.4743": "MMMMDCCXLIII", - "enchantment.level.4744": "MMMMDCCXLIV", - "enchantment.level.4745": "MMMMDCCXLV", - "enchantment.level.4746": "MMMMDCCXLVI", - "enchantment.level.4747": "MMMMDCCXLVII", - "enchantment.level.4748": "MMMMDCCXLVIII", - "enchantment.level.4749": "MMMMDCCXLIX", - "enchantment.level.4750": "MMMMDCCL", - "enchantment.level.4751": "MMMMDCCLI", - "enchantment.level.4752": "MMMMDCCLII", - "enchantment.level.4753": "MMMMDCCLIII", - "enchantment.level.4754": "MMMMDCCLIV", - "enchantment.level.4755": "MMMMDCCLV", - "enchantment.level.4756": "MMMMDCCLVI", - "enchantment.level.4757": "MMMMDCCLVII", - "enchantment.level.4758": "MMMMDCCLVIII", - "enchantment.level.4759": "MMMMDCCLIX", - "enchantment.level.4760": "MMMMDCCLX", - "enchantment.level.4761": "MMMMDCCLXI", - "enchantment.level.4762": "MMMMDCCLXII", - "enchantment.level.4763": "MMMMDCCLXIII", - "enchantment.level.4764": "MMMMDCCLXIV", - "enchantment.level.4765": "MMMMDCCLXV", - "enchantment.level.4766": "MMMMDCCLXVI", - "enchantment.level.4767": "MMMMDCCLXVII", - "enchantment.level.4768": "MMMMDCCLXVIII", - "enchantment.level.4769": "MMMMDCCLXIX", - "enchantment.level.4770": "MMMMDCCLXX", - "enchantment.level.4771": "MMMMDCCLXXI", - "enchantment.level.4772": "MMMMDCCLXXII", - "enchantment.level.4773": "MMMMDCCLXXIII", - "enchantment.level.4774": "MMMMDCCLXXIV", - "enchantment.level.4775": "MMMMDCCLXXV", - "enchantment.level.4776": "MMMMDCCLXXVI", - "enchantment.level.4777": "MMMMDCCLXXVII", - "enchantment.level.4778": "MMMMDCCLXXVIII", - "enchantment.level.4779": "MMMMDCCLXXIX", - "enchantment.level.4780": "MMMMDCCLXXX", - "enchantment.level.4781": "MMMMDCCLXXXI", - "enchantment.level.4782": "MMMMDCCLXXXII", - "enchantment.level.4783": "MMMMDCCLXXXIII", - "enchantment.level.4784": "MMMMDCCLXXXIV", - "enchantment.level.4785": "MMMMDCCLXXXV", - "enchantment.level.4786": "MMMMDCCLXXXVI", - "enchantment.level.4787": "MMMMDCCLXXXVII", - "enchantment.level.4788": "MMMMDCCLXXXVIII", - "enchantment.level.4789": "MMMMDCCLXXXIX", - "enchantment.level.4790": "MMMMDCCXC", - "enchantment.level.4791": "MMMMDCCXCI", - "enchantment.level.4792": "MMMMDCCXCII", - "enchantment.level.4793": "MMMMDCCXCIII", - "enchantment.level.4794": "MMMMDCCXCIV", - "enchantment.level.4795": "MMMMDCCXCV", - "enchantment.level.4796": "MMMMDCCXCVI", - "enchantment.level.4797": "MMMMDCCXCVII", - "enchantment.level.4798": "MMMMDCCXCVIII", - "enchantment.level.4799": "MMMMDCCXCIX", - "enchantment.level.4800": "MMMMDCCC", - "enchantment.level.4801": "MMMMDCCCI", - "enchantment.level.4802": "MMMMDCCCII", - "enchantment.level.4803": "MMMMDCCCIII", - "enchantment.level.4804": "MMMMDCCCIV", - "enchantment.level.4805": "MMMMDCCCV", - "enchantment.level.4806": "MMMMDCCCVI", - "enchantment.level.4807": "MMMMDCCCVII", - "enchantment.level.4808": "MMMMDCCCVIII", - "enchantment.level.4809": "MMMMDCCCIX", - "enchantment.level.4810": "MMMMDCCCX", - "enchantment.level.4811": "MMMMDCCCXI", - "enchantment.level.4812": "MMMMDCCCXII", - "enchantment.level.4813": "MMMMDCCCXIII", - "enchantment.level.4814": "MMMMDCCCXIV", - "enchantment.level.4815": "MMMMDCCCXV", - "enchantment.level.4816": "MMMMDCCCXVI", - "enchantment.level.4817": "MMMMDCCCXVII", - "enchantment.level.4818": "MMMMDCCCXVIII", - "enchantment.level.4819": "MMMMDCCCXIX", - "enchantment.level.4820": "MMMMDCCCXX", - "enchantment.level.4821": "MMMMDCCCXXI", - "enchantment.level.4822": "MMMMDCCCXXII", - "enchantment.level.4823": "MMMMDCCCXXIII", - "enchantment.level.4824": "MMMMDCCCXXIV", - "enchantment.level.4825": "MMMMDCCCXXV", - "enchantment.level.4826": "MMMMDCCCXXVI", - "enchantment.level.4827": "MMMMDCCCXXVII", - "enchantment.level.4828": "MMMMDCCCXXVIII", - "enchantment.level.4829": "MMMMDCCCXXIX", - "enchantment.level.4830": "MMMMDCCCXXX", - "enchantment.level.4831": "MMMMDCCCXXXI", - "enchantment.level.4832": "MMMMDCCCXXXII", - "enchantment.level.4833": "MMMMDCCCXXXIII", - "enchantment.level.4834": "MMMMDCCCXXXIV", - "enchantment.level.4835": "MMMMDCCCXXXV", - "enchantment.level.4836": "MMMMDCCCXXXVI", - "enchantment.level.4837": "MMMMDCCCXXXVII", - "enchantment.level.4838": "MMMMDCCCXXXVIII", - "enchantment.level.4839": "MMMMDCCCXXXIX", - "enchantment.level.4840": "MMMMDCCCXL", - "enchantment.level.4841": "MMMMDCCCXLI", - "enchantment.level.4842": "MMMMDCCCXLII", - "enchantment.level.4843": "MMMMDCCCXLIII", - "enchantment.level.4844": "MMMMDCCCXLIV", - "enchantment.level.4845": "MMMMDCCCXLV", - "enchantment.level.4846": "MMMMDCCCXLVI", - "enchantment.level.4847": "MMMMDCCCXLVII", - "enchantment.level.4848": "MMMMDCCCXLVIII", - "enchantment.level.4849": "MMMMDCCCXLIX", - "enchantment.level.4850": "MMMMDCCCL", - "enchantment.level.4851": "MMMMDCCCLI", - "enchantment.level.4852": "MMMMDCCCLII", - "enchantment.level.4853": "MMMMDCCCLIII", - "enchantment.level.4854": "MMMMDCCCLIV", - "enchantment.level.4855": "MMMMDCCCLV", - "enchantment.level.4856": "MMMMDCCCLVI", - "enchantment.level.4857": "MMMMDCCCLVII", - "enchantment.level.4858": "MMMMDCCCLVIII", - "enchantment.level.4859": "MMMMDCCCLIX", - "enchantment.level.4860": "MMMMDCCCLX", - "enchantment.level.4861": "MMMMDCCCLXI", - "enchantment.level.4862": "MMMMDCCCLXII", - "enchantment.level.4863": "MMMMDCCCLXIII", - "enchantment.level.4864": "MMMMDCCCLXIV", - "enchantment.level.4865": "MMMMDCCCLXV", - "enchantment.level.4866": "MMMMDCCCLXVI", - "enchantment.level.4867": "MMMMDCCCLXVII", - "enchantment.level.4868": "MMMMDCCCLXVIII", - "enchantment.level.4869": "MMMMDCCCLXIX", - "enchantment.level.4870": "MMMMDCCCLXX", - "enchantment.level.4871": "MMMMDCCCLXXI", - "enchantment.level.4872": "MMMMDCCCLXXII", - "enchantment.level.4873": "MMMMDCCCLXXIII", - "enchantment.level.4874": "MMMMDCCCLXXIV", - "enchantment.level.4875": "MMMMDCCCLXXV", - "enchantment.level.4876": "MMMMDCCCLXXVI", - "enchantment.level.4877": "MMMMDCCCLXXVII", - "enchantment.level.4878": "MMMMDCCCLXXVIII", - "enchantment.level.4879": "MMMMDCCCLXXIX", - "enchantment.level.4880": "MMMMDCCCLXXX", - "enchantment.level.4881": "MMMMDCCCLXXXI", - "enchantment.level.4882": "MMMMDCCCLXXXII", - "enchantment.level.4883": "MMMMDCCCLXXXIII", - "enchantment.level.4884": "MMMMDCCCLXXXIV", - "enchantment.level.4885": "MMMMDCCCLXXXV", - "enchantment.level.4886": "MMMMDCCCLXXXVI", - "enchantment.level.4887": "MMMMDCCCLXXXVII", - "enchantment.level.4888": "MMMMDCCCLXXXVIII", - "enchantment.level.4889": "MMMMDCCCLXXXIX", - "enchantment.level.4890": "MMMMDCCCXC", - "enchantment.level.4891": "MMMMDCCCXCI", - "enchantment.level.4892": "MMMMDCCCXCII", - "enchantment.level.4893": "MMMMDCCCXCIII", - "enchantment.level.4894": "MMMMDCCCXCIV", - "enchantment.level.4895": "MMMMDCCCXCV", - "enchantment.level.4896": "MMMMDCCCXCVI", - "enchantment.level.4897": "MMMMDCCCXCVII", - "enchantment.level.4898": "MMMMDCCCXCVIII", - "enchantment.level.4899": "MMMMDCCCXCIX", - "enchantment.level.4900": "MMMMCM", - "enchantment.level.4901": "MMMMCMI", - "enchantment.level.4902": "MMMMCMII", - "enchantment.level.4903": "MMMMCMIII", - "enchantment.level.4904": "MMMMCMIV", - "enchantment.level.4905": "MMMMCMV", - "enchantment.level.4906": "MMMMCMVI", - "enchantment.level.4907": "MMMMCMVII", - "enchantment.level.4908": "MMMMCMVIII", - "enchantment.level.4909": "MMMMCMIX", - "enchantment.level.4910": "MMMMCMX", - "enchantment.level.4911": "MMMMCMXI", - "enchantment.level.4912": "MMMMCMXII", - "enchantment.level.4913": "MMMMCMXIII", - "enchantment.level.4914": "MMMMCMXIV", - "enchantment.level.4915": "MMMMCMXV", - "enchantment.level.4916": "MMMMCMXVI", - "enchantment.level.4917": "MMMMCMXVII", - "enchantment.level.4918": "MMMMCMXVIII", - "enchantment.level.4919": "MMMMCMXIX", - "enchantment.level.4920": "MMMMCMXX", - "enchantment.level.4921": "MMMMCMXXI", - "enchantment.level.4922": "MMMMCMXXII", - "enchantment.level.4923": "MMMMCMXXIII", - "enchantment.level.4924": "MMMMCMXXIV", - "enchantment.level.4925": "MMMMCMXXV", - "enchantment.level.4926": "MMMMCMXXVI", - "enchantment.level.4927": "MMMMCMXXVII", - "enchantment.level.4928": "MMMMCMXXVIII", - "enchantment.level.4929": "MMMMCMXXIX", - "enchantment.level.4930": "MMMMCMXXX", - "enchantment.level.4931": "MMMMCMXXXI", - "enchantment.level.4932": "MMMMCMXXXII", - "enchantment.level.4933": "MMMMCMXXXIII", - "enchantment.level.4934": "MMMMCMXXXIV", - "enchantment.level.4935": "MMMMCMXXXV", - "enchantment.level.4936": "MMMMCMXXXVI", - "enchantment.level.4937": "MMMMCMXXXVII", - "enchantment.level.4938": "MMMMCMXXXVIII", - "enchantment.level.4939": "MMMMCMXXXIX", - "enchantment.level.4940": "MMMMCMXL", - "enchantment.level.4941": "MMMMCMXLI", - "enchantment.level.4942": "MMMMCMXLII", - "enchantment.level.4943": "MMMMCMXLIII", - "enchantment.level.4944": "MMMMCMXLIV", - "enchantment.level.4945": "MMMMCMXLV", - "enchantment.level.4946": "MMMMCMXLVI", - "enchantment.level.4947": "MMMMCMXLVII", - "enchantment.level.4948": "MMMMCMXLVIII", - "enchantment.level.4949": "MMMMCMXLIX", - "enchantment.level.4950": "MMMMCML", - "enchantment.level.4951": "MMMMCMLI", - "enchantment.level.4952": "MMMMCMLII", - "enchantment.level.4953": "MMMMCMLIII", - "enchantment.level.4954": "MMMMCMLIV", - "enchantment.level.4955": "MMMMCMLV", - "enchantment.level.4956": "MMMMCMLVI", - "enchantment.level.4957": "MMMMCMLVII", - "enchantment.level.4958": "MMMMCMLVIII", - "enchantment.level.4959": "MMMMCMLIX", - "enchantment.level.4960": "MMMMCMLX", - "enchantment.level.4961": "MMMMCMLXI", - "enchantment.level.4962": "MMMMCMLXII", - "enchantment.level.4963": "MMMMCMLXIII", - "enchantment.level.4964": "MMMMCMLXIV", - "enchantment.level.4965": "MMMMCMLXV", - "enchantment.level.4966": "MMMMCMLXVI", - "enchantment.level.4967": "MMMMCMLXVII", - "enchantment.level.4968": "MMMMCMLXVIII", - "enchantment.level.4969": "MMMMCMLXIX", - "enchantment.level.4970": "MMMMCMLXX", - "enchantment.level.4971": "MMMMCMLXXI", - "enchantment.level.4972": "MMMMCMLXXII", - "enchantment.level.4973": "MMMMCMLXXIII", - "enchantment.level.4974": "MMMMCMLXXIV", - "enchantment.level.4975": "MMMMCMLXXV", - "enchantment.level.4976": "MMMMCMLXXVI", - "enchantment.level.4977": "MMMMCMLXXVII", - "enchantment.level.4978": "MMMMCMLXXVIII", - "enchantment.level.4979": "MMMMCMLXXIX", - "enchantment.level.4980": "MMMMCMLXXX", - "enchantment.level.4981": "MMMMCMLXXXI", - "enchantment.level.4982": "MMMMCMLXXXII", - "enchantment.level.4983": "MMMMCMLXXXIII", - "enchantment.level.4984": "MMMMCMLXXXIV", - "enchantment.level.4985": "MMMMCMLXXXV", - "enchantment.level.4986": "MMMMCMLXXXVI", - "enchantment.level.4987": "MMMMCMLXXXVII", - "enchantment.level.4988": "MMMMCMLXXXVIII", - "enchantment.level.4989": "MMMMCMLXXXIX", - "enchantment.level.4990": "MMMMCMXC", - "enchantment.level.4991": "MMMMCMXCI", - "enchantment.level.4992": "MMMMCMXCII", - "enchantment.level.4993": "MMMMCMXCIII", - "enchantment.level.4994": "MMMMCMXCIV", - "enchantment.level.4995": "MMMMCMXCV", - "enchantment.level.4996": "MMMMCMXCVI", - "enchantment.level.4997": "MMMMCMXCVII", - "enchantment.level.4998": "MMMMCMXCVIII", - "enchantment.level.4999": "MMMMCMXCIX" -} diff --git a/modules/lang_enchantment_level_extend/module_manifest.json b/modules/lang_enchantment_level_extend/module_manifest.json deleted file mode 100644 index b60510115..000000000 --- a/modules/lang_enchantment_level_extend/module_manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "lang_enchantment_level_extend", - "type": "resource", - "description": "附魔等级扩展", - "author": [ - "DoroWolf" - ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file diff --git a/modules/lang_extra_strings/add.json b/modules/lang_extra_strings/add.json index 8540db18f..18679fe76 100644 --- a/modules/lang_extra_strings/add.json +++ b/modules/lang_extra_strings/add.json @@ -1,11 +1,11 @@ { - "filled_map.bastion_remnant": "堡垒遗迹探索者地图", - "filled_map.nether_fossil": "尼德兰化石探索者地图", - "filled_map.pillager_outpost": "掠夺者前哨站地图", - "filled_map.ruined_portal": "废弃传送门探索者地图", - "filled_map.village": "奸商聚集地探索者地图", + "filled_map.bastion_remnant": "堡垒遗迹探索映射", + "filled_map.nether_fossil": "尼德兰化石探索映射", + "filled_map.pillager_outpost": "掠夺者前哨站映射", + "filled_map.ruined_portal": "废弃门户探索映射", + "filled_map.village": "奸商聚集地探索映射", "generator.buffet": "自助餐", "options.entityDistancePercent": "%s%%", "selectWorld.hardcoreMode": "硬核:", "selectWorld.hardcoreMode.info": "世界将在死亡后拜拜了您嘞,删得连你自己是谁都不知道!" -} \ No newline at end of file +} diff --git a/modules/lang_extra_strings/module_manifest.json b/modules/lang_extra_strings/module_manifest.json index 26169596c..602aefa11 100644 --- a/modules/lang_extra_strings/module_manifest.json +++ b/modules/lang_extra_strings/module_manifest.json @@ -2,10 +2,11 @@ "name": "lang_extra_strings", "type": "resource", "description": "提供额外字符串支持", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_grass_path_1.12.2-1.16.5/add.json b/modules/lang_grass_path_1.12.2-1.16.5/add.json index 62ea67d0c..16f4491e4 100644 --- a/modules/lang_grass_path_1.12.2-1.16.5/add.json +++ b/modules/lang_grass_path_1.12.2-1.16.5/add.json @@ -1,3 +1,3 @@ { "block.minecraft.grass_path": "绿茵小道" -} \ No newline at end of file +} diff --git a/modules/lang_grass_path_1.12.2-1.16.5/module_manifest.json b/modules/lang_grass_path_1.12.2-1.16.5/module_manifest.json index 34596c2d7..a59002acd 100644 --- a/modules/lang_grass_path_1.12.2-1.16.5/module_manifest.json +++ b/modules/lang_grass_path_1.12.2-1.16.5/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_grass_path_1.12.2-1.16.5", "type": "resource", "description": "20w45a以前的草径方块", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_grass_path_1.12.2-1.16.5/remove.json b/modules/lang_grass_path_1.12.2-1.16.5/remove.json index b28c14469..9ca2ab92c 100644 --- a/modules/lang_grass_path_1.12.2-1.16.5/remove.json +++ b/modules/lang_grass_path_1.12.2-1.16.5/remove.json @@ -1,3 +1 @@ -[ - "block.minecraft.dirt_path" -] \ No newline at end of file +["block.minecraft.dirt_path"] diff --git a/modules/lang_itemgroup_1.12.2-1.19.2/add.json b/modules/lang_itemgroup_1.12.2-1.19.2/add.json new file mode 100644 index 000000000..dc15d4539 --- /dev/null +++ b/modules/lang_itemgroup_1.12.2-1.19.2/add.json @@ -0,0 +1,10 @@ +{ + "itemGroup.brewing": "炼,就硬炼", + "itemGroup.decorations": "花里胡哨", + "itemGroup.food": "恰饭", + "itemGroup.redstone": "雷石东", + "itemGroup.materials": "材料", + "itemGroup.misc": "乱七八糟的东西", + "itemGroup.tools": "工 具 人", + "itemGroup.transportation": "我 是 火 车 王" +} diff --git a/modules/lang_itemgroup_1.12.2-1.19.2/module_manifest.json b/modules/lang_itemgroup_1.12.2-1.19.2/module_manifest.json new file mode 100644 index 000000000..7efe20406 --- /dev/null +++ b/modules/lang_itemgroup_1.12.2-1.19.2/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_itemgroup_1.12.2-1.19.2", + "type": "resource", + "description": "22w42a以前的创造模式物品栏", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/lang_multiplayer_1.12.2-1.16.3/add.json b/modules/lang_multiplayer_1.12.2-1.16.3/add.json index 9cacebad2..7726cda8a 100644 --- a/modules/lang_multiplayer_1.12.2-1.16.3/add.json +++ b/modules/lang_multiplayer_1.12.2-1.16.3/add.json @@ -3,4 +3,4 @@ "multiplayer.disconnect.outdated_server": "服务器已发霉!我仍在运行%s", "multiplayer.status.client_out_of_date": "客户端已过期!新版本不香吗?!", "multiplayer.status.server_out_of_date": "服务器版本太老了!快催更啊!" -} \ No newline at end of file +} diff --git a/modules/lang_multiplayer_1.12.2-1.16.3/module_manifest.json b/modules/lang_multiplayer_1.12.2-1.16.3/module_manifest.json index 9e309ac20..2baea732d 100644 --- a/modules/lang_multiplayer_1.12.2-1.16.3/module_manifest.json +++ b/modules/lang_multiplayer_1.12.2-1.16.3/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_multiplayer_1.12.2-1.16.3", "type": "resource", "description": "1.16.4-pre1以前不兼容的客户端与服务端信息", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_multiplayer_1.12.2-1.16.3/remove.json b/modules/lang_multiplayer_1.12.2-1.16.3/remove.json index e644b129c..08b70b762 100644 --- a/modules/lang_multiplayer_1.12.2-1.16.3/remove.json +++ b/modules/lang_multiplayer_1.12.2-1.16.3/remove.json @@ -1,4 +1 @@ -[ - "multiplayer.disconnect.incompatible", - "multiplayer.status.incompatible" -] \ No newline at end of file +["multiplayer.disconnect.incompatible", "multiplayer.status.incompatible"] diff --git a/modules/lang_netease/module_manifest.json b/modules/lang_netease/module_manifest.json new file mode 100644 index 000000000..65b51bfd8 --- /dev/null +++ b/modules/lang_netease/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_netease", + "type": "resource", + "description": "网易版专用模块", + "author": ["Dianliang233"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "remove": "remove.json" + } + ] +} diff --git a/modules/lang_netease/remove.json b/modules/lang_netease/remove.json new file mode 100644 index 000000000..8fad566bb --- /dev/null +++ b/modules/lang_netease/remove.json @@ -0,0 +1,4 @@ +[ + "item.cpp.china_flag", + "enchantment.cpp.unbreaking" +] diff --git a/modules/lang_nether_biome_1.12.2-1.15.2/add.json b/modules/lang_nether_biome_1.12.2-1.15.2/add.json index 2d90522af..1d1e48e5a 100644 --- a/modules/lang_nether_biome_1.12.2-1.15.2/add.json +++ b/modules/lang_nether_biome_1.12.2-1.15.2/add.json @@ -1,3 +1,3 @@ { "biome.minecraft.nether": "尼德兰" -} \ No newline at end of file +} diff --git a/modules/lang_nether_biome_1.12.2-1.15.2/module_manifest.json b/modules/lang_nether_biome_1.12.2-1.15.2/module_manifest.json index d128b8be4..ef9daa1a7 100644 --- a/modules/lang_nether_biome_1.12.2-1.15.2/module_manifest.json +++ b/modules/lang_nether_biome_1.12.2-1.15.2/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_nether_biome_1.12.2-1.15.2", "type": "resource", "description": "20w06a以前的下界生物群系", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_nether_biome_1.12.2-1.15.2/remove.json b/modules/lang_nether_biome_1.12.2-1.15.2/remove.json index 71b7fb391..61bf35ef4 100644 --- a/modules/lang_nether_biome_1.12.2-1.15.2/remove.json +++ b/modules/lang_nether_biome_1.12.2-1.15.2/remove.json @@ -1,3 +1 @@ -[ - "biome.minecraft.nether_wastes" -] \ No newline at end of file +["biome.minecraft.nether_wastes"] diff --git a/modules/lang_old_biomes_1.12.2-1.17.1/add.json b/modules/lang_old_biomes_1.12.2-1.17.1/add.json new file mode 100644 index 000000000..ab2e2eff3 --- /dev/null +++ b/modules/lang_old_biomes_1.12.2-1.17.1/add.json @@ -0,0 +1,39 @@ +{ + "biome.minecraft.badlands_plateau": "平顶山高原", + "biome.minecraft.bamboo_jungle_hills": "た↓け↑山丘", + "biome.minecraft.birch_forest_hills": "桦木森林丘陵", + "biome.minecraft.dark_forest_hills": "深色森林丘陵", + "biome.minecraft.desert_hills": "沙子漠丘陵", + "biome.minecraft.desert_lakes": "绿洲", + "biome.minecraft.giant_spruce_taiga_hills": "巨杉针叶林丘陵", + "biome.minecraft.giant_tree_taiga_hills": "巨型针叶林丘陵", + "biome.minecraft.jungle_hills": "雨林丘陵", + "biome.minecraft.modified_badlands_plateau": "风蚀高地", + "biome.minecraft.modified_gravelly_mountains": "石砾山地+++++++", + "biome.minecraft.modified_jungle": "雨林变种", + "biome.minecraft.modified_jungle_edge": "雨林边缘变种", + "biome.minecraft.modified_wooded_badlands_plateau": "茂林平顶山高原", + "biome.minecraft.mountain_edge": "山地边缘", + "biome.minecraft.mushroom_field_shore": "叉剋岛岸", + "biome.minecraft.shattered_savanna_plateau": "破碎的热带高原", + "biome.minecraft.snowy_taiga_hills": "积雪针叶林丘陵", + "biome.minecraft.snowy_taiga_mountains": "积雪针叶林山地", + "biome.minecraft.snowy_mountains": "雪山", + "biome.minecraft.swamp_hills": "泥潭删秋", + "biome.minecraft.taiga_hills": "针叶林丘陵", + "biome.minecraft.taiga_mountains": "针叶林山地", + "biome.minecraft.tall_birch_hills": "高桦木丘陵", + "biome.minecraft.wooded_hills": "繁茂的丘陵", + "biome.minecraft.giant_spruce_taiga": "巨杉针叶林", + "biome.minecraft.giant_tree_taiga": "巨型针叶林", + "biome.minecraft.snowy_tundra": "雪原", + "biome.minecraft.jungle_edge": "雨林边缘", + "biome.minecraft.stone_shore": "石头做的碧池", + "biome.minecraft.wooded_mountains": "繁茂的山地", + "biome.minecraft.mountains": "山地", + "biome.minecraft.gravelly_mountains": "氵少石乐山地", + "biome.minecraft.shattered_savanna": "破碎的热带草原", + "biome.minecraft.wooded_badlands_plateau": "茂林平顶山高原", + "biome.minecraft.tall_birch_forest": "高白桦林", + "biome.minecraft.deep_warm_ocean": "热水深海" +} diff --git a/modules/lang_old_biomes_1.12.2-1.17.1/module_manifest.json b/modules/lang_old_biomes_1.12.2-1.17.1/module_manifest.json new file mode 100644 index 000000000..fedc32046 --- /dev/null +++ b/modules/lang_old_biomes_1.12.2-1.17.1/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "lang_old_biomes_1.12.2-1.17.1", + "type": "resource", + "description": "1.18前的生物群系", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } + ] +} diff --git a/modules/lang_old_biomes_1.12.2-1.17.1/remove.json b/modules/lang_old_biomes_1.12.2-1.17.1/remove.json new file mode 100644 index 000000000..37758d9ad --- /dev/null +++ b/modules/lang_old_biomes_1.12.2-1.17.1/remove.json @@ -0,0 +1,19 @@ +[ + "biome.minecraft.old_growth_birch_forest", + "biome.minecraft.old_growth_pine_taiga", + "biome.minecraft.old_growth_spruce_taiga", + "biome.minecraft.frozen_peaks", + "biome.minecraft.grove", + "biome.minecraft.jagged_peaks", + "biome.minecraft.meadow", + "biome.minecraft.snowy_plains", + "biome.minecraft.snowy_slopes", + "biome.minecraft.sparse_jungle", + "biome.minecraft.stony_peaks", + "biome.minecraft.stony_shore", + "biome.minecraft.windswept_forest", + "biome.minecraft.windswept_gravelly_hills", + "biome.minecraft.windswept_hills", + "biome.minecraft.windswept_savanna", + "biome.minecraft.wooded_badlands" +] diff --git a/modules/lang_old_realms_strings/add.json b/modules/lang_old_realms_strings/add.json new file mode 100644 index 000000000..8748033e6 --- /dev/null +++ b/modules/lang_old_realms_strings/add.json @@ -0,0 +1,14 @@ +{ + "mco.client.outdated.msg.line1": "你的客户端已过时并与Realms不兼容。", + "mco.client.outdated.msg.line2": "请更换至最新版本的Minecraft。", + "mco.client.outdated.title": "客户端已过期!", + "mco.configure.world.off": "关掉", + "mco.configure.world.on": "打开", + "mco.create.world.seed": "世界种子(可选)", + "mco.errorMessage.6005": "世界处于管理员上锁状态", + "mco.selectServer.info": "Realms是什么?", + "mco.selectServer.locked": "锁定Realm", + "mco.trial.title": "创建一个Realm", + "mco.trial.unavailable": "抱歉,目前没有试用期服务!", + "narrator.select.list.position": "第%s项/共%s项" +} diff --git a/modules/lang_old_realms_strings/module_manifest.json b/modules/lang_old_realms_strings/module_manifest.json new file mode 100644 index 000000000..7cfaa7fe5 --- /dev/null +++ b/modules/lang_old_realms_strings/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "lang_old_realms_strings", + "type": "resource", + "description": "旧版本领域的各种字符串", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/realms/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/lang_old_strings/add.json b/modules/lang_old_strings/add.json index 47f82d2e7..2cfce79c4 100644 --- a/modules/lang_old_strings/add.json +++ b/modules/lang_old_strings/add.json @@ -17,9 +17,13 @@ "block.minecraft.leaves": "树叶", "block.minecraft.locked_chest": "锁上的胸部", "block.minecraft.log": "日志", - "block.minecraft.mushroom": "蘑菇", + "block.minecraft.mushroom": "伞伞", "block.minecraft.planks": "木板", - "block.minecraft.sign": "牌子", + "item.minecraft.pottery_shard_archer": "弓兵纹样陶片", + "item.minecraft.pottery_shard_arms_up": "法国纹样陶片", + "item.minecraft.pottery_shard_prize": "奖励纹样陶片", + "item.minecraft.pottery_shard_skull": "骷髅头纹样陶片", + "block.minecraft.sign": "搞事牌", "block.minecraft.stained_glass": "染色玻璃", "block.minecraft.stained_glass_pane": "染色玻璃板", "block.minecraft.stained_terracotta": "染色陶瓦", @@ -32,36 +36,47 @@ "block.minecraft.wood_pressure_plate": "木质阿姨压一压板", "block.minecraft.wood_slab": "木半砖", "block.minecraft.wool": "羊毛", + "chat.preview": "输入点消息,你就能看到发出去的时候是什么样子啦", "commands.datapack.disable.success": "已禁用数据包%s", "commands.datapack.enable.success": "已启用数据包%s", + "commands.debug.reportFailed": "生成调试报告失败", + "commands.debug.reportSaved": "已在%s生成调试报告", + "commands.locatebiome.success": "最近的%s位于%s(%s个方块外)", + "commands.placefeature.failed": "没法放置特性", + "commands.placefeature.invalid": "没有%s这种特性啊!", + "commands.placefeature.success": "把%s放在了%s,%s,%s", + "commands.scoreboard.objectives.add.longName": "记分项名称不能长于%s个字符", + "commands.team.add.longName": "专业团队名称不能长于%s个字符", "createWorld.customize.buffet.generator": "请选择一个生成器类型", "createWorld.customize.buffet.generatortype": "世界生成器:", "createWorld.customize.flat.addLayer": "添加层面", "createWorld.customize.flat.editLayer": "编辑层面", - "death.attack.netherBed.link": "MC经典特性", + "death.attack.netherBed.link": "刻意的游戏设计", "death.attack.netherBed.message": "%1$s被%2$s弄死了", "death.fell.accident.water": "%1$s试图落地水未遂当场逝世,丢人!", - "deathScreen.deleteWorld": "删除世界", - "deathScreen.leaveServer": "退出服务器", + "deathScreen.deleteWorld": "怒删世界", + "deathScreen.leaveServer": "怒退服务器", + "debug.cycle_renderdistance.help": "F3 + F = 在目力程度间循环(按Shift来反向循环)", + "debug.cycle_renderdistance.message": "目力程度:%s", "entity.minecraft.generic": "某物", - "entity.minecraft.mob": "抹布", - "entity.minecraft.monster": "怪兽", + "entity.minecraft.mob": "暴徒", + "entity.minecraft.monster": "贵物", "entity.minecraft.zombie_pigman": "僵尸猪人", - "filled_map.desert_pyramid": "沙子漠神殿探索者地图", - "filled_map.end_city": "末地城探索者地图", - "filled_map.fortress": "尼德兰要塞探索者地图", - "filled_map.igloo": "雪屋探索者地图", - "filled_map.jungle_pyramid": "丛林神庙探索者地图", - "filled_map.mineshaft": "废弃矿井探索者地图", - "filled_map.ocean_ruin": "海底废墟探索者地图", - "filled_map.shipwreck": "沉舟探索者地图", - "filled_map.stronghold": "要塞探索者地图", - "filled_map.swamp_hut": "沼泽小屋探索者地图", - "filled_map.village": "奸商聚集地探索者地图", - "filled_map.pillager_outpost": "掠夺者前哨站地图", - "filled_map.nether_fossil": "尼德兰化石探索者地图", - "filled_map.bastion_remnant": "堡垒遗迹探索者地图", - "filled_map.ruined_portal": "废弃传送门探索者地图", + "filled_map.bastion_remnant": "堡垒遗迹探索映射", + "filled_map.desert_pyramid": "沙子漠神殿探索映射", + "filled_map.end_city": "蒙达鲁克硫斯伯古比奇巴勒城探索映射", + "filled_map.fortress": "尼德兰要塞探索映射", + "filled_map.igloo": "雪屋探索映射", + "filled_map.jungle_pyramid": "丛林神庙探索映射", + "filled_map.mineshaft": "废弃矿井探索映射", + "filled_map.nether_fossil": "尼德兰化石探索映射", + "filled_map.ocean_ruin": "海底废墟探索映射", + "filled_map.pillager_outpost": "掠夺者前哨站映射", + "filled_map.ruined_portal": "废弃门户探索映射", + "filled_map.shipwreck": "沉舟探索映射", + "filled_map.stronghold": "要塞探索映射", + "filled_map.swamp_hut": "沼泽小屋探索映射", + "filled_map.village": "奸商聚集地探索映射", "generator.buffet": "自助餐", "generator.largeBiomes": "巨型生物群系", "generator.minecraft.caves": "洞穴", @@ -71,25 +86,32 @@ "item.minecraft.dragon_head": "昆图库塔卡提考特苏瓦西拉松头", "item.minecraft.head": "头", "item.minecraft.music_disc": "劲 歌 金 曲", - "item.minecraft.skeleton_skull": "小白头颅", + "item.minecraft.skeleton_skull": "骷髅头颅", "item.minecraft.spawn_egg": "生成一个寂寞", "item.minecraft.wither_skeleton_skull": "凋灵骷髅头颅", "item.minecraft.zombie_head": "僵尸的头", "item.minecraft.zombie_pigman_spawn_egg": "僵尸猪人幼体", + "itemGroup.nature": "孜然方块", "jigsaw_block.attachement_type": "连接类型:", "key.swapHands": "交换手中的物品", "mcoServer.title": "Minecraft Online世界", "merchant.deprecated.deprecated": "交易一些其他东西来解锁!", "multiplayer.connect": "连接", + "multiplayer.disconnect.invalid_public_key": "无法解析个人信息公钥。", "multiplayer.ipinfo": "输入服务器的IP来连接:", "options.anaglyph": "3D效果", - "options.fovEffectScale.off": "关闭", + "options.fovEffectScale.off": "关掉", "options.guiScale.large": "大", "options.guiScale.normal": "中", "options.guiScale.small": "小", "options.music": "音乐(lè)", + "options.realmsNotifications": "领域的通知", "options.saturation": "饱和", - "options.screenEffectScale.off": "关闭", + "options.screenEffectScale.off": "关掉", + "options.snooper": "Is this Privacy?", + "options.snooper.desc": "我们不想改进Minecraft,所以不要把任何信息告诉我们。我们不想明白需要支持什么样的硬件以及主要的问题出在哪里。这不也能让我们大致知道活跃玩家群体的规模。您能在下方查看我们收集的所有信息,不过应该是没有的。", + "options.snooper.title": "给我们数据!", + "options.snooper.view": "匿名信息反馈设置…", "options.sound": "杜比顶级音效", "options.vbo": "启用顶点缓冲器", "potion.potency.0": "sin90°", @@ -106,6 +128,7 @@ "selectServer.empty": "空", "selectWorld.empty": "空", "selectWorld.gameMode.spectator.line2": "就像你死了一样", + "selectWorld.mapFeatures.info": "奸商聚集地、地下城等等", "selectWorld.newWorld.copyOf": "%s的副本", "selectWorld.tooltip.experimental": "这个世界正在使用实验性设置", "selectWorld.tooltip.unsupported": "你怕不是穿越来的吧?这个世界只能在%s版本中游玩", @@ -117,6 +140,7 @@ "stat.minecraft.join_multiplayer": "一起玩次数", "stat.minecraft.load_world": "退完真香次数", "stat.minecraft.mine_block": "挖掘了%1$s个方块", + "stat.minecraft.play_one_minute": "游戏时间", "stat.minecraft.start_game": "揭棺而起次数", "stat.minecraft.use_item": "使用了物品%1$s", "subtitles.entity.elder_guardian.attack": "远古痞老板:射击", @@ -128,15 +152,27 @@ "subtitles.entity.parrot.imitate.wolf": "咕咕:喘息", "subtitles.entity.parrot.imitate.zombie_pigman": "咕咕:呼噜", "subtitles.entity.parrot.imitate.zombified_piglin": "咕咕:呼噜", + "subtitles.entity.sniffer.egg_crack": "嗅嗅的蛋:我裂开来", + "subtitles.entity.sniffer.egg_hatch": "嗅嗅的蛋:孵化", "subtitles.entity.zombie_pigman.ambient": "僵尸猪人:呼噜", "subtitles.entity.zombie_pigman.angry": "僵尸猪人:愤怒", "subtitles.entity.zombie_pigman.death": "僵尸猪人:啊我死了", "subtitles.entity.zombie_pigman.hurt": "僵尸猪人:哎哟!", - "generator.amplified.info": "注意:推荐的配置是i9 10900K加RTX 3090", "subtitles.item.berries.pick": "浆果:弹出", - "commands.debug.reportFailed": "生成调试报告失败", - "commands.debug.reportSaved": "已在%s生成调试报告", - "stat.minecraft.play_one_minute": "游戏时间", - "commands.scoreboard.objectives.add.longName": "记分项名称不能长于%s个字符", - "commands.team.add.longName": "专业团队名称不能长于%s个字符" + "subtitles.item.brush.brush_sand_completed": "鸡毛掸子:刷完了", + "subtitles.item.brush.brushing": "鸡毛掸子:在刷了", + "title.oldgl.deprecation.line1": "请加钱上DGX A100!由于需要", + "title.oldgl.deprecation.line2": "OpenGL 3.2,这会在未来阻止你进行游戏。", + "title.oldgl.eol.line1": "检测到你的显卡不是Quadro RTX 8000!由于需要", + "title.oldgl.eol.line2": "OpenGL 2.0,这会阻止你在未来版本进行游戏。", + "attribute.unknown": "未知的属性", + "commands.locate.biome.invalid": "没有名为“%s”的生物群系", + "commands.locate.poi.invalid": "没有类型为“%s”的兴趣点", + "selectWorld.import_worldgen_settings.deprecated.question": "有些功能迟早药丸。你确定要继续吗?", + "selectWorld.import_worldgen_settings.deprecated.title": "警告! 这些设置使用了迟早药丸的功能", + "selectWorld.import_worldgen_settings.experimental.question": "有些功能还没做完,介于Bugjump有多少特性,迟早药丸。你确定要继续吗?", + "selectWorld.import_worldgen_settings.experimental.title": "警告! 这些设置使用了还没做完的功能", + "enchantment.unknown": "未知的膜法:%s", + "effect.effectNotFound": "未知的buff:%s", + "entity.notFound": "未知的实体:%s" } diff --git a/modules/lang_old_strings/module_manifest.json b/modules/lang_old_strings/module_manifest.json index 3de67662b..f9116f282 100644 --- a/modules/lang_old_strings/module_manifest.json +++ b/modules/lang_old_strings/module_manifest.json @@ -2,10 +2,11 @@ "name": "lang_old_strings", "type": "resource", "description": "旧版本的各种字符串", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_replaceitem_1.12.2-1.16.5/add.json b/modules/lang_replaceitem_1.12.2-1.16.5/add.json index 92cd6e646..ee8b70662 100644 --- a/modules/lang_replaceitem_1.12.2-1.16.5/add.json +++ b/modules/lang_replaceitem_1.12.2-1.16.5/add.json @@ -5,4 +5,4 @@ "commands.replaceitem.entity.success.multiple": "已用%2$s替换了%1$s个实体的物品格", "commands.replaceitem.entity.success.single": "已用%2$s替换了%1$s的物品格", "commands.replaceitem.slot.inapplicable": "目标没有%s栏位" -} \ No newline at end of file +} diff --git a/modules/lang_replaceitem_1.12.2-1.16.5/module_manifest.json b/modules/lang_replaceitem_1.12.2-1.16.5/module_manifest.json index c8194a1f5..bc9f638ec 100644 --- a/modules/lang_replaceitem_1.12.2-1.16.5/module_manifest.json +++ b/modules/lang_replaceitem_1.12.2-1.16.5/module_manifest.json @@ -2,10 +2,11 @@ "name": "lang_replaceitem_1.12.2-1.16.5", "type": "resource", "description": "20w46a以前的replaceitem命令", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_selectworld_gui_1.12.2-1.16.1/add.json b/modules/lang_selectworld_gui_1.12.2-1.16.1/add.json index f5a6edc42..76dfae48a 100644 --- a/modules/lang_selectworld_gui_1.12.2-1.16.1/add.json +++ b/modules/lang_selectworld_gui_1.12.2-1.16.1/add.json @@ -2,4 +2,4 @@ "selectWorld.allowCommands": "允许滥权:", "selectWorld.bonusItems": "给新手的礼物:", "selectWorld.mapFeatures": "生成顶级建筑:" -} \ No newline at end of file +} diff --git a/modules/lang_selectworld_gui_1.12.2-1.16.1/module_manifest.json b/modules/lang_selectworld_gui_1.12.2-1.16.1/module_manifest.json index a5aa9b7ea..5f5c8178a 100644 --- a/modules/lang_selectworld_gui_1.12.2-1.16.1/module_manifest.json +++ b/modules/lang_selectworld_gui_1.12.2-1.16.1/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_selectworld_gui_1.12.2-1.16.1", "type": "resource", "description": "20w28a以前的生成世界字符串", - "author": [ - "梗体中文内容组" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file + "incompatible_with": ["lang_selectworld_gui_1.16.2-1.16.5"] +} diff --git a/modules/lang_selectworld_gui_1.16.2-1.16.5/add.json b/modules/lang_selectworld_gui_1.16.2-1.16.5/add.json index 753d987a7..357559dba 100644 --- a/modules/lang_selectworld_gui_1.16.2-1.16.5/add.json +++ b/modules/lang_selectworld_gui_1.16.2-1.16.5/add.json @@ -1,4 +1,4 @@ { "selectWorld.backupQuestion": "你真的真的真的想加载此世界吗?", "selectWorld.backupWarning": "这个世界上次是在%s版本中游玩的,而你却在游玩%s这个版本?请备份你的世界,以免世界崩溃!" -} \ No newline at end of file +} diff --git a/modules/lang_selectworld_gui_1.16.2-1.16.5/module_manifest.json b/modules/lang_selectworld_gui_1.16.2-1.16.5/module_manifest.json index db4780827..dc500d86e 100644 --- a/modules/lang_selectworld_gui_1.16.2-1.16.5/module_manifest.json +++ b/modules/lang_selectworld_gui_1.16.2-1.16.5/module_manifest.json @@ -2,10 +2,13 @@ "name": "lang_selectworld_gui_1.16.2-1.16.5", "type": "resource", "description": "21w03a以前的生成世界字符串", - "author": [ - "梗体中文内容组" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file + "incompatible_with": ["lang_selectworld_gui_1.12.2-1.16.1"] +} diff --git a/modules/lang_selectworld_gui_1.16.2-1.16.5/remove.json b/modules/lang_selectworld_gui_1.16.2-1.16.5/remove.json index 83889ec69..a28b44a03 100644 --- a/modules/lang_selectworld_gui_1.16.2-1.16.5/remove.json +++ b/modules/lang_selectworld_gui_1.16.2-1.16.5/remove.json @@ -3,4 +3,4 @@ "selectWorld.backupQuestion.snapshot", "selectWorld.backupWarning.downgrade", "selectWorld.backupWarning.snapshot" -] \ No newline at end of file +] diff --git a/modules/lang_serious_dedication_1.12.2-1.15.2/add.json b/modules/lang_serious_dedication_1.12.2-1.15.2/add.json index 8c9983127..66dd84ffc 100644 --- a/modules/lang_serious_dedication_1.12.2-1.15.2/add.json +++ b/modules/lang_serious_dedication_1.12.2-1.15.2/add.json @@ -1,4 +1,4 @@ { "advancements.husbandry.break_diamond_hoe.description": "用坏一把祖安石锄,然后重新考虑你的人生抉择", "advancements.husbandry.break_diamond_hoe.title": "铁杵磨成针" -} \ No newline at end of file +} diff --git a/modules/lang_serious_dedication_1.12.2-1.15.2/module_manifest.json b/modules/lang_serious_dedication_1.12.2-1.15.2/module_manifest.json index 9cc128a6f..43f22eb9e 100644 --- a/modules/lang_serious_dedication_1.12.2-1.15.2/module_manifest.json +++ b/modules/lang_serious_dedication_1.12.2-1.15.2/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_serious_dedication_1.12.2-1.15.2", "type": "resource", "description": "20w20a以前版本的“终极奉献”进度", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_serious_dedication_1.12.2-1.15.2/remove.json b/modules/lang_serious_dedication_1.12.2-1.15.2/remove.json index a20b13bd8..90bd3deb9 100644 --- a/modules/lang_serious_dedication_1.12.2-1.15.2/remove.json +++ b/modules/lang_serious_dedication_1.12.2-1.15.2/remove.json @@ -1,4 +1,4 @@ [ "advancements.husbandry.netherite_hoe.description", "advancements.husbandry.netherite_hoe.title" -] \ No newline at end of file +] diff --git a/modules/lang_sfc/add.json b/modules/lang_sfc/add.json index f048e1600..6023b5e8f 100644 --- a/modules/lang_sfc/add.json +++ b/modules/lang_sfc/add.json @@ -1,454 +1,849 @@ { - "addServer.add": "好了", - "advancements.adventure.adventuring_time.title": "踏破钻靴有觅处", - "advancements.adventure.hero_of_the_village.description": "成功保卫大鼻子聚集地", - "advancements.adventure.kill_a_mob.description": "失败任意敌对性怪物", - "advancements.adventure.kill_all_mobs.description": "失败每一种敌对性怪物", - "advancements.adventure.lightning_rod_with_villager_no_fire.description": "给大鼻子聚集地装一根雷 霆 法 杖", - "advancements.adventure.sleep_in_bed.description": "通过在床上数水饺来改变你的失败去活来点", - "advancements.adventure.summon_iron_golem.description": "传唤一只铁憨憨来帮忙守卫大鼻子聚集地", - "advancements.adventure.totem_of_undying.description": "利用复活图腾逃离失败神", - "advancements.adventure.trade.description": "成功与一名村民进行交易", - "advancements.adventure.trade.title": "交易成功", - "advancements.adventure.voluntary_exile.description": "失败一名袭击队长。\n并且尽快进入大鼻子聚集地。", - "advancements.nether.all_effects.description": "同时拥有所有buff,并且打失败一名白学家", - "advancements.nether.loot_bastion.description": "掠夺猪刚鬣之家里的箱子", - "advancements.nether.return_to_sender.description": "用一团火球搞失败一只地狱轰炸机", - "advancements.nether.root.description": "热失败了热失败了", - "advancements.nether.summon_wither.title": "失败神来了", - "advancements.nether.uneasy_alliance.description": "从尼德兰救出一只地狱轰炸机,将其安全地带到主世界……然后失败它", - "advancements.story.enter_the_nether.title": "我们需要再深入一些", - "advancements.story.lava_bucket.title": "这东西好热", - "advancements.story.mine_diamond.description": "获得一颗钻石", - "advancements.story.shiny_gear.description": "钻石盔甲能救人", - "advancements.story.smelt_iron.title": "来硬的", - "argument.double.big": "双精度浮点数不能大于%s,却发现了%s", - "argument.double.low": "双精度浮点数不能小于%s,却发现了%s", - "argument.entity.options.level.negative": "等级没有负的你个好人", - "argument.float.big": "浮点数不能大于%s,却发现了%s", - "argument.float.low": "浮点数不能小于%s,却发现了%s", - "argument.integer.big": "整数不能大于%s,却发现了%s", - "argument.integer.low": "整数不能小于%s,却发现了%s", - "argument.long.big": "长整数不能大于%s,却发现了%s", - "argument.long.low": "长整数不能小于%s,却发现了%s", - "biome.minecraft.bamboo_jungle": "竹子林", - "biome.minecraft.bamboo_jungle_hills": "竹子山丘", - "block.minecraft.azalea_leaves_flowers": "开fa的杜鹃树叶", - "block.minecraft.bamboo": "竹子", - "block.minecraft.bedrock": "硬硬的东西", - "block.minecraft.black_shulker_box": "黑色聪明盒子", - "block.minecraft.blackstone": "黑石头", - "block.minecraft.blackstone_slab": "黑石半砖", - "block.minecraft.blackstone_stairs": "黑石楼梯", - "block.minecraft.blackstone_wall": "黑石墙", - "block.minecraft.blue_shulker_box": "蓝色聪明盒子", - "block.minecraft.bone_block": "压缩金坷垃", - "block.minecraft.brown_shulker_box": "棕色聪明盒子", - "block.minecraft.cactus": "拥抱失败亡", - "block.minecraft.chest": "箱子", - "block.minecraft.chiseled_deepslate": "使用了大师级雕刻技艺的深石", - "block.minecraft.chiseled_polished_blackstone": "使用了大师级雕刻技艺并使用了打磨工艺进行加工的黑石头", - "block.minecraft.coal_block": "黑方块", - "block.minecraft.coal_ore": "黑矿石", - "block.minecraft.cobbled_deepslate": "深圆石", - "block.minecraft.cobbled_deepslate_slab": "深圆石半砖", - "block.minecraft.cobbled_deepslate_stairs": "深圆石楼梯", - "block.minecraft.cobbled_deepslate_wall": "深圆石墙", - "block.minecraft.cracked_deepslate_bricks": "裂开来的深砖石", - "block.minecraft.cracked_deepslate_tiles": "裂开来的深砖石瓦", - "block.minecraft.cracked_polished_blackstone_bricks": "裂开来的使用了打磨工艺进行加工的黑砖石", - "block.minecraft.cyan_shulker_box": "青色聪明盒子", - "block.minecraft.dead_brain_coral": "失败脑纹珊瑚", - "block.minecraft.dead_brain_coral_block": "失败脑纹珊瑚块", - "block.minecraft.dead_brain_coral_fan": "失败脑纹珊瑚粉丝", - "block.minecraft.dead_brain_coral_wall_fan": "墙上的失败脑纹珊瑚粉丝", - "block.minecraft.dead_bubble_coral": "失败气泡珊瑚", - "block.minecraft.dead_bubble_coral_block": "失败气泡珊瑚块", - "block.minecraft.dead_bubble_coral_fan": "失败气泡珊瑚粉丝", - "block.minecraft.dead_bubble_coral_wall_fan": "墙上的失败气泡珊瑚粉丝", - "block.minecraft.dead_bush": "失败了的布什", - "block.minecraft.dead_fire_coral": "失败火珊瑚", - "block.minecraft.dead_fire_coral_block": "失败火珊瑚块", - "block.minecraft.dead_fire_coral_fan": "失败火珊瑚粉丝", - "block.minecraft.dead_fire_coral_wall_fan": "墙上的失败火珊瑚粉丝", - "block.minecraft.dead_horn_coral": "失败鹿鹿角珊瑚", - "block.minecraft.dead_horn_coral_block": "失败鹿鹿角珊瑚块", - "block.minecraft.dead_horn_coral_fan": "失败鹿鹿角珊瑚粉丝", - "block.minecraft.dead_horn_coral_wall_fan": "墙上的失败鹿鹿角珊瑚粉丝", - "block.minecraft.dead_tube_coral": "失败管珊瑚", - "block.minecraft.dead_tube_coral_block": "失败管珊瑚块", - "block.minecraft.dead_tube_coral_fan": "失败管珊瑚粉丝", - "block.minecraft.dead_tube_coral_wall_fan": "墙上的失败管珊瑚粉丝", - "block.minecraft.deepslate_brick_slab": "深砖石半砖", - "block.minecraft.deepslate_brick_stairs": "深砖石楼梯", - "block.minecraft.deepslate_brick_wall": "深砖石墙", - "block.minecraft.deepslate_bricks": "深砖石", - "block.minecraft.deepslate_coal_ore": "深黑矿石", - "block.minecraft.deepslate_copper_ore": "深铜矿石", - "block.minecraft.deepslate_diamond_ore": "深钻矿石", - "block.minecraft.deepslate_emerald_ore": "深原谅矿石", - "block.minecraft.deepslate_gold_ore": "深黄油矿石", - "block.minecraft.deepslate_iron_ore": "深老铁矿石", - "block.minecraft.deepslate_lapis_ore": "深蓝宝石矿石", - "block.minecraft.deepslate_redstone_ore": "深雷石东矿石", - "block.minecraft.deepslate_tile_slab": "深砖石瓦半砖", - "block.minecraft.deepslate_tile_stairs": "深砖石瓦楼梯", - "block.minecraft.deepslate_tile_wall": "深砖石瓦墙", - "block.minecraft.deepslate_tiles": "深砖石瓦", - "block.minecraft.diamond_block": "钻石块", - "block.minecraft.diamond_ore": "钻矿石", - "block.minecraft.fern": "蕨了!", - "block.minecraft.flower_pot": "fa盆", - "block.minecraft.flowering_azalea": "开fa的杜鹃花丛", - "block.minecraft.flowering_azalea_leaves": "开fa的杜鹃树叶", - "block.minecraft.gilded_blackstone": "尼德兰黄油矿石的黑表哥", - "block.minecraft.gray_shulker_box": "灰色聪明盒子", - "block.minecraft.green_shulker_box": "原谅色聪明盒子", - "block.minecraft.hanging_roots": "挂着的根", - "block.minecraft.infested_deepslate": "被虫蚀的裂开来的深石", - "block.minecraft.large_fern": "蕨了!(大型)", - "block.minecraft.light_blue_shulker_box": "亮蓝色聪明盒子", - "block.minecraft.light_gray_shulker_box": "亮灰色聪明盒子", - "block.minecraft.lime_shulker_box": "黄绿色聪明盒子", - "block.minecraft.magenta_shulker_box": "品红色聪明盒子", - "block.minecraft.moving_piston": "移动的活塞", - "block.minecraft.orange_shulker_box": "橙色聪明盒子", - "block.minecraft.pink_shulker_box": "粉红色聪明盒子", - "block.minecraft.piston": "活塞", - "block.minecraft.piston_head": "活塞头", - "block.minecraft.polished_blackstone": "使用了打磨工艺进行加工的黑石头", - "block.minecraft.polished_blackstone_brick_slab": "使用了打磨工艺进行加工的黑砖石半砖", - "block.minecraft.polished_blackstone_brick_stairs": "使用了打磨工艺进行加工的黑砖石楼梯", - "block.minecraft.polished_blackstone_brick_wall": "使用了打磨工艺进行加工的黑砖石墙", - "block.minecraft.polished_blackstone_bricks": "使用了打磨工艺进行加工的黑砖石块", - "block.minecraft.polished_blackstone_button": "使用了打磨工艺进行加工的黑石按钮", - "block.minecraft.polished_blackstone_pressure_plate": "使用了打磨工艺进行加工的黑石阿姨压一压板", - "block.minecraft.polished_blackstone_slab": "使用了打磨工艺进行加工的黑石半砖", - "block.minecraft.polished_blackstone_stairs": "使用了打磨工艺进行加工的黑石楼梯", - "block.minecraft.polished_blackstone_wall": "使用了打磨工艺进行加工的黑石墙", - "block.minecraft.polished_deepslate": "使用了打磨工艺进行加工的深石", - "block.minecraft.polished_deepslate_slab": "使用了打磨工艺进行加工的深石半砖", - "block.minecraft.polished_deepslate_stairs": "使用了打磨工艺进行加工的深石楼梯", - "block.minecraft.polished_deepslate_wall": "使用了打磨工艺进行加工的深石墙", - "block.minecraft.potted_bamboo": "竹子盆栽", - "block.minecraft.potted_cactus": "无法拥抱的失败亡", - "block.minecraft.potted_dead_bush": "失败了的布什盆栽", - "block.minecraft.potted_fern": "蕨了!盆栽", - "block.minecraft.potted_flowering_azalea_bush": "开fa的杜鹃花丛盆栽", - "block.minecraft.potted_wither_rose": "失败亡之花盆栽", - "block.minecraft.pumpkin": "没有脸的南瓜", - "block.minecraft.purple_shulker_box": "紫色聪明盒子", - "block.minecraft.red_shulker_box": "红色聪明盒子", - "block.minecraft.set_spawn": "失败去活来点已设置", - "block.minecraft.shulker_box": "聪明盒子", - "block.minecraft.smoker": "smoker", - "block.minecraft.sticky_piston": "黏糊糊的活塞", - "block.minecraft.tinted_glass": "见光失败玻璃", - "block.minecraft.trapped_chest": "被困的箱子", - "block.minecraft.turtle_egg": "海龟蛋", - "block.minecraft.white_banner": "真的非常正常的旗帜", - "block.minecraft.white_shulker_box": "白色聪明盒子", - "block.minecraft.wither_rose": "失败亡之花", - "block.minecraft.yellow_shulker_box": "黄色聪明盒子", - "book.invalid.tag": "* 你翻开这本书一看,这书没有署名,破破烂烂的每页都没有写文字。你横竖睡不着,仔细看了半夜,才从 字缝里看出字来,满本都写着几个字“你这个好人打错tag了”! *", - "commands.kill.success.multiple": "失败了%s个实体", - "commands.kill.success.single": "已失败%s", - "commands.weather.set.clear": "天晴了!", - "commands.weather.set.rain": "下雨了!", - "commands.weather.set.thunder": "打雷下雨了!", - "container.chest": "箱子", - "container.chestDouble": "大型箱子", - "container.shulkerBox": "聪明盒子", - "createWorld.customize.custom.useVillages": "大鼻子聚集地", - "death.attack.badRespawnPoint.message": "%1$s被%2$s失败了", - "death.attack.cactus": "%1$s抱住了失败神", - "death.attack.cactus.player": "%1$s在试图逃离%2$s时抱住了失败神", - "death.attack.even_more_magic": "%1$s被不为人知的魔法失败了", - "death.attack.explosion.player": "%1$s被%2$s炸失败了", - "death.attack.explosion.player.item": "%1$s被%2$s用%3$s炸失败了", - "death.attack.fireball": "%1$s被%2$s用火球烧失败了", - "death.attack.fireball.item": "%1$s被%2$s用%3$s发射的火球烧失败了", - "death.attack.indirecagic": "%1$s被%2$s使用的魔法失败了", - "death.attack.indirecagic.item": "%1$s被%2$s用%3$s失败了", - "death.attack.lightningBolt.player": "%1$s在与%2$s战斗时装B过度被雷劈失败了", - "death.attack.magic": "%1$s被魔法失败了", - "death.attack.magic.player": "%1$s在试图逃离%2$s时被魔法失败了", - "death.attack.mob": "%1$s被%2$s失败了", - "death.attack.mob.item": "%1$s被%2$s用%3$s失败了", - "death.attack.onFire.player": "%1$s在试图与%2$s战斗时被烤得酥脆", - "death.attack.outOfWorld": "%1$s步入了虚空之地(虽然不知道是不是因为虚空而失败)", - "death.attack.starve": "%1$s饿失败了,丢人!", - "death.attack.starve.player": "%1$s在与%2$s战斗时饿失败了,丢人!", - "death.attack.sweetBerryBush": "%1$s被甜莓丛刺失败了", - "death.attack.sweetBerryBush.player": "%1$s在试图逃离%2$s时被甜莓丛刺失败了", - "death.attack.thorns.item": "%1$s在试图伤害%2$s时被%3$s失败", - "death.attack.thrown.item": "%1$s被%2$s用%3$s给砸失败了", - "death.attack.wither": "%1$s遇上了失败神", - "death.attack.wither.player": "%1$s在与%2$s战斗时遇上了失败神", - "death.fell.accident.generic": "%1$s摔得金坷垃都不剩", - "death.fell.assist": "%1$s因为%2$s注定要摔失败", - "death.fell.assist.item": "%1$s因为%2$s使用了%3$s注定要摔失败", - "deathScreen.respawn": "失败去活来", - "demo.day.1": "你只能白干好事5天的游戏内时间,尽力而为吧!", - "demo.day.5": "这是你白干好事之旅的最后一天!", - "demo.day.6": "您已经度过5天的白干好事时间,按%s来为你的成果截图留念", - "demo.day.warning": "您的白干好事时间即将结束!", - "demo.demoExpired": "白干好事时间结束了!", - "demo.help.fullWrapped": "这次白干好事只会持续5游戏天的时间(现实时间大约1小时40分钟)。查看进步来获得提示!祝您玩得开心!", - "demo.help.movemenouse": "使用鼠标来看看四周", - "demo.help.title": "Minecraft白干好事模式", - "demo.remainingTime": "剩余白干好事时间:%s", - "demo.reminder": "白干好事时间已经结束,请剁手来继续或开始一个新的世界!", - "effect.minecraft.wither": "失败神来了", - "enchanent.level.1": "sin²θ+cos²θ", - "enchanent.level.10": "1²+3²", - "enchanent.level.2": "ln §oe§r²", - "enchanent.level.3": "[π]", - "enchanent.level.4": "2²", - "enchanent.level.5": "√(3²+4²)", - "enchanent.level.6": "A(3,2)", - "enchanent.level.7": "Fib(6)-1", - "enchanent.level.8": "2³", - "enchanent.level.9": "3²", - "enchanent.minecraft.aqua_affinity": "水下搞快点", - "enchanent.minecraft.bane_of_arthropods": "节肢克星", - "enchanent.minecraft.binding_curse": "脱不下来", - "enchanent.minecraft.blast_protection": "炸裂保护", - "enchanent.minecraft.channeling": "杨氏电疗", - "enchanent.minecraft.depth_strider": "深海搞事者", - "enchanent.minecraft.efficiency": "搞快点", - "enchanent.minecraft.feather_falling": "轻盈", - "enchanent.minecraft.fire_aspect": "燃起来了", - "enchanent.minecraft.fire_protection": "火神祝福", - "enchanent.minecraft.flame": "火箭", - "enchanent.minecraft.fortune": "欧气附加", - "enchanent.minecraft.frost_walker": "艾莎公主", - "enchanent.minecraft.impaling": "水生克星", - "enchanent.minecraft.infinity": "∞", - "enchanent.minecraft.knockback": "鸡腿", - "enchanent.minecraft.looting": "抢劫", - "enchanent.minecraft.loyalty": "回来吧", - "enchanent.minecraft.luck_of_the_sea": "海神祝福", - "enchanent.minecraft.lure": "钓弯饵甜", - "enchanent.minecraft.mending": "正在治愈", - "enchanent.minecraft.multishot": "散射", - "enchanent.minecraft.piercing": "击穿", - "enchanent.minecraft.power": "Powup333的祝福", - "enchanent.minecraft.projectile_protection": "弹射物保护", - "enchanent.minecraft.protection": "保护", - "enchanent.minecraft.punch": "冲击", - "enchanent.minecraft.quick_charge": "快速冲锋", - "enchanent.minecraft.respiration": "外置鱼鳃", - "enchanent.minecraft.riptide": "水中逮虾户", - "enchanent.minecraft.sharpness": "磨刀石", - "enchanent.minecraft.silk_touch": "丝绸之触", - "enchanent.minecraft.smite": "亡灵克星", - "enchanent.minecraft.soul_speed": "灵逸", - "enchanent.minecraft.sweeping": "破碎之刃", - "enchanent.minecraft.thorns": "扎心", - "enchanent.minecraft.unbreaking": "不毁", - "enchanent.minecraft.vanishing_curse": "拜拜了您嘞", - "enchanent.unknown": "未知的膜法:%s", - "entity.minecraft.chest_minecart": "带箱子的《我的世界》", - "entity.minecraft.llama": "羊驼", - "entity.minecraft.llama_spit": "羊驼的口水", - "entity.minecraft.silverfish": "东京奥运会开幕式演员", - "entity.minecraft.trader_llama": "行商羊驼", - "entity.minecraft.turtle": "海龟", - "entity.minecraft.villager": "大鼻子", - "entity.minecraft.wandering_trader": "流浪大鼻子", - "entity.minecraft.zoglin": "失败猪兽", - "event.minecraft.raid": "小日子过的不错的人进村", - "event.minecraft.raid.raiders_remaining": "剩余%s名小日子过的不错的人", - "gamerule.disableRaids": "阻止小日子过的不错的人进村", - "gamerule.doDaylightCycle": "光阴似箭,日月如梭", - "gamerule.doImmediateRespawn": "立即失败去活来", - "gamerule.doMobLoot.description": "控制暴徒失败亡后是否掉落资源,包括经验球", - "gamerule.doPatrolSpawning": "小日子过的不错的人扫荡", - "gamerule.doTraderSpawning": "生成流浪大鼻子", - "gamerule.forgiveDeadPlayers": "原谅失败者", - "gamerule.forgiveDeadPlayers.description": "愤怒的中立型暴徒将在其目标玩家于附近失败亡后恢复中立状态。", - "gamerule.spawnRadius": "失败去活来点半径", - "gamerule.universalAnger.description": "愤怒的中立型暴徒将攻击附近的所有玩家,而不限于激怒它们的玩家。推荐禁用“原谅 失败者”以达到最佳buff。", - "gui.done": "好了", - "item.minecraft.beetroot_soup": "甜菜煲", - "item.minecraft.bone_meal": "拌饭用的金坷垃", - "item.minecraft.brown_dye": "棕不拉几的玩意", - "item.minecraft.chainmail_boots": "锁链靴子", - "item.minecraft.chainmail_chestplate": "锁链胸甲", - "item.minecraft.chainmail_helmet": "锁链头盔", - "item.minecraft.chainmail_leggings": "锁链护腿", - "item.minecraft.chest_minecart": "带箱子的《我的世界》", - "item.minecraft.cookie": "曲!奇!", - "item.minecraft.copper_ingot": "铜", - "item.minecraft.diamond": "钻石", - "item.minecraft.diamond_axe": "钻石斧", - "item.minecraft.diamond_boots": "钻石靴子", - "item.minecraft.diamond_chestplate": "钻石胸甲", - "item.minecraft.diamond_helmet": "钻石头盔", - "item.minecraft.diamond_hoe": "钻石锄", - "item.minecraft.diamond_horse_armor": "钻石马甲", - "item.minecraft.diamond_leggings": "钻石护腿", - "item.minecraft.diamond_pickaxe": "钻石giao子", - "item.minecraft.diamond_shovel": "钻石锨", - "item.minecraft.flower_pot": "fa盆", - "item.minecraft.gold_ingot": "黄油", - "item.minecraft.iron_ingot": "老铁", - "item.minecraft.lingering_potion.effect.turtle_master": "滞留型海龟溶液", - "item.minecraft.llama_spawn_egg": "羊驼幼体", - "item.minecraft.music_disc_pigstep": "猪 灵 抬 盒 子", - "item.minecraft.netherite_ingot": "下界玄素锭", - "item.minecraft.potion.effect.harming": "伤害溶液", - "item.minecraft.potion.effect.turtle_master": "海龟溶液", - "item.minecraft.silverfish_spawn_egg": "东京奥运会开幕式演员幼体", - "item.minecraft.splash_potion.effect.turtle_master": "喷溅型海龟溶液", - "item.minecraft.tipped_arrow.effect.turtle_master": "海龟之箭", - "item.minecraft.totem_of_undying": "复活图腾", - "item.minecraft.trader_llama_spawn_egg": "行商羊驼幼体", - "item.minecraft.wandering_trader_spawn_egg": "流浪大鼻子幼体", - "item.minecraft.zoglin_spawn_egg": "失败猪兽幼体", - "key.keyboard.insert": "插入", - "menu.modded": "(原版守护者出警预定)", - "menu.playdemo": "开始白干好事", - "menu.resetdemo": "重置并继续白干好事", - "menu.respawning": "失败去活来中", - "merchant.current_level": "大鼻子的当前等级", - "merchant.deprecated": "大鼻子每天最多补货两次。", - "merchant.next_level": "大鼻子的下一等级", - "merchant.trades": "交易", - "options.inverouse": "鼠标反转", - "options.sensitivity.max": "晕失败你!!!", - "parsing.bool.invalid": "无效的布尔值,需要'true'或'false'却找到了'%s'", - "selectWorld.createDemo": "开天辟地,但是白干好事", - "stat.minecraft.clean_shulker_box": "聪明盒子清洗次数", - "stat.minecraft.leave_game": "退游次数", - "stat.minecraft.open_chest": "箱子打开次数", - "stat.minecraft.open_shulker_box": "聪明盒子打开次数", - "stat.minecraft.raid_trigger": "小日子过的不错的人进村次数", - "stat.minecraft.raid_win": "击退小日子过的不错的人队次数", - "stat.minecraft.traded_with_villager": "村民交易次数", - "stat.minecraft.trigger_trapped_chest": "被困的箱子触发次数", - "stat_type.minecraft.killed": "你失败了%s只%s", - "stat_type.minecraft.killed.none": "你太弱了,从来没有失败过%s", - "stat_type.minecraft.killed_by": "%s失败了你%s次", - "stat_type.minecraft.killed_by.none": "你tql,从来没有被%s失败过", - "subtitles.block.cake.add_candle": "蛋糕:疼失败了!", - "subtitles.block.chest.close": "箱子:关上", - "subtitles.block.chest.locked": "箱子:被锁上", - "subtitles.block.chest.open": "箱子:开启", - "subtitles.block.chorus_flower.death": "共鸣花:失败了", - "subtitles.block.enchanent_table.use": "覆膜台:使用", - "subtitles.block.fire.extinguish": "火:失败了", - "subtitles.block.piston.move": "活塞:活塞", - "subtitles.block.shulker_box.close": "聪明盒子:关掉", - "subtitles.block.shulker_box.open": "聪明盒子:打开", - "subtitles.entity.axolotl.death": "六角恐龙:啊我失败了", - "subtitles.entity.bee.death": "蜂子:啊我失败了", - "subtitles.entity.blaze.death": "烈焰人:啊我失败了", - "subtitles.entity.cat.death": "你失败了喵喵,不可饶恕!", - "subtitles.entity.chicken.death": "鸡:啊我失败了", - "subtitles.entity.cod.death": "生鲜鳕鱼:啊我失败了", - "subtitles.entity.cow.death": "牛:啊我失败了", - "subtitles.entity.creeper.death": "爪巴者:啊我失败了", - "subtitles.entity.donkey.chest": "阿米娅:装备箱子", - "subtitles.entity.donkey.death": "阿米娅:啊我失败了", - "subtitles.entity.drowned.death": "水猴子:啊我失败了", - "subtitles.entity.elder_guardian.death": "远古痞老板:啊我失败了", - "subtitles.entity.enderman.death": "小黑:啊我失败了", - "subtitles.entity.endermite.death": "末影螨:啊我失败了", - "subtitles.entity.evoker.death": "唤魔者:啊我失败了", - "subtitles.entity.generic.death": "要失败了要失败了", - "subtitles.entity.glow_squid.death": "珊瑚感染八爪鱼:啊我失败了", - "subtitles.entity.goat.death": "山羊:啊我失败了", - "subtitles.entity.guardian.death": "痞老板:啊我失败了", - "subtitles.entity.hoglin.attack": "嚎猪兽:去失败吧!", - "subtitles.entity.hoglin.converted_to_zombified": "嚎猪兽:转变为失败猪兽", - "subtitles.entity.hoglin.death": "嚎猪兽:啊我失败了", - "subtitles.entity.husk.death": "尸壳:啊我失败了", - "subtitles.entity.illusioner.death": "影流之主:啊我失败了", - "subtitles.entity.iron_golem.death": "铁憨憨:啊我失败了", - "subtitles.entity.llama.ambient": "羊驼:吼叫", - "subtitles.entity.llama.angry": "羊驼:怒吼", - "subtitles.entity.llama.chest": "羊驼:装备箱子", - "subtitles.entity.llama.death": "羊驼:啊我失败了", - "subtitles.entity.llama.eat": "羊驼:进食", - "subtitles.entity.llama.hurt": "羊驼:哎哟!", - "subtitles.entity.llama.spit": "羊驼:我呸!", - "subtitles.entity.llama.step": "羊驼:脚步声", - "subtitles.entity.llama.swag": "羊驼:被装饰", - "subtitles.entity.magma_cube.death": "岩浆萌王:啊我失败了", - "subtitles.entity.mule.chest": "骡:装备箱子", - "subtitles.entity.mule.death": "骡:啊我失败了", - "subtitles.entity.phantom.death": "IcyPhantom:啊我失败了", - "subtitles.entity.pig.death": "猪:啊我失败了", - "subtitles.entity.piglin.death": "猪刚鬣:啊我失败了", - "subtitles.entity.piglin_brute.death": "猪蛮子:啊我失败了", - "subtitles.entity.pillager.death": "掠夺者:啊我失败了", - "subtitles.entity.player.death": "玩家:啊我失败了", - "subtitles.entity.polar_bear.death": "北极熊:啊我失败了", - "subtitles.entity.puffer_fish.death": "泡芙鱼:啊我失败了", - "subtitles.entity.ravager.death": "无敌铁牛:啊我失败了", - "subtitles.entity.salmon.death": "生鲜鲑鱼:啊我失败了", - "subtitles.entity.sheep.death": "咩咩:啊我失败了", - "subtitles.entity.shulker.death": "潜影贝:啊我失败了", - "subtitles.entity.silverfish.ambient": "东京奥运会开幕式演员:嘶嘶", - "subtitles.entity.silverfish.death": "东京奥运会开幕式演员:啊我失败了", - "subtitles.entity.silverfish.hurt": "东京奥运会开幕式演员:哎哟!", - "subtitles.entity.skeleton.death": "小白:啊我失败了", - "subtitles.entity.skeleton_horse.death": "骷髅马:啊我失败了", - "subtitles.entity.slime.death": "萌王:啊我失败了", - "subtitles.entity.snow_golem.death": "雪傀儡:啊我失败了", - "subtitles.entity.spider.death": "蜘蛛:啊我失败了", - "subtitles.entity.squid.death": "八爪鱼:啊我失败了", - "subtitles.entity.stray.death": "流髑:啊我失败了", - "subtitles.entity.strider.death": "炫迈兽:啊我失败了", - "subtitles.entity.tropical_fish.death": "小鱼君:啊我失败了", - "subtitles.entity.turtle.ambient_land": "海龟:啾啾", - "subtitles.entity.turtle.death": "海龟:啊我失败了", - "subtitles.entity.turtle.death_baby": "小海龟:啊我失败了", - "subtitles.entity.turtle.egg_break": "海龟蛋:破裂", - "subtitles.entity.turtle.egg_crack": "海龟蛋:裂开", - "subtitles.entity.turtle.egg_hatch": "海龟蛋:孵化", - "subtitles.entity.turtle.hurt": "海龟:哎哟!", - "subtitles.entity.turtle.hurt_baby": "小海龟:哎哟!", - "subtitles.entity.turtle.lay_egg": "海龟:产卵", - "subtitles.entity.turtle.shamble": "海龟:爪巴", - "subtitles.entity.turtle.shamble_baby": "小海龟:爪巴", - "subtitles.entity.turtle.swim": "海龟:游动", - "subtitles.entity.vex.death": "猥傀:啊我失败了", - "subtitles.entity.villager.hurt": "村民:有内鬼,终止交易!", - "subtitles.entity.villager.trade": "村民:交易", - "subtitles.entity.villager.yes": "村民:我谢谢您!", - "subtitles.entity.vindicator.death": "卫道士:啊我失败了", - "subtitles.entity.wandering_trader.ambient": "流浪大鼻子:哼哼!", - "subtitles.entity.wandering_trader.death": "流浪大鼻子:啊我失败了", - "subtitles.entity.wandering_trader.disappeared": "流浪大鼻子:成为透 明 人", - "subtitles.entity.wandering_trader.drink_milk": "流浪大鼻子:饮用桶装奶", - "subtitles.entity.wandering_trader.drink_potion": "流浪大鼻子:饮用溶液", - "subtitles.entity.wandering_trader.hurt": "流浪大鼻子:哎哟!", - "subtitles.entity.wandering_trader.no": "流浪大鼻子:就这?", - "subtitles.entity.wandering_trader.reappeared": "流浪大鼻子:现身", - "subtitles.entity.wandering_trader.trade": "流浪大鼻子:交易", - "subtitles.entity.wandering_trader.yes": "流浪大鼻子:我谢谢您!", - "subtitles.entity.witch.death": "女巫:啊我失败了", - "subtitles.entity.witch.throw": "女巫:给爷失败", - "subtitles.entity.wither.death": "凋零怪:啊我失败了", - "subtitles.entity.wither_skeleton.death": "凋零骷髅:啊我失败了", - "subtitles.entity.wolf.death": "你居然失败了HLD,不可饶恕!", - "subtitles.entity.zoglin.ambient": "失败猪兽:吼吼", - "subtitles.entity.zoglin.angry": "失败猪兽:呜哼哼啊啊啊", - "subtitles.entity.zoglin.attack": "失败猪兽:我要打十个!", - "subtitles.entity.zoglin.death": "失败猪兽:再次失败亡", - "subtitles.entity.zoglin.hurt": "失败猪兽:哎哟!", - "subtitles.entity.zoglin.step": "失败猪兽:跺地", - "subtitles.entity.zombie.death": "姜丝:啊我失败了", - "subtitles.entity.zombie_horse.death": "姜丝马:啊我失败了", - "subtitles.entity.zombie_villager.death": "姜丝村民:啊我失败了", - "subtitles.entity.zombified_piglin.death": "僵硬的猪刚鬣:啊我失败了", - "subtitles.event.raid.horn": "大鼻子聚集地保卫战,开始了", - "subtitles.item.armor.equip_chain": "锁链套:碰擦", - "subtitles.item.armor.equip_diamond": "钻石盔甲:碰擦", - "subtitles.item.bone_meal.use": "金坷垃:被扬", - "subtitles.item.bucket.fill_axolotl": "六角恐龙:我谢谢您!", - "subtitles.item.bucket.fill_fish": "鱼:我谢谢您!" -} + "achievement.acquireIron": "来硬的", + "achievement.diamonds.desc": "用Ff98sha获得一颗钻石", + "achievement.diamondsToYou": "给你钻石!", + "achievement.diamondsToYou.desc": "给你的一位好朋友扔钻石", + "achievement.enchantments.desc": "用聪明人才能翻开的书、黑曜石和钻石来制作一个覆膜台", + "achievement.exploreAllBiomes.desc": "踏破钻靴有觅处", + "achievement.ghast.desc": "用一团火球弄失败一只EOE", + "achievement.killEnemy.desc": "弄失败一只怪物", + "achievement.killWither.desc": "弄失败凋零怪", + "achievement.overkill": "太失败了", + "achievement.portal": "勇往直下", + "achievement.potion": "本地酿造厂", + "achievement.snipeSkeleton.desc": "50米开外,一箭干掉一只小白", + "achievement.theEnd2.desc": "弄失败昆图库塔卡提考特苏瓦西拉松", + "addServer.add": "好了", + "advMode.notAllowed": "必须是处于创造模式的滥权管理员", + "advancements.adventure.adventuring_time.title": "踏破钻靴有觅处", + "advancements.adventure.arbalistic.description": "用诸葛连弩一发击失败五只不同的生物", + "advancements.adventure.avoid_vibration.description": "在幽(yóu)匿分贝仪、幽(yóu)匿尖叫体或大聪明周围偷偷摸摸免得吵到它们睡美容觉", + "advancements.adventure.bullseye.description": "从至少三十米外射中TARGET的靶心", + "advancements.adventure.hero_of_the_village.description": "成功保卫大鼻子聚集地", + "advancements.adventure.honey_block_slide.description": "跳入甜蜜蜜的黏糊糊方块以缓解摔落。", + "advancements.adventure.kill_a_mob.description": "失败任意敌对性生物", + "advancements.adventure.kill_all_mobs.description": "失败每一种敌对性生物", + "advancements.adventure.kill_mob_near_sculk_catalyst.description": "在幽(yóu)匿催化剂附近弄失败生物", + "advancements.adventure.lightning_rod_with_villager_no_fire.description": "给大鼻子聚集地装一根雷 霆 法 杖", + "advancements.adventure.sleep_in_bed.description": "通过在床上数水饺来改变你的失败去活来点", + "advancements.adventure.spyglass_at_dragon.description": "透过望远镜看昆图库塔卡提考特苏瓦西拉松", + "advancements.adventure.spyglass_at_ghast.description": "透过望远镜看EOE", + "advancements.adventure.spyglass_at_parrot.description": "透过望远镜看咕咕", + "advancements.adventure.summon_iron_golem.description": "传唤一只铁憨憨来帮忙守卫大鼻子聚集地", + "advancements.adventure.totem_of_undying.description": "利用复活图腾逃离失败神", + "advancements.adventure.trade.description": "成功与一名大鼻子进行交易", + "advancements.adventure.trade.title": "交易成功", + "advancements.adventure.trade_at_world_height.description": "在世界天花板和大鼻子交易", + "advancements.adventure.trade_at_world_height.title": "星际交易", + "advancements.adventure.two_birds_one_arrow.description": "用一支穿透箭射失败两只IcyPhantom", + "advancements.adventure.very_very_frightening.description": "雷击一名大鼻子", + "advancements.adventure.voluntary_exile.description": "失败一名袭击队长。\n并且尽快进入大鼻子聚集地。", + "advancements.end.dragon_breath.title": "你需要来点薄荷糖", + "advancements.husbandry.break_diamond_hoe.description": "用坏一把钻石锄,然后重新考虑你的人生抉择", + "advancements.husbandry.froglights.description": "集齐所有蛙明灯", + "advancements.husbandry.ride_a_boat_with_a_goat.description": "和山羊一起坐在方舟上", + "advancements.nether.all_effects.description": "同时拥有所有buff,并且失败一名白学家", + "advancements.nether.brew_potion.title": "本地酿造厂", + "advancements.nether.get_wither_skull.description": "获得凋灵小白的模型", + "advancements.nether.loot_bastion.description": "掠夺猪刚鬣之家里的切斯特", + "advancements.nether.return_to_sender.description": "用一团火球搞失败一只EOE", + "advancements.nether.root.description": "热失败了热失败了", + "advancements.nether.summon_wither.title": "失败神来了", + "advancements.nether.uneasy_alliance.description": "从尼德兰救出一只EOE,将其安全地带到主世界……然后失败它", + "advancements.nether.use_lodestone.description": "对着吸铁石使用不指南的指南针", + "advancements.nether.use_lodestone.title": "吸铁石是你家", + "advancements.story.cure_zombie_villager.description": "弱化并治疗一名姜丝大鼻子", + "advancements.story.enter_the_nether.title": "勇往直下", + "advancements.story.mine_diamond.description": "获得一颗钻石", + "advancements.story.shiny_gear.description": "钻石盔甲能救人", + "advancements.story.smelt_iron.title": "来硬的", + "argument.double.big": "双精度浮点数不能大于%s,却发现了%s", + "argument.double.low": "双精度浮点数不能小于%s,却发现了%s", + "argument.entity.options.level.negative": "等级没有负的你个大聪明", + "argument.float.big": "浮点数不能大于%s,却发现了%s", + "argument.float.low": "浮点数不能小于%s,却发现了%s", + "argument.integer.big": "整数不能大于%s,却发现了%s", + "argument.integer.low": "整数不能小于%s,却发现了%s", + "argument.long.big": "长整数不能大于%s,却发现了%s", + "argument.long.low": "长整数不能小于%s,却发现了%s", + "attribute.name.generic.follow_range": "生物跟随距离", + "attribute.name.zombie.spawnReinforcements": "姜丝增援", + "biome.minecraft.bamboo_jungle": "竹子林", + "biome.minecraft.bamboo_jungle_hills": "竹子山丘", + "biome.minecraft.beach": "沙子滩", + "biome.minecraft.crimson_forest": "绯红森林", + "biome.minecraft.deep_dark": "Deep Dark", + "biome.minecraft.snowy_beach": "雪沙子滩", + "biome.minecraft.stone_shore": "石头做的沙子滩", + "biome.minecraft.stony_shore": "石头做的沙子滩", + "block.minecraft.acacia_hanging_sign": "挂着的相思木搞事牌", + "block.minecraft.acacia_wall_hanging_sign": "墙上的挂着的相思木搞事牌", + "block.minecraft.azalea_leaves_flowers": "开fa的杜鹃树叶", + "block.minecraft.bamboo": "竹子", + "block.minecraft.bamboo_block": "竹子块", + "block.minecraft.bamboo_button": "竹子抱枕", + "block.minecraft.bamboo_door": "竹子门", + "block.minecraft.bamboo_fence": "竹子栅栏", + "block.minecraft.bamboo_fence_gate": "竹子栅栏门", + "block.minecraft.bamboo_hanging_sign": "挂着的竹子搞事牌", + "block.minecraft.bamboo_mosaic": "竹子▒", + "block.minecraft.bamboo_mosaic_slab": "竹子▒半砖", + "block.minecraft.bamboo_mosaic_stairs": "竹子▒楼梯", + "block.minecraft.bamboo_planks": "竹子板", + "block.minecraft.bamboo_pressure_plate": "竹子阿姨压一压板", + "block.minecraft.bamboo_sign": "竹子搞事牌", + "block.minecraft.bamboo_slab": "竹子半砖", + "block.minecraft.bamboo_stairs": "竹子楼梯", + "block.minecraft.bamboo_trapdoor": "竹子陷阱门", + "block.minecraft.bamboo_wall_hanging_sign": "墙上的挂着的竹子搞事牌", + "block.minecraft.bamboo_wall_sign": "墙上的竹子搞事牌", + "block.minecraft.banner.mojang.black": "黑色Mojang徽标", + "block.minecraft.banner.mojang.blue": "蓝色Mojang徽标", + "block.minecraft.banner.mojang.brown": "棕色Mojang徽标", + "block.minecraft.banner.mojang.cyan": "群青色Mojang徽标", + "block.minecraft.banner.mojang.gray": "灰色Mojang徽标", + "block.minecraft.banner.mojang.green": "原谅色Mojang徽标", + "block.minecraft.banner.mojang.light_blue": "亮蓝色Mojang徽标", + "block.minecraft.banner.mojang.light_gray": "亮灰色Mojang徽标", + "block.minecraft.banner.mojang.lime": "酸橙色Mojang徽标", + "block.minecraft.banner.mojang.magenta": "品红色Mojang徽标", + "block.minecraft.banner.mojang.orange": "橙色Mojang徽标", + "block.minecraft.banner.mojang.pink": "粉红色Mojang徽标", + "block.minecraft.banner.mojang.purple": "紫色Mojang徽标", + "block.minecraft.banner.mojang.red": "红色Mojang徽标", + "block.minecraft.banner.mojang.white": "白色Mojang徽标", + "block.minecraft.banner.mojang.yellow": "黄色Mojang徽标", + "block.minecraft.banner.skull.black": "黑色模型盾徽", + "block.minecraft.banner.skull.blue": "蓝色模型盾徽", + "block.minecraft.banner.skull.brown": "棕色模型盾徽", + "block.minecraft.banner.skull.cyan": "群青色模型盾徽", + "block.minecraft.banner.skull.gray": "灰色模型盾徽", + "block.minecraft.banner.skull.green": "原谅色模型盾徽", + "block.minecraft.banner.skull.light_blue": "亮蓝色模型盾徽", + "block.minecraft.banner.skull.light_gray": "亮灰色模型盾徽", + "block.minecraft.banner.skull.lime": "酸橙色模型盾徽", + "block.minecraft.banner.skull.magenta": "品红色模型盾徽", + "block.minecraft.banner.skull.orange": "橙色模型盾徽", + "block.minecraft.banner.skull.pink": "粉红色模型盾徽", + "block.minecraft.banner.skull.purple": "紫色模型盾徽", + "block.minecraft.banner.skull.red": "红色模型盾徽", + "block.minecraft.banner.skull.white": "白色模型盾徽", + "block.minecraft.banner.skull.yellow": "黄色模型盾徽", + "block.minecraft.bed.not_safe": "你会被失败在摇篮里", + "block.minecraft.big_dripleaf": "叶滑滑乐", + "block.minecraft.big_dripleaf_stem": "叶滑滑乐茎", + "block.minecraft.birch_hanging_sign": "挂着的白桦木搞事牌", + "block.minecraft.birch_wall_hanging_sign": "墙上的挂着的白桦木搞事牌", + "block.minecraft.black_shulker_box": "黑色聪明盒子", + "block.minecraft.blackstone": "黑石头", + "block.minecraft.blackstone_slab": "黑石半砖", + "block.minecraft.blackstone_stairs": "黑石楼梯", + "block.minecraft.blackstone_wall": "黑石墙", + "block.minecraft.blue_shulker_box": "蓝色聪明盒子", + "block.minecraft.bone_block": "压缩金坷垃", + "block.minecraft.brown_shulker_box": "棕色聪明盒子", + "block.minecraft.cactus": "拥抱失败", + "block.minecraft.calibrated_sculk_sensor": "调校过的幽(yóu)匿分贝仪", + "block.minecraft.carved_pumpkin": "要脸的南瓜", + "block.minecraft.cauldron": "坩锅", + "block.minecraft.cherry_hanging_sign": "挂着的撒库拉木搞事牌", + "block.minecraft.cherry_wall_hanging_sign": "墙上的挂着的撒库拉木搞事牌", + "block.minecraft.chest": "切斯特", + "block.minecraft.chiseled_polished_blackstone": "使用了大师级雕刻技艺并使用了打磨工艺进行加工的黑石头", + "block.minecraft.coal_block": "无定形碳方块", + "block.minecraft.coal_ore": "无定形碳矿石", + "block.minecraft.conduit": "超勇核心", + "block.minecraft.cracked_polished_blackstone_bricks": "裂开来的使用了打磨工艺进行加工的黑砖石", + "block.minecraft.creeper_head": "爪巴者模型", + "block.minecraft.creeper_wall_head": "墙上的爪巴者模型", + "block.minecraft.crimson_hanging_sign": "挂着的绯红木搞事牌", + "block.minecraft.crimson_wall_hanging_sign": "墙上的挂着的绯红木搞事牌", + "block.minecraft.cyan_shulker_box": "群青色聪明盒子", + "block.minecraft.dark_oak_hanging_sign": "挂着的巧克力搞事牌", + "block.minecraft.dark_oak_wall_hanging_sign": "墙上的挂着的巧克力搞事牌", + "block.minecraft.dead_brain_coral": "失败脑纹珊瑚", + "block.minecraft.dead_brain_coral_block": "失败脑纹珊瑚块", + "block.minecraft.dead_brain_coral_fan": "失败脑纹珊瑚粉丝", + "block.minecraft.dead_brain_coral_wall_fan": "墙上的失败脑纹珊瑚粉丝", + "block.minecraft.dead_bubble_coral": "失败气泡珊瑚", + "block.minecraft.dead_bubble_coral_block": "失败气泡珊瑚块", + "block.minecraft.dead_bubble_coral_fan": "失败气泡珊瑚粉丝", + "block.minecraft.dead_bubble_coral_wall_fan": "墙上的失败气泡珊瑚粉丝", + "block.minecraft.dead_bush": "失败了的布什", + "block.minecraft.dead_fire_coral": "失败火珊瑚", + "block.minecraft.dead_fire_coral_block": "失败火珊瑚块", + "block.minecraft.dead_fire_coral_fan": "失败火珊瑚粉丝", + "block.minecraft.dead_fire_coral_wall_fan": "墙上的失败火珊瑚粉丝", + "block.minecraft.dead_horn_coral": "失败鹿鹿角珊瑚", + "block.minecraft.dead_horn_coral_block": "失败鹿鹿角珊瑚块", + "block.minecraft.dead_horn_coral_fan": "失败鹿鹿角珊瑚粉丝", + "block.minecraft.dead_horn_coral_wall_fan": "墙上的失败鹿鹿角珊瑚粉丝", + "block.minecraft.dead_tube_coral": "失败管珊瑚", + "block.minecraft.dead_tube_coral_block": "失败管珊瑚块", + "block.minecraft.dead_tube_coral_fan": "失败管珊瑚粉丝", + "block.minecraft.dead_tube_coral_wall_fan": "墙上的失败管珊瑚粉丝", + "block.minecraft.deepslate": "深石", + "block.minecraft.deepslate_coal_ore": "深无定形碳矿石", + "block.minecraft.deepslate_diamond_ore": "深钻矿石", + "block.minecraft.deepslate_emerald_ore": "深原谅矿石", + "block.minecraft.diamond_block": "钻石块", + "block.minecraft.diamond_ore": "钻矿石", + "block.minecraft.dragon_head": "昆图库塔卡提考特苏瓦西拉松模型", + "block.minecraft.fern": "蕨了!", + "block.minecraft.flower_pot": "fa盆", + "block.minecraft.flowering_azalea": "开fa的杜鹃花丛", + "block.minecraft.flowering_azalea_leaves": "开fa的杜鹃树叶", + "block.minecraft.four_turtle_eggs": "4个海龟蛋", + "block.minecraft.gilded_blackstone": "尼德兰黄油矿石的黑表哥", + "block.minecraft.gray_shulker_box": "灰色聪明盒子", + "block.minecraft.green_shulker_box": "原谅色聪明盒子", + "block.minecraft.hanging_roots": "挂着的根", + "block.minecraft.honey_block": "甜蜜蜜的黏糊糊方块", + "block.minecraft.jungle_hanging_sign": "挂着的丛林木搞事牌", + "block.minecraft.jungle_wall_hanging_sign": "墙上的挂着的丛林木搞事牌", + "block.minecraft.large_fern": "蕨了!(大型)", + "block.minecraft.lava_cauldron": "熔岩坩锅", + "block.minecraft.light_blue_shulker_box": "亮蓝色聪明盒子", + "block.minecraft.light_gray_shulker_box": "亮灰色聪明盒子", + "block.minecraft.lime_shulker_box": "黄绿色聪明盒子", + "block.minecraft.locked_chest": "锁上的切斯特", + "block.minecraft.lodestone": "吸铁石", + "block.minecraft.magenta_shulker_box": "品红色聪明盒子", + "block.minecraft.mangrove_hanging_sign": "挂着的红树林木搞事牌", + "block.minecraft.mangrove_wall_hanging_sign": "墙上的挂着的红树林木搞事牌", + "block.minecraft.moving_piston": "移动的活塞", + "block.minecraft.oak_hanging_sign": "挂着的橡木搞事牌", + "block.minecraft.oak_wall_hanging_sign": "墙上的挂着的橡木搞事牌", + "block.minecraft.ochre_froglight": "赭黄蛙明灯", + "block.minecraft.orange_shulker_box": "橙色聪明盒子", + "block.minecraft.oxeye_daisy": "菊花", + "block.minecraft.pearlescent_froglight": "珠光蛙明灯", + "block.minecraft.piglin_head": "猪刚鬣模型", + "block.minecraft.piglin_wall_head": "墙上的猪刚鬣模型", + "block.minecraft.pink_shulker_box": "粉红色聪明盒子", + "block.minecraft.piston": "活塞", + "block.minecraft.piston_head": "活塞头", + "block.minecraft.player_head": "玩家模型", + "block.minecraft.player_head.named": "%s模型", + "block.minecraft.player_wall_head": "墙上的玩家模型", + "block.minecraft.polished_blackstone": "使用了打磨工艺进行加工的黑石头", + "block.minecraft.polished_blackstone_brick_slab": "使用了打磨工艺进行加工的黑砖石半砖", + "block.minecraft.polished_blackstone_brick_stairs": "使用了打磨工艺进行加工的黑砖石楼梯", + "block.minecraft.polished_blackstone_brick_wall": "使用了打磨工艺进行加工的黑砖石墙", + "block.minecraft.polished_blackstone_bricks": "使用了打磨工艺进行加工的黑砖石块", + "block.minecraft.polished_blackstone_button": "使用了打磨工艺进行加工的黑石抱枕", + "block.minecraft.polished_blackstone_pressure_plate": "使用了打磨工艺进行加工的黑石阿姨压一压板", + "block.minecraft.polished_blackstone_slab": "使用了打磨工艺进行加工的黑石半砖", + "block.minecraft.polished_blackstone_stairs": "使用了打磨工艺进行加工的黑石楼梯", + "block.minecraft.polished_blackstone_wall": "使用了打磨工艺进行加工的黑石墙", + "block.minecraft.potatoes": "服务器", + "block.minecraft.potted_bamboo": "竹子盆栽", + "block.minecraft.potted_cactus": "无法拥抱的失败", + "block.minecraft.potted_dead_bush": "失败了的布什盆栽", + "block.minecraft.potted_fern": "蕨了!盆栽", + "block.minecraft.potted_flowering_azalea_bush": "开fa的杜鹃花丛盆栽", + "block.minecraft.potted_wither_rose": "失败玫瑰盆栽", + "block.minecraft.powder_snow_cauldron": "装有雪糕的坩锅", + "block.minecraft.pumpkin": "没有脸的南瓜", + "block.minecraft.purple_shulker_box": "紫色聪明盒子", + "block.minecraft.raw_gold_block": "金灿灿的服务器块", + "block.minecraft.raw_iron_block": "服务器块", + "block.minecraft.red_shulker_box": "红色聪明盒子", + "block.minecraft.set_spawn": "失败去活来点已设置", + "block.minecraft.shulker_box": "聪明盒子", + "block.minecraft.skeleton_skull": "小白模型", + "block.minecraft.skeleton_wall_skull": "墙上的小白模型", + "block.minecraft.small_dripleaf": "小叶", + "block.minecraft.smoker": "吸尘器", + "block.minecraft.soul_sand": "灵魂沙", + "block.minecraft.soul_soil": "灵魂泥", + "block.minecraft.spawner.desc2": "设置生物种类", + "block.minecraft.spruce_hanging_sign": "挂着的云杉木搞事牌", + "block.minecraft.spruce_wall_hanging_sign": "墙上的挂着的云杉木搞事牌", + "block.minecraft.sticky_piston": "黏糊糊的活塞", + "block.minecraft.stripped_bamboo_block": "去皮竹子块", + "block.minecraft.structure_block": "复制方块", + "block.minecraft.structure_void": "复制虚空", + "block.minecraft.target": "TARGET", + "block.minecraft.three_turtle_eggs": "3个海龟蛋", + "block.minecraft.tinted_glass": "见光失败玻璃", + "block.minecraft.trapped_chest": "被困的切斯特", + "block.minecraft.turtle_egg": "海龟蛋", + "block.minecraft.two_turtle_eggs": "2个海龟蛋", + "block.minecraft.verdant_froglight": "青翠蛙明灯", + "block.minecraft.warped_hanging_sign": "挂着的幽蓝木搞事牌", + "block.minecraft.warped_wall_hanging_sign": "墙上的挂着的幽蓝木搞事牌", + "block.minecraft.water_cauldron": "贴吧坩锅", + "block.minecraft.white_banner": "白色旗帜", + "block.minecraft.white_shulker_box": "白色聪明盒子", + "block.minecraft.wither_rose": "失败玫瑰", + "block.minecraft.wither_skeleton_skull": "凋零小白模型", + "block.minecraft.wither_skeleton_wall_skull": "墙上的凋零小白模型", + "block.minecraft.yellow_shulker_box": "黄色聪明盒子", + "block.minecraft.zombie_head": "姜丝模型", + "block.minecraft.zombie_wall_head": "墙上的姜丝模型", + "book.invalid.tag": "* 你翻开这本书一看,这书没有署名,破破烂烂的每页都没有写文字。你横竖睡不着,仔细看了半夜,才从 字缝里看出字来,满本都写着几个字“你这个大聪明打错tag了”! *", + "commands.kill.success.multiple": "弄失败了%s个实体", + "commands.kill.success.single": "已弄失败%s", + "commands.setworldspawn.failure.not_overworld": "只能为主世界设置世界的失败去活来点", + "commands.setworldspawn.success": "已将世界的失败去活来点设置为%s, %s, %s [%s]", + "commands.spawnpoint.success.multiple": "已将%6$s名玩家在%5$s的失败去活来点设为%1$s, %2$s, %3$s [%4$s]", + "commands.spawnpoint.success.single": "已将%6$s在%5$s的失败去活来点设为%1$s, %2$s, %3$s [%4$s]", + "commands.weather.set.clear": "天晴了!", + "commands.weather.set.rain": "下雨了!", + "commands.weather.set.thunder": "打雷下雨了!", + "container.chest": "切斯特", + "container.chestDouble": "大型切斯特", + "container.shulkerBox": "聪明盒子", + "container.smoker": "吸尘器", + "createWorld.customize.custom.useVillages": "大鼻子聚集地", + "credits_and_attribution.button.attribution": "Mojang的借物表", + "credits_and_attribution.button.credits": "梗体中文制作组与Mojang人员名单", + "credits_and_attribution.screen.title": "关于我们,还有Mojang", + "death.attack.badRespawnPoint.message": "%1$s被%2$s失败了", + "death.attack.cactus": "%1$s抱住了失败神", + "death.attack.cactus.player": "%1$s在试图逃离%2$s时抱住了失败神", + "death.attack.even_more_magic": "%1$s被不为人知的魔法失败了", + "death.attack.explosion.player": "%1$s被%2$s炸失败了", + "death.attack.explosion.player.item": "%1$s被%2$s用%3$s炸失败了", + "death.attack.fireball": "%1$s被%2$s用火球烧失败了", + "death.attack.fireball.item": "%1$s被%2$s用%3$s发射的火球烧失败了", + "death.attack.flyIntoWall": "%1$s被创到失败了", + "death.attack.flyIntoWall.player": "%1$s在试图逃离%2$s时被创失败了", + "death.attack.freeze": "%1$s冻成了冰棍", + "death.attack.freeze.player": "%1$s因%2$s而冻成了冰棍", + "death.attack.genericKill.player": "%1$s在与%2$s战斗时失败了", + "death.attack.indirecagic": "%1$s被%2$s使用的魔法失败了", + "death.attack.indirecagic.item": "%1$s被%2$s用%3$s失败了", + "death.attack.indirectMagic": "%1$s被%2$s使用的魔法弄失败了", + "death.attack.indirectMagic.item": "%1$s被%2$s用%3$s弄失败了", + "death.attack.lightningBolt.player": "%1$s在与%2$s战斗时装B过度被雷劈失败了", + "death.attack.magic": "%1$s被魔法失败了", + "death.attack.magic.player": "%1$s在试图逃离%2$s时被魔法失败了", + "death.attack.mob": "%1$s被%2$s失败了", + "death.attack.mob.item": "%1$s被%2$s用%3$s失败了", + "death.attack.netherBed.message": "%1$s被%2$s失败了", + "death.attack.onFire.player": "%1$s在试图与%2$s战斗时被烤得酥脆", + "death.attack.outOfWorld": "%1$s步入了虚空之地", + "death.attack.starve": "%1$s饿失败了,丢人!", + "death.attack.starve.player": "%1$s在与%2$s战斗时饿失败了,丢人!", + "death.attack.sweetBerryBush": "%1$s被甜莓丛刺失败了", + "death.attack.sweetBerryBush.player": "%1$s在试图逃离%2$s时被甜莓丛刺失败了", + "death.attack.thorns": "%1$s在试图失败%2$s时被反失败", + "death.attack.thorns.item": "%1$s在试图失败%2$s时被%3$s被反失败", + "death.attack.thrown.item": "%1$s被%2$s用%3$s给砸失败了", + "death.attack.wither": "%1$s遇上了失败神", + "death.attack.wither.player": "%1$s在与%2$s战斗时遇上了失败神", + "death.attack.witherSkull": "%1$s被%2$s的发射的模型射中了", + "death.attack.witherSkull.item": "%1$s被%2$s用%3$s发射的模型射中了", + "death.fell.accident.generic": "%1$s摔得金坷垃都不剩", + "death.fell.accident.water": "%1$s试图落地水未遂当场失败,丢人!", + "death.fell.assist": "%1$s因为%2$s注定要摔失败", + "death.fell.assist.item": "%1$s因为%2$s使用了%3$s注定要摔失败", + "deathScreen.respawn": "失败去活来", + "deathScreen.spectate": "灵魂出窍", + "demo.day.1": "你只能白干好事5天的游戏内时间,尽力而为吧!", + "demo.day.5": "这是你白干好事之旅的最后一天!", + "demo.day.6": "你已经度过5天的白干好事时间,按%s来为你的成果截图留念", + "demo.day.warning": "你的白干好事时间即将结束!", + "demo.demoExpired": "白干好事时间结束了!", + "demo.help.fullWrapped": "这次白干好事只会持续5游戏天的时间(现实时间大约1小时40分钟)。查看进步来获得提示!祝你玩得开心!", + "demo.help.movemenouse": "使用鼠标来看看四周", + "demo.help.title": "Minecraft白干好事模式", + "demo.remainingTime": "剩余白干好事时间:%s", + "demo.reminder": "白干好事时间已经结束,请剁手来继续或开始一个新的世界!", + "disconnect.loginFailedInfo.insufficientPrivileges": "多人游戏已被禁用,请检查你的Microsoft账户设置。", + "effect.minecraft.health_boost": "生命提升", + "effect.minecraft.instant_health": "瞬间恢复", + "effect.minecraft.regeneration": "持续恢复", + "effect.minecraft.resistance": "皮糙肉厚", + "effect.minecraft.wither": "失败神来了", + "enchantment.level.1": "sin²θ+cos²θ", + "enchantment.level.10": "1²+3²", + "enchantment.level.2": "ln §oe§r²", + "enchantment.level.3": "[π]", + "enchantment.level.4": "2²", + "enchantment.level.5": "√(3²+4²)", + "enchantment.level.6": "A(3,2)", + "enchantment.level.7": "Fib(6)-1", + "enchantment.level.8": "2³", + "enchantment.level.9": "3²", + "enchantment.minecraft.bane_of_arthropods": "节肢克星", + "enchantment.minecraft.frost_walker": "老寒腿", + "enchantment.minecraft.impaling": "水生克星", + "enchantment.minecraft.smite": "灵魂克星", + "enchantment.minecraft.unbreaking": "不毁", + "enchantment.unknown": "未知的魔法:%s", + "entity.minecraft.boat": "方舟", + "entity.minecraft.chest_boat": "带切斯特的方舟", + "entity.minecraft.chest_minecart": "带切斯特的《我的世界》", + "entity.minecraft.cod": "生鲜鳕鱼", + "entity.minecraft.donkey": "你和驴", + "entity.minecraft.ghast": "EOE", + "entity.minecraft.killer_bunny": "克星兔", + "entity.minecraft.lightning_bolt": "雷", + "entity.minecraft.llama": "羊驼", + "entity.minecraft.llama_spit": "羊驼的口水", + "entity.minecraft.magma_cube": "岩浆黏糊糊", + "entity.minecraft.mob": "生物", + "entity.minecraft.silverfish": "银鱼", + "entity.minecraft.skeleton_horse": "小白马", + "entity.minecraft.slime": "黏糊糊", + "entity.minecraft.stray": "冷冻小白", + "entity.minecraft.trader_llama": "行商羊驼", + "entity.minecraft.turtle": "海龟", + "entity.minecraft.villager": "大鼻子", + "entity.minecraft.villager.none": "大鼻子", + "entity.minecraft.wandering_trader": "流浪大鼻子", + "entity.minecraft.warden": "大聪明", + "entity.minecraft.wither_skeleton": "凋零小白", + "entity.minecraft.zoglin": "失败猪兽", + "entity.minecraft.zombie_pigman": "姜丝猪人", + "entity.minecraft.zombie_villager": "姜丝大鼻子", + "event.minecraft.raid": "坏蛋进村", + "event.minecraft.raid.raiders_remaining": "剩余%s名坏蛋", + "filled_map.village": "大鼻子聚集地探索映射", + "gameMode.creative": "创造模式", + "gamerule.category.mobs": "生物", + "gamerule.disableRaids": "阻止坏蛋进村", + "gamerule.doDaylightCycle": "光阴似箭,日月如梭", + "gamerule.doEntityDrops.description": "控制《我的世界》(包括库存)、物品炫耀框、方舟等的掉落物", + "gamerule.doImmediateRespawn": "立即失败去活来", + "gamerule.doMobLoot": "掉落生物战利品", + "gamerule.doMobLoot.description": "控制生物失败后是否掉落资源,包括经验球", + "gamerule.doMobSpawning": "生成生物", + "gamerule.doPatrolSpawning": "坏蛋扫荡", + "gamerule.doTraderSpawning": "生成流浪大鼻子", + "gamerule.doWardenSpawning": "生成大聪明", + "gamerule.enderPearlsVanishOnDeath": "掷出的末影珍珠在失败时消失", + "gamerule.enderPearlsVanishOnDeath.description": "玩家投掷的末影珍珠是否在玩家失败时消失。", + "gamerule.forgiveDeadPlayers": "原谅失败者", + "gamerule.forgiveDeadPlayers.description": "愤怒的中立型生物将在其目标玩家于附近失败后恢复中立状态。", + "gamerule.mobExplosionDropDecay": "减少生物爆炸产生的掉落物", + "gamerule.mobExplosionDropDecay.description": "在生物交互爆炸中,一些方块不会掉落战利品", + "gamerule.mobGriefing": "允许生物搞破坏", + "gamerule.spawnChunkRadius.description": "主世界失败去活来点周围保持加载的区块数量。", + "gamerule.spawnRadius": "失败去活来点半径", + "gamerule.spawnRadius.description": "控制适合玩家生成的失败去活来点周围区域大小。", + "gamerule.universalAnger.description": "愤怒的中立型生物将攻击附近的所有玩家,而不限于激怒它们的玩家。推荐禁用“原谅失败者”以达到最佳buff。", + "gui.abuseReport.reason.harassment_or_bullying": "骚扰或霸凌", + "gui.abuseReport.reason.imminent_harm": "即将发生的伤害行为 — 威胁伤害他人", + "gui.abuseReport.reason.self_harm_or_suicide": "即将发生的伤害行为 — 自伤或自失败", + "gui.abuseReport.reason.self_harm_or_suicide.description": "有人威胁要自伤或谈论现实生活中的自伤行为。", + "gui.done": "好了", + "gui.recipebook.search_hint": "搜索一下……", + "gui.socialInteractions.blocking_hint": "使用Microsoft账号管理", + "hanging_sign.edit": "写点什么吧", + "item.minecraft.acacia_chest_boat": "带切斯特的相思方舟", + "item.minecraft.baked_potato": "烤熟的服务器", + "item.minecraft.bamboo_chest_raft": "带切斯特的竹子木筏", + "item.minecraft.bamboo_raft": "竹子木筏", + "item.minecraft.beetroot_soup": "甜菜煲", + "item.minecraft.birch_chest_boat": "带切斯特的白桦方舟", + "item.minecraft.bone_meal": "金坷垃", + "item.minecraft.brown_dye": "棕色染料", + "item.minecraft.cauldron": "坩锅", + "item.minecraft.chainmail_boots": "铁 索 连 环靴子", + "item.minecraft.chainmail_chestplate": "铁 索 连 环胸甲", + "item.minecraft.chainmail_helmet": "铁 索 连 环头盔", + "item.minecraft.chainmail_leggings": "铁 索 连 环护腿", + "item.minecraft.cherry_chest_boat": "带切斯特的撒库拉方舟", + "item.minecraft.chest_minecart": "带切斯特的《我的世界》", + "item.minecraft.cod": "生鲜鳕鱼", + "item.minecraft.cod_bucket": "鳕鱼铁桶", + "item.minecraft.cod_spawn_egg": "鳕鱼幼体", + "item.minecraft.cooked_cod": "沸腾鳕鱼", + "item.minecraft.cookie": "司康", + "item.minecraft.copper_ingot": "铜锭", + "item.minecraft.creeper_head": "爪巴者模型", + "item.minecraft.dark_oak_chest_boat": "带切斯特的巧克力方舟", + "item.minecraft.diamond": "钻石", + "item.minecraft.diamond_axe": "钻石斧", + "item.minecraft.diamond_boots": "钻石靴子", + "item.minecraft.diamond_chestplate": "钻石胸甲", + "item.minecraft.diamond_helmet": "钻石头盔", + "item.minecraft.diamond_hoe": "钻石锄", + "item.minecraft.diamond_horse_armor": "钻石马甲", + "item.minecraft.diamond_leggings": "钻石护腿", + "item.minecraft.diamond_pickaxe": "钻石giao子", + "item.minecraft.diamond_shovel": "钻石锨", + "item.minecraft.disc_fragment_5": "音乐盘残片", + "item.minecraft.disc_fragment_5.desc": "音乐盘 - 5", + "item.minecraft.donkey_spawn_egg": "你和驴幼体", + "item.minecraft.dragon_head": "昆图库塔卡提考特苏瓦西拉松模型", + "item.minecraft.flower_pot": "fa盆", + "item.minecraft.ghast_spawn_egg": "EOE幼体", + "item.minecraft.gold_ingot": "黄油锭", + "item.minecraft.head": "模型", + "item.minecraft.heart_of_the_sea": "海洋之心", + "item.minecraft.iron_ingot": "老铁锭", + "item.minecraft.jungle_chest_boat": "带切斯特的丛林方舟", + "item.minecraft.leather": "皮", + "item.minecraft.lingering_potion.effect.turtle_master": "滞留型神龟溶液", + "item.minecraft.llama_spawn_egg": "羊驼幼体", + "item.minecraft.lodestone_compass": "吸铁石指针", + "item.minecraft.magma_cube_spawn_egg": "岩浆黏糊糊幼体", + "item.minecraft.mangrove_chest_boat": "带切斯特的红树林方舟", + "item.minecraft.melon_slice": "劈开的瓜", + "item.minecraft.mojang_banner_pattern.desc": "Mojang徽标", + "item.minecraft.music_disc_11": "音乐盘", + "item.minecraft.music_disc_11.desc": "11", + "item.minecraft.music_disc_13": "音乐盘", + "item.minecraft.music_disc_13.desc": "13", + "item.minecraft.music_disc_5": "音乐盘", + "item.minecraft.music_disc_5.desc": "5", + "item.minecraft.music_disc_blocks": "音乐盘", + "item.minecraft.music_disc_blocks.desc": "方块", + "item.minecraft.music_disc_cat": "音乐盘", + "item.minecraft.music_disc_cat.desc": "猫", + "item.minecraft.music_disc_chirp": "音乐盘", + "item.minecraft.music_disc_chirp.desc": "鸟", + "item.minecraft.music_disc_far": "音乐盘", + "item.minecraft.music_disc_far.desc": "远", + "item.minecraft.music_disc_mall": "音乐盘", + "item.minecraft.music_disc_mall.desc": "商场", + "item.minecraft.music_disc_mellohi": "音乐盘", + "item.minecraft.music_disc_mellohi.desc": "梅洛希", + "item.minecraft.music_disc_otherside": "音乐盘", + "item.minecraft.music_disc_otherside.desc": "另一边", + "item.minecraft.music_disc_pigstep": "音乐盘", + "item.minecraft.music_disc_pigstep.desc": "猪步", + "item.minecraft.music_disc_relic": "音乐盘", + "item.minecraft.music_disc_relic.desc": "遗迹", + "item.minecraft.music_disc_stal": "音乐盘", + "item.minecraft.music_disc_stal.desc": "钢铁", + "item.minecraft.music_disc_strad": "音乐盘", + "item.minecraft.music_disc_strad.desc": "岩石", + "item.minecraft.music_disc_wait": "音乐盘", + "item.minecraft.music_disc_wait.desc": "等待", + "item.minecraft.music_disc_ward": "音乐盘", + "item.minecraft.music_disc_ward.desc": "维特", + "item.minecraft.netherite_ingot": "下界玄素锭", + "item.minecraft.oak_chest_boat": "带切斯特的橡木方舟", + "item.minecraft.poisonous_potato": "有毒的服务器", + "item.minecraft.potato": "服务器", + "item.minecraft.potion.effect.harming": "伤害溶液", + "item.minecraft.potion.effect.healing": "能量饮料", + "item.minecraft.potion.effect.turtle_master": "神龟溶液", + "item.minecraft.pottery_shard_skull": "模型纹样陶片", + "item.minecraft.rabbit": "兔兔这么可爱为什么要失败兔兔???", + "item.minecraft.recovery_compass": "失败去活来指针", + "item.minecraft.rotten_flesh": "烂肉", + "item.minecraft.silverfish_spawn_egg": "银鱼幼体", + "item.minecraft.skeleton_horse_spawn_egg": "小白马幼体", + "item.minecraft.skeleton_skull": "小白模型", + "item.minecraft.skull_banner_pattern.desc": "模型盾徽", + "item.minecraft.skull_pottery_shard": "模型纹样陶片", + "item.minecraft.skull_pottery_sherd": "模型纹样陶片", + "item.minecraft.slime_ball": "黏糊糊球", + "item.minecraft.slime_spawn_egg": "黏糊糊幼体", + "item.minecraft.smithing_template.armor_trim.additions_slot_description": "在此放入铸锭或矿物", + "item.minecraft.smithing_template.armor_trim.ingredients": "铸锭与矿物", + "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "在此放入下界玄素锭", + "item.minecraft.smithing_template.netherite_upgrade.applies_to": "钻装备", + "item.minecraft.smithing_template.netherite_upgrade.base_slot_description": "在此放入钻盔甲、武器或工具", + "item.minecraft.smithing_template.netherite_upgrade.ingredients": "下界玄素锭", + "item.minecraft.splash_potion.effect.healing": "喷溅型能量饮料", + "item.minecraft.splash_potion.effect.turtle_master": "喷溅型神龟溶液", + "item.minecraft.spruce_chest_boat": "带切斯特的云杉方舟", + "item.minecraft.spyglass": "望远镜", + "item.minecraft.stray_spawn_egg": "冷冻小白幼体", + "item.minecraft.tipped_arrow.effect.healing": "能量饮料之箭", + "item.minecraft.tipped_arrow.effect.turtle_master": "海龟之箭", + "item.minecraft.totem_of_undying": "复活图腾", + "item.minecraft.trader_llama_spawn_egg": "行商羊驼幼体", + "item.minecraft.turtle_spawn_egg": "假的海龟蛋", + "item.minecraft.villager_spawn_egg": "大鼻子幼体", + "item.minecraft.wandering_trader_spawn_egg": "流浪大鼻子幼体", + "item.minecraft.warden_spawn_egg": "大聪明幼体", + "item.minecraft.wither_skeleton_skull": "凋灵小白模型", + "item.minecraft.wither_skeleton_spawn_egg": "凋零小白幼体", + "item.minecraft.zoglin_spawn_egg": "失败猪兽幼体", + "item.minecraft.zombie_head": "姜丝模型", + "item.minecraft.zombie_pigman_spawn_egg": "姜丝猪人幼体", + "item.minecraft.zombie_villager_spawn_egg": "姜丝大鼻子幼体", + "itemGroup.search": "搜索一下", + "key.categories.creative": "创造模式", + "mco.configure.world.spawnProtection": "失败去活来点保护", + "menu.generatingLevel": "生成世界中", + "menu.generatingTerrain": "生成地形中", + "menu.loadingLevel": "加载世界中", + "menu.modded": "(原版守护者出警预定)", + "menu.playdemo": "开始白干好事", + "menu.reportBugs": "把漏洞给Mojang", + "menu.resetdemo": "重置并继续白干好事", + "menu.respawning": "失败去活来中", + "merchant.current_level": "大鼻子的当前等级", + "merchant.deprecated": "大鼻子每天最多补货两次。", + "merchant.next_level": "大鼻子的下一等级", + "merchant.trades": "交易", + "multiplayerWarning.message": "在线游戏由第三π对服务器提供,它们不由Mojang Studios或Microsoft拥有、运营和监督。在线游戏的过程中,你可能会接受到不受【数据删除】的唠嗑消息或者其他类型的UGC,甚至会被登 dua 郎(但是你莫得选择)。It's up to you.", + "options.darknessEffectScale.tooltip": "控制大聪明或幽(yóu)匿尖叫体给予的黑暗脉动效果程度。", + "options.difficulty.easy.info": "敌对生物会生成,但伤害较低。生命值在饥饿值耗尽后最终会降至5颗心。", + "options.difficulty.hard.info": "敌对生物会生成,伤害较高。饥饿值耗尽后最终会饿失败。", + "options.difficulty.normal.info": "敌对生物会生成,伤害适中。生命值在饥饿值耗尽后最终会降至半颗心。", + "options.difficulty.peaceful.info": "不会生成绝大多数敌对生物。饥饿值不会消耗,且生命值会自然恢复。", + "options.inverouse": "鼠标反转", + "options.sensitivity.max": "晕失败你!!!", + "painting.minecraft.bomb.title": "《目标已完成》", + "painting.minecraft.burning_skull.title": "《燃起来的模型》", + "painting.minecraft.creebet.title": "《苦力怕》", + "painting.minecraft.donkey_kong.title": "《金刚》", + "painting.minecraft.earth.author": "Mojang", + "painting.minecraft.fire.author": "Mojang", + "painting.minecraft.pointer.title": "《指示者》", + "painting.minecraft.skeleton.title": "《小白》", + "painting.minecraft.skull_and_roses.title": "《模型与玫瑰》", + "painting.minecraft.wasteland.title": "《荒地》", + "painting.minecraft.water.author": "Mojang", + "painting.minecraft.wind.author": "Mojang", + "painting.minecraft.wither.author": "Mojang", + "parsing.bool.invalid": "无效的布尔值,需要“true”或“false”却找到了“%s”", + "realms.missing.module.error.text": "当前无法打开领域,请甩给Mojang", + "resourcePack.programmer_art.name": "程序猿经典老番", + "selectWorld.createDemo": "开天辟地,但是白干好事", + "selectWorld.gameMode.creative": "创造", + "selectWorld.gameMode.hardcore.info": "难度锁定为“硬”的生存模式,且失败后无法重生。", + "selectWorld.gameMode.spectator.line2": "就像你失败了一样", + "selectWorld.hardcoreMode.info": "世界将在失败后拜拜了您嘞,删得连你自己是谁都不知道!", + "selectWorld.import_worldgen_settings.experimental.question": "这些设置是实验性的,介于Mojang有多少特性,迟早药丸。你确定要继续吗?", + "selectWorld.mapFeatures.info": "大鼻子聚集地、地下城等等", + "selectWorld.search": "搜索一下世界", + "soundCategory.hostile": "敌对生物", + "soundCategory.neutral": "友好生物", + "stat.minecraft.boat_one_cm": "坐方舟移动距离", + "stat.minecraft.clean_shulker_box": "聪明盒子清洗次数", + "stat.minecraft.fill_cauldron": "坩锅装水次数", + "stat.minecraft.interact_with_blast_furnace": "炼金次数", + "stat.minecraft.interact_with_smoker": "冒烟次数", + "stat.minecraft.leave_game": "退游次数", + "stat.minecraft.mob_kills": "生物击败数", + "stat.minecraft.open_chest": "切斯特打开次数", + "stat.minecraft.open_shulker_box": "聪明盒子打开次数", + "stat.minecraft.player_kills": "玩家击败数", + "stat.minecraft.raid_trigger": "坏蛋进村次数", + "stat.minecraft.raid_win": "击退坏蛋队次数", + "stat.minecraft.talked_to_villager": "大鼻子加密沟通次数", + "stat.minecraft.target_hit": "击中TARGET次数", + "stat.minecraft.traded_with_villager": "大鼻子交易次数", + "stat.minecraft.trigger_trapped_chest": "被困的切斯特触发次数", + "stat.minecraft.use_cauldron": "从坩锅取水次数", + "stat.mobsButton": "生物", + "stat_type.minecraft.killed": "你失败了%s只%s", + "stat_type.minecraft.killed.none": "你太弱了,从来没有失败过%s", + "stat_type.minecraft.killed_by": "%s失败了你%s次", + "stat_type.minecraft.killed_by.none": "你tql,从来没有被%s失败过", + "subtitles.block.big_dripleaf.tilt_down": "叶:滑", + "subtitles.block.big_dripleaf.tilt_up": "叶:我起了", + "subtitles.block.candle.extinguish": "鞭炮:失败了", + "subtitles.block.chest.close": "切斯特:关掉", + "subtitles.block.chest.locked": "切斯特:被锁上", + "subtitles.block.chest.open": "切斯特:打开", + "subtitles.block.chorus_flower.death": "共鸣花:失败了", + "subtitles.block.conduit.activate": "超勇核心:激活", + "subtitles.block.conduit.ambient": "超勇核心:涌动", + "subtitles.block.conduit.attack.target": "超勇核心:攻击", + "subtitles.block.conduit.deactivate": "超勇核心:失效", + "subtitles.block.enchantment_table.use": "覆膜台:使用", + "subtitles.block.fire.extinguish": "火:失败了", + "subtitles.block.honey_block.slide": "难受的音效", + "subtitles.block.piston.move": "活塞:活塞", + "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "熔岩:做自由落体运动后掉进坩锅", + "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "水:做自由落体运动后掉进坩锅", + "subtitles.block.redstone_torch.burnout": "雷石东火炬:失败了", + "subtitles.block.respawn_anchor.set_spawn": "锚台:设置失败去活来点", + "subtitles.block.shulker_box.close": "聪明盒子:关掉", + "subtitles.block.shulker_box.open": "聪明盒子:打开", + "subtitles.block.smoker.smoke": "吸尘器:冒烟", + "subtitles.block.sniffer_egg.plop": "嗅嗅:产卵", + "subtitles.entity.allay.death": "小安粒:失败了", + "subtitles.entity.armadillo.death": "犰狳:失败亡", + "subtitles.entity.axolotl.death": "六角恐龙:失败了", + "subtitles.entity.bat.death": "棒球棍:失败了", + "subtitles.entity.bee.death": "蜂子:失败了", + "subtitles.entity.blaze.death": "布莱泽:失败了", + "subtitles.entity.bogged.death": "池沼骷髅:失败了", + "subtitles.entity.breeze.death": "布利泽:失败了", + "subtitles.entity.camel.death": "骆驼:失败了", + "subtitles.entity.cat.death": "你弄失败了喵喵,不可饶恕!", + "subtitles.entity.chicken.death": "鸡:失败了", + "subtitles.entity.chicken.egg": "鸡:产卵", + "subtitles.entity.cod.death": "使命召唤®:失败了", + "subtitles.entity.cod.flop": "生鲜鳕鱼:扑腾", + "subtitles.entity.cod.hurt": "生鲜鳕鱼:哎哟!", + "subtitles.entity.cow.death": "牛:失败了", + "subtitles.entity.creeper.death": "爪巴者:失败了", + "subtitles.entity.dolphin.death": "别失败生物,你这个海豚!", + "subtitles.entity.donkey.ambient": "你和驴:大 喊 大 叫", + "subtitles.entity.donkey.angry": "你和驴:生气", + "subtitles.entity.donkey.chest": "你和驴:装备切斯特", + "subtitles.entity.donkey.death": "阿米娅:失败了", + "subtitles.entity.donkey.eat": "你和驴:恰饭", + "subtitles.entity.donkey.hurt": "你和驴:哎哟!", + "subtitles.entity.drowned.death": "水猴子:失败了", + "subtitles.entity.elder_guardian.death": "远古痞老板:失败了", + "subtitles.entity.enderman.death": "小黑:失败了", + "subtitles.entity.endermite.death": "紫色银鱼:失败了", + "subtitles.entity.evoker.death": "招魂师:失败了", + "subtitles.entity.fox.death": "狐狸这么可爱为什么要失败狐狸??", + "subtitles.entity.frog.death": "蛙:失败了", + "subtitles.entity.frog.lay_spawn": "蛙:产卵", + "subtitles.entity.generic.death": "要失败了要失败了", + "subtitles.entity.ghast.ambient": "EOE:呜咽", + "subtitles.entity.ghast.death": "EOE:炸毁", + "subtitles.entity.ghast.hurt": "EOE:受损", + "subtitles.entity.ghast.shoot": "EOE:发射", + "subtitles.entity.glow_squid.death": "珊瑚感染夺心魔:失败了", + "subtitles.entity.goat.death": "大角羊:失败了", + "subtitles.entity.guardian.death": "痞老板:失败了", + "subtitles.entity.hoglin.attack": "嚎猪兽:去失败吧!", + "subtitles.entity.hoglin.converted_to_zombified": "嚎猪兽:转变为失败猪兽", + "subtitles.entity.hoglin.converts.to.Zoglin": "嚎猪兽:转变为失败猪兽", + "subtitles.entity.hoglin.death": "嚎猪兽:失败了", + "subtitles.entity.horse.death": "马:失败了", + "subtitles.entity.husk.death": "木乃伊:失败了", + "subtitles.entity.illusioner.death": "影流之主:失败了", + "subtitles.entity.iron_golem.death": "铁憨憨:失败了", + "subtitles.entity.llama.ambient": "羊驼:吼叫", + "subtitles.entity.llama.angry": "羊驼:怒吼", + "subtitles.entity.llama.chest": "羊驼:装备切斯特", + "subtitles.entity.llama.death": "羊驼:失败了", + "subtitles.entity.llama.eat": "羊驼:恰饭", + "subtitles.entity.llama.hurt": "羊驼:哎哟!", + "subtitles.entity.llama.spit": "羊驼:我呸!", + "subtitles.entity.llama.step": "羊驼:脚步声", + "subtitles.entity.llama.swag": "羊驼:被装饰", + "subtitles.entity.magma_cube.death": "岩浆黏糊糊:失败了", + "subtitles.entity.magma_cube.hurt": "岩浆黏糊糊:哎哟!", + "subtitles.entity.magma_cube.squish": "岩浆黏糊糊:移动", + "subtitles.entity.mooshroom.convert": "叉剋:我转换惹", + "subtitles.entity.mule.chest": "骡:装备切斯特", + "subtitles.entity.mule.death": "骡:失败了", + "subtitles.entity.panda.death": "滚滚:失败了", + "subtitles.entity.phantom.death": "IcyPhantom:失败了", + "subtitles.entity.pig.death": "猪:失败了", + "subtitles.entity.piglin.death": "猪刚鬣:失败了", + "subtitles.entity.piglin_brute.death": "猪蛮子:失败了", + "subtitles.entity.pillager.death": "掠夺者:失败了", + "subtitles.entity.player.death": "玩家:失败了", + "subtitles.entity.polar_bear.death": "北极熊:失败了", + "subtitles.entity.puffer_fish.death": "泡芙鱼:失败了", + "subtitles.entity.rabbit.death": "兔兔这么可爱为什么要失败兔兔??", + "subtitles.entity.ravager.death": "无敌铁牛:失败了", + "subtitles.entity.salmon.death": "生鲜鲑鱼:失败了", + "subtitles.entity.sheep.death": "咩咩:失败了", + "subtitles.entity.shulker.death": "潜影贝:失败了", + "subtitles.entity.silverfish.ambient": "银鱼:嘶嘶", + "subtitles.entity.silverfish.death": "银鱼:失败了", + "subtitles.entity.silverfish.hurt": "银鱼:哎哟!", + "subtitles.entity.skeleton.death": "小白:失败了", + "subtitles.entity.skeleton_horse.ambient": "小白马:嘶叫", + "subtitles.entity.skeleton_horse.death": "白髅马:失败了", + "subtitles.entity.skeleton_horse.hurt": "小白马:哎哟!", + "subtitles.entity.skeleton_horse.swim": "小白马:游泳", + "subtitles.entity.slime.attack": "黏糊糊:攻击", + "subtitles.entity.slime.death": "萌王:失败了", + "subtitles.entity.slime.hurt": "黏糊糊:哎哟!", + "subtitles.entity.slime.squish": "黏糊糊:移动", + "subtitles.entity.sniffer.death": "嗅嗅:失败了", + "subtitles.entity.snow_golem.death": "雪人:失败了", + "subtitles.entity.spider.death": "失败的:失败了", + "subtitles.entity.squid.death": "夺心魔:失败了", + "subtitles.entity.stray.ambient": "冷冻小白:咯咯声", + "subtitles.entity.stray.death": "冷冻骷髅:失败了", + "subtitles.entity.stray.hurt": "冷冻小白:哎哟!", + "subtitles.entity.strider.death": "炫迈兽:失败了", + "subtitles.entity.tadpole.death": "蝌蚪:失败了", + "subtitles.entity.tropical_fish.death": "小鱼君:失败了", + "subtitles.entity.turtle.ambient_land": "海龟:啾啾", + "subtitles.entity.turtle.death": "兲:失败了", + "subtitles.entity.turtle.death_baby": "小兲:失败了", + "subtitles.entity.turtle.egg_break": "海龟蛋:破裂", + "subtitles.entity.turtle.egg_crack": "海龟蛋:裂开", + "subtitles.entity.turtle.egg_hatch": "海龟蛋:孵化", + "subtitles.entity.turtle.hurt": "海龟:哎哟!", + "subtitles.entity.turtle.hurt_baby": "小海龟:哎哟!", + "subtitles.entity.turtle.lay_egg": "海龟:产卵", + "subtitles.entity.turtle.shamble": "海龟:爪巴", + "subtitles.entity.turtle.shamble_baby": "小海龟:爪巴", + "subtitles.entity.turtle.swim": "海龟:游动", + "subtitles.entity.vex.death": "猥傀:失败了", + "subtitles.entity.villager.ambient": "大鼻子:哼哼!", + "subtitles.entity.villager.celebrate": "大鼻子:芜湖!", + "subtitles.entity.villager.death": "大鼻子:小心铁憨憨", + "subtitles.entity.villager.hurt": "大鼻子:有内鬼,终止交易!", + "subtitles.entity.villager.no": "大鼻子:就这?", + "subtitles.entity.villager.trade": "大鼻子:交易", + "subtitles.entity.villager.work_butcher": "催逝员:失败只鸡,炖锅鸡汤", + "subtitles.entity.villager.yes": "大鼻子:我谢谢你!", + "subtitles.entity.vindicator.death": "辩护者:失败了", + "subtitles.entity.wandering_trader.ambient": "流浪大鼻子:哼哼!", + "subtitles.entity.wandering_trader.death": "流浪奸商:失败了", + "subtitles.entity.wandering_trader.disappeared": "流浪大鼻子:成为透 明 人", + "subtitles.entity.wandering_trader.drink_milk": "流浪大鼻子:饮用Let's 牛乳dance!", + "subtitles.entity.wandering_trader.drink_potion": "流浪大鼻子:饮用溶液", + "subtitles.entity.wandering_trader.hurt": "流浪大鼻子:哎哟!", + "subtitles.entity.wandering_trader.no": "流浪大鼻子:就这?", + "subtitles.entity.wandering_trader.reappeared": "流浪大鼻子:现身", + "subtitles.entity.wandering_trader.trade": "流浪大鼻子:交易", + "subtitles.entity.wandering_trader.yes": "流浪大鼻子:我谢谢你!", + "subtitles.entity.warden.agitated": "大聪明:哼哼", + "subtitles.entity.warden.ambient": "大聪明:呻吟", + "subtitles.entity.warden.angry": "大聪明:无能狂怒", + "subtitles.entity.warden.attack_impact": "大聪明:噫,好,中了!", + "subtitles.entity.warden.death": "傻大个:失败了", + "subtitles.entity.warden.dig": "大聪明:扬了!", + "subtitles.entity.warden.emerge": "大聪明:噔 噔 咚", + "subtitles.entity.warden.heartbeat": "大聪明:心动", + "subtitles.entity.warden.hurt": "大聪明:疼!", + "subtitles.entity.warden.listening": "大聪明:嗯?", + "subtitles.entity.warden.listening_angry": "大聪明:嗯!", + "subtitles.entity.warden.nearby_close": "大聪明:还 没 来", + "subtitles.entity.warden.nearby_closer": "大聪明:快 来 了", + "subtitles.entity.warden.nearby_closest": "大聪明:要 来 了", + "subtitles.entity.warden.roar": "大聪明:大 喊 大 叫", + "subtitles.entity.warden.sniff": "大聪明:嗅闻", + "subtitles.entity.warden.sonic_boom": "大聪明:低音炮攻击", + "subtitles.entity.warden.sonic_charge": "大聪明:大的要来了", + "subtitles.entity.warden.step": "大聪明:噔噔噔", + "subtitles.entity.warden.tendril_clicks": "大聪明:察觉", + "subtitles.entity.witch.death": "巫婆:失败了", + "subtitles.entity.witch.throw": "巫婆:给爷失败", + "subtitles.entity.wither.death": "凋零怪:失败了", + "subtitles.entity.wither_skeleton.ambient": "凋零小白:咯咯声", + "subtitles.entity.wither_skeleton.death": "凋零骷髅:失败了", + "subtitles.entity.wither_skeleton.hurt": "凋零小白:哎哟!", + "subtitles.entity.wolf.death": "你居然弄失败了HLD,不可饶恕!", + "subtitles.entity.zoglin.ambient": "失败猪兽:吼吼", + "subtitles.entity.zoglin.angry": "失败猪兽:呜哼哼啊啊啊", + "subtitles.entity.zoglin.attack": "失败猪兽:我要打十个!", + "subtitles.entity.zoglin.death": "失败猪兽:再次失败", + "subtitles.entity.zoglin.hurt": "失败猪兽:哎哟!", + "subtitles.entity.zoglin.step": "失败猪兽:跺地", + "subtitles.entity.zombie.death": "姜丝:失败了", + "subtitles.entity.zombie_horse.death": "姜丝马:失败了", + "subtitles.entity.zombie_pigman.ambient": "姜丝猪人:呼噜", + "subtitles.entity.zombie_pigman.angry": "姜丝猪人:愤怒", + "subtitles.entity.zombie_pigman.death": "姜丝猪人:失败了", + "subtitles.entity.zombie_pigman.hurt": "姜丝猪人:哎哟!", + "subtitles.entity.zombie_villager.ambient": "姜丝大鼻子:低吼", + "subtitles.entity.zombie_villager.converted": "姜丝大鼻子:大 吼 大 叫", + "subtitles.entity.zombie_villager.cure": "姜丝大鼻子:撕心裂肺", + "subtitles.entity.zombie_villager.death": "姜丝奸商:失败了", + "subtitles.entity.zombie_villager.hurt": "姜丝大鼻子:哎哟!", + "subtitles.entity.zombified_piglin.death": "僵硬的猪刚鬣:失败了", + "subtitles.event.raid.horn": "大鼻子聚集地保卫战,开始了", + "subtitles.item.armor.equip_chain": "铁 索 连 环盔甲:碰擦", + "subtitles.item.armor.equip_diamond": "钻石盔甲:碰擦", + "subtitles.item.bone_meal.use": "金坷垃:被扬", + "subtitles.item.bucket.fill_axolotl": "六角恐龙:我谢谢你!", + "subtitles.item.bucket.fill_fish": "鱼:我谢谢你!", + "subtitles.item.bucket.fill_tadpole": "蝌蚪:我谢谢你!", + "subtitles.item.lodestone_compass.lock": "吸铁石指针:绑定吸铁石", + "subtitles.item.spyglass.stop_using": "望远镜:看完了", + "subtitles.item.spyglass.use": "望远镜:看完了", + "subtitles.particle.soul_escape": "灵魂:飞了", + "title.multiplayer.disabled": "多人游戏已被禁用,请检查你的启动器或Microsoft账号设置。", + "trim_material.minecraft.diamond": "钻石质", + "trim_pattern.minecraft.ward": "大聪明盔甲纹饰" +} \ No newline at end of file diff --git a/modules/lang_sfc/module_manifest.json b/modules/lang_sfc/module_manifest.json index a4092066d..84226ab91 100644 --- a/modules/lang_sfc/module_manifest.json +++ b/modules/lang_sfc/module_manifest.json @@ -1,14 +1,12 @@ { "name": "lang_sfc", "type": "resource", - "description": "适用于严格审查的文本替换。注:看破别说破。", - "author": [ - "梗体中文内容组" - ], - "incompatible_with": [ - "fake_multitool" - ], - "classifier": [ - "modified_language" + "description": "适用于严格审查的文本替换。嘘,看破别说破。", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_sfw/add.json b/modules/lang_sfw/add.json index 19d19d0cf..db3d43444 100644 --- a/modules/lang_sfw/add.json +++ b/modules/lang_sfw/add.json @@ -1,24 +1,49 @@ { "advancements.adventure.ol_betsy.title": "扣下悬刀", + "advancements.husbandry.netherite_hoe.title": "还是吃的太饱了", "advancements.story.deflect_arrow.title": "下次一定", "advancements.story.enter_the_nether.title": "下地狱吧", + "advancements.story.lava_bucket.title": "这东西好热", + "advancements.story.smelt_iron.title": "来硬的", + "biome.minecraft.deep_dark": "潜幻暗变", + "block.minecraft.azalea": "杜鹃fa丛", + "block.minecraft.banner.flower.black": "黑色小fa", + "block.minecraft.banner.flower.blue": "蓝色小fa", + "block.minecraft.banner.flower.brown": "棕色小fa", + "block.minecraft.banner.flower.cyan": "群青色小fa", + "block.minecraft.banner.flower.gray": "灰色小fa", + "block.minecraft.banner.flower.green": "原谅色小fa", + "block.minecraft.banner.flower.light_blue": "亮蓝色小fa", + "block.minecraft.banner.flower.light_gray": "亮灰色小fa", + "block.minecraft.banner.flower.lime": "酸橙色小fa", + "block.minecraft.banner.flower.magenta": "品红色小fa", + "block.minecraft.banner.flower.orange": "橙色小fa", + "block.minecraft.banner.flower.pink": "粉红色小fa", + "block.minecraft.banner.flower.purple": "紫色小fa", + "block.minecraft.banner.flower.red": "红色小fa", + "block.minecraft.banner.flower.white": "白色小fa", + "block.minecraft.banner.flower.yellow": "黄色小fa", "block.minecraft.bed.occupied": "友好相处,你不可以抢走人家的床!", "block.minecraft.bedrock": "砍手岩", "block.minecraft.blast_furnace": "炼金机", - "block.minecraft.chest": "箱子", "block.minecraft.chiseled_deepslate": "使用了大师级雕刻技艺的深石", - "block.minecraft.cobbled_deepslate": "深圆石", + "block.minecraft.chiseled_tuff_bricks": "使用了大师级雕刻技艺的硬汉岩砖石", + "block.minecraft.chiseled_tuff": "使用了大师级雕刻技艺的硬汉岩", "block.minecraft.cobbled_deepslate_slab": "深圆石半砖", "block.minecraft.cobbled_deepslate_stairs": "深圆石楼梯", "block.minecraft.cobbled_deepslate_wall": "深圆石墙", + "block.minecraft.cobbled_deepslate": "深圆石", + "block.minecraft.composter": "堆肥桶", "block.minecraft.cracked_deepslate_bricks": "裂开来的深砖石", "block.minecraft.cracked_deepslate_tiles": "裂开来的深砖石瓦", "block.minecraft.deepslate_brick_slab": "深砖石半砖", "block.minecraft.deepslate_brick_stairs": "深砖石楼梯", "block.minecraft.deepslate_brick_wall": "深砖石墙", "block.minecraft.deepslate_bricks": "深砖石", + "block.minecraft.deepslate_coal_ore": "深非洲矿石", "block.minecraft.deepslate_copper_ore": "深铜矿石", "block.minecraft.deepslate_diamond_ore": "深祖安矿石", + "block.minecraft.deepslate_emerald_ore": "深原谅矿石", "block.minecraft.deepslate_gold_ore": "深黄油矿石", "block.minecraft.deepslate_iron_ore": "深老铁矿石", "block.minecraft.deepslate_lapis_ore": "深蓝宝石矿石", @@ -28,22 +53,133 @@ "block.minecraft.deepslate_tile_wall": "深砖石瓦墙", "block.minecraft.deepslate_tiles": "深砖石瓦", "block.minecraft.ender_chest": "私人箱", + "block.minecraft.flower_pot": "fa盆", + "block.minecraft.flowering_azalea_leaves": "开fa的杜鹃树叶", + "block.minecraft.flowering_azalea": "开fa的杜鹃花丛", + "block.minecraft.frogspawn": "蛙生成", "block.minecraft.infested_deepslate": "被虫蚀的裂开来的深石", "block.minecraft.ladder": "七个林昆", - "block.minecraft.polished_deepslate": "使用了打磨工艺进行加工的深石", "block.minecraft.polished_deepslate_slab": "使用了打磨工艺进行加工的深石半砖", "block.minecraft.polished_deepslate_stairs": "使用了打磨工艺进行加工的深石楼梯", "block.minecraft.polished_deepslate_wall": "使用了打磨工艺进行加工的深石墙", + "block.minecraft.polished_deepslate": "使用了打磨工艺进行加工的深石", + "block.minecraft.polished_tuff_slab": "使用了打磨工艺进行加工的硬汉岩半砖", + "block.minecraft.polished_tuff_stairs": "使用了打磨工艺进行加工的硬汉岩楼梯", + "block.minecraft.polished_tuff_wall": "使用了打磨工艺进行加工的硬汉岩墙", + "block.minecraft.polished_tuff": "使用了打磨工艺进行加工的硬汉岩", + "block.minecraft.potted_azalea_bush": "杜鹃fa丛盆栽", + "block.minecraft.potted_flowering_azalea_bush": "开fa的杜鹃fa丛盆栽", + "block.minecraft.reinforced_deepslate": "强化深石", "block.minecraft.smoker": "吸烟者", + "block.minecraft.tuff_brick_slab": "硬汉岩砖石半砖", + "block.minecraft.tuff_brick_stairs": "硬汉岩砖石楼梯", + "block.minecraft.tuff_brick_wall": "硬汉岩砖石墙", + "block.minecraft.tuff_bricks": "硬汉岩砖石", + "block.minecraft.tuff_slab": "硬汉岩半砖", + "block.minecraft.tuff_stairs": "硬汉岩楼梯", + "block.minecraft.tuff_wall": "硬汉岩墙", + "block.minecraft.tuff": "硬汉岩", + "chat.disabled.expiredProfileKey": "你的玩家信息密钥过期啦,别人举办不了你,试试重新登陆吧", + "chat.tag.not_secure": "未经验证的消息。无法举办。", + "chat.tag.system": "服务器消息。无法举办。", + "commands.experience.add.levels.success.multiple": "已给予%2$s名玩家%1$s级经验", + "commands.experience.add.levels.success.single": "已给予%2$s %1$s级经验", + "commands.experience.add.points.success.multiple": "已给予%2$s名玩家%1$s点经验", + "commands.experience.add.points.success.single": "已给予%2$s %1$s点经验", + "commands.experience.query.levels": "%s拥有%s级经验", + "commands.experience.query.points": "%s拥有%s点经验", "container.blast_furnace": "炼金机", "container.enchant.level.many": "+ %s级经验", "container.enchant.level.one": "+ 1级经验", + "container.enchant.level.requirement": "经验要求:%s", + "dataPack.trade_rebalance.description": "奸商的船新交易", + "dataPack.trade_rebalance.name": "奸商不可告人的交易变化", + "death.attack.flyIntoWall.player": "%1$s在试图逃离%2$s时头感受到了牛顿和科里奥利的祝福", + "death.attack.flyIntoWall": "%1$s的头感受到了牛顿和科里奥利的祝福", "death.fell.accident.ladder": "%1$s从七个林昆上摔了下来", + "gui.abuseReport.discard.content": "如果离开,该举办及小作文将不会被保留。\n确定要离开吗?", + "gui.abuseReport.discard.discard": "怂,放弃举办", + "gui.abuseReport.discard.title": "你要放弃举办并写小作文吗?", + "gui.abuseReport.draft.content": "继续编辑现有举办还是放弃并新建另一份举办?", + "gui.abuseReport.draft.quittotitle.content": "继续编辑还是放弃?", + "gui.abuseReport.draft.quittotitle.title": "这份举办草稿将在退出时丢失", + "gui.abuseReport.draft.title": "编辑举办草稿?", + "gui.abuseReport.error.title": "发送举办时出现问题", + "gui.abuseReport.name.reporting": "举办“%s”中。", + "gui.abuseReport.name.title": "举办玩家的姓名牌", + "gui.abuseReport.observed_what": "干啥子要举办哟?", + "gui.abuseReport.read_info": "了解举办功能", + "gui.abuseReport.reason.false_reporting": "不实举办", + "gui.abuseReport.reason.generic": "俺就是要举办", + "gui.abuseReport.reason.title": "选择举办类型", + "gui.abuseReport.report_sent_msg": "我们已经成功收到你的举办。非常感谢!\n\n我们的团队将尽快进行审核。", + "gui.abuseReport.select_reason": "你为啥子要举办", + "gui.abuseReport.send.error_message": "发送举办时返回了错误:“%s”", + "gui.abuseReport.send.generic_error": "发送举办时遇到意外错误。", + "gui.abuseReport.send.http_error": "发送举办时发生了意外的HTTP错误。", + "gui.abuseReport.send.json_error": "发送举办时遇到了格式错误的负载。", + "gui.abuseReport.send.no_reason": "请选择举办类型", + "gui.abuseReport.send.service_unavailable": "无法使用“举办滥用”服务。请检查是否已联网,然后重试。", + "gui.abuseReport.send": "发送举办", + "gui.abuseReport.sending.title": "举办中...", + "gui.abuseReport.sent.title": "已举办", + "gui.abuseReport.skin.title": "对玩家画皮进行举办", + "gui.abuseReport.title": "举办", + "gui.banned.description.reason": "我们最近收到举办称你的账户被用来搞事。我们的监督员已审核你的案件并将其认定为%s,这违反了Minecraft社区准则。", + "gui.banned.description.unknownreason": "我们最近收到举办称你的账户被用来搞事。我们的监督员已审核你的案件并认定你违反了Minecraft社区准则。", + "gui.banned.reason.false_reporting": "过多虚假或不实举办", + "gui.chatReport.discard.content": "如果离开,该举办及小作文将不会被保留。\n确定要离开吗?", + "gui.chatReport.discard.discard": "离开并放弃举办", + "gui.chatReport.discard.title": "放弃举办和小作文?", + "gui.chatReport.draft.content": "继续编辑现有举办还是放弃并新建另一份举办?", + "gui.chatReport.draft.quittotitle.title": "你有一份举办草稿将在退出时丢失", + "gui.chatReport.draft.title": "编辑举办草稿?", + "gui.chatReport.more_comments": "请描述发生的状况:", + "gui.chatReport.observed_what": "你为什么要举办?", + "gui.chatReport.read_info": "了解举办功能", + "gui.chatReport.report_sent_msg": "我们已经成功收到你的举办。非常感谢!\n\n我们的团队将尽快进行审核。", + "gui.chatReport.select_chat": "选择要举办的唠嗑消息", + "gui.chatReport.select_reason": "选择举办类型", + "gui.chatReport.selected_chat": "已选择%s条要举办的唠嗑消息", + "gui.chatReport.send.comments_too_long": "小作文字数太多了", + "gui.chatReport.send.no_reason": "请选择举办类型", + "gui.chatReport.send.no_reported_messages": "请选择至少一条要举办的唠嗑消息", + "gui.chatReport.send.too_many_messages": "举办的消息太多了", + "gui.chatReport.send": "发送举办", + "gui.chatReport.title": "举办唠嗑", + "gui.chatSelection.context": "所选唠嗑前后的部分消息将会用于提供额外的辅助信息", + "gui.chatSelection.fold": "已隐藏%s条消息", + "gui.chatSelection.heading": "%s %s", + "gui.chatSelection.join": "%s加入了唠嗑", + "gui.chatSelection.message.narrate": "%1$s在%3$s说:%2$s", + "gui.chatSelection.selected": "已选中%s条消息,共%s条", + "gui.chatSelection.title": "选择要举办的聊天消息", + "gui.socialInteractions.narration.report": "举办玩家%s", + "gui.socialInteractions.report": "举办", + "gui.socialInteractions.tooltip.report.disabled": "举办服务不可用", + "gui.socialInteractions.tooltip.report.no_messages": "玩家%s没有可举办的消息", + "gui.socialInteractions.tooltip.report.not_reportable": "无法举办该玩家,服务器无法验证其聊天消息。", + "gui.socialInteractions.tooltip.report": "举办玩家", "item.minecraft.bone_meal": "骨灰", - "lanServer.start": "创造一个橘域网世界", - "lanServer.title": "橘域网世界", - "menu.shareToLan": "对橘域网开放", + "item.minecraft.flower_banner_pattern.desc": "小fa", + "item.minecraft.flower_pot": "fa盆", + "lanServer.start": "创造一个局域网世界", + "lanServer.title": "局域网世界", + "menu.playerReporting": "玩家举办", + "menu.shareToLan": "对局域网开放", + "merchant.trades": "交易", + "multiplayer.disconnect.chat_validation_failed": "没法验证你的聊天消息,你就不能被人举办啦", + "multiplayer.disconnect.missing_public_key": "缺少公钥,这个服务器需要让所有人都能互相举办", + "multiplayer.disconnect.unsigned_chat": "你没有聊天签名,别人举办不了你", + "multiplayerWarning.message": "在线游戏由第三π对服务器提供,它们不由Bugjump Studios或Macrohard拥有、运营和监督。在线游戏的过程中,你可能会接受到不受【数据删除】的唠嗑消息或者其他类型的UGC,甚至会被登 dua 郎(但是你莫得选择)。It's up to you.", "stat.minecraft.interact_with_blast_furnace": "炼金次数", + "stat.minecraft.traded_with_villager": "奸商交易次数", + "subtitles.block.composter.empty": "堆肥桶:清空", + "subtitles.block.composter.fill": "堆肥桶:填充", + "subtitles.block.composter.ready": "堆肥桶:堆肥", "subtitles.entity.experience_orb.pickup": "获得经验", - "title.multiplayer.lan": "多人游戏(橘域网) (末响应)" -} \ No newline at end of file + "subtitles.entity.villager.hurt": "奸商:有内鬼,终止交易!", + "subtitles.entity.villager.trade": "奸商:交易", + "subtitles.entity.wandering_trader.trade": "流浪奸商:交易", + "title.multiplayer.lan": "多人游戏(局域网) (末响应)" +} diff --git a/modules/lang_sfw/module_manifest.json b/modules/lang_sfw/module_manifest.json index be9b12b61..daba01c90 100644 --- a/modules/lang_sfw/module_manifest.json +++ b/modules/lang_sfw/module_manifest.json @@ -2,10 +2,11 @@ "name": "lang_sfw", "type": "resource", "description": "适用于工作场合的文本替换", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_sleep_impossible_1.12.2-1.16.5/add.json b/modules/lang_sleep_impossible_1.12.2-1.16.5/add.json index fc0e7045d..947d7a78b 100644 --- a/modules/lang_sleep_impossible_1.12.2-1.16.5/add.json +++ b/modules/lang_sleep_impossible_1.12.2-1.16.5/add.json @@ -1,3 +1,3 @@ { "sleep.impossible": "目前的人数不足以让所有玩家停止修仙行为" -} \ No newline at end of file +} diff --git a/modules/lang_sleep_impossible_1.12.2-1.16.5/module_manifest.json b/modules/lang_sleep_impossible_1.12.2-1.16.5/module_manifest.json index 2369a7527..1bcff53f3 100644 --- a/modules/lang_sleep_impossible_1.12.2-1.16.5/module_manifest.json +++ b/modules/lang_sleep_impossible_1.12.2-1.16.5/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_sleep_impossible_1.12.2-1.16.5", "type": "resource", "description": "21w03a以前的无法入睡字符串", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_sleep_impossible_1.12.2-1.16.5/remove.json b/modules/lang_sleep_impossible_1.12.2-1.16.5/remove.json index 2645a846d..d23c7ff29 100644 --- a/modules/lang_sleep_impossible_1.12.2-1.16.5/remove.json +++ b/modules/lang_sleep_impossible_1.12.2-1.16.5/remove.json @@ -1,3 +1 @@ -[ - "sleep.not_possible" -] \ No newline at end of file +["sleep.not_possible"] diff --git a/modules/lang_spawnpoint_1.12.2-1.15.2/add.json b/modules/lang_spawnpoint_1.12.2-1.15.2/add.json index a6387325e..562eb10db 100644 --- a/modules/lang_spawnpoint_1.12.2-1.15.2/add.json +++ b/modules/lang_spawnpoint_1.12.2-1.15.2/add.json @@ -1,4 +1,4 @@ { "commands.spawnpoint.success.multiple": "已将%4$s名玩家的产卵室设为%1$s, %2$s, %3$s", "commands.spawnpoint.success.single": "已将%4$s的产卵室设为%1$s, %2$s, %3$s" -} \ No newline at end of file +} diff --git a/modules/lang_spawnpoint_1.12.2-1.15.2/module_manifest.json b/modules/lang_spawnpoint_1.12.2-1.15.2/module_manifest.json index de65b6999..e8e468a7c 100644 --- a/modules/lang_spawnpoint_1.12.2-1.15.2/module_manifest.json +++ b/modules/lang_spawnpoint_1.12.2-1.15.2/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_spawnpoint_1.12.2-1.15.2", "type": "resource", "description": "20w12a以前版本的重生信息的替换", - "author": [ - "梗体中文内容组" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file + "incompatible_with": ["lang_spawnpoint_1.16-1.16.1"] +} diff --git a/modules/lang_spawnpoint_1.16-1.16.1/add.json b/modules/lang_spawnpoint_1.16-1.16.1/add.json index 68fcbf6bb..8bce99d21 100644 --- a/modules/lang_spawnpoint_1.16-1.16.1/add.json +++ b/modules/lang_spawnpoint_1.16-1.16.1/add.json @@ -2,4 +2,4 @@ "commands.setworldspawn.success": "已将世界的产卵室设置为%s, %s, %s", "commands.spawnpoint.success.multiple": "已将%5$s名玩家在%4$s的产卵室设为%1$s, %2$s, %3$s", "commands.spawnpoint.success.single": "已将%5$s在%4$s的产卵室设为%1$s, %2$s, %3$s" -} \ No newline at end of file +} diff --git a/modules/lang_spawnpoint_1.16-1.16.1/module_manifest.json b/modules/lang_spawnpoint_1.16-1.16.1/module_manifest.json index 31c20ebb0..d0963623c 100644 --- a/modules/lang_spawnpoint_1.16-1.16.1/module_manifest.json +++ b/modules/lang_spawnpoint_1.16-1.16.1/module_manifest.json @@ -2,10 +2,12 @@ "name": "lang_spawnpoint_1.16-1.16.1", "type": "resource", "description": "20w29a以前版本的重生信息的替换", - "author": [ - "梗体中文内容组" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ], - "classifier": [ - "modified_language" - ] -} \ No newline at end of file + "incompatible_with": ["lang_spawnpoint_1.12.2-1.15.2"] +} diff --git a/modules/lang_trapdoor_1.12.2-1.15.2/add.json b/modules/lang_trapdoor_1.12.2-1.15.2/add.json index a37167326..18e820d1f 100644 --- a/modules/lang_trapdoor_1.12.2-1.15.2/add.json +++ b/modules/lang_trapdoor_1.12.2-1.15.2/add.json @@ -1,4 +1,4 @@ { - "subtitles.block.iron_trapdoor.close": "活板门:打开", - "subtitles.block.iron_trapdoor.open": "活板门:关上" -} \ No newline at end of file + "subtitles.block.iron_trapdoor.close": "陷阱门:打开", + "subtitles.block.iron_trapdoor.open": "陷阱门:关掉" +} diff --git a/modules/lang_trapdoor_1.12.2-1.15.2/module_manifest.json b/modules/lang_trapdoor_1.12.2-1.15.2/module_manifest.json index a79e0ab75..37ec4bd7d 100644 --- a/modules/lang_trapdoor_1.12.2-1.15.2/module_manifest.json +++ b/modules/lang_trapdoor_1.12.2-1.15.2/module_manifest.json @@ -2,10 +2,11 @@ "name": "lang_trapdoor_1.12.2-1.15.2", "type": "resource", "description": "对20w14a以前版本的活板门字幕更正", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_world_generation_1.12.2-1.18.2/add.json b/modules/lang_world_generation_1.12.2-1.18.2/add.json new file mode 100644 index 000000000..d0783c461 --- /dev/null +++ b/modules/lang_world_generation_1.12.2-1.18.2/add.json @@ -0,0 +1,19 @@ +{ + "createWorld.customize.preset.bottomless_pit": "无底深渊", + "createWorld.customize.preset.classic_flat": "经典平坦", + "createWorld.customize.preset.desert": "沙子漠", + "createWorld.customize.preset.overworld": "主世界", + "createWorld.customize.preset.redstone_ready": "雷石东俱备", + "createWorld.customize.preset.snowy_kingdom": "北国风光", + "createWorld.customize.preset.the_void": "虚无世界", + "createWorld.customize.preset.tunnelers_dream": "挖掘工的梦想", + "createWorld.customize.preset.water_world": "贴吧世界", + "generator.default": "默认", + "generator.flat": "平 淡 的", + "generator.large_biomes": "巨型生物群系", + "generator.amplified": "膨化世界", + "generator.customized": "自定义", + "generator.debug_all_block_states": "调试模式", + "generator.amplified.info": "注意:仅图一乐,推荐的配置是i9 10900K加RTX 3090。", + "generator.single_biome_surface": "单一生物群系" +} diff --git a/modules/lang_world_generation_1.12.2-1.18.2/module_manifest.json b/modules/lang_world_generation_1.12.2-1.18.2/module_manifest.json new file mode 100644 index 000000000..00008122f --- /dev/null +++ b/modules/lang_world_generation_1.12.2-1.18.2/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "lang_world_generation_1.12.2-1.18.2", + "type": "resource", + "description": "1.19前的世界生成", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } + ] +} diff --git a/modules/lang_world_generation_1.12.2-1.18.2/remove.json b/modules/lang_world_generation_1.12.2-1.18.2/remove.json new file mode 100644 index 000000000..d02a39547 --- /dev/null +++ b/modules/lang_world_generation_1.12.2-1.18.2/remove.json @@ -0,0 +1,20 @@ +[ + "flat_world_preset.unknown", + "flat_world_preset.minecraft.classic_flat", + "flat_world_preset.minecraft.tunnelers_dream", + "flat_world_preset.minecraft.water_world", + "flat_world_preset.minecraft.overworld", + "flat_world_preset.minecraft.snowy_kingdom", + "flat_world_preset.minecraft.bottomless_pit", + "flat_world_preset.minecraft.desert", + "flat_world_preset.minecraft.redstone_ready", + "flat_world_preset.minecraft.the_void", + "generator.minecraft.normal", + "generator.minecraft.flat", + "generator.minecraft.large_biomes", + "generator.minecraft.amplified", + "generator.minecraft.amplified.info", + "generator.minecraft.debug_all_block_states", + "generator.minecraft.single_biome_surface", + "generator.customized" +] diff --git a/modules/lang_worldborder_1.12.2-1.16.5/add.json b/modules/lang_worldborder_1.12.2-1.16.5/add.json index a4cd4649e..2c29aa3f3 100644 --- a/modules/lang_worldborder_1.12.2-1.16.5/add.json +++ b/modules/lang_worldborder_1.12.2-1.16.5/add.json @@ -1,3 +1,3 @@ { "commands.worldborder.set.failed.big.": "世界边界的宽度不能大于60,000,000格" -} \ No newline at end of file +} diff --git a/modules/lang_worldborder_1.12.2-1.16.5/module_manifest.json b/modules/lang_worldborder_1.12.2-1.16.5/module_manifest.json index 468db9824..fd2fab927 100644 --- a/modules/lang_worldborder_1.12.2-1.16.5/module_manifest.json +++ b/modules/lang_worldborder_1.12.2-1.16.5/module_manifest.json @@ -1,11 +1,13 @@ { "name": "lang_worldborder_1.12.2-1.16.5", "type": "resource", - "description": "对21w18a以前版本的世界边界过大提示的替换", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_language" + "description": "21w18a以前版本的世界边界过大提示的替换", + "author": ["梗体中文内容组"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json", + "remove": "remove.json" + } ] -} \ No newline at end of file +} diff --git a/modules/lang_worldborder_1.12.2-1.16.5/remove.json b/modules/lang_worldborder_1.12.2-1.16.5/remove.json index e2a2be1dd..bd2b1cf42 100644 --- a/modules/lang_worldborder_1.12.2-1.16.5/remove.json +++ b/modules/lang_worldborder_1.12.2-1.16.5/remove.json @@ -1,3 +1 @@ -[ - "commands.worldborder.set.failed.big" -] \ No newline at end of file +["commands.worldborder.set.failed.big"] diff --git a/modules/latiao/add.json b/modules/latiao/add.json index 444c47530..07d0d4c0d 100644 --- a/modules/latiao/add.json +++ b/modules/latiao/add.json @@ -1,3 +1,3 @@ { "item.minecraft.rotten_flesh": "奇怪的辣条" -} \ No newline at end of file +} diff --git a/modules/latiao/module_manifest.json b/modules/latiao/module_manifest.json index 575d2c3d4..f458eddac 100644 --- a/modules/latiao/module_manifest.json +++ b/modules/latiao/module_manifest.json @@ -2,11 +2,11 @@ "name": "latiao", "type": "resource", "description": "一起恰辣条", - "author": [ - "DoroWolf" - ], - "classifier": [ - "modified_resource", - "modified_language" + "author": ["DoroWolf"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/linus_minecraft_craps/add.json b/modules/linus_minecraft_craps/add.json new file mode 100644 index 000000000..bd7765688 --- /dev/null +++ b/modules/linus_minecraft_craps/add.json @@ -0,0 +1,7 @@ +{ + "block.minecraft.dropper": "Linus Sebastian", + "container.dropper": "Linus Sebastian", + "gamerule.category.drops": "Linus", + "stat.minecraft.inspect_dropper": "搜查Linus Sebastian次数", + "stat_type.minecraft.dropped": "Linus Sebastian附体次数" +} diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/block/dropper_front.png b/modules/linus_minecraft_craps/assets/minecraft/textures/block/dropper_front.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/block/dropper_front.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/block/dropper_front.png diff --git a/modules/linus_minecraft_craps/assets/minecraft/textures/environment/end_sky.png b/modules/linus_minecraft_craps/assets/minecraft/textures/environment/end_sky.png new file mode 100644 index 000000000..cb4882f9e Binary files /dev/null and b/modules/linus_minecraft_craps/assets/minecraft/textures/environment/end_sky.png differ diff --git a/modules/linus_minecraft_craps/assets/minecraft/textures/environment/sun.png b/modules/linus_minecraft_craps/assets/minecraft/textures/environment/sun.png new file mode 100644 index 000000000..8e7585c97 Binary files /dev/null and b/modules/linus_minecraft_craps/assets/minecraft/textures/environment/sun.png differ diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/alban.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/alban.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/alban.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/alban.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/aztec.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/aztec.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/aztec.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/aztec.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/aztec2.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/aztec2.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/aztec2.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/aztec2.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/back.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/back.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/back.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/back.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/bomb.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/bomb.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/bomb.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/bomb.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/burning_skull.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/burning_skull.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/burning_skull.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/burning_skull.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/bust.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/bust.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/bust.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/bust.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/courbet.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/courbet.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/courbet.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/courbet.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/creebet.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/creebet.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/creebet.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/creebet.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/donkey_kong.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/donkey_kong.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/donkey_kong.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/donkey_kong.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/fighters.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/fighters.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/fighters.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/fighters.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/graham.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/graham.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/graham.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/graham.png diff --git a/modules/linus_minecraft_craps/assets/minecraft/textures/painting/kebab.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/kebab.png new file mode 100644 index 000000000..6c6d5d4aa Binary files /dev/null and b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/kebab.png differ diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/match.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/match.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/match.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/match.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/pigscene.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/pigscene.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/pigscene.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/pigscene.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/plant.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/plant.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/plant.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/plant.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/pointer.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/pointer.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/pointer.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/pointer.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/pool.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/pool.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/pool.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/pool.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/sea.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/sea.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/sea.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/sea.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/skeleton.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/skeleton.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/skeleton.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/skeleton.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/skull_and_roses.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/skull_and_roses.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/skull_and_roses.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/skull_and_roses.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/stage.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/stage.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/stage.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/stage.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/sunset.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/sunset.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/sunset.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/sunset.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/void.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/void.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/void.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/void.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/wanderer.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/wanderer.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/wanderer.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/wanderer.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/wasteland.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/wasteland.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/wasteland.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/wasteland.png diff --git a/modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/wither.png b/modules/linus_minecraft_craps/assets/minecraft/textures/painting/wither.png similarity index 100% rename from modules/Linus_Minecraft_Craps/assets/minecraft/textures/painting/wither.png rename to modules/linus_minecraft_craps/assets/minecraft/textures/painting/wither.png diff --git a/modules/Linus_Minecraft_Craps/module_manifest.json b/modules/linus_minecraft_craps/module_manifest.json similarity index 50% rename from modules/Linus_Minecraft_Craps/module_manifest.json rename to modules/linus_minecraft_craps/module_manifest.json index 85a8a32d1..e57f6e469 100644 --- a/modules/Linus_Minecraft_Craps/module_manifest.json +++ b/modules/linus_minecraft_craps/module_manifest.json @@ -2,14 +2,12 @@ "name": "linus_minecraft_craps", "type": "resource", "description": "加拿大某位张口闭眼科技产品免费拿的男人向您诚意推荐:lttstore.com以及其他的西方迷惑meme", - "author": [ - "Zh9c418" - ], - "incompatible_with": [ - "famous_scene" - ], - "classifier": [ - "modified_resource", - "modified_language" + "author": ["Zh9c418"], + "incompatible_with": ["famous_scene"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] } diff --git a/modules/LocusAzzurro/add.json b/modules/locusazzurro/add.json similarity index 100% rename from modules/LocusAzzurro/add.json rename to modules/locusazzurro/add.json diff --git a/modules/locusazzurro/assets/minecraft/models/item/chicken_spawn_egg.json b/modules/locusazzurro/assets/minecraft/models/item/chicken_spawn_egg.json new file mode 100644 index 000000000..46dd7ab73 --- /dev/null +++ b/modules/locusazzurro/assets/minecraft/models/item/chicken_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/locus_azzurro_spawn_egg" + } +} diff --git a/modules/LocusAzzurro/assets/minecraft/textures/entity/chicken.png b/modules/locusazzurro/assets/minecraft/textures/entity/chicken.png similarity index 100% rename from modules/LocusAzzurro/assets/minecraft/textures/entity/chicken.png rename to modules/locusazzurro/assets/minecraft/textures/entity/chicken.png diff --git a/modules/LocusAzzurro/assets/minecraft/textures/item/egg.png b/modules/locusazzurro/assets/minecraft/textures/item/egg.png similarity index 100% rename from modules/LocusAzzurro/assets/minecraft/textures/item/egg.png rename to modules/locusazzurro/assets/minecraft/textures/item/egg.png diff --git a/modules/LocusAzzurro/assets/minecraft/textures/item/feather.png b/modules/locusazzurro/assets/minecraft/textures/item/feather.png similarity index 100% rename from modules/LocusAzzurro/assets/minecraft/textures/item/feather.png rename to modules/locusazzurro/assets/minecraft/textures/item/feather.png diff --git a/modules/LocusAzzurro/assets/minecraft/textures/item/locus_azzurro_spawn_egg.png b/modules/locusazzurro/assets/minecraft/textures/item/locus_azzurro_spawn_egg.png similarity index 100% rename from modules/LocusAzzurro/assets/minecraft/textures/item/locus_azzurro_spawn_egg.png rename to modules/locusazzurro/assets/minecraft/textures/item/locus_azzurro_spawn_egg.png diff --git a/modules/locusazzurro/assets/minecraft/textures/item/writable_book.png b/modules/locusazzurro/assets/minecraft/textures/item/writable_book.png new file mode 100644 index 000000000..d24f7ed13 Binary files /dev/null and b/modules/locusazzurro/assets/minecraft/textures/item/writable_book.png differ diff --git a/modules/locusazzurro/module_manifest.json b/modules/locusazzurro/module_manifest.json new file mode 100644 index 000000000..12e8023b3 --- /dev/null +++ b/modules/locusazzurro/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "locusazzurro", + "type": "resource", + "description": "鸡,蓝色,聪明,会建筑", + "author": ["Dianliang233", "LocusAzzurro", "最亮的信标"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/map_override/module_manifest.json b/modules/map_override/module_manifest.json index 14a66f503..7f27ed9ec 100644 --- a/modules/map_override/module_manifest.json +++ b/modules/map_override/module_manifest.json @@ -2,10 +2,5 @@ "name": "map_override", "type": "resource", "description": "在地图上展示我们的Slogan", - "author": [ - "Lakejason0" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Lakejason0"] +} diff --git a/modules/mcbbs/add.json b/modules/mcbbs/add.json index 76c29c8cd..d648811f4 100644 --- a/modules/mcbbs/add.json +++ b/modules/mcbbs/add.json @@ -1,66 +1,66 @@ { - "entity.minecraft.mushroom": "阿秋Minecraft", - "entity.minecraft.pig": "yellowpiggy", - "entity.minecraft.sheep": "SHEEP_REALMS", - "entity.minecraft.squid": "squid233", - "entity.minecraft.tnt": "生气的AlabTNT", - "entity.minecraft.tnt_minecart": "AlabTNT矿车", - "item.minecraft.experience_bottle": "Mr.时间之瓶", - "item.minecraft.mushroom_spawn_egg": "阿秋Minecraft刷怪蛋", - "item.minecraft.pig_spawn_egg": "yellowpiggy刷怪蛋", - "item.minecraft.sheep_spawn_egg": "SHEEP_REALMS刷怪蛋", - "item.minecraft.squid_spawn_egg": "squid233刷怪蛋", - "item.minecraft.tnt": "AlabTNT", - "item.minecraft.tnt_minecart": "AlabTNT矿车", - "item.minecraft.turtle_helmet": "奇怪的帽子", - "item.minecraft.water_bucket": "mohui666的桶", - "selectServer.add": "添加多人茶馆", - "selectServer.defaultName": "Minecraft 多人茶馆", - "selectServer.deleteQuestion": "你确定要删除此多人茶馆吗?", - "selectServer.select": "加入多人茶馆", - "selectServer.title": "选择多人茶馆", - "selectWorld.access_failure": "访问茶馆失败", - "selectWorld.allowCommands": "允许滥权", - "selectWorld.backupQuestion": "你真的想加载此茶馆吗?", - "selectWorld.backupQuestion.customized": "自定义茶馆已不受支持", - "selectWorld.backupQuestion.experimental": "不支持使用“实验性设置”的茶馆", - "selectWorld.backupWarning": "这个茶馆上次是在%s版本中游玩的,你在游玩%s版本。请备份你的茶馆,以免茶馆崩溃!", - "selectWorld.backupWarning.customized": "不巧,我们在这个版本的Minecraft中不支持自定义茶馆。我们可以继续加载这个茶馆并保持原状,但任何新生成的地形将不再被自定义。抱歉给你带来不便。", - "selectWorld.backupWarning.experimental": "这个茶馆使用的实验性设置可能会随时停止运作。我们无法保证这些设置将来能够加载或运作。务必谨慎!", - "selectWorld.cheats": "茶馆", - "selectWorld.create": "创建新的茶馆", - "selectWorld.createDemo": "进入新的试玩茶馆", - "selectWorld.data_read": "正在读取茶馆数据……", - "selectWorld.deleteQuestion": "你确定要删除这个茶馆吗?", - "selectWorld.delete_failure": "删除茶馆失败", - "selectWorld.edit.export_worldgen_settings": "导出茶馆生成设置", - "selectWorld.edit.openFolder": "打开茶馆文件夹", - "selectWorld.edit.optimize": "优化茶馆", - "selectWorld.edit.resetIcon": "重置图标", - "selectWorld.edit.title": "编辑茶馆", - "selectWorld.enterName": "茶馆名称", - "selectWorld.enterSeed": "茶馆生成器的种子", - "selectWorld.futureworld.error.text": "当我们试图加载一份来自未来版本的茶馆时,发生了一些错误。这本就并非万无一失,很抱歉没能成功。", - "selectWorld.gameMode.creative.line1": "无限的金粒,绿宝石和人气!", - "selectWorld.gameMode.creative.line2": "并且可以无拘无束!", - "selectWorld.gameMode.survival.line1": "探索茶馆、收集资源、合成道具、", - "selectWorld.gameMode.survival.line2": "提高等级、补充体力和生命值", - "selectWorld.gameRules": "茶馆规则", - "selectWorld.load_folder_access": "无法读取或访问游戏茶馆存档所在的文件夹!", - "selectWorld.mapType": "茶馆类型:", - "selectWorld.moreWorldOptions": "更多茶馆的选项…", - "selectWorld.newWorld": "新的茶馆", - "selectWorld.recreate.customized.text": "自定义茶馆在这个版本的Minecraft中已不受支持。我们可以尝试用同样的种子与选项重建它,但任何自定义的地形都会丢失。抱歉给您带来不便。", - "selectWorld.recreate.customized.title": "自定义茶馆已不受支持", - "selectWorld.recreate.error.text": "尝试重建茶馆时出错。", - "selectWorld.search": "搜索茶馆", - "selectWorld.select": "进入选中的茶馆", - "selectWorld.title": "选择茶馆", - "selectWorld.tooltip.fromNewerVersion1": "茶馆是在更新的版本中被保存的,", - "selectWorld.tooltip.fromNewerVersion2": "加载这个茶馆可能会产生问题!", - "selectWorld.tooltip.snapshot2": "不要忘了备份这个茶馆!", - "selectWorld.unable_to_load": "无法加载茶馆", - "selectWorld.versionQuestion": "你真的想加载此茶馆吗?", - "selectWorld.versionWarning": "此茶馆上次是在%s版本中游玩的,在此版本中加载可能会导致数据损坏!", - "selectWorld.world": "茶馆" -} \ No newline at end of file + "entity.minecraft.mushroom": "阿秋Minecraft", + "entity.minecraft.pig": "yellowpiggy", + "entity.minecraft.sheep": "SHEEP_REALMS", + "entity.minecraft.squid": "squid233", + "entity.minecraft.tnt": "生气的AlabTNT", + "entity.minecraft.tnt_minecart": "AlabTNT矿车", + "item.minecraft.experience_bottle": "Mr.时间之瓶", + "item.minecraft.mushroom_spawn_egg": "阿秋Minecraft刷怪蛋", + "item.minecraft.pig_spawn_egg": "yellowpiggy刷怪蛋", + "item.minecraft.sheep_spawn_egg": "SHEEP_REALMS刷怪蛋", + "item.minecraft.squid_spawn_egg": "squid233刷怪蛋", + "item.minecraft.tnt": "AlabTNT", + "item.minecraft.tnt_minecart": "AlabTNT矿车", + "item.minecraft.turtle_helmet": "奇怪的帽子", + "item.minecraft.water_bucket": "mohui666的桶", + "selectServer.add": "添加多人茶馆", + "selectServer.defaultName": "Minecraft 多人茶馆", + "selectServer.deleteQuestion": "你确定要删除此多人茶馆吗?", + "selectServer.select": "加入多人茶馆", + "selectServer.title": "选择多人茶馆", + "selectWorld.access_failure": "访问茶馆失败", + "selectWorld.allowCommands": "允许滥权", + "selectWorld.backupQuestion": "你真的想加载此茶馆吗?", + "selectWorld.backupQuestion.customized": "自定义茶馆已不受支持", + "selectWorld.backupQuestion.experimental": "不支持使用“实验性设置”的茶馆", + "selectWorld.backupWarning": "这个茶馆上次是在%s版本中游玩的,你在游玩%s版本。请备份你的茶馆,以免茶馆崩溃!", + "selectWorld.backupWarning.customized": "不巧,我们在这个版本的Minecraft中不支持自定义茶馆。我们可以继续加载这个茶馆并保持原状,但任何新生成的地形将不再被自定义。抱歉给你带来不便。", + "selectWorld.backupWarning.experimental": "这个茶馆使用的实验性设置可能会随时停止运作。我们无法保证这些设置将来能够加载或运作。务必谨慎!", + "selectWorld.cheats": "茶馆", + "selectWorld.create": "创建新的茶馆", + "selectWorld.createDemo": "进入新的试玩茶馆", + "selectWorld.data_read": "正在读取茶馆数据……", + "selectWorld.deleteQuestion": "你确定要删除这个茶馆吗?", + "selectWorld.delete_failure": "删除茶馆失败", + "selectWorld.edit.export_worldgen_settings": "导出茶馆生成设置", + "selectWorld.edit.openFolder": "打开茶馆文件夹", + "selectWorld.edit.optimize": "优化茶馆", + "selectWorld.edit.resetIcon": "重置图标", + "selectWorld.edit.title": "编辑茶馆", + "selectWorld.enterName": "茶馆名称", + "selectWorld.enterSeed": "茶馆生成器的种子", + "selectWorld.futureworld.error.text": "当我们试图加载一份来自未来版本的茶馆时,发生了一些错误。这本就并非万无一失,很抱歉没能成功。", + "selectWorld.gameMode.creative.line1": "无限的金粒,绿宝石和人气!", + "selectWorld.gameMode.creative.line2": "并且可以无拘无束!", + "selectWorld.gameMode.survival.line1": "探索茶馆、收集资源、合成道具、", + "selectWorld.gameMode.survival.line2": "提高等级、补充体力和生命值", + "selectWorld.gameRules": "茶馆规则", + "selectWorld.load_folder_access": "无法读取或访问游戏茶馆存档所在的文件夹!", + "selectWorld.mapType": "茶馆类型:", + "selectWorld.moreWorldOptions": "更多茶馆的选项…", + "selectWorld.newWorld": "新的茶馆", + "selectWorld.recreate.customized.text": "自定义茶馆在这个版本的Minecraft中已不受支持。我们可以尝试用同样的种子与选项重建它,但任何自定义的地形都会丢失。抱歉给您带来不便。", + "selectWorld.recreate.customized.title": "自定义茶馆已不受支持", + "selectWorld.recreate.error.text": "尝试重建茶馆时出错。", + "selectWorld.search": "搜索茶馆", + "selectWorld.select": "进入选中的茶馆", + "selectWorld.title": "选择茶馆", + "selectWorld.tooltip.fromNewerVersion1": "茶馆是在更新的版本中被保存的,", + "selectWorld.tooltip.fromNewerVersion2": "加载这个茶馆可能会产生问题!", + "selectWorld.tooltip.snapshot2": "不要忘了备份这个茶馆!", + "selectWorld.unable_to_load": "无法加载茶馆", + "selectWorld.versionQuestion": "你真的想加载此茶馆吗?", + "selectWorld.versionWarning": "此茶馆上次是在%s版本中游玩的,在此版本中加载可能会导致数据损坏!", + "selectWorld.world": "茶馆" +} diff --git a/modules/mcbbs/module_manifest.json b/modules/mcbbs/module_manifest.json index 3462b4afa..7fc609a31 100644 --- a/modules/mcbbs/module_manifest.json +++ b/modules/mcbbs/module_manifest.json @@ -2,10 +2,11 @@ "name": "mcbbs", "type": "resource", "description": "修改了物品名和生物名,还有一些其他的。", - "author": [ - "ZX夏夜之风" - ], - "classifier": [ - "modified_language" + "author": ["ZX夏夜之风"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/meme_resourcepack/LICENSE b/modules/meme_resourcepack/LICENSE similarity index 100% rename from meme_resourcepack/LICENSE rename to modules/meme_resourcepack/LICENSE diff --git a/meme_resourcepack/assets/minecraft/lang/zh_meme.json b/modules/meme_resourcepack/assets/minecraft/lang/zh_meme.json similarity index 50% rename from meme_resourcepack/assets/minecraft/lang/zh_meme.json rename to modules/meme_resourcepack/assets/minecraft/lang/zh_meme.json index 743cf0232..91a2a83e8 100644 --- a/meme_resourcepack/assets/minecraft/lang/zh_meme.json +++ b/modules/meme_resourcepack/assets/minecraft/lang/zh_meme.json @@ -1,4 +1,7 @@ { + "accessibility.onboarding.accessibility.button": "辅助功能设置…", + "accessibility.onboarding.screen.narrator": "按下Enter键以打开复读机功能", + "accessibility.onboarding.screen.title": "欢迎进入Minecraft!\n\n需要启用复读机功能或访问轻松使用设置吗?", "addServer.add": "我好了", "addServer.enterIp": "服务器地址", "addServer.enterName": "服务器名称", @@ -8,11 +11,11 @@ "addServer.resourcePack.enabled": "用,都可以用", "addServer.resourcePack.prompt": "我要我觉得", "addServer.title": "编辑服务器信息", - "advMode.allEntities": "用“@e”来代表全部实体", - "advMode.allPlayers": "用“@a”来代表全部玩家", + "advMode.allEntities": "用“@e”来代表全部受害人,包括不是人的", + "advMode.allPlayers": "用“@a”来代表全体受害人", "advMode.command": "控制台滥权命令", "advMode.mode": "模式", - "advMode.mode.auto": "循环", + "advMode.mode.auto": "复读", "advMode.mode.autoexec.bat": "不要停下来啊啊啊", "advMode.mode.conditional": "条件制约", "advMode.mode.redstone": "脉冲", @@ -20,10 +23,10 @@ "advMode.mode.sequence": "铁 索 连 环", "advMode.mode.unconditional": "无 法 无 天", "advMode.nearestPlayer": "用“@p”来代表距离最近的玩家", - "advMode.notAllowed": "必须是处于创造模式的滥权管理员", + "advMode.notAllowed": "必须是处于上帝模式的滥权管理员", "advMode.notEnabled": "滥权方块没有在此服务器上启用", "advMode.previousOutput": "上一个滥权结果", - "advMode.randomPlayer": "用“@r”来代表随机受害者", + "advMode.randomPlayer": "用“@r”来代表随机受害人", "advMode.self": "用“@s”来代表执剑人", "advMode.setCommand": "设置此方块的控制台滥权命令", "advMode.setCommand.success": "成功设置滥权:%s", @@ -31,69 +34,103 @@ "advMode.triggering": "触发方式", "advMode.type": "类型", "advancement.advancementNotFound": "未知的进步:%s", - "advancements.adventure.adventuring_time.description": "生物群系全被你逛完了", - "advancements.adventure.adventuring_time.title": "探险活宝", - "advancements.adventure.arbalistic.description": "用弩一发击杀五只不同的暴徒", + "advancements.adventure.adventuring_time.description": "我曾经跨过山和大海", + "advancements.adventure.adventuring_time.title": "踏破祖安靴有觅处", + "advancements.adventure.arbalistic.description": "用诸葛连弩一发击杀五只不同的暴徒", "advancements.adventure.arbalistic.title": "箭神", + "advancements.adventure.avoid_vibration.description": "在幽(yóu)匿分贝仪、幽(yóu)匿尖叫体或傻大个周围偷偷摸摸免得吵到它们睡美容觉", + "advancements.adventure.avoid_vibration.title": "偷偷摸摸点满", + "advancements.adventure.blowback.description": "用弹(tán)回去的风弹(dàn)搞死一只风棒子人", + "advancements.adventure.blowback.title": "吹弹(dàn)可破", + "advancements.adventure.brush_armadillo.description": "拿鸡毛掸子对犰狳做一些不可描述(?)的事后拿到鳞甲", + "advancements.adventure.brush_armadillo.title": "这不是鳞甲么?", "advancements.adventure.bullseye.description": "从至少三十米外射中TARGET®的靶心", "advancements.adventure.bullseye.title": "神射手", + "advancements.adventure.craft_decorated_pot_using_only_sherds.description": "抽卡不出,只能拿保底的碎片合成大型花盆的你", + "advancements.adventure.craft_decorated_pot_using_only_sherds.title": "经典老番", + "advancements.adventure.crafters_crafting_crafters.description": "如果你看到一个合成器正在合成合成器,那么将会有一个合成器被合成合成器的合成器合成", + "advancements.adventure.crafters_crafting_crafters.title": "合成合成合成器器", "advancements.adventure.fall_from_world_height.description": "自世界天花板星跳水立方,一直Freedom D↓ve到基岩层。\n警告:小心别dropdead了。", - "advancements.adventure.fall_from_world_height.title": "真 · 洞穴与山崖", + "advancements.adventure.fall_from_world_height.title": "真·洞穴与山崖", "advancements.adventure.hero_of_the_village.description": "成功保卫奸商聚集地", "advancements.adventure.hero_of_the_village.title": "带英雄", - "advancements.adventure.honey_block_slide.description": "跳入音效巨恶心的黏糊糊的方块以缓解摔落。\n警告:你可能会被它的声音恶心到。", + "advancements.adventure.honey_block_slide.description": "跳入音效巨恶心黏糊糊的方块以缓解摔落。\n警告:你可能会被它的声音恶心到。", "advancements.adventure.honey_block_slide.title": "这玩意好黏", - "advancements.adventure.kill_a_mob.description": "弄死任意敌对性怪物", + "advancements.adventure.kill_a_mob.description": "弄死任意敌对性生物", "advancements.adventure.kill_a_mob.title": "猛汉", - "advancements.adventure.kill_all_mobs.description": "弄死每一种敌对性怪物", - "advancements.adventure.kill_all_mobs.title": "超级猛汉", + "advancements.adventure.kill_all_mobs.description": "弄死每一种敌对性生物", + "advancements.adventure.kill_all_mobs.title": "猛 汉 王", + "advancements.adventure.kill_mob_near_sculk_catalyst.description": "在幽(yóu)匿催化剂附近弄死暴徒", + "advancements.adventure.kill_mob_near_sculk_catalyst.title": "它估计大概可能也许应该会蔓延", + "advancements.adventure.lighten_up.description": "用斧刮刮框架材料为铜的照明方块,让它亮亮", + "advancements.adventure.lighten_up.title": "照亮你我", "advancements.adventure.lightning_rod_with_villager_no_fire.description": "给奸商聚集地装一根雷 霆 法 杖", - "advancements.adventure.lightning_rod_with_villager_no_fire.title": "你偏要模仿ElectroBOOM?", - "advancements.adventure.ol_betsy.description": "用弩射一下箭", + "advancements.adventure.lightning_rod_with_villager_no_fire.title": "天降正义", + "advancements.adventure.minecraft_trials_edition.description": "登录试用大厅", + "advancements.adventure.minecraft_trials_edition.title": "《我的世界试用版》", + "advancements.adventure.ol_betsy.description": "用诸葛连弩射一下箭", "advancements.adventure.ol_betsy.title": "乱射一通", - "advancements.adventure.root.description": "你超勇的,超会浪的啦", - "advancements.adventure.root.title": "冒险", + "advancements.adventure.overoverkill.description": "使用咚咚锤单次咚出100点伤害", + "advancements.adventure.overoverkill.title": "大锤侠の魅力时刻", + "advancements.adventure.play_jukebox_in_meadows.description": "在伊甸园放音乐。\n以及,这也能水一个进步?", + "advancements.adventure.play_jukebox_in_meadows.title": "音乐之声", + "advancements.adventure.read_power_from_chiseled_bookshelf.description": "使用全 桥 整 流获取使用了大师级雕刻技艺的书山的信号强度", + "advancements.adventure.read_power_from_chiseled_bookshelf.title": "知识就是力量", + "advancements.adventure.revaulting.description": "用阿米诺斯试用版密钥解锁阿米诺斯保管库", + "advancements.adventure.revaulting.title": "倒宝入库", + "advancements.adventure.root.description": "我超勇的,超会浪的啦", + "advancements.adventure.root.title": "浪", + "advancements.adventure.salvage_sherd.description": "让SUS的方块爆出一些陶罐碎片", + "advancements.adventure.salvage_sherd.title": "音容宛在", "advancements.adventure.shoot_arrow.description": "用弓箭射中一个受害者", "advancements.adventure.shoot_arrow.title": "一发入魂", "advancements.adventure.sleep_in_bed.description": "通过在床上数水饺来改变你的死去活来点", "advancements.adventure.sleep_in_bed.title": "做梦", "advancements.adventure.sniper_duel.description": "50米开外,一箭干掉一只小白", "advancements.adventure.sniper_duel.title": "中门对狙", - "advancements.adventure.spyglass_at_parrot.description": "透过偷窥镜偷窥咕咕咕", - "advancements.adventure.spyglass_at_parrot.title": "那是鸽子吗?", - "advancements.adventure.spyglass_at_ghast.description": "透过偷窥镜偷窥地狱轰炸机", - "advancements.adventure.spyglass_at_ghast.title": "那是气球吗?", "advancements.adventure.spyglass_at_dragon.description": "透过偷窥镜偷窥昆图库塔卡提考特苏瓦西拉松", - "advancements.adventure.spyglass_at_dragon.title": "那是灰机吗?", + "advancements.adventure.spyglass_at_dragon.title": "伙计们,看呐,有灰机欸!", + "advancements.adventure.spyglass_at_ghast.description": "透过偷窥镜偷窥地狱轰炸机", + "advancements.adventure.spyglass_at_ghast.title": "伙计们,看呐,有飞飞球欸!", + "advancements.adventure.spyglass_at_parrot.description": "透过偷窥镜偷窥咕咕", + "advancements.adventure.spyglass_at_parrot.title": "伙计们,看呐,有小鸟欸!", "advancements.adventure.summon_iron_golem.description": "传唤一只铁憨憨来帮忙守卫奸商聚集地", "advancements.adventure.summon_iron_golem.title": "高大威猛", "advancements.adventure.throw_trident.description": "乱扔鱼叉。\n注:别把你唯一的武器也扔掉了。", "advancements.adventure.throw_trident.title": "禁止乱扔东西", "advancements.adventure.totem_of_undying.description": "利用安全用一次性物品逃离死神", "advancements.adventure.totem_of_undying.title": "AWHL", - "advancements.adventure.trade.description": "成功与一名村民进行交♂易", + "advancements.adventure.trade.description": "成功与一名奸商进行交♂易", "advancements.adventure.trade.title": "交♂易成功", - "advancements.adventure.trade_at_world_height.title": "星际交♂易", "advancements.adventure.trade_at_world_height.description": "在世界天花板和奸商交♂易", + "advancements.adventure.trade_at_world_height.title": "星际交♂易", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.description": "将下列{{锻造}}都至少使用一次:尖塔、插座、肋排、傻大个、幽静、猥傀、潮汐、找路的", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.title": "个性化锻造", + "advancements.adventure.trim_with_any_armor_pattern.description": "在锤子台中合成带有纹饰的盔甲", + "advancements.adventure.trim_with_any_armor_pattern.title": "换个新造型", "advancements.adventure.two_birds_one_arrow.description": "用一支穿透箭射杀两只IcyPhantom", "advancements.adventure.two_birds_one_arrow.title": "一箭双雕", - "advancements.adventure.very_very_frightening.description": "雷击一名村民", - "advancements.adventure.very_very_frightening.title": "开 幕 雷 击", + "advancements.adventure.under_lock_and_key.description": "使用试用版密钥解锁个人保管库", + "advancements.adventure.under_lock_and_key.title": "地下、锁与钥匙", + "advancements.adventure.very_very_frightening.description": "雷击一名奸商", + "advancements.adventure.very_very_frightening.title": "开幕雷击", "advancements.adventure.voluntary_exile.description": "弄死一名袭击队长。\n并且尽快进入奸商聚集地。", "advancements.adventure.voluntary_exile.title": "进去村庄我给你加个buff", "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "在雪糕上行走……并且不陷下去", "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "像一只兔崽子一样发光", - "advancements.adventure.whos_the_pillager_now.description": "让掠夺者也尝尝弩的滋味", + "advancements.adventure.who_needs_rockets.description": "使用风弹将自己向上弹射7格", + "advancements.adventure.who_needs_rockets.title": "双击送火箭", + "advancements.adventure.whos_the_pillager_now.description": "让掠夺者也尝尝诸葛连弩的滋味", "advancements.adventure.whos_the_pillager_now.title": "反客为主", "advancements.empty": "这里好像什么都莫得……", - "advancements.end.dragon_breath.description": "用玻璃瓶收集一些龙(nóng)痰", + "advancements.end.dragon_breath.description": "用安瓿瓶收集一些龙(nóng)痰", "advancements.end.dragon_breath.title": "你需要来点益达®", "advancements.end.dragon_egg.description": "获得昆图库塔卡提考特苏瓦西拉松蛋,尽管不能获得王浩然", "advancements.end.dragon_egg.title": "欢乐一代接一代", "advancements.end.elytra.description": "阁下何不随风起,扶摇直上九万里", - "advancements.end.elytra.title": "一飞冲天", + "advancements.end.elytra.title": "limx->∞=天", "advancements.end.enter_end_gateway.description": "逃离这个岛屿", - "advancements.end.enter_end_gateway.title": "远程遥控", + "advancements.end.enter_end_gateway.title": "光速逃离", "advancements.end.find_end_city.description": "这里的植物和建筑有点像二叉树", "advancements.end.find_end_city.title": "蒙达鲁克硫斯伯古比奇巴勒城", "advancements.end.kill_dragon.description": "你赢了,但这一切值得吗?", @@ -104,48 +141,68 @@ "advancements.end.respawn_dragon.title": "…咋这么眼熟呢", "advancements.end.root.description": "也许是起点?谁知道呢", "advancements.end.root.title": "终点", + "advancements.husbandry.allay_deliver_cake_to_note_block.description": "让小安粒向笔记方块投掷一块蛋糕", + "advancements.husbandry.allay_deliver_cake_to_note_block.title": "祝你生日快乐", + "advancements.husbandry.allay_deliver_item_to_player.description": "让小安粒送你东西", + "advancements.husbandry.allay_deliver_item_to_player.title": "好 朋 友", "advancements.husbandry.axolotl_in_a_bucket.description": "用铁桶抓住一只六角恐龙", "advancements.husbandry.axolotl_in_a_bucket.title": "萌系猛兽", "advancements.husbandry.balanced_diet.description": "真棒!你是一个不挑食的好孩子!", - "advancements.husbandry.balanced_diet.title": "XX今天吃什么", - "advancements.husbandry.breed_all_animals.description": "繁殖每种动物!", + "advancements.husbandry.balanced_diet.title": "真香!", + "advancements.husbandry.breed_all_animals.description": "帮每种动物组建家庭!", "advancements.husbandry.breed_all_animals.title": "二 人 幸 终", - "advancements.husbandry.breed_an_animal.description": "繁殖一对动物", + "advancements.husbandry.breed_an_animal.description": "帮一对动物组建家庭", "advancements.husbandry.breed_an_animal.title": "我是谁?我在哪?我从哪儿来?", "advancements.husbandry.complete_catalogue.description": "为所有种类的喵喵铲屎", "advancements.husbandry.complete_catalogue.title": "终极铲屎官", + "advancements.husbandry.feed_snifflet.description": "喂一只幼年嗅嗅", + "advancements.husbandry.feed_snifflet.title": "小小嗅嗅", "advancements.husbandry.fishy_business.description": "钓到一条鱼", "advancements.husbandry.fishy_business.title": "钩直饵咸", - "advancements.husbandry.kill_axolotl_target.description": "对着六角恐龙说出“我们联合”并取得两面包夹芝士一般的胜利", + "advancements.husbandry.froglights.description": "集齐所有蛙の明灯", + "advancements.husbandry.froglights.title": "我们联合!", + "advancements.husbandry.kill_axolotl_target.description": "对着六角恐龙说出“我们联合”并形成两面包夹芝士", "advancements.husbandry.kill_axolotl_target.title": "友谊是魔法!", - "advancements.husbandry.make_a_sign_glow.description": "让搞事牌上的字亮起来", + "advancements.husbandry.leash_all_frog_variants.description": "用铅拴住所有种类的蛙", + "advancements.husbandry.leash_all_frog_variants.title": "蛙蛙队出动", + "advancements.husbandry.make_a_sign_glow.description": "让任意种类搞事牌上的字目害起来", "advancements.husbandry.make_a_sign_glow.title": "DAISUKE", - "advancements.husbandry.netherite_hoe.description": "用下界玄素锭升级一把锄,然后重新考虑你的人生抉择", - "advancements.husbandry.netherite_hoe.title": "还是吃的太饱了", + "advancements.husbandry.netherite_hoe.description": "用下界玄素锭升级一把锄,然后思考生存还是毁灭", + "advancements.husbandry.netherite_hoe.title": "还是要从袁隆平说起", + "advancements.husbandry.obtain_sniffer_egg.description": "获得嗅嗅的蛋", + "advancements.husbandry.obtain_sniffer_egg.title": "嗅什么蛋?", + "advancements.husbandry.plant_any_sniffer_seed.description": "种下任意嗅嗅的种子", + "advancements.husbandry.plant_any_sniffer_seed.title": "朝花夕拾", "advancements.husbandry.plant_seed.description": "我种下一颗种子,终于长出了果实,今天是个伟大的日子……", - "advancements.husbandry.plant_seed.title": "开荒垦地", - "advancements.husbandry.play_jukebox_in_meadows.description": "在草旬放音乐。\n以及,这也能水一个进度?", - "advancements.husbandry.play_jukebox_in_meadows.title": "音乐之声", - "advancements.husbandry.ride_a_boat_with_a_goat.description": "和山羊一起坐在《明日方舟》上", + "advancements.husbandry.plant_seed.title": "开荒南野际", + "advancements.husbandry.remove_wolf_armor.description": "用剪刀移除狼身上的狼铠", + "advancements.husbandry.remove_wolf_armor.title": "一刀,缭断!", + "advancements.husbandry.repair_wolf_armor.description": "用犰狳鳞甲修复损坏的狼铠", + "advancements.husbandry.repair_wolf_armor.title": "缝缝补补还能用", + "advancements.husbandry.ride_a_boat_with_a_goat.description": "和大角羊一起坐在明日方舟®上", "advancements.husbandry.ride_a_boat_with_a_goat.title": "你开心就好", "advancements.husbandry.root.description": "世界无处没有吃的与吃的", "advancements.husbandry.root.title": "第一产业", - "advancements.husbandry.safely_harvest_honey.description": "利用营火欺骗蜂子并从蜂巢收集蜂蜜", - "advancements.husbandry.safely_harvest_honey.title": "与蜂共舞", - "advancements.husbandry.silk_touch_nest.description": "用精准采集移动住着三只蜂子的蜂巢", + "advancements.husbandry.safely_harvest_honey.description": "利用篝火欺骗蜂子并从蜂人院收集甜蜜蜜", + "advancements.husbandry.safely_harvest_honey.title": "镐蜂啦", + "advancements.husbandry.silk_touch_nest.description": "用丝绸之触移动住着三只蜂子的我蜂了", "advancements.husbandry.silk_touch_nest.title": "完 全 蜜 蜂 地 点", "advancements.husbandry.tactical_fishing.description": "不用沙滩男孩抓住一条鱼!", - "advancements.husbandry.tactical_fishing.title": "钓鱼佬今天没空军", - "advancements.husbandry.tame_an_animal.description": "驯服一只动物", + "advancements.husbandry.tactical_fishing.title": "硬核捕鱼", + "advancements.husbandry.tadpole_in_a_bucket.description": "用铁桶抓住一只蝌蚪", + "advancements.husbandry.tadpole_in_a_bucket.title": "(Bukkit)²", + "advancements.husbandry.tame_an_animal.description": "用食物收买一只动物,或者对部分动物而言不需要", "advancements.husbandry.tame_an_animal.title": "永恒的马仔", - "advancements.husbandry.wax_on.description": "以镀膜的形式将蜡均匀地覆盖在内部材料为铜的方块的表面上", - "advancements.husbandry.wax_on.title": "真·覆膜", "advancements.husbandry.wax_off.description": "把内部材料为铜的方块的以镀膜的形式均匀地覆盖在表面上的蜡刮掉", "advancements.husbandry.wax_off.title": "真·祛膜", + "advancements.husbandry.wax_on.description": "以镀膜的形式将蜡均匀地覆盖在内部材料为铜的方块的表面上", + "advancements.husbandry.wax_on.title": "真·覆膜", + "advancements.husbandry.whole_pack.description": "集齐HLDoroWolf全部风格的同人周边", + "advancements.husbandry.whole_pack.title": "全收集", "advancements.nether.all_effects.description": "同时拥有所有buff,并且打死一名白学家", - "advancements.nether.all_effects.title": "喝高了?", + "advancements.nether.all_effects.title": "你为什么要这样做?", "advancements.nether.all_potions.description": "同时拥有所有溶液buff", - "advancements.nether.all_potions.title": "致 命 剂 量", + "advancements.nether.all_potions.title": "叠buff", "advancements.nether.brew_potion.description": "配制一瓶溶液", "advancements.nether.brew_potion.title": "绝命毒师", "advancements.nether.charge_respawn_anchor.description": "为锚台充满能量。\n注:谐音梗是要扣钱的。", @@ -161,9 +218,9 @@ "advancements.nether.fast_travel.description": "利用尼德兰移动对应主世界7千米的距离", "advancements.nether.fast_travel.title": "次元旅行", "advancements.nether.find_bastion.description": "进入猪刚鬣之家", - "advancements.nether.find_bastion.title": "光辉岁月", + "advancements.nether.find_bastion.title": "那是最好的时代", "advancements.nether.find_fortress.description": "用你的方式进入尼德兰要塞", - "advancements.nether.find_fortress.title": "阴森的要塞", + "advancements.nether.find_fortress.title": "那是最坏的时代", "advancements.nether.get_wither_skull.description": "获得凋零骷髅的头颅", "advancements.nether.get_wither_skull.title": "白金之星第一步", "advancements.nether.loot_bastion.description": "掠夺猪刚鬣之家里的胸部", @@ -172,39 +229,40 @@ "advancements.nether.netherite_armor.title": "玄素裹身", "advancements.nether.obtain_ancient_debris.description": "获得废铁块", "advancements.nether.obtain_ancient_debris.title": "深藏不露", - "advancements.nether.obtain_blaze_rod.description": "让烈焰人从大火杆中解放吧", - "advancements.nether.obtain_blaze_rod.title": "与火共舞", + "advancements.nether.obtain_blaze_rod.description": "让火棒子人从烧火棍中解放吧", + "advancements.nether.obtain_blaze_rod.title": "3,2,1,fire!", "advancements.nether.obtain_crying_obsidian.description": "获得大 喊 大 叫 黑 曜 石", "advancements.nether.obtain_crying_obsidian.title": "我哭了,你呢", - "advancements.nether.return_to_sender.description": "用一团火球搞死一只地狱轰炸机", - "advancements.nether.return_to_sender.title": "见鬼去吧", + "advancements.nether.return_to_sender.description": "用一团发热宝搞死一只地狱轰炸机", + "advancements.nether.return_to_sender.title": "反弹!", "advancements.nether.ride_strider.description": "手持幽蓝菌钓竿骑乘炫迈兽", "advancements.nether.ride_strider.title": "这个舟,有舟还有足", + "advancements.nether.ride_strider_in_overworld_lava.description": "把炫迈兽拉到主世界的熔岩里遛一遛", "advancements.nether.ride_strider_in_overworld_lava.title": "到家了!但又没有完全到", - "advancements.nether.ride_strider_in_overworld_lava.description": "把炫迈兽拉到主世界的岩浆里遛一遛", - "advancements.nether.root.description": "热死了热死了", + "advancements.nether.root.description": "锟斤拷烫烫烫", "advancements.nether.root.title": "尼德兰", "advancements.nether.summon_wither.description": "传唤一只凋零怪", "advancements.nether.summon_wither.title": "死神来了", "advancements.nether.uneasy_alliance.description": "从尼德兰救出一只地狱轰炸机,将其安全地带到主世界……然后弄死它", "advancements.nether.uneasy_alliance.title": "请打开麦克风交流", - "advancements.nether.use_lodestone.description": "对着罗德(岛)石使用NullPointerException", - "advancements.nether.use_lodestone.title": "罗德岛是你家", + "advancements.nether.use_lodestone.description": "对着罗德(岛)石使用不指南的指南针", + "advancements.nether.use_lodestone.title": "罗德石是你家", + "advancements.progress": "%s/%s", "advancements.sad_label": "(´xωx`)", - "advancements.story.cure_zombie_villager.description": "弱化并治疗一名姜丝村民", + "advancements.story.cure_zombie_villager.description": "弱化并治疗一名姜丝奸商", "advancements.story.cure_zombie_villager.title": "雄氏新方", "advancements.story.deflect_arrow.description": "用盾牌反弹一个弹射物", "advancements.story.deflect_arrow.title": "不吃这“套”,谢谢", "advancements.story.enchant_item.description": "在覆膜台里覆膜一样物品", "advancements.story.enchant_item.title": "覆膜术士", - "advancements.story.enter_the_end.description": "进入终点传送门", + "advancements.story.enter_the_end.description": "进入终端门户", "advancements.story.enter_the_end.title": "结束了?", - "advancements.story.enter_the_nether.description": "建造、启动并进入一个尼德兰传送门", - "advancements.story.enter_the_nether.title": "我们需要再深♂入一些", - "advancements.story.follow_ender_eye.description": "跟随末影之眼", + "advancements.story.enter_the_nether.description": "建造、启动并进入一个尼德兰门户", + "advancements.story.enter_the_nether.title": "尼德兰,启动!", + "advancements.story.follow_ender_eye.description": "跟随小黑眼", "advancements.story.follow_ender_eye.title": "隔墙有眼", "advancements.story.form_obsidian.description": "获得一块黑曜石", - "advancements.story.form_obsidian.title": "冰桶挑战", + "advancements.story.form_obsidian.title": "冷水浇头", "advancements.story.iron_tools.description": "升级你的giao子", "advancements.story.iron_tools.title": "Ff98sha,参上!", "advancements.story.lava_bucket.description": "用铁桶装点熔岩", @@ -215,7 +273,7 @@ "advancements.story.mine_stone.title": "石器时代", "advancements.story.obtain_armor.description": "用铁盔甲来保护你自己", "advancements.story.obtain_armor.title": "装甲师", - "advancements.story.root.description": "游戏那并不存在的故事", + "advancements.story.root.description": "分享你刚编的故事", "advancements.story.root.title": "Minecraft", "advancements.story.shiny_gear.description": "祖安石盔甲能救人", "advancements.story.shiny_gear.title": "我是土豪", @@ -229,22 +287,22 @@ "argument.anchor.invalid": "无效的实体锚点%s", "argument.angle.incomplete": "不完整(需要1个角度)", "argument.angle.invalid": "无效的角度", - "argument.block.id.invalid": "未知的方块类型:'%s'", - "argument.block.property.duplicate": "'%s'属性只能给%s设置一次", - "argument.block.property.invalid": "%1$s的%3$s属性不能被设为'%2$s'", - "argument.block.property.novalue": "%s上必须要有'%s'属性", + "argument.block.id.invalid": "未知的方块类型:“%s”", + "argument.block.property.duplicate": "“%s”属性只能给%s设置一次", + "argument.block.property.invalid": "%1$s的%3$s属性不能被设为“%2$s”", + "argument.block.property.novalue": "%s上必须要有“%s”属性", "argument.block.property.unclosed": "方块属性应以]结束", - "argument.block.property.unknown": "%s没有'%s'属性", + "argument.block.property.unknown": "%s没有“%s”属性", "argument.block.tag.disallowed": "你竟然想在这里使用一个标签,想peach呢!", - "argument.color.invalid": "你在搞未知的颜色'%s'", + "argument.color.invalid": "你在搞未知的颜色“%s”", "argument.component.invalid": "无效的唠嗑文本: %s", - "argument.criteria.invalid": "未知的准则:'%s'", - "argument.dimension.invalid": "未知的维度'%s'", + "argument.criteria.invalid": "未知的准则:“%s”", + "argument.dimension.invalid": "未知的维度“%s”", "argument.double.big": "双精度浮点数不能大于%s,却发现了%s,爬!", "argument.double.low": "双精度浮点数不能小于%s,却发现了%s,爬!", "argument.entity.invalid": "无效的名称或UUID", - "argument.entity.notfound.entity": "没找着实体", - "argument.entity.notfound.player": "没找着玩家", + "argument.entity.notfound.entity": "没找着受害实体", + "argument.entity.notfound.player": "没找着受害人", "argument.entity.options.advancements.description": "玩家拥有的进步", "argument.entity.options.distance.description": "与实体间的间距", "argument.entity.options.distance.negative": "负距离接触?想什么呢", @@ -252,58 +310,62 @@ "argument.entity.options.dy.description": "位于y与y+dy之间的实体", "argument.entity.options.dz.description": "位于z与z+dz之间的实体", "argument.entity.options.gamemode.description": "玩家的游戏模式", - "argument.entity.options.inapplicable": "'%s'选项不适用于此", + "argument.entity.options.inapplicable": "“%s”选项不适用于此", "argument.entity.options.level.description": "经验等级", "argument.entity.options.level.negative": "等级没有负的你个憨批", "argument.entity.options.limit.description": "最大返回实体数", "argument.entity.options.limit.toosmall": "限制必须至少为1", - "argument.entity.options.mode.invalid": "无效或未知的游戏模式'%s'", + "argument.entity.options.mode.invalid": "无效或未知的游戏模式“%s”", "argument.entity.options.name.description": "实体名称", "argument.entity.options.nbt.description": "实体所带的NBT", "argument.entity.options.predicate.description": "自定义谓词", "argument.entity.options.scores.description": "实体的分数", "argument.entity.options.sort.description": "对实体排序", - "argument.entity.options.sort.irreversible": "无效或未知的排序类型'%s'", + "argument.entity.options.sort.irreversible": "无效或未知的排序类型“%s”", "argument.entity.options.tag.description": "实体所带的标签", "argument.entity.options.team.description": "实体所在的专业团队", "argument.entity.options.type.description": "实体类型", - "argument.entity.options.type.invalid": "无效或未知的实体类型'%s'", - "argument.entity.options.unknown": "未知的选项'%s'", + "argument.entity.options.type.invalid": "无效或未知的实体类型“%s”", + "argument.entity.options.unknown": "未知的选项“%s”", "argument.entity.options.unterminated": "选项的方括号不成对", - "argument.entity.options.valueless": "选项'%s'需要有值", + "argument.entity.options.valueless": "选项“%s”需要有值", "argument.entity.options.x.description": "X轴位置", "argument.entity.options.x_rotation.description": "实体的X轴旋转角度", "argument.entity.options.y.description": "Y轴位置", "argument.entity.options.y_rotation.description": "实体的Y轴旋转角度", "argument.entity.options.z.description": "Z轴位置", - "argument.entity.selector.allEntities": "所有实体", - "argument.entity.selector.allPlayers": "所有玩家", + "argument.entity.selector.allEntities": "所有受害实体", + "argument.entity.selector.allPlayers": "所有受害人", "argument.entity.selector.missing": "缺少选择器类型", - "argument.entity.selector.nearestPlayer": "距离最近的玩家", + "argument.entity.selector.nearestEntity": "距离最近的受害实体", + "argument.entity.selector.nearestPlayer": "距离最近的受害人", "argument.entity.selector.not_allowed": "不能使用选择器", - "argument.entity.selector.randomPlayer": "随机玩家", + "argument.entity.selector.randomPlayer": "随机受害人", "argument.entity.selector.self": "当前实体", - "argument.entity.selector.unknown": "未知的选择器类型'%s'", + "argument.entity.selector.unknown": "未知的选择器类型“%s”", "argument.entity.toomany": "只允许一个实体,但提供的选择器允许多个实体", + "argument.enum.invalid": "无效的值“%s”", "argument.float.big": "浮点数不能大于%s,却发现了%s,爬!", "argument.float.low": "浮点数不能小于%s,却发现了%s,爬!", + "argument.gamemode.invalid": "未知的游戏模式:%s", "argument.id.invalid": "无效的ID", "argument.id.unknown": "未知的ID:%s", "argument.integer.big": "整数不能大于%s,却发现了%s,爬!", "argument.integer.low": "整数不能小于%s,却发现了%s,爬!", - "argument.item.id.invalid": "未知的物品'%s'", + "argument.item.id.invalid": "未知的物品“%s”", "argument.item.tag.disallowed": "无法在此使用标签,只允许使用实际的物品", "argument.literal.incorrect": "需要字面量%s", "argument.long.big": "长整数不能大于%s,却发现了%s,爬!", "argument.long.low": "长整数不能小于%s,却发现了%s,爬!", - "argument.nbt.array.invalid": "无效的数组类型'%s'", + "argument.message.too_long": "话太多了(%s,最多%s个字符)", + "argument.nbt.array.invalid": "无效的数组类型“%s”", "argument.nbt.array.mixed": "无法将%s插入%s", "argument.nbt.expected.key": "需要键值", "argument.nbt.expected.value": "需要值", "argument.nbt.list.mixed": "无法将%s插入%s的列表", "argument.nbt.trailing": "多余的尾随数据", - "argument.player.entities": "只有玩家会受此滥权的影响,但提供的选择器包括其他实体", - "argument.player.toomany": "只允许一个玩家,但提供的选择器允许多个玩家", + "argument.player.entities": "只有人类应该受此滥权的影响,但在提供的选择器里检测到非人物体", + "argument.player.toomany": "只允许一个受害人,但提供的选择器里人太多了", "argument.player.unknown": "这个玩家404了", "argument.pos.missing.double": "需要一个坐标", "argument.pos.missing.int": "需要一个方块的位置", @@ -316,132 +378,145 @@ "argument.range.empty": "需要值或取值范围", "argument.range.ints": "只允许整数,不允许小数", "argument.range.swapped": "最小值不能大于最大值", + "argument.resource.invalid_type": "元素“%s”的类型“%s”错误(应为“%s”)", + "argument.resource.not_found": "无法找到类型为“%2$s”的元素“%1$s”", + "argument.resource_or_id.failed_to_parse": "解析结构失败:%s", + "argument.resource_or_id.invalid": "无效的ID或标签", + "argument.resource_tag.invalid_type": "标签“%s”的类型“%s”错误(应为“%s”)", + "argument.resource_tag.not_found": "无法找到类型为“%2$s”的标签“%1$s”", "argument.rotation.incomplete": "不完整(需要2个坐标)", "argument.scoreHolder.empty": "找不到与分数关联的持有者", - "argument.scoreboardDisplaySlot.invalid": "未知的显示位置:'%s'", + "argument.scoreboardDisplaySlot.invalid": "未知的显示位置:“%s”", + "argument.style.invalid": "无效的样式:%s", "argument.time.invalid_tick_count": "刻的计数必须为非负数", "argument.time.invalid_unit": "无效的单位", + "argument.time.tick_count_too_low": "刻数不能小于%s,却发现了%s", "argument.uuid.invalid": "无效的UUID", - "arguments.block.tag.unknown": "未知的方块标签:'%s'", - "arguments.function.tag.unknown": "未知的函数标签'%s'", + "arguments.block.tag.unknown": "未知的方块标签:“%s”", + "arguments.function.tag.unknown": "未知的函数标签“%s”", "arguments.function.unknown": "未知的函数%s", + "arguments.item.component.expected": "应为物品组件", + "arguments.item.component.malformed": "错误的“%s”组件:“%s”", + "arguments.item.component.repeated": "物品组件“%s”重复,只能指定一个值", + "arguments.item.component.unknown": "未知的物品组件“%s”", + "arguments.item.malformed": "错误的物品:“%s”", "arguments.item.overstacked": "%s只可以堆叠到%s", - "arguments.item.tag.unknown": "未知的物品标签'%s'", + "arguments.item.predicate.malformed": "错误的“%s”谓词:“%s”", + "arguments.item.predicate.unknown": "未知的物品谓词“%s”", + "arguments.item.tag.unknown": "未知的物品标签“%s”", "arguments.nbtpath.node.invalid": "无效的NBT路径元素", "arguments.nbtpath.nothing_found": "没有与%s相匹配的元素", - "arguments.objective.notFound": "未知的记分项'%s'", - "arguments.objective.readonly": "记分项'%s'为只读类型", + "arguments.nbtpath.too_deep": "生成的NBT套娃过深", + "arguments.nbtpath.too_large": "生成的NBT过大", + "arguments.objective.notFound": "未知的记分项“%s”", + "arguments.objective.readonly": "记分项“%s”为只读类型", "arguments.operation.div0": "假设你有0块饼干,分给0个朋友……", "arguments.operation.invalid": "无效的操作", "arguments.swizzle.invalid": "无效的坐标组合,需要'x'、'y'和'z'的组合", - "attribute.modifier.equals.0": "%s %s", - "attribute.modifier.equals.1": "%s%% %s", - "attribute.modifier.equals.2": "%s%% %s", - "attribute.modifier.plus.0": "+%s %s", - "attribute.modifier.plus.1": "+%s%% %s", - "attribute.modifier.plus.2": "+%s%% %s", - "attribute.modifier.take.0": "-%s %s", - "attribute.modifier.take.1": "-%s%% %s", - "attribute.modifier.take.2": "-%s%% %s", + "attribute.name.generic.armor": "盔甲", "attribute.name.generic.armor_toughness": "盔甲韧性", "attribute.name.generic.attack_damage": "攻击伤害", "attribute.name.generic.attack_knockback": "攻击鸡腿", "attribute.name.generic.attack_speed": "手速", + "attribute.name.generic.block_interaction_range": "方块交互距离", + "attribute.name.generic.burning_time": "着火时间", + "attribute.name.generic.entity_interaction_range": "实体交互距离", + "attribute.name.generic.explosion_knockback_resistance": "爆炸击退抗性", + "attribute.name.generic.fall_damage_multiplier": "摔落伤害倍数", "attribute.name.generic.flying_speed": "飞行速度", "attribute.name.generic.follow_range": "暴徒跟随距离", + "attribute.name.generic.gravity": "重力", + "attribute.name.generic.jump_strength": "跳跃力度", "attribute.name.generic.knockback_resistance": "鸡腿抗性", "attribute.name.generic.luck": "欧气", + "attribute.name.generic.max_absorption": "最大肉盾值", "attribute.name.generic.max_health": "最大生命值", + "attribute.name.generic.movement_efficiency": "移动效率", "attribute.name.generic.movement_speed": "速度", - "attribute.name.horse.jump_strength": "马匹跳跃能力", - "attribute.name.zombie.spawn_reinforcements": "姜丝增援", - "attribute.unknown": "未知的属性", + "attribute.name.generic.oxygen_bonus": "最后一口气", + "attribute.name.generic.safe_fall_distance": "安全摔落高度", + "attribute.name.generic.scale": "身高", + "attribute.name.generic.step_height": "最大行走高度", + "attribute.name.generic.water_movement_efficiency": "水中移动效率", + "attribute.name.horse.jump_strength": "马儿蹦跳能力", + "attribute.name.player.block_break_speed": "方块破坏速度", + "attribute.name.player.block_interaction_range": "方块交互距离", + "attribute.name.player.entity_interaction_range": "实体交互距离", + "attribute.name.player.mining_efficiency": "挖掘效率", + "attribute.name.player.sneaking_speed": "偷偷摸摸速度", + "attribute.name.player.submerged_mining_speed": "水下挖掘速度", + "attribute.name.player.sweeping_damage_ratio": "破碎之刃杀伤范围", + "attribute.name.zombie.spawn_reinforcements": "姜丝摇人", "biome.minecraft.badlands": "平顶山", - "biome.minecraft.badlands_plateau": "平顶山高原", "biome.minecraft.bamboo_jungle": "た↓け↑林", - "biome.minecraft.bamboo_jungle_hills": "た↓け↑山丘", - "biome.minecraft.basalt_deltas": "玄武岩判别式", + "biome.minecraft.basalt_deltas": "头皮屑判别式", "biome.minecraft.beach": "碧池", - "biome.minecraft.birch_forest": "桦木森林", - "biome.minecraft.birch_forest_hills": "桦木森林丘陵", + "biome.minecraft.birch_forest": "白桦森林", + "biome.minecraft.cherry_grove": "撒库拉森林", "biome.minecraft.cold_ocean": "冷水海洋", "biome.minecraft.crimson_forest": "肉山森林", - "biome.minecraft.dark_forest": "深色森林", - "biome.minecraft.dark_forest_hills": "深色森林丘陵", + "biome.minecraft.dark_forest": "巧克力森林", "biome.minecraft.deep_cold_ocean": "冷水深海", - "biome.minecraft.deep_frozen_ocean": "封冻深海", + "biome.minecraft.deep_dark": "Deep♂Dark", + "biome.minecraft.deep_frozen_ocean": "冻深海", "biome.minecraft.deep_lukewarm_ocean": "温水深海", "biome.minecraft.deep_ocean": "深海", - "biome.minecraft.deep_warm_ocean": "热水深海", "biome.minecraft.desert": "沙子漠", - "biome.minecraft.desert_hills": "沙子漠丘陵", - "biome.minecraft.desert_lakes": "绿洲", - "biome.minecraft.dripstone_caves": "溶洞", - "biome.minecraft.end_barrens": "终点荒岛", - "biome.minecraft.end_highlands": "终点高岛", - "biome.minecraft.end_midlands": "终点中型岛屿", + "biome.minecraft.dripstone_caves": "指向型滴水石洞", + "biome.minecraft.end_barrens": "终端荒岛", + "biome.minecraft.end_highlands": "终端高岛", + "biome.minecraft.end_midlands": "终端中岛", "biome.minecraft.eroded_badlands": "灰风高原", "biome.minecraft.flower_forest": "花海", "biome.minecraft.forest": "林子", - "biome.minecraft.frozen_ocean": "冻洋", - "biome.minecraft.frozen_river": "冻河", - "biome.minecraft.giant_spruce_taiga": "巨杉针叶林", - "biome.minecraft.giant_spruce_taiga_hills": "巨杉针叶林丘陵", - "biome.minecraft.giant_tree_taiga": "巨型针叶林", - "biome.minecraft.giant_tree_taiga_hills": "巨型针叶林丘陵", - "biome.minecraft.gravelly_mountains": "石砾山地", + "biome.minecraft.frozen_ocean": "冻海洋", + "biome.minecraft.frozen_peaks": "冻山峰", + "biome.minecraft.frozen_river": "冻江", + "biome.minecraft.grove": "雪林", "biome.minecraft.ice_spikes": "冰棒之地", + "biome.minecraft.jagged_peaks": "杰哥山峰", "biome.minecraft.jungle": "雨林", - "biome.minecraft.jungle_edge": "雨林边缘", - "biome.minecraft.jungle_hills": "雨林丘陵", "biome.minecraft.lukewarm_ocean": "温水海洋", "biome.minecraft.lush_caves": "过于生草的洞穴", - "biome.minecraft.modified_badlands_plateau": "风蚀高地", - "biome.minecraft.modified_gravelly_mountains": "石砾山地+++++++", - "biome.minecraft.modified_jungle": "雨林变种", - "biome.minecraft.modified_jungle_edge": "雨林边缘变种", - "biome.minecraft.modified_wooded_badlands_plateau": "茂林平顶山高原", - "biome.minecraft.mountain_edge": "山地边缘", - "biome.minecraft.mountains": "山地", - "biome.minecraft.mushroom_field_shore": "叉剋岛岸", + "biome.minecraft.mangrove_swamp": "红树林池沼", + "biome.minecraft.meadow": "伊甸园", "biome.minecraft.mushroom_fields": "叉剋岛", "biome.minecraft.nether_wastes": "尼德兰垃圾场", - "biome.minecraft.ocean": "海洋", + "biome.minecraft.ocean": "海的味道我知道", + "biome.minecraft.old_growth_birch_forest": "老长桦木森林", + "biome.minecraft.old_growth_pine_taiga": "老长松木针叶林", + "biome.minecraft.old_growth_spruce_taiga": "老长云杉针叶林", "biome.minecraft.plains": "一 马 平 川", "biome.minecraft.river": "江", - "biome.minecraft.savanna": "热带草原", - "biome.minecraft.savanna_plateau": "热带高原", - "biome.minecraft.shattered_savanna": "破碎的热带草原", - "biome.minecraft.shattered_savanna_plateau": "破碎的热带高原", - "biome.minecraft.small_end_islands": "终点小岛", - "biome.minecraft.snowy_beach": "雪滩", - "biome.minecraft.snowy_mountains": "雪山", - "biome.minecraft.snowy_taiga": "雪地林海", - "biome.minecraft.snowy_taiga_hills": "雪地林海丘陵", - "biome.minecraft.snowy_taiga_mountains": "积针叶林山地", - "biome.minecraft.snowy_tundra": "雪海", + "biome.minecraft.savanna": "萨瓦纳", + "biome.minecraft.savanna_plateau": "高萨瓦纳", + "biome.minecraft.small_end_islands": "终端小岛", + "biome.minecraft.snowy_beach": "雪碧池", + "biome.minecraft.snowy_plains": "北国之地", + "biome.minecraft.snowy_slopes": "雪坡", + "biome.minecraft.snowy_taiga": "北国之森", "biome.minecraft.soul_sand_valley": "悲鸣峡谷", - "biome.minecraft.stone_shore": "石岸", - "biome.minecraft.sunflower_plains": "mope平原", - "biome.minecraft.swamp": "泥潭", - "biome.minecraft.swamp_hills": "泥潭删秋", - "biome.minecraft.taiga": "针叶林", - "biome.minecraft.taiga_hills": "针叶林丘陵", - "biome.minecraft.taiga_mountains": "针叶林山地", - "biome.minecraft.tall_birch_forest": "高桦木林", - "biome.minecraft.tall_birch_hills": "高桦木丘陵", - "biome.minecraft.the_end": "终点", + "biome.minecraft.sparse_jungle": "脱发雨林", + "biome.minecraft.stony_peaks": "石头山峰", + "biome.minecraft.stony_shore": "石头做的碧池", + "biome.minecraft.sunflower_plains": "向阳花平原", + "biome.minecraft.swamp": "池沼", + "biome.minecraft.taiga": "泰加林", + "biome.minecraft.the_end": "终端", "biome.minecraft.the_void": "虚无世界", "biome.minecraft.warm_ocean": "热水海洋", - "biome.minecraft.warped_forest": "曲奇森林", - "biome.minecraft.wooded_badlands_plateau": "茂林平顶山高原", - "biome.minecraft.wooded_hills": "繁茂的丘陵", - "biome.minecraft.wooded_mountains": "繁茂的山地", + "biome.minecraft.warped_forest": "幽蓝森林", + "biome.minecraft.windswept_forest": "风居住的林子", + "biome.minecraft.windswept_gravelly_hills": "风居住的氵少石乐高山", + "biome.minecraft.windswept_hills": "风居住的高山", + "biome.minecraft.windswept_savanna": "风居住的萨瓦纳", + "biome.minecraft.wooded_badlands": "茂林平顶山高原", "block.minecraft.acacia_button": "相思木抱枕", "block.minecraft.acacia_door": "相思木门", "block.minecraft.acacia_fence": "相思木栅栏", "block.minecraft.acacia_fence_gate": "相思木栅栏门", + "block.minecraft.acacia_hanging_sign": "上吊的相思木搞事牌", "block.minecraft.acacia_leaves": "相思树叶", "block.minecraft.acacia_log": "相思日志", "block.minecraft.acacia_planks": "相思木板", @@ -450,10 +525,11 @@ "block.minecraft.acacia_sign": "相思木搞事牌", "block.minecraft.acacia_slab": "相思木半砖", "block.minecraft.acacia_stairs": "相思木楼梯", - "block.minecraft.acacia_trapdoor": "相思木活板门", + "block.minecraft.acacia_trapdoor": "相思木陷阱门", + "block.minecraft.acacia_wall_hanging_sign": "墙上的上吊的相思木搞事牌", "block.minecraft.acacia_wall_sign": "墙上的相思木搞事牌", "block.minecraft.acacia_wood": "相思树皮", - "block.minecraft.activator_rail": "激活轨道", + "block.minecraft.activator_rail": "雷管轨道", "block.minecraft.air": "废气", "block.minecraft.allium": "大花葱", "block.minecraft.amethyst_block": "紫水晶块", @@ -464,23 +540,40 @@ "block.minecraft.andesite_stairs": "安山岩楼梯", "block.minecraft.andesite_wall": "安山岩墙", "block.minecraft.anvil": "哐当", - "block.minecraft.attached_melon_stem": "结果的瓜茎", - "block.minecraft.attached_pumpkin_stem": "结果的南瓜茎", - "block.minecraft.azalea": "杜鹃花丛", + "block.minecraft.attached_melon_stem": "结果的瓜梗", + "block.minecraft.attached_pumpkin_stem": "结果的南瓜梗", + "block.minecraft.azalea": "杜鹃fa♂丛", "block.minecraft.azalea_leaves": "杜鹃树叶", "block.minecraft.azure_bluet": "蓝花美耳草", "block.minecraft.bamboo": "た↓け↑", + "block.minecraft.bamboo_block": "た↓け↑块", + "block.minecraft.bamboo_button": "た↓け↑抱枕", + "block.minecraft.bamboo_door": "た↓け↑门", + "block.minecraft.bamboo_fence": "た↓け↑栅栏", + "block.minecraft.bamboo_fence_gate": "た↓け↑栅栏门", + "block.minecraft.bamboo_hanging_sign": "上吊的た↓け↑搞事牌", + "block.minecraft.bamboo_mosaic": "た↓け↑▒", + "block.minecraft.bamboo_mosaic_slab": "た↓け↑▒半砖", + "block.minecraft.bamboo_mosaic_stairs": "た↓け↑▒楼梯", + "block.minecraft.bamboo_planks": "た↓け↑板", + "block.minecraft.bamboo_pressure_plate": "た↓け↑阿姨压一压板", "block.minecraft.bamboo_sapling": "小心立秋", + "block.minecraft.bamboo_sign": "た↓け↑搞事牌", + "block.minecraft.bamboo_slab": "た↓け↑半砖", + "block.minecraft.bamboo_stairs": "た↓け↑楼梯", + "block.minecraft.bamboo_trapdoor": "た↓け↑陷阱门", + "block.minecraft.bamboo_wall_hanging_sign": "墙上的上吊的た↓け↑搞事牌", + "block.minecraft.bamboo_wall_sign": "墙上的た↓け↑搞事牌", "block.minecraft.banner.base.black": "黑底", "block.minecraft.banner.base.blue": "蓝底", - "block.minecraft.banner.base.brown": "棕底", - "block.minecraft.banner.base.cyan": "青底", + "block.minecraft.banner.base.brown": "咖啡底", + "block.minecraft.banner.base.cyan": "蓝绿底", "block.minecraft.banner.base.gray": "灰底", "block.minecraft.banner.base.green": "原谅底", - "block.minecraft.banner.base.light_blue": "淡蓝底", - "block.minecraft.banner.base.light_gray": "淡灰底", - "block.minecraft.banner.base.lime": "黄绿底", - "block.minecraft.banner.base.magenta": "品红底", + "block.minecraft.banner.base.light_blue": "亮蓝底", + "block.minecraft.banner.base.light_gray": "亮灰底", + "block.minecraft.banner.base.lime": "酸橙底", + "block.minecraft.banner.base.magenta": "洋红底", "block.minecraft.banner.base.orange": "橙底", "block.minecraft.banner.base.pink": "粉红底", "block.minecraft.banner.base.purple": "紫底", @@ -489,14 +582,14 @@ "block.minecraft.banner.base.yellow": "黄底", "block.minecraft.banner.border.black": "黑色方框边", "block.minecraft.banner.border.blue": "蓝色方框边", - "block.minecraft.banner.border.brown": "棕色方框边", - "block.minecraft.banner.border.cyan": "青色方框边", + "block.minecraft.banner.border.brown": "咖啡色方框边", + "block.minecraft.banner.border.cyan": "蓝绿色方框边", "block.minecraft.banner.border.gray": "灰色方框边", "block.minecraft.banner.border.green": "原谅色方框边", "block.minecraft.banner.border.light_blue": "亮蓝色方框边", "block.minecraft.banner.border.light_gray": "亮灰色方框边", - "block.minecraft.banner.border.lime": "黄绿色方框边", - "block.minecraft.banner.border.magenta": "品红色方框边", + "block.minecraft.banner.border.lime": "酸橙色方框边", + "block.minecraft.banner.border.magenta": "洋红色方框边", "block.minecraft.banner.border.orange": "橙色方框边", "block.minecraft.banner.border.pink": "粉红色方框边", "block.minecraft.banner.border.purple": "紫色方框边", @@ -505,14 +598,14 @@ "block.minecraft.banner.border.yellow": "黄色方框边", "block.minecraft.banner.bricks.black": "黑色砖纹", "block.minecraft.banner.bricks.blue": "蓝色砖纹", - "block.minecraft.banner.bricks.brown": "棕色砖纹", - "block.minecraft.banner.bricks.cyan": "青色砖纹", + "block.minecraft.banner.bricks.brown": "咖啡色砖纹", + "block.minecraft.banner.bricks.cyan": "蓝绿色砖纹", "block.minecraft.banner.bricks.gray": "灰色砖纹", "block.minecraft.banner.bricks.green": "原谅色砖纹", "block.minecraft.banner.bricks.light_blue": "亮蓝色砖纹", "block.minecraft.banner.bricks.light_gray": "亮灰色砖纹", - "block.minecraft.banner.bricks.lime": "黄绿色砖纹", - "block.minecraft.banner.bricks.magenta": "品红色砖纹", + "block.minecraft.banner.bricks.lime": "酸橙色砖纹", + "block.minecraft.banner.bricks.magenta": "洋红色砖纹", "block.minecraft.banner.bricks.orange": "橙色砖纹", "block.minecraft.banner.bricks.pink": "粉红色砖纹", "block.minecraft.banner.bricks.purple": "紫色砖纹", @@ -521,14 +614,14 @@ "block.minecraft.banner.bricks.yellow": "黄色砖纹", "block.minecraft.banner.circle.black": "黑色圆形", "block.minecraft.banner.circle.blue": "蓝色圆形", - "block.minecraft.banner.circle.brown": "棕色圆形", - "block.minecraft.banner.circle.cyan": "青色圆形", + "block.minecraft.banner.circle.brown": "咖啡色圆形", + "block.minecraft.banner.circle.cyan": "蓝绿色圆形", "block.minecraft.banner.circle.gray": "灰色圆形", "block.minecraft.banner.circle.green": "原谅色圆形", "block.minecraft.banner.circle.light_blue": "亮蓝色圆形", "block.minecraft.banner.circle.light_gray": "亮灰色圆形", - "block.minecraft.banner.circle.lime": "黄绿色圆形", - "block.minecraft.banner.circle.magenta": "品红色圆形", + "block.minecraft.banner.circle.lime": "酸橙色圆形", + "block.minecraft.banner.circle.magenta": "洋红色圆形", "block.minecraft.banner.circle.orange": "橙色圆形", "block.minecraft.banner.circle.pink": "粉红色圆形", "block.minecraft.banner.circle.purple": "紫色圆形", @@ -537,142 +630,158 @@ "block.minecraft.banner.circle.yellow": "黄色圆形", "block.minecraft.banner.creeper.black": "黑色爪巴者盾徽", "block.minecraft.banner.creeper.blue": "蓝色爪巴者盾徽", - "block.minecraft.banner.creeper.brown": "棕色爪巴者盾徽", - "block.minecraft.banner.creeper.cyan": "青色爪巴者盾徽", + "block.minecraft.banner.creeper.brown": "咖啡色爪巴者盾徽", + "block.minecraft.banner.creeper.cyan": "蓝绿色爪巴者盾徽", "block.minecraft.banner.creeper.gray": "灰色爪巴者盾徽", "block.minecraft.banner.creeper.green": "原谅色爪巴者盾徽", "block.minecraft.banner.creeper.light_blue": "亮蓝色爪巴者盾徽", "block.minecraft.banner.creeper.light_gray": "亮灰色爪巴者盾徽", - "block.minecraft.banner.creeper.lime": "黄绿色爪巴者盾徽", - "block.minecraft.banner.creeper.magenta": "品红色爪巴者盾徽", + "block.minecraft.banner.creeper.lime": "酸橙色爪巴者盾徽", + "block.minecraft.banner.creeper.magenta": "洋红色爪巴者盾徽", "block.minecraft.banner.creeper.orange": "橙色爪巴者盾徽", "block.minecraft.banner.creeper.pink": "粉红色爪巴者盾徽", "block.minecraft.banner.creeper.purple": "紫色爪巴者盾徽", "block.minecraft.banner.creeper.red": "红色爪巴者盾徽", "block.minecraft.banner.creeper.white": "白色爪巴者盾徽", "block.minecraft.banner.creeper.yellow": "黄色爪巴者盾徽", - "block.minecraft.banner.cross.black": "黑斜十字", - "block.minecraft.banner.cross.blue": "蓝斜十字", - "block.minecraft.banner.cross.brown": "棕斜十字", - "block.minecraft.banner.cross.cyan": "青斜十字", - "block.minecraft.banner.cross.gray": "灰斜十字", - "block.minecraft.banner.cross.green": "原谅斜十字", - "block.minecraft.banner.cross.light_blue": "亮蓝斜十字", - "block.minecraft.banner.cross.light_gray": "亮灰斜十字", - "block.minecraft.banner.cross.lime": "黄绿斜十字", - "block.minecraft.banner.cross.magenta": "品红斜十字", - "block.minecraft.banner.cross.orange": "橙斜十字", - "block.minecraft.banner.cross.pink": "粉红斜十字", - "block.minecraft.banner.cross.purple": "紫斜十字", - "block.minecraft.banner.cross.red": "红斜十字", - "block.minecraft.banner.cross.white": "白斜十字", - "block.minecraft.banner.cross.yellow": "黄斜十字", - "block.minecraft.banner.curly_border.black": "黑色波纹边", - "block.minecraft.banner.curly_border.blue": "蓝色波纹边", - "block.minecraft.banner.curly_border.brown": "棕色波纹边", - "block.minecraft.banner.curly_border.cyan": "青色波纹边", - "block.minecraft.banner.curly_border.gray": "灰色波纹边", - "block.minecraft.banner.curly_border.green": "原谅色波纹边", - "block.minecraft.banner.curly_border.light_blue": "亮蓝色波纹边", - "block.minecraft.banner.curly_border.light_gray": "亮灰色波纹边", - "block.minecraft.banner.curly_border.lime": "黄绿色波纹边", - "block.minecraft.banner.curly_border.magenta": "品红色波纹边", - "block.minecraft.banner.curly_border.orange": "橙色波纹边", - "block.minecraft.banner.curly_border.pink": "粉红色波纹边", - "block.minecraft.banner.curly_border.purple": "紫色波纹边", - "block.minecraft.banner.curly_border.red": "红色波纹边", - "block.minecraft.banner.curly_border.white": "白色波纹边", - "block.minecraft.banner.curly_border.yellow": "黄色波纹边", - "block.minecraft.banner.diagonal_left.black": "黑色右上三角", - "block.minecraft.banner.diagonal_left.blue": "蓝色右上三角", - "block.minecraft.banner.diagonal_left.brown": "棕色右上三角", - "block.minecraft.banner.diagonal_left.cyan": "青色右上三角", - "block.minecraft.banner.diagonal_left.gray": "灰色右上三角", - "block.minecraft.banner.diagonal_left.green": "原谅色右上三角", - "block.minecraft.banner.diagonal_left.light_blue": "亮蓝色右上三角", - "block.minecraft.banner.diagonal_left.light_gray": "亮灰色右上三角", - "block.minecraft.banner.diagonal_left.lime": "黄绿色右上三角", - "block.minecraft.banner.diagonal_left.magenta": "品红色右上三角", - "block.minecraft.banner.diagonal_left.orange": "橙色右上三角", - "block.minecraft.banner.diagonal_left.pink": "粉红色右上三角", - "block.minecraft.banner.diagonal_left.purple": "紫色右上三角", - "block.minecraft.banner.diagonal_left.red": "红色右上三角", - "block.minecraft.banner.diagonal_left.white": "白色右上三角", - "block.minecraft.banner.diagonal_left.yellow": "黄色右上三角", - "block.minecraft.banner.diagonal_right.black": "黑色左上三角", - "block.minecraft.banner.diagonal_right.blue": "蓝色左上三角", - "block.minecraft.banner.diagonal_right.brown": "棕色左上三角", - "block.minecraft.banner.diagonal_right.cyan": "青色左上三角", - "block.minecraft.banner.diagonal_right.gray": "灰色左上三角", - "block.minecraft.banner.diagonal_right.green": "原谅色左上三角", - "block.minecraft.banner.diagonal_right.light_blue": "亮蓝色左上三角", - "block.minecraft.banner.diagonal_right.light_gray": "亮灰色左上三角", - "block.minecraft.banner.diagonal_right.lime": "黄绿色左上三角", - "block.minecraft.banner.diagonal_right.magenta": "品红色左上三角", - "block.minecraft.banner.diagonal_right.orange": "橙色左上三角", - "block.minecraft.banner.diagonal_right.pink": "粉红色左上三角", - "block.minecraft.banner.diagonal_right.purple": "紫色左上三角", - "block.minecraft.banner.diagonal_right.red": "红色左上三角", - "block.minecraft.banner.diagonal_right.white": "白色左上三角", - "block.minecraft.banner.diagonal_right.yellow": "黄色左上三角", - "block.minecraft.banner.diagonal_up_left.black": "黑色右下三角", - "block.minecraft.banner.diagonal_up_left.blue": "蓝色右下三角", - "block.minecraft.banner.diagonal_up_left.brown": "棕色右下三角", - "block.minecraft.banner.diagonal_up_left.cyan": "青色右下三角", - "block.minecraft.banner.diagonal_up_left.gray": "灰色右下三角", - "block.minecraft.banner.diagonal_up_left.green": "原谅色右下三角", - "block.minecraft.banner.diagonal_up_left.light_blue": "亮蓝色右下三角", - "block.minecraft.banner.diagonal_up_left.light_gray": "亮灰色右下三角", - "block.minecraft.banner.diagonal_up_left.lime": "黄绿色右下三角", - "block.minecraft.banner.diagonal_up_left.magenta": "品红色右下三角", - "block.minecraft.banner.diagonal_up_left.orange": "橙色右下三角", - "block.minecraft.banner.diagonal_up_left.pink": "粉红色右下三角", - "block.minecraft.banner.diagonal_up_left.purple": "紫色右下三角", - "block.minecraft.banner.diagonal_up_left.red": "红色右下三角", - "block.minecraft.banner.diagonal_up_left.white": "白色右下三角", - "block.minecraft.banner.diagonal_up_left.yellow": "黄色右下三角", - "block.minecraft.banner.diagonal_up_right.black": "黑色左下三角", - "block.minecraft.banner.diagonal_up_right.blue": "蓝色左下三角", - "block.minecraft.banner.diagonal_up_right.brown": "棕色左下三角", - "block.minecraft.banner.diagonal_up_right.cyan": "青色左下三角", - "block.minecraft.banner.diagonal_up_right.gray": "灰色左下三角", - "block.minecraft.banner.diagonal_up_right.green": "原谅色左下三角", - "block.minecraft.banner.diagonal_up_right.light_blue": "亮蓝色左下三角", - "block.minecraft.banner.diagonal_up_right.light_gray": "亮灰色左下三角", - "block.minecraft.banner.diagonal_up_right.lime": "黄绿色左下三角", - "block.minecraft.banner.diagonal_up_right.magenta": "品红色左下三角", - "block.minecraft.banner.diagonal_up_right.orange": "橙色左下三角", - "block.minecraft.banner.diagonal_up_right.pink": "粉红色左下三角", - "block.minecraft.banner.diagonal_up_right.purple": "紫色左下三角", - "block.minecraft.banner.diagonal_up_right.red": "红色左下三角", - "block.minecraft.banner.diagonal_up_right.white": "白色左下三角", - "block.minecraft.banner.diagonal_up_right.yellow": "黄色左下三角", - "block.minecraft.banner.flower.black": "黑色花朵盾徽", - "block.minecraft.banner.flower.blue": "蓝色花朵盾徽", - "block.minecraft.banner.flower.brown": "棕色花朵盾徽", - "block.minecraft.banner.flower.cyan": "青色花朵盾徽", - "block.minecraft.banner.flower.gray": "灰色花朵盾徽", - "block.minecraft.banner.flower.green": "原谅色花朵盾徽", - "block.minecraft.banner.flower.light_blue": "亮蓝色花朵盾徽", - "block.minecraft.banner.flower.light_gray": "亮灰色花朵盾徽", - "block.minecraft.banner.flower.lime": "黄绿色花朵盾徽", - "block.minecraft.banner.flower.magenta": "品红色花朵盾徽", - "block.minecraft.banner.flower.orange": "橙色花朵盾徽", - "block.minecraft.banner.flower.pink": "粉红色花朵盾徽", - "block.minecraft.banner.flower.purple": "紫色花朵盾徽", - "block.minecraft.banner.flower.red": "红色花朵盾徽", - "block.minecraft.banner.flower.white": "白色花朵盾徽", - "block.minecraft.banner.flower.yellow": "黄色花朵盾徽", + "block.minecraft.banner.cross.black": "黑色大叉叉", + "block.minecraft.banner.cross.blue": "蓝色大叉叉", + "block.minecraft.banner.cross.brown": "咖啡色大叉叉", + "block.minecraft.banner.cross.cyan": "蓝绿色大叉叉", + "block.minecraft.banner.cross.gray": "灰色大叉叉", + "block.minecraft.banner.cross.green": "原谅色大叉叉", + "block.minecraft.banner.cross.light_blue": "亮蓝色大叉叉", + "block.minecraft.banner.cross.light_gray": "亮灰色大叉叉", + "block.minecraft.banner.cross.lime": "酸橙色大叉叉", + "block.minecraft.banner.cross.magenta": "洋红色大叉叉", + "block.minecraft.banner.cross.orange": "橙色大叉叉", + "block.minecraft.banner.cross.pink": "粉红色大叉叉", + "block.minecraft.banner.cross.purple": "紫色大叉叉", + "block.minecraft.banner.cross.red": "红色大叉叉", + "block.minecraft.banner.cross.white": "白色大叉叉", + "block.minecraft.banner.cross.yellow": "黄色大叉叉", + "block.minecraft.banner.curly_border.black": "黑色两边大波浪", + "block.minecraft.banner.curly_border.blue": "蓝色两边大波浪", + "block.minecraft.banner.curly_border.brown": "咖啡色两边大波浪", + "block.minecraft.banner.curly_border.cyan": "蓝绿色两边大波浪", + "block.minecraft.banner.curly_border.gray": "灰色两边大波浪", + "block.minecraft.banner.curly_border.green": "原谅色两边大波浪", + "block.minecraft.banner.curly_border.light_blue": "亮蓝色两边大波浪", + "block.minecraft.banner.curly_border.light_gray": "亮灰色两边大波浪", + "block.minecraft.banner.curly_border.lime": "酸橙色两边大波浪", + "block.minecraft.banner.curly_border.magenta": "洋红色两边大波浪", + "block.minecraft.banner.curly_border.orange": "橙色两边大波浪", + "block.minecraft.banner.curly_border.pink": "粉红色两边大波浪", + "block.minecraft.banner.curly_border.purple": "紫色两边大波浪", + "block.minecraft.banner.curly_border.red": "红色两边大波浪", + "block.minecraft.banner.curly_border.white": "白色两边大波浪", + "block.minecraft.banner.curly_border.yellow": "黄色两边大波浪", + "block.minecraft.banner.diagonal_left.black": "黑色右上德尔塔", + "block.minecraft.banner.diagonal_left.blue": "蓝色右上德尔塔", + "block.minecraft.banner.diagonal_left.brown": "咖啡色右上德尔塔", + "block.minecraft.banner.diagonal_left.cyan": "蓝绿色右上德尔塔", + "block.minecraft.banner.diagonal_left.gray": "灰色右上德尔塔", + "block.minecraft.banner.diagonal_left.green": "原谅色右上德尔塔", + "block.minecraft.banner.diagonal_left.light_blue": "亮蓝色右上德尔塔", + "block.minecraft.banner.diagonal_left.light_gray": "亮灰色右上德尔塔", + "block.minecraft.banner.diagonal_left.lime": "酸橙色右上德尔塔", + "block.minecraft.banner.diagonal_left.magenta": "洋红色右上德尔塔", + "block.minecraft.banner.diagonal_left.orange": "橙色右上德尔塔", + "block.minecraft.banner.diagonal_left.pink": "粉红色右上德尔塔", + "block.minecraft.banner.diagonal_left.purple": "紫色右上德尔塔", + "block.minecraft.banner.diagonal_left.red": "红色右上德尔塔", + "block.minecraft.banner.diagonal_left.white": "白色右上德尔塔", + "block.minecraft.banner.diagonal_left.yellow": "黄色右上德尔塔", + "block.minecraft.banner.diagonal_right.black": "黑色左上德尔塔", + "block.minecraft.banner.diagonal_right.blue": "蓝色左上德尔塔", + "block.minecraft.banner.diagonal_right.brown": "咖啡色左上德尔塔", + "block.minecraft.banner.diagonal_right.cyan": "蓝绿色左上德尔塔", + "block.minecraft.banner.diagonal_right.gray": "灰色左上德尔塔", + "block.minecraft.banner.diagonal_right.green": "原谅色左上德尔塔", + "block.minecraft.banner.diagonal_right.light_blue": "亮蓝色左上德尔塔", + "block.minecraft.banner.diagonal_right.light_gray": "亮灰色左上德尔塔", + "block.minecraft.banner.diagonal_right.lime": "酸橙色左上德尔塔", + "block.minecraft.banner.diagonal_right.magenta": "洋红色左上德尔塔", + "block.minecraft.banner.diagonal_right.orange": "橙色左上德尔塔", + "block.minecraft.banner.diagonal_right.pink": "粉红色左上德尔塔", + "block.minecraft.banner.diagonal_right.purple": "紫色左上德尔塔", + "block.minecraft.banner.diagonal_right.red": "红色左上德尔塔", + "block.minecraft.banner.diagonal_right.white": "白色左上德尔塔", + "block.minecraft.banner.diagonal_right.yellow": "黄色左上德尔塔", + "block.minecraft.banner.diagonal_up_left.black": "黑色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.blue": "蓝色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.brown": "咖啡色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.cyan": "蓝绿色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.gray": "灰色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.green": "原谅色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.light_blue": "亮蓝色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.light_gray": "亮灰色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.lime": "酸橙色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.magenta": "洋红色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.orange": "橙色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.pink": "粉红色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.purple": "紫色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.red": "红色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.white": "白色右下德尔塔", + "block.minecraft.banner.diagonal_up_left.yellow": "黄色右下德尔塔", + "block.minecraft.banner.diagonal_up_right.black": "黑色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.blue": "蓝色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.brown": "咖啡色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.cyan": "蓝绿色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.gray": "灰色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.green": "原谅色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.light_blue": "亮蓝色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.light_gray": "亮灰色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.lime": "酸橙色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.magenta": "洋红色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.orange": "橙色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.pink": "粉红色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.purple": "紫色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.red": "红色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.white": "白色左下德尔塔", + "block.minecraft.banner.diagonal_up_right.yellow": "黄色左下德尔塔", + "block.minecraft.banner.flow.black": "黑色鱼板", + "block.minecraft.banner.flow.blue": "蓝色鱼板", + "block.minecraft.banner.flow.brown": "咖啡色鱼板", + "block.minecraft.banner.flow.cyan": "蓝绿色鱼板", + "block.minecraft.banner.flow.gray": "灰色鱼板", + "block.minecraft.banner.flow.green": "原谅色鱼板", + "block.minecraft.banner.flow.light_blue": "亮蓝色鱼板", + "block.minecraft.banner.flow.light_gray": "亮灰色鱼板", + "block.minecraft.banner.flow.lime": "酸橙色鱼板", + "block.minecraft.banner.flow.magenta": "洋红色鱼板", + "block.minecraft.banner.flow.orange": "橙色鱼板", + "block.minecraft.banner.flow.pink": "粉红色鱼板", + "block.minecraft.banner.flow.purple": "紫色鱼板", + "block.minecraft.banner.flow.red": "红色鱼板", + "block.minecraft.banner.flow.white": "白色鱼板", + "block.minecraft.banner.flow.yellow": "黄色鱼板", + "block.minecraft.banner.flower.black": "黑色小fa♂", + "block.minecraft.banner.flower.blue": "蓝色小fa♂", + "block.minecraft.banner.flower.brown": "咖啡色小fa♂", + "block.minecraft.banner.flower.cyan": "蓝绿色小fa♂", + "block.minecraft.banner.flower.gray": "灰色小fa♂", + "block.minecraft.banner.flower.green": "原谅色小fa♂", + "block.minecraft.banner.flower.light_blue": "亮蓝色小fa♂", + "block.minecraft.banner.flower.light_gray": "亮灰色小fa♂", + "block.minecraft.banner.flower.lime": "酸橙色小fa♂", + "block.minecraft.banner.flower.magenta": "洋红色小fa♂", + "block.minecraft.banner.flower.orange": "橙色小fa♂", + "block.minecraft.banner.flower.pink": "粉红色小fa♂", + "block.minecraft.banner.flower.purple": "紫色小fa♂", + "block.minecraft.banner.flower.red": "红色小fa♂", + "block.minecraft.banner.flower.white": "白色小fa♂", + "block.minecraft.banner.flower.yellow": "黄色小fa♂", "block.minecraft.banner.globe.black": "黑色地“方”", "block.minecraft.banner.globe.blue": "蓝色地“方”", - "block.minecraft.banner.globe.brown": "棕色地“方”", - "block.minecraft.banner.globe.cyan": "青色地“方”", + "block.minecraft.banner.globe.brown": "咖啡色地“方”", + "block.minecraft.banner.globe.cyan": "蓝绿色地“方”", "block.minecraft.banner.globe.gray": "灰色地“方”", "block.minecraft.banner.globe.green": "原谅色地“方”", "block.minecraft.banner.globe.light_blue": "亮蓝色地“方”", "block.minecraft.banner.globe.light_gray": "亮灰色地“方”", - "block.minecraft.banner.globe.lime": "黄绿色地“方”", - "block.minecraft.banner.globe.magenta": "品红色地“方”", + "block.minecraft.banner.globe.lime": "酸橙色地“方”", + "block.minecraft.banner.globe.magenta": "洋红色地“方”", "block.minecraft.banner.globe.orange": "橙色地“方”", "block.minecraft.banner.globe.pink": "粉红色地“方”", "block.minecraft.banner.globe.purple": "紫色地“方”", @@ -681,14 +790,14 @@ "block.minecraft.banner.globe.yellow": "黄色地“方”", "block.minecraft.banner.gradient.black": "黑色自上渐淡", "block.minecraft.banner.gradient.blue": "蓝色自上渐淡", - "block.minecraft.banner.gradient.brown": "棕色自上渐淡", - "block.minecraft.banner.gradient.cyan": "青色自上渐淡", + "block.minecraft.banner.gradient.brown": "咖啡色自上渐淡", + "block.minecraft.banner.gradient.cyan": "蓝绿色自上渐淡", "block.minecraft.banner.gradient.gray": "灰色自上渐淡", "block.minecraft.banner.gradient.green": "原谅色自上渐淡", "block.minecraft.banner.gradient.light_blue": "亮蓝色自上渐淡", "block.minecraft.banner.gradient.light_gray": "亮灰色自上渐淡", - "block.minecraft.banner.gradient.lime": "黄绿色自上渐淡", - "block.minecraft.banner.gradient.magenta": "品红色自上渐淡", + "block.minecraft.banner.gradient.lime": "酸橙色自上渐淡", + "block.minecraft.banner.gradient.magenta": "洋红色自上渐淡", "block.minecraft.banner.gradient.orange": "橙色自上渐淡", "block.minecraft.banner.gradient.pink": "粉红色自上渐淡", "block.minecraft.banner.gradient.purple": "紫色自上渐淡", @@ -697,30 +806,46 @@ "block.minecraft.banner.gradient.yellow": "黄色自上渐淡", "block.minecraft.banner.gradient_up.black": "黑色自下渐淡", "block.minecraft.banner.gradient_up.blue": "蓝色自下渐变", - "block.minecraft.banner.gradient_up.brown": "棕色自下渐淡", - "block.minecraft.banner.gradient_up.cyan": "青色自下渐淡", + "block.minecraft.banner.gradient_up.brown": "咖啡色自下渐淡", + "block.minecraft.banner.gradient_up.cyan": "蓝绿色自下渐淡", "block.minecraft.banner.gradient_up.gray": "灰色自下渐淡", "block.minecraft.banner.gradient_up.green": "原谅色自下渐淡", "block.minecraft.banner.gradient_up.light_blue": "亮蓝色自下渐淡", "block.minecraft.banner.gradient_up.light_gray": "亮灰色自下渐淡", - "block.minecraft.banner.gradient_up.lime": "黄绿色自下渐淡", - "block.minecraft.banner.gradient_up.magenta": "品红色自下渐淡", + "block.minecraft.banner.gradient_up.lime": "酸橙色自下渐淡", + "block.minecraft.banner.gradient_up.magenta": "洋红色自下渐淡", "block.minecraft.banner.gradient_up.orange": "橙色自下渐淡", "block.minecraft.banner.gradient_up.pink": "粉红色自下渐淡", "block.minecraft.banner.gradient_up.purple": "紫色自下渐淡", "block.minecraft.banner.gradient_up.red": "红色自下渐淡", "block.minecraft.banner.gradient_up.white": "白色自下渐淡", "block.minecraft.banner.gradient_up.yellow": "黄色自下渐淡", + "block.minecraft.banner.guster.black": "黑色钻头", + "block.minecraft.banner.guster.blue": "蓝色钻头", + "block.minecraft.banner.guster.brown": "咖啡色钻头", + "block.minecraft.banner.guster.cyan": "蓝绿色钻头", + "block.minecraft.banner.guster.gray": "灰色钻头", + "block.minecraft.banner.guster.green": "原谅色钻头", + "block.minecraft.banner.guster.light_blue": "亮蓝色钻头", + "block.minecraft.banner.guster.light_gray": "亮灰色钻头", + "block.minecraft.banner.guster.lime": "酸橙色钻头", + "block.minecraft.banner.guster.magenta": "洋红色钻头", + "block.minecraft.banner.guster.orange": "橙色钻头", + "block.minecraft.banner.guster.pink": "粉红色钻头", + "block.minecraft.banner.guster.purple": "紫色钻头", + "block.minecraft.banner.guster.red": "红色钻头", + "block.minecraft.banner.guster.white": "白色钻头", + "block.minecraft.banner.guster.yellow": "黄色钻头", "block.minecraft.banner.half_horizontal.black": "黑色上半方形", "block.minecraft.banner.half_horizontal.blue": "蓝色上半方形", - "block.minecraft.banner.half_horizontal.brown": "棕色上半方形", - "block.minecraft.banner.half_horizontal.cyan": "青色上半方形", + "block.minecraft.banner.half_horizontal.brown": "咖啡色上半方形", + "block.minecraft.banner.half_horizontal.cyan": "蓝绿色上半方形", "block.minecraft.banner.half_horizontal.gray": "灰色上半方形", "block.minecraft.banner.half_horizontal.green": "原谅色上半方形", "block.minecraft.banner.half_horizontal.light_blue": "亮蓝色上半方形", "block.minecraft.banner.half_horizontal.light_gray": "亮灰色上半方形", - "block.minecraft.banner.half_horizontal.lime": "黄绿色上半方形", - "block.minecraft.banner.half_horizontal.magenta": "品红色上半方形", + "block.minecraft.banner.half_horizontal.lime": "酸橙色上半方形", + "block.minecraft.banner.half_horizontal.magenta": "洋红色上半方形", "block.minecraft.banner.half_horizontal.orange": "橙色上半方形", "block.minecraft.banner.half_horizontal.pink": "粉红色上半方形", "block.minecraft.banner.half_horizontal.purple": "紫色上半方形", @@ -729,14 +854,14 @@ "block.minecraft.banner.half_horizontal.yellow": "黄色上半方形", "block.minecraft.banner.half_horizontal_bottom.black": "黑色下半方形", "block.minecraft.banner.half_horizontal_bottom.blue": "蓝色下半方形", - "block.minecraft.banner.half_horizontal_bottom.brown": "棕色下半方形", - "block.minecraft.banner.half_horizontal_bottom.cyan": "青色下半方形", + "block.minecraft.banner.half_horizontal_bottom.brown": "咖啡色下半方形", + "block.minecraft.banner.half_horizontal_bottom.cyan": "蓝绿色下半方形", "block.minecraft.banner.half_horizontal_bottom.gray": "灰色下半方形", "block.minecraft.banner.half_horizontal_bottom.green": "原谅色下半方形", "block.minecraft.banner.half_horizontal_bottom.light_blue": "亮蓝色下半方形", "block.minecraft.banner.half_horizontal_bottom.light_gray": "亮灰色下半方形", - "block.minecraft.banner.half_horizontal_bottom.lime": "黄绿色下半方形", - "block.minecraft.banner.half_horizontal_bottom.magenta": "品红色下半方形", + "block.minecraft.banner.half_horizontal_bottom.lime": "酸橙色下半方形", + "block.minecraft.banner.half_horizontal_bottom.magenta": "洋红色下半方形", "block.minecraft.banner.half_horizontal_bottom.orange": "橙色下半方形", "block.minecraft.banner.half_horizontal_bottom.pink": "粉红色下半方形", "block.minecraft.banner.half_horizontal_bottom.purple": "紫色下半方形", @@ -745,14 +870,14 @@ "block.minecraft.banner.half_horizontal_bottom.yellow": "黄色下半方形", "block.minecraft.banner.half_vertical.black": "黑色右半方形", "block.minecraft.banner.half_vertical.blue": "蓝色右半方形", - "block.minecraft.banner.half_vertical.brown": "棕色右半方形", - "block.minecraft.banner.half_vertical.cyan": "青色右半方形", + "block.minecraft.banner.half_vertical.brown": "咖啡色右半方形", + "block.minecraft.banner.half_vertical.cyan": "蓝绿色右半方形", "block.minecraft.banner.half_vertical.gray": "灰色右半方形", "block.minecraft.banner.half_vertical.green": "原谅色右半方形", "block.minecraft.banner.half_vertical.light_blue": "亮蓝色右半方形", "block.minecraft.banner.half_vertical.light_gray": "亮灰色右半方形", - "block.minecraft.banner.half_vertical.lime": "黄绿色右半方形", - "block.minecraft.banner.half_vertical.magenta": "品红色右半方形", + "block.minecraft.banner.half_vertical.lime": "酸橙色右半方形", + "block.minecraft.banner.half_vertical.magenta": "洋红色右半方形", "block.minecraft.banner.half_vertical.orange": "橙色右半方形", "block.minecraft.banner.half_vertical.pink": "粉红色右半方形", "block.minecraft.banner.half_vertical.purple": "紫色右半方形", @@ -761,14 +886,14 @@ "block.minecraft.banner.half_vertical.yellow": "黄色右半方形", "block.minecraft.banner.half_vertical_right.black": "黑色左半方形", "block.minecraft.banner.half_vertical_right.blue": "蓝色左半方形", - "block.minecraft.banner.half_vertical_right.brown": "棕色左半方形", - "block.minecraft.banner.half_vertical_right.cyan": "青色左半方形", + "block.minecraft.banner.half_vertical_right.brown": "咖啡色左半方形", + "block.minecraft.banner.half_vertical_right.cyan": "蓝绿色左半方形", "block.minecraft.banner.half_vertical_right.gray": "灰色左半方形", "block.minecraft.banner.half_vertical_right.green": "原谅色左半方形", "block.minecraft.banner.half_vertical_right.light_blue": "亮蓝色左半方形", "block.minecraft.banner.half_vertical_right.light_gray": "亮灰色左半方形", - "block.minecraft.banner.half_vertical_right.lime": "黄绿色左半方形", - "block.minecraft.banner.half_vertical_right.magenta": "品红色左半方形", + "block.minecraft.banner.half_vertical_right.lime": "酸橙色左半方形", + "block.minecraft.banner.half_vertical_right.magenta": "洋红色左半方形", "block.minecraft.banner.half_vertical_right.orange": "橙色左半方形", "block.minecraft.banner.half_vertical_right.pink": "粉红色左半方形", "block.minecraft.banner.half_vertical_right.purple": "紫色左半方形", @@ -777,14 +902,14 @@ "block.minecraft.banner.half_vertical_right.yellow": "黄色左半方形", "block.minecraft.banner.mojang.black": "黑色Bugjump徽标", "block.minecraft.banner.mojang.blue": "蓝色Bugjump徽标", - "block.minecraft.banner.mojang.brown": "棕色Bugjump徽标", - "block.minecraft.banner.mojang.cyan": "青色Bugjump徽标", + "block.minecraft.banner.mojang.brown": "咖啡色Bugjump徽标", + "block.minecraft.banner.mojang.cyan": "蓝绿色Bugjump徽标", "block.minecraft.banner.mojang.gray": "灰色Bugjump徽标", "block.minecraft.banner.mojang.green": "原谅色Bugjump徽标", "block.minecraft.banner.mojang.light_blue": "亮蓝色Bugjump徽标", "block.minecraft.banner.mojang.light_gray": "亮灰色Bugjump徽标", - "block.minecraft.banner.mojang.lime": "黄绿色Bugjump徽标", - "block.minecraft.banner.mojang.magenta": "品红色Bugjump徽标", + "block.minecraft.banner.mojang.lime": "酸橙色Bugjump徽标", + "block.minecraft.banner.mojang.magenta": "洋红色Bugjump徽标", "block.minecraft.banner.mojang.orange": "橙色Bugjump徽标", "block.minecraft.banner.mojang.pink": "粉红色Bugjump徽标", "block.minecraft.banner.mojang.purple": "紫色Bugjump徽标", @@ -793,78 +918,78 @@ "block.minecraft.banner.mojang.yellow": "黄色Bugjump徽标", "block.minecraft.banner.piglin.black": "黑色插座", "block.minecraft.banner.piglin.blue": "蓝色插座", - "block.minecraft.banner.piglin.brown": "棕色插座", - "block.minecraft.banner.piglin.cyan": "青色插座", + "block.minecraft.banner.piglin.brown": "咖啡色插座", + "block.minecraft.banner.piglin.cyan": "蓝绿色插座", "block.minecraft.banner.piglin.gray": "灰色插座", "block.minecraft.banner.piglin.green": "原谅色插座", "block.minecraft.banner.piglin.light_blue": "亮蓝色插座", "block.minecraft.banner.piglin.light_gray": "亮灰色插座", - "block.minecraft.banner.piglin.lime": "黄绿色插座", - "block.minecraft.banner.piglin.magenta": "品红色插座", + "block.minecraft.banner.piglin.lime": "酸橙色插座", + "block.minecraft.banner.piglin.magenta": "洋红色插座", "block.minecraft.banner.piglin.orange": "橙色插座", "block.minecraft.banner.piglin.pink": "粉红色插座", "block.minecraft.banner.piglin.purple": "紫色插座", "block.minecraft.banner.piglin.red": "红色插座", "block.minecraft.banner.piglin.white": "白色插座", "block.minecraft.banner.piglin.yellow": "黄色插座", - "block.minecraft.banner.rhombus.black": "黑色菱形", - "block.minecraft.banner.rhombus.blue": "蓝色菱形", - "block.minecraft.banner.rhombus.brown": "棕色菱形", - "block.minecraft.banner.rhombus.cyan": "青色菱形", - "block.minecraft.banner.rhombus.gray": "灰色菱形", - "block.minecraft.banner.rhombus.green": "原谅色菱形", - "block.minecraft.banner.rhombus.light_blue": "亮蓝色菱形", - "block.minecraft.banner.rhombus.light_gray": "亮灰色菱形", - "block.minecraft.banner.rhombus.lime": "黄绿色菱形", - "block.minecraft.banner.rhombus.magenta": "品红色菱形", - "block.minecraft.banner.rhombus.orange": "橙色菱形", - "block.minecraft.banner.rhombus.pink": "粉红色菱形", - "block.minecraft.banner.rhombus.purple": "紫色菱形", - "block.minecraft.banner.rhombus.red": "红色菱形", - "block.minecraft.banner.rhombus.white": "白色菱形", - "block.minecraft.banner.rhombus.yellow": "黄色菱形", - "block.minecraft.banner.skull.black": "黑色头颅盾徽", - "block.minecraft.banner.skull.blue": "蓝色头颅盾徽", - "block.minecraft.banner.skull.brown": "棕色头颅盾徽", - "block.minecraft.banner.skull.cyan": "青色头颅盾徽", - "block.minecraft.banner.skull.gray": "灰色头颅盾徽", - "block.minecraft.banner.skull.green": "原谅色头颅盾徽", - "block.minecraft.banner.skull.light_blue": "亮蓝色头颅盾徽", - "block.minecraft.banner.skull.light_gray": "亮灰色头颅盾徽", - "block.minecraft.banner.skull.lime": "黄绿色头颅盾徽", - "block.minecraft.banner.skull.magenta": "品红色头颅盾徽", - "block.minecraft.banner.skull.orange": "橙色头颅盾徽", - "block.minecraft.banner.skull.pink": "粉红色头颅盾徽", - "block.minecraft.banner.skull.purple": "紫色头颅盾徽", - "block.minecraft.banner.skull.red": "红色头颅盾徽", - "block.minecraft.banner.skull.white": "白色头颅盾徽", - "block.minecraft.banner.skull.yellow": "黄色头颅盾徽", - "block.minecraft.banner.small_stripes.black": "黑竖条纹", - "block.minecraft.banner.small_stripes.blue": "蓝竖条纹", - "block.minecraft.banner.small_stripes.brown": "棕竖条纹", - "block.minecraft.banner.small_stripes.cyan": "青竖条纹", - "block.minecraft.banner.small_stripes.gray": "灰竖条纹", - "block.minecraft.banner.small_stripes.green": "原谅竖条纹", - "block.minecraft.banner.small_stripes.light_blue": "亮蓝竖条纹", - "block.minecraft.banner.small_stripes.light_gray": "亮灰竖条纹", - "block.minecraft.banner.small_stripes.lime": "黄绿竖条纹", - "block.minecraft.banner.small_stripes.magenta": "品红竖条纹", - "block.minecraft.banner.small_stripes.orange": "橙竖条纹", - "block.minecraft.banner.small_stripes.pink": "粉红竖条纹", - "block.minecraft.banner.small_stripes.purple": "紫竖条纹", - "block.minecraft.banner.small_stripes.red": "红竖条纹", - "block.minecraft.banner.small_stripes.white": "白竖条纹", - "block.minecraft.banner.small_stripes.yellow": "黄竖条纹", + "block.minecraft.banner.rhombus.black": "黑色方片", + "block.minecraft.banner.rhombus.blue": "蓝色方片", + "block.minecraft.banner.rhombus.brown": "咖啡色方片", + "block.minecraft.banner.rhombus.cyan": "蓝绿色方片", + "block.minecraft.banner.rhombus.gray": "灰色方片", + "block.minecraft.banner.rhombus.green": "原谅色方片", + "block.minecraft.banner.rhombus.light_blue": "亮蓝色方片", + "block.minecraft.banner.rhombus.light_gray": "亮灰色方片", + "block.minecraft.banner.rhombus.lime": "酸橙色方片", + "block.minecraft.banner.rhombus.magenta": "洋红色方片", + "block.minecraft.banner.rhombus.orange": "橙色方片", + "block.minecraft.banner.rhombus.pink": "粉红色方片", + "block.minecraft.banner.rhombus.purple": "紫色方片", + "block.minecraft.banner.rhombus.red": "红色方片", + "block.minecraft.banner.rhombus.white": "白色方片", + "block.minecraft.banner.rhombus.yellow": "黄色方片", + "block.minecraft.banner.skull.black": "黑色有毒品标志", + "block.minecraft.banner.skull.blue": "蓝色有毒品标志", + "block.minecraft.banner.skull.brown": "咖啡色有毒品标志", + "block.minecraft.banner.skull.cyan": "蓝绿色有毒品标志", + "block.minecraft.banner.skull.gray": "灰色有毒品标志", + "block.minecraft.banner.skull.green": "原谅色有毒品标志", + "block.minecraft.banner.skull.light_blue": "亮蓝色有毒品标志", + "block.minecraft.banner.skull.light_gray": "亮灰色有毒品标志", + "block.minecraft.banner.skull.lime": "酸橙色有毒品标志", + "block.minecraft.banner.skull.magenta": "洋红色有毒品标志", + "block.minecraft.banner.skull.orange": "橙色有毒品标志", + "block.minecraft.banner.skull.pink": "粉红色有毒品标志", + "block.minecraft.banner.skull.purple": "紫色有毒品标志", + "block.minecraft.banner.skull.red": "红色有毒品标志", + "block.minecraft.banner.skull.white": "白色有毒品标志", + "block.minecraft.banner.skull.yellow": "黄色有毒品标志", + "block.minecraft.banner.small_stripes.black": "黑色“丨”纹", + "block.minecraft.banner.small_stripes.blue": "蓝色“丨”纹", + "block.minecraft.banner.small_stripes.brown": "咖啡色“丨”纹", + "block.minecraft.banner.small_stripes.cyan": "蓝绿色“丨”纹", + "block.minecraft.banner.small_stripes.gray": "灰色“丨”纹", + "block.minecraft.banner.small_stripes.green": "原谅色“丨”纹", + "block.minecraft.banner.small_stripes.light_blue": "亮蓝色“丨”纹", + "block.minecraft.banner.small_stripes.light_gray": "亮灰色“丨”纹", + "block.minecraft.banner.small_stripes.lime": "酸橙色“丨”纹", + "block.minecraft.banner.small_stripes.magenta": "洋红色“丨”纹", + "block.minecraft.banner.small_stripes.orange": "橙色“丨”纹", + "block.minecraft.banner.small_stripes.pink": "粉红色“丨”纹", + "block.minecraft.banner.small_stripes.purple": "紫色“丨”纹", + "block.minecraft.banner.small_stripes.red": "红色“丨”纹", + "block.minecraft.banner.small_stripes.white": "白色“丨”纹", + "block.minecraft.banner.small_stripes.yellow": "黄色“丨”纹", "block.minecraft.banner.square_bottom_left.black": "右底黑方", "block.minecraft.banner.square_bottom_left.blue": "右底蓝方", - "block.minecraft.banner.square_bottom_left.brown": "右底棕方", - "block.minecraft.banner.square_bottom_left.cyan": "右底青方", + "block.minecraft.banner.square_bottom_left.brown": "右底咖啡方", + "block.minecraft.banner.square_bottom_left.cyan": "右底蓝绿方", "block.minecraft.banner.square_bottom_left.gray": "右底灰方", "block.minecraft.banner.square_bottom_left.green": "右底原谅方", "block.minecraft.banner.square_bottom_left.light_blue": "右底亮蓝方", "block.minecraft.banner.square_bottom_left.light_gray": "右底亮灰方", - "block.minecraft.banner.square_bottom_left.lime": "右底黄绿方", - "block.minecraft.banner.square_bottom_left.magenta": "右底品红方", + "block.minecraft.banner.square_bottom_left.lime": "右底酸橙方", + "block.minecraft.banner.square_bottom_left.magenta": "右底洋红方", "block.minecraft.banner.square_bottom_left.orange": "右底橙方", "block.minecraft.banner.square_bottom_left.pink": "右底粉红方", "block.minecraft.banner.square_bottom_left.purple": "右底紫方", @@ -873,14 +998,14 @@ "block.minecraft.banner.square_bottom_left.yellow": "右底黄方", "block.minecraft.banner.square_bottom_right.black": "左底黑方", "block.minecraft.banner.square_bottom_right.blue": "左底蓝方", - "block.minecraft.banner.square_bottom_right.brown": "左底棕方", - "block.minecraft.banner.square_bottom_right.cyan": "左底青方", + "block.minecraft.banner.square_bottom_right.brown": "左底咖啡方", + "block.minecraft.banner.square_bottom_right.cyan": "左底蓝绿方", "block.minecraft.banner.square_bottom_right.gray": "左底灰方", "block.minecraft.banner.square_bottom_right.green": "左底原谅方", "block.minecraft.banner.square_bottom_right.light_blue": "左底亮蓝方", "block.minecraft.banner.square_bottom_right.light_gray": "左底亮灰方", - "block.minecraft.banner.square_bottom_right.lime": "左底黄绿方", - "block.minecraft.banner.square_bottom_right.magenta": "左底品红方", + "block.minecraft.banner.square_bottom_right.lime": "左底酸橙方", + "block.minecraft.banner.square_bottom_right.magenta": "左底洋红方", "block.minecraft.banner.square_bottom_right.orange": "左底橙方", "block.minecraft.banner.square_bottom_right.pink": "左底粉红方", "block.minecraft.banner.square_bottom_right.purple": "左底紫方", @@ -889,14 +1014,14 @@ "block.minecraft.banner.square_bottom_right.yellow": "左底黄方", "block.minecraft.banner.square_top_left.black": "右顶黑方", "block.minecraft.banner.square_top_left.blue": "右顶蓝方", - "block.minecraft.banner.square_top_left.brown": "右顶棕方", - "block.minecraft.banner.square_top_left.cyan": "右顶青方", + "block.minecraft.banner.square_top_left.brown": "右顶咖啡方", + "block.minecraft.banner.square_top_left.cyan": "右顶蓝绿方", "block.minecraft.banner.square_top_left.gray": "右顶灰方", "block.minecraft.banner.square_top_left.green": "右顶原谅方", "block.minecraft.banner.square_top_left.light_blue": "右顶亮蓝方", "block.minecraft.banner.square_top_left.light_gray": "右顶亮灰方", - "block.minecraft.banner.square_top_left.lime": "右顶黄绿方", - "block.minecraft.banner.square_top_left.magenta": "右顶品红方", + "block.minecraft.banner.square_top_left.lime": "右顶酸橙方", + "block.minecraft.banner.square_top_left.magenta": "右顶洋红方", "block.minecraft.banner.square_top_left.orange": "右顶橙方", "block.minecraft.banner.square_top_left.pink": "右顶粉红方", "block.minecraft.banner.square_top_left.purple": "右顶紫方", @@ -905,78 +1030,78 @@ "block.minecraft.banner.square_top_left.yellow": "右顶黄方", "block.minecraft.banner.square_top_right.black": "左顶黑方", "block.minecraft.banner.square_top_right.blue": "左顶蓝方", - "block.minecraft.banner.square_top_right.brown": "左顶棕方", - "block.minecraft.banner.square_top_right.cyan": "左顶青方", + "block.minecraft.banner.square_top_right.brown": "左顶咖啡方", + "block.minecraft.banner.square_top_right.cyan": "左顶蓝绿方", "block.minecraft.banner.square_top_right.gray": "左顶灰方", "block.minecraft.banner.square_top_right.green": "左顶原谅方", "block.minecraft.banner.square_top_right.light_blue": "左顶亮蓝方", "block.minecraft.banner.square_top_right.light_gray": "左顶亮灰方", - "block.minecraft.banner.square_top_right.lime": "左顶黄绿方", - "block.minecraft.banner.square_top_right.magenta": "左顶品红方", + "block.minecraft.banner.square_top_right.lime": "左顶酸橙方", + "block.minecraft.banner.square_top_right.magenta": "左顶洋红方", "block.minecraft.banner.square_top_right.orange": "左顶橙方", "block.minecraft.banner.square_top_right.pink": "左顶粉红方", "block.minecraft.banner.square_top_right.purple": "左顶紫方", "block.minecraft.banner.square_top_right.red": "左顶红方", "block.minecraft.banner.square_top_right.white": "左顶白方", "block.minecraft.banner.square_top_right.yellow": "左顶黄方", - "block.minecraft.banner.straight_cross.black": "黑正十字", - "block.minecraft.banner.straight_cross.blue": "蓝正十字", - "block.minecraft.banner.straight_cross.brown": "棕正十字", - "block.minecraft.banner.straight_cross.cyan": "青正十字", - "block.minecraft.banner.straight_cross.gray": "灰正十字", - "block.minecraft.banner.straight_cross.green": "原谅正十字", - "block.minecraft.banner.straight_cross.light_blue": "亮蓝正十字", - "block.minecraft.banner.straight_cross.light_gray": "亮灰正十字", - "block.minecraft.banner.straight_cross.lime": "黄绿正十字", - "block.minecraft.banner.straight_cross.magenta": "品红正十字", - "block.minecraft.banner.straight_cross.orange": "橙正十字", - "block.minecraft.banner.straight_cross.pink": "粉红正十字", - "block.minecraft.banner.straight_cross.purple": "紫正十字", - "block.minecraft.banner.straight_cross.red": "红正十字", - "block.minecraft.banner.straight_cross.white": "白正十字", - "block.minecraft.banner.straight_cross.yellow": "黄正十字", - "block.minecraft.banner.stripe_bottom.black": "底黑横条", - "block.minecraft.banner.stripe_bottom.blue": "底蓝横条", - "block.minecraft.banner.stripe_bottom.brown": "底棕横条", - "block.minecraft.banner.stripe_bottom.cyan": "底青横条", - "block.minecraft.banner.stripe_bottom.gray": "底灰横条", - "block.minecraft.banner.stripe_bottom.green": "底原谅横条", - "block.minecraft.banner.stripe_bottom.light_blue": "底亮蓝横条", - "block.minecraft.banner.stripe_bottom.light_gray": "底亮灰横条", - "block.minecraft.banner.stripe_bottom.lime": "底黄绿横条", - "block.minecraft.banner.stripe_bottom.magenta": "底品红横条", - "block.minecraft.banner.stripe_bottom.orange": "底橙横条", - "block.minecraft.banner.stripe_bottom.pink": "底粉红横条", - "block.minecraft.banner.stripe_bottom.purple": "底紫横条", - "block.minecraft.banner.stripe_bottom.red": "底红横条", - "block.minecraft.banner.stripe_bottom.white": "底白横条", - "block.minecraft.banner.stripe_bottom.yellow": "底黄横条", - "block.minecraft.banner.stripe_center.black": "中黑竖条", - "block.minecraft.banner.stripe_center.blue": "中蓝竖条", - "block.minecraft.banner.stripe_center.brown": "中棕竖条", - "block.minecraft.banner.stripe_center.cyan": "中青竖条", - "block.minecraft.banner.stripe_center.gray": "中灰竖条", - "block.minecraft.banner.stripe_center.green": "中原谅竖条", - "block.minecraft.banner.stripe_center.light_blue": "中亮蓝竖条", - "block.minecraft.banner.stripe_center.light_gray": "中亮灰竖条", - "block.minecraft.banner.stripe_center.lime": "中黄绿竖条", - "block.minecraft.banner.stripe_center.magenta": "中品红竖条", - "block.minecraft.banner.stripe_center.orange": "中橙竖条", - "block.minecraft.banner.stripe_center.pink": "中粉红竖条", - "block.minecraft.banner.stripe_center.purple": "中紫竖条", - "block.minecraft.banner.stripe_center.red": "中红竖条", - "block.minecraft.banner.stripe_center.white": "中白竖条", - "block.minecraft.banner.stripe_center.yellow": "中黄竖条", + "block.minecraft.banner.straight_cross.black": "黑十字军标志", + "block.minecraft.banner.straight_cross.blue": "蓝十字军标志", + "block.minecraft.banner.straight_cross.brown": "咖啡十字军标志", + "block.minecraft.banner.straight_cross.cyan": "蓝绿十字军标志", + "block.minecraft.banner.straight_cross.gray": "灰十字军标志", + "block.minecraft.banner.straight_cross.green": "原谅十字军标志", + "block.minecraft.banner.straight_cross.light_blue": "亮蓝十字军标志", + "block.minecraft.banner.straight_cross.light_gray": "亮灰十字军标志", + "block.minecraft.banner.straight_cross.lime": "酸橙十字军标志", + "block.minecraft.banner.straight_cross.magenta": "洋红十字军标志", + "block.minecraft.banner.straight_cross.orange": "橙十字军标志", + "block.minecraft.banner.straight_cross.pink": "粉红十字军标志", + "block.minecraft.banner.straight_cross.purple": "紫十字军标志", + "block.minecraft.banner.straight_cross.red": "红十字军标志", + "block.minecraft.banner.straight_cross.white": "白十字军标志", + "block.minecraft.banner.straight_cross.yellow": "黄十字军标志", + "block.minecraft.banner.stripe_bottom.black": "底黑色“一”纹", + "block.minecraft.banner.stripe_bottom.blue": "底蓝色“一”纹", + "block.minecraft.banner.stripe_bottom.brown": "底咖啡色“一”纹", + "block.minecraft.banner.stripe_bottom.cyan": "底蓝绿色“一”纹", + "block.minecraft.banner.stripe_bottom.gray": "底灰色“一”纹", + "block.minecraft.banner.stripe_bottom.green": "底原谅色“一”纹", + "block.minecraft.banner.stripe_bottom.light_blue": "底亮蓝色“一”纹", + "block.minecraft.banner.stripe_bottom.light_gray": "底亮灰色“一”纹", + "block.minecraft.banner.stripe_bottom.lime": "底酸橙色“一”纹", + "block.minecraft.banner.stripe_bottom.magenta": "底洋红色“一”纹", + "block.minecraft.banner.stripe_bottom.orange": "底橙色“一”纹", + "block.minecraft.banner.stripe_bottom.pink": "底粉红色“一”纹", + "block.minecraft.banner.stripe_bottom.purple": "底紫色“一”纹", + "block.minecraft.banner.stripe_bottom.red": "底红色“一”纹", + "block.minecraft.banner.stripe_bottom.white": "底白色“一”纹", + "block.minecraft.banner.stripe_bottom.yellow": "底黄色“一”纹", + "block.minecraft.banner.stripe_center.black": "中黑色“丨”纹", + "block.minecraft.banner.stripe_center.blue": "中蓝色“丨”纹", + "block.minecraft.banner.stripe_center.brown": "中咖啡色“丨”纹", + "block.minecraft.banner.stripe_center.cyan": "中蓝绿色“丨”纹", + "block.minecraft.banner.stripe_center.gray": "中灰色“丨”纹", + "block.minecraft.banner.stripe_center.green": "中原谅色“丨”纹", + "block.minecraft.banner.stripe_center.light_blue": "中亮蓝色“丨”纹", + "block.minecraft.banner.stripe_center.light_gray": "中亮灰色“丨”纹", + "block.minecraft.banner.stripe_center.lime": "中酸橙色“丨”纹", + "block.minecraft.banner.stripe_center.magenta": "中洋红色“丨”纹", + "block.minecraft.banner.stripe_center.orange": "中橙色“丨”纹", + "block.minecraft.banner.stripe_center.pink": "中粉红色“丨”纹", + "block.minecraft.banner.stripe_center.purple": "中紫色“丨”纹", + "block.minecraft.banner.stripe_center.red": "中红色“丨”纹", + "block.minecraft.banner.stripe_center.white": "中白色“丨”纹", + "block.minecraft.banner.stripe_center.yellow": "中黄色“丨”纹", "block.minecraft.banner.stripe_downleft.black": "左黑斜条", "block.minecraft.banner.stripe_downleft.blue": "左蓝斜条", - "block.minecraft.banner.stripe_downleft.brown": "左棕斜条", - "block.minecraft.banner.stripe_downleft.cyan": "左青斜条", + "block.minecraft.banner.stripe_downleft.brown": "左咖啡斜条", + "block.minecraft.banner.stripe_downleft.cyan": "左蓝绿斜条", "block.minecraft.banner.stripe_downleft.gray": "左灰斜条", "block.minecraft.banner.stripe_downleft.green": "左原谅斜条", "block.minecraft.banner.stripe_downleft.light_blue": "左亮蓝斜条", "block.minecraft.banner.stripe_downleft.light_gray": "左亮灰斜条", - "block.minecraft.banner.stripe_downleft.lime": "左黄绿斜条", - "block.minecraft.banner.stripe_downleft.magenta": "左品红斜条", + "block.minecraft.banner.stripe_downleft.lime": "左酸橙斜条", + "block.minecraft.banner.stripe_downleft.magenta": "左洋红斜条", "block.minecraft.banner.stripe_downleft.orange": "左橙斜条", "block.minecraft.banner.stripe_downleft.pink": "左粉红斜条", "block.minecraft.banner.stripe_downleft.purple": "左紫斜条", @@ -985,148 +1110,148 @@ "block.minecraft.banner.stripe_downleft.yellow": "左黄斜条", "block.minecraft.banner.stripe_downright.black": "右黑斜条", "block.minecraft.banner.stripe_downright.blue": "右蓝斜条", - "block.minecraft.banner.stripe_downright.brown": "右棕斜条", - "block.minecraft.banner.stripe_downright.cyan": "右青斜条", + "block.minecraft.banner.stripe_downright.brown": "右咖啡斜条", + "block.minecraft.banner.stripe_downright.cyan": "右蓝绿斜条", "block.minecraft.banner.stripe_downright.gray": "右灰斜条", "block.minecraft.banner.stripe_downright.green": "右原谅斜条", "block.minecraft.banner.stripe_downright.light_blue": "右亮蓝斜条", "block.minecraft.banner.stripe_downright.light_gray": "右亮灰斜条", - "block.minecraft.banner.stripe_downright.lime": "右黄绿斜条", - "block.minecraft.banner.stripe_downright.magenta": "右品红斜条", + "block.minecraft.banner.stripe_downright.lime": "右酸橙斜条", + "block.minecraft.banner.stripe_downright.magenta": "右洋红斜条", "block.minecraft.banner.stripe_downright.orange": "右橙斜条", "block.minecraft.banner.stripe_downright.pink": "右粉红斜条", "block.minecraft.banner.stripe_downright.purple": "右紫斜条", "block.minecraft.banner.stripe_downright.red": "右红斜条", "block.minecraft.banner.stripe_downright.white": "右白斜条", "block.minecraft.banner.stripe_downright.yellow": "右黄斜条", - "block.minecraft.banner.stripe_left.black": "右黑竖条", - "block.minecraft.banner.stripe_left.blue": "右蓝竖条", - "block.minecraft.banner.stripe_left.brown": "右棕竖条", - "block.minecraft.banner.stripe_left.cyan": "右青竖条", - "block.minecraft.banner.stripe_left.gray": "右灰竖条", - "block.minecraft.banner.stripe_left.green": "右原谅竖条", - "block.minecraft.banner.stripe_left.light_blue": "右亮蓝竖条", - "block.minecraft.banner.stripe_left.light_gray": "右亮灰竖条", - "block.minecraft.banner.stripe_left.lime": "右黄绿竖条", - "block.minecraft.banner.stripe_left.magenta": "右品红竖条", - "block.minecraft.banner.stripe_left.orange": "右橙竖条", - "block.minecraft.banner.stripe_left.pink": "右粉红竖条", - "block.minecraft.banner.stripe_left.purple": "右紫竖条", - "block.minecraft.banner.stripe_left.red": "右红竖条", - "block.minecraft.banner.stripe_left.white": "右白竖条", - "block.minecraft.banner.stripe_left.yellow": "右黄竖条", - "block.minecraft.banner.stripe_middle.black": "中黑横条", - "block.minecraft.banner.stripe_middle.blue": "中蓝横条", - "block.minecraft.banner.stripe_middle.brown": "中棕横条", - "block.minecraft.banner.stripe_middle.cyan": "中青横条", - "block.minecraft.banner.stripe_middle.gray": "中灰横条", - "block.minecraft.banner.stripe_middle.green": "中原谅横条", - "block.minecraft.banner.stripe_middle.light_blue": "中亮蓝横条", - "block.minecraft.banner.stripe_middle.light_gray": "中亮灰横条", - "block.minecraft.banner.stripe_middle.lime": "中黄绿横条", - "block.minecraft.banner.stripe_middle.magenta": "中品红横条", - "block.minecraft.banner.stripe_middle.orange": "中橙横条", - "block.minecraft.banner.stripe_middle.pink": "中粉红横条", - "block.minecraft.banner.stripe_middle.purple": "中紫横条", - "block.minecraft.banner.stripe_middle.red": "中红横条", - "block.minecraft.banner.stripe_middle.white": "中白横条", - "block.minecraft.banner.stripe_middle.yellow": "中黄横条", - "block.minecraft.banner.stripe_right.black": "左黑竖条", - "block.minecraft.banner.stripe_right.blue": "左蓝竖条", - "block.minecraft.banner.stripe_right.brown": "左棕竖条", - "block.minecraft.banner.stripe_right.cyan": "左青竖条", - "block.minecraft.banner.stripe_right.gray": "左灰竖条", - "block.minecraft.banner.stripe_right.green": "左原谅竖条", - "block.minecraft.banner.stripe_right.light_blue": "左亮蓝竖条", - "block.minecraft.banner.stripe_right.light_gray": "左亮灰竖条", - "block.minecraft.banner.stripe_right.lime": "左黄绿竖条", - "block.minecraft.banner.stripe_right.magenta": "左品红竖条", - "block.minecraft.banner.stripe_right.orange": "左橙竖条", - "block.minecraft.banner.stripe_right.pink": "左粉红竖条", - "block.minecraft.banner.stripe_right.purple": "左紫竖条", - "block.minecraft.banner.stripe_right.red": "左红竖条", - "block.minecraft.banner.stripe_right.white": "左白竖条", - "block.minecraft.banner.stripe_right.yellow": "左黄竖条", - "block.minecraft.banner.stripe_top.black": "顶黑横条", - "block.minecraft.banner.stripe_top.blue": "顶蓝横条", - "block.minecraft.banner.stripe_top.brown": "顶棕横条", - "block.minecraft.banner.stripe_top.cyan": "顶青横条", - "block.minecraft.banner.stripe_top.gray": "顶灰横条", - "block.minecraft.banner.stripe_top.green": "顶原谅横条", - "block.minecraft.banner.stripe_top.light_blue": "顶亮蓝横条", - "block.minecraft.banner.stripe_top.light_gray": "顶亮灰横条", - "block.minecraft.banner.stripe_top.lime": "顶黄绿横条", - "block.minecraft.banner.stripe_top.magenta": "顶品红横条", - "block.minecraft.banner.stripe_top.orange": "顶橙横条", - "block.minecraft.banner.stripe_top.pink": "顶粉红横条", - "block.minecraft.banner.stripe_top.purple": "顶紫横条", - "block.minecraft.banner.stripe_top.red": "顶红横条", - "block.minecraft.banner.stripe_top.white": "顶白横条", - "block.minecraft.banner.stripe_top.yellow": "顶黄横条", - "block.minecraft.banner.triangle_bottom.black": "底黑三角", - "block.minecraft.banner.triangle_bottom.blue": "底蓝三角", - "block.minecraft.banner.triangle_bottom.brown": "底棕三角", - "block.minecraft.banner.triangle_bottom.cyan": "底青三角", - "block.minecraft.banner.triangle_bottom.gray": "底灰三角", - "block.minecraft.banner.triangle_bottom.green": "底原谅三角", - "block.minecraft.banner.triangle_bottom.light_blue": "底亮蓝三角", - "block.minecraft.banner.triangle_bottom.light_gray": "底亮灰三角", - "block.minecraft.banner.triangle_bottom.lime": "底黄绿三角", - "block.minecraft.banner.triangle_bottom.magenta": "底品红三角", - "block.minecraft.banner.triangle_bottom.orange": "底橙三角", - "block.minecraft.banner.triangle_bottom.pink": "底粉红三角", - "block.minecraft.banner.triangle_bottom.purple": "底紫三角", - "block.minecraft.banner.triangle_bottom.red": "底红三角", - "block.minecraft.banner.triangle_bottom.white": "底白三角", - "block.minecraft.banner.triangle_bottom.yellow": "底黄三角", - "block.minecraft.banner.triangle_top.black": "顶黑三角", - "block.minecraft.banner.triangle_top.blue": "顶蓝三角", - "block.minecraft.banner.triangle_top.brown": "顶棕三角", - "block.minecraft.banner.triangle_top.cyan": "顶青三角", - "block.minecraft.banner.triangle_top.gray": "灰色顶三角", - "block.minecraft.banner.triangle_top.green": "顶原谅三角", - "block.minecraft.banner.triangle_top.light_blue": "亮蓝色顶三角", - "block.minecraft.banner.triangle_top.light_gray": "顶亮灰三角", - "block.minecraft.banner.triangle_top.lime": "黄绿色顶三角", - "block.minecraft.banner.triangle_top.magenta": "品红色顶三角", - "block.minecraft.banner.triangle_top.orange": "橙色顶三角", - "block.minecraft.banner.triangle_top.pink": "粉红色顶三角", - "block.minecraft.banner.triangle_top.purple": "顶紫三角", - "block.minecraft.banner.triangle_top.red": "顶红三角", - "block.minecraft.banner.triangle_top.white": "白色顶三角", - "block.minecraft.banner.triangle_top.yellow": "黄色顶三角", - "block.minecraft.banner.triangles_bottom.black": "黑色底波纹", - "block.minecraft.banner.triangles_bottom.blue": "蓝色底波纹", - "block.minecraft.banner.triangles_bottom.brown": "棕色底波纹", - "block.minecraft.banner.triangles_bottom.cyan": "青色底波纹", - "block.minecraft.banner.triangles_bottom.gray": "灰色底波纹", - "block.minecraft.banner.triangles_bottom.green": "原谅色底波纹", - "block.minecraft.banner.triangles_bottom.light_blue": "亮蓝色底波纹", - "block.minecraft.banner.triangles_bottom.light_gray": "亮灰色底波纹", - "block.minecraft.banner.triangles_bottom.lime": "黄绿色底波纹", - "block.minecraft.banner.triangles_bottom.magenta": "品红色底波纹", - "block.minecraft.banner.triangles_bottom.orange": "橙色底波纹", - "block.minecraft.banner.triangles_bottom.pink": "粉红色底波纹", - "block.minecraft.banner.triangles_bottom.purple": "紫色底波纹", - "block.minecraft.banner.triangles_bottom.red": "红色底波纹", - "block.minecraft.banner.triangles_bottom.white": "白色底波纹", - "block.minecraft.banner.triangles_bottom.yellow": "黄色底波纹", - "block.minecraft.banner.triangles_top.black": "黑色顶波纹", - "block.minecraft.banner.triangles_top.blue": "蓝色顶波纹", - "block.minecraft.banner.triangles_top.brown": "棕色顶波纹", - "block.minecraft.banner.triangles_top.cyan": "青色顶波纹", - "block.minecraft.banner.triangles_top.gray": "灰色顶波纹", - "block.minecraft.banner.triangles_top.green": "原谅色顶波纹", - "block.minecraft.banner.triangles_top.light_blue": "亮蓝色顶波纹", - "block.minecraft.banner.triangles_top.light_gray": "亮灰色顶波纹", - "block.minecraft.banner.triangles_top.lime": "黄绿色顶波纹", - "block.minecraft.banner.triangles_top.magenta": "品红色顶波纹", - "block.minecraft.banner.triangles_top.orange": "橙色顶波纹", - "block.minecraft.banner.triangles_top.pink": "粉红色顶波纹", - "block.minecraft.banner.triangles_top.purple": "紫色顶波纹", - "block.minecraft.banner.triangles_top.red": "红色顶波纹", - "block.minecraft.banner.triangles_top.white": "白色顶波纹", - "block.minecraft.banner.triangles_top.yellow": "黄色顶波纹", + "block.minecraft.banner.stripe_left.black": "右黑色“丨”纹", + "block.minecraft.banner.stripe_left.blue": "右蓝色“丨”纹", + "block.minecraft.banner.stripe_left.brown": "右咖啡色“丨”纹", + "block.minecraft.banner.stripe_left.cyan": "右蓝绿色“丨”纹", + "block.minecraft.banner.stripe_left.gray": "右灰色“丨”纹", + "block.minecraft.banner.stripe_left.green": "右原谅色“丨”纹", + "block.minecraft.banner.stripe_left.light_blue": "右亮蓝色“丨”纹", + "block.minecraft.banner.stripe_left.light_gray": "右亮灰色“丨”纹", + "block.minecraft.banner.stripe_left.lime": "右酸橙色“丨”纹", + "block.minecraft.banner.stripe_left.magenta": "右洋红色“丨”纹", + "block.minecraft.banner.stripe_left.orange": "右橙色“丨”纹", + "block.minecraft.banner.stripe_left.pink": "右粉红色“丨”纹", + "block.minecraft.banner.stripe_left.purple": "右紫色“丨”纹", + "block.minecraft.banner.stripe_left.red": "右红色“丨”纹", + "block.minecraft.banner.stripe_left.white": "右白色“丨”纹", + "block.minecraft.banner.stripe_left.yellow": "右黄色“丨”纹", + "block.minecraft.banner.stripe_middle.black": "中黑色“一”纹", + "block.minecraft.banner.stripe_middle.blue": "中蓝色“一”纹", + "block.minecraft.banner.stripe_middle.brown": "中咖啡色“一”纹", + "block.minecraft.banner.stripe_middle.cyan": "中蓝绿色“一”纹", + "block.minecraft.banner.stripe_middle.gray": "中灰色“一”纹", + "block.minecraft.banner.stripe_middle.green": "中原谅色“一”纹", + "block.minecraft.banner.stripe_middle.light_blue": "中亮蓝色“一”纹", + "block.minecraft.banner.stripe_middle.light_gray": "中亮灰色“一”纹", + "block.minecraft.banner.stripe_middle.lime": "中酸橙色“一”纹", + "block.minecraft.banner.stripe_middle.magenta": "中洋红色“一”纹", + "block.minecraft.banner.stripe_middle.orange": "中橙色“一”纹", + "block.minecraft.banner.stripe_middle.pink": "中粉红色“一”纹", + "block.minecraft.banner.stripe_middle.purple": "中紫色“一”纹", + "block.minecraft.banner.stripe_middle.red": "中红色“一”纹", + "block.minecraft.banner.stripe_middle.white": "中白色“一”纹", + "block.minecraft.banner.stripe_middle.yellow": "中黄色“一”纹", + "block.minecraft.banner.stripe_right.black": "左黑色“丨”纹", + "block.minecraft.banner.stripe_right.blue": "左蓝色“丨”纹", + "block.minecraft.banner.stripe_right.brown": "左咖啡色“丨”纹", + "block.minecraft.banner.stripe_right.cyan": "左蓝绿色“丨”纹", + "block.minecraft.banner.stripe_right.gray": "左灰色“丨”纹", + "block.minecraft.banner.stripe_right.green": "左原谅色“丨”纹", + "block.minecraft.banner.stripe_right.light_blue": "左亮蓝色“丨”纹", + "block.minecraft.banner.stripe_right.light_gray": "左亮灰色“丨”纹", + "block.minecraft.banner.stripe_right.lime": "左酸橙色“丨”纹", + "block.minecraft.banner.stripe_right.magenta": "左洋红色“丨”纹", + "block.minecraft.banner.stripe_right.orange": "左橙色“丨”纹", + "block.minecraft.banner.stripe_right.pink": "左粉红色“丨”纹", + "block.minecraft.banner.stripe_right.purple": "左紫色“丨”纹", + "block.minecraft.banner.stripe_right.red": "左红色“丨”纹", + "block.minecraft.banner.stripe_right.white": "左白色“丨”纹", + "block.minecraft.banner.stripe_right.yellow": "左黄色“丨”纹", + "block.minecraft.banner.stripe_top.black": "顶黑色“一”纹", + "block.minecraft.banner.stripe_top.blue": "顶蓝色“一”纹", + "block.minecraft.banner.stripe_top.brown": "顶咖啡色“一”纹", + "block.minecraft.banner.stripe_top.cyan": "顶蓝绿色“一”纹", + "block.minecraft.banner.stripe_top.gray": "顶灰色“一”纹", + "block.minecraft.banner.stripe_top.green": "顶原谅色“一”纹", + "block.minecraft.banner.stripe_top.light_blue": "顶亮蓝色“一”纹", + "block.minecraft.banner.stripe_top.light_gray": "顶亮灰色“一”纹", + "block.minecraft.banner.stripe_top.lime": "顶酸橙色“一”纹", + "block.minecraft.banner.stripe_top.magenta": "顶洋红色“一”纹", + "block.minecraft.banner.stripe_top.orange": "顶橙色“一”纹", + "block.minecraft.banner.stripe_top.pink": "顶粉红色“一”纹", + "block.minecraft.banner.stripe_top.purple": "顶紫色“一”纹", + "block.minecraft.banner.stripe_top.red": "顶红色“一”纹", + "block.minecraft.banner.stripe_top.white": "顶白色“一”纹", + "block.minecraft.banner.stripe_top.yellow": "顶黄色“一”纹", + "block.minecraft.banner.triangle_bottom.black": "底黑德尔塔", + "block.minecraft.banner.triangle_bottom.blue": "底蓝德尔塔", + "block.minecraft.banner.triangle_bottom.brown": "底咖啡德尔塔", + "block.minecraft.banner.triangle_bottom.cyan": "底蓝绿德尔塔", + "block.minecraft.banner.triangle_bottom.gray": "底灰德尔塔", + "block.minecraft.banner.triangle_bottom.green": "底原谅德尔塔", + "block.minecraft.banner.triangle_bottom.light_blue": "底亮蓝德尔塔", + "block.minecraft.banner.triangle_bottom.light_gray": "底亮灰德尔塔", + "block.minecraft.banner.triangle_bottom.lime": "底酸橙德尔塔", + "block.minecraft.banner.triangle_bottom.magenta": "底洋红德尔塔", + "block.minecraft.banner.triangle_bottom.orange": "底橙德尔塔", + "block.minecraft.banner.triangle_bottom.pink": "底粉红德尔塔", + "block.minecraft.banner.triangle_bottom.purple": "底紫德尔塔", + "block.minecraft.banner.triangle_bottom.red": "底红德尔塔", + "block.minecraft.banner.triangle_bottom.white": "底白德尔塔", + "block.minecraft.banner.triangle_bottom.yellow": "底黄德尔塔", + "block.minecraft.banner.triangle_top.black": "顶黑德尔塔", + "block.minecraft.banner.triangle_top.blue": "顶蓝德尔塔", + "block.minecraft.banner.triangle_top.brown": "顶咖啡德尔塔", + "block.minecraft.banner.triangle_top.cyan": "顶蓝绿德尔塔", + "block.minecraft.banner.triangle_top.gray": "灰色顶德尔塔", + "block.minecraft.banner.triangle_top.green": "顶原谅德尔塔", + "block.minecraft.banner.triangle_top.light_blue": "亮蓝色顶德尔塔", + "block.minecraft.banner.triangle_top.light_gray": "顶亮灰德尔塔", + "block.minecraft.banner.triangle_top.lime": "酸橙色顶德尔塔", + "block.minecraft.banner.triangle_top.magenta": "洋红色顶德尔塔", + "block.minecraft.banner.triangle_top.orange": "橙色顶德尔塔", + "block.minecraft.banner.triangle_top.pink": "粉红色顶德尔塔", + "block.minecraft.banner.triangle_top.purple": "顶紫德尔塔", + "block.minecraft.banner.triangle_top.red": "顶红德尔塔", + "block.minecraft.banner.triangle_top.white": "白色顶德尔塔", + "block.minecraft.banner.triangle_top.yellow": "黄色顶德尔塔", + "block.minecraft.banner.triangles_bottom.black": "黑色底部大波浪", + "block.minecraft.banner.triangles_bottom.blue": "蓝色底部大波浪", + "block.minecraft.banner.triangles_bottom.brown": "咖啡色底部大波浪", + "block.minecraft.banner.triangles_bottom.cyan": "蓝绿色底部大波浪", + "block.minecraft.banner.triangles_bottom.gray": "灰色底部大波浪", + "block.minecraft.banner.triangles_bottom.green": "原谅色底部大波浪", + "block.minecraft.banner.triangles_bottom.light_blue": "亮蓝色底部大波浪", + "block.minecraft.banner.triangles_bottom.light_gray": "亮灰色底部大波浪", + "block.minecraft.banner.triangles_bottom.lime": "酸橙色底部大波浪", + "block.minecraft.banner.triangles_bottom.magenta": "洋红色底部大波浪", + "block.minecraft.banner.triangles_bottom.orange": "橙色底部大波浪", + "block.minecraft.banner.triangles_bottom.pink": "粉红色底部大波浪", + "block.minecraft.banner.triangles_bottom.purple": "紫色底部大波浪", + "block.minecraft.banner.triangles_bottom.red": "红色底部大波浪", + "block.minecraft.banner.triangles_bottom.white": "白色底部大波浪", + "block.minecraft.banner.triangles_bottom.yellow": "黄色底部大波浪", + "block.minecraft.banner.triangles_top.black": "黑色顶部大波浪", + "block.minecraft.banner.triangles_top.blue": "蓝色顶部大波浪", + "block.minecraft.banner.triangles_top.brown": "咖啡色顶部大波浪", + "block.minecraft.banner.triangles_top.cyan": "蓝绿色顶部大波浪", + "block.minecraft.banner.triangles_top.gray": "灰色顶部大波浪", + "block.minecraft.banner.triangles_top.green": "原谅色顶部大波浪", + "block.minecraft.banner.triangles_top.light_blue": "亮蓝色顶部大波浪", + "block.minecraft.banner.triangles_top.light_gray": "亮灰色顶部大波浪", + "block.minecraft.banner.triangles_top.lime": "酸橙色顶部大波浪", + "block.minecraft.banner.triangles_top.magenta": "洋红色顶部大波浪", + "block.minecraft.banner.triangles_top.orange": "橙色顶部大波浪", + "block.minecraft.banner.triangles_top.pink": "粉红色顶部大波浪", + "block.minecraft.banner.triangles_top.purple": "紫色顶部大波浪", + "block.minecraft.banner.triangles_top.red": "红色顶部大波浪", + "block.minecraft.banner.triangles_top.white": "白色顶部大波浪", + "block.minecraft.banner.triangles_top.yellow": "黄色顶部大波浪", "block.minecraft.barrel": "酒吧桶", "block.minecraft.barrier": "立 入 禁 止", "block.minecraft.basalt": "玄武岩", @@ -1149,6 +1274,7 @@ "block.minecraft.birch_door": "白桦木门", "block.minecraft.birch_fence": "白桦木栅栏", "block.minecraft.birch_fence_gate": "白桦木栅栏门", + "block.minecraft.birch_hanging_sign": "上吊的白桦木搞事牌", "block.minecraft.birch_leaves": "白桦树叶", "block.minecraft.birch_log": "白桦日志", "block.minecraft.birch_planks": "白桦木板", @@ -1157,7 +1283,8 @@ "block.minecraft.birch_sign": "白桦木搞事牌", "block.minecraft.birch_slab": "白桦木半砖", "block.minecraft.birch_stairs": "白桦木楼梯", - "block.minecraft.birch_trapdoor": "白桦木活板门", + "block.minecraft.birch_trapdoor": "白桦木陷阱门", + "block.minecraft.birch_wall_hanging_sign": "墙上的上吊的白桦木搞事牌", "block.minecraft.birch_wall_sign": "墙上的白桦木搞事牌", "block.minecraft.birch_wood": "白桦树皮", "block.minecraft.black_banner": "黑色旗帜", @@ -1169,10 +1296,10 @@ "block.minecraft.black_concrete_powder": "黑色具体的粉末", "block.minecraft.black_glazed_terracotta": "黑色带釉陶瓦", "block.minecraft.black_shulker_box": "黑色傻瓜盒子", - "block.minecraft.black_stained_glass": "黑色染色玻璃", - "block.minecraft.black_stained_glass_pane": "黑色染色玻璃板", + "block.minecraft.black_stained_glass": "黑色太阳镜", + "block.minecraft.black_stained_glass_pane": "黑色太阳镜片", "block.minecraft.black_terracotta": "黑色陶瓦", - "block.minecraft.black_wool": "黑色羊毛", + "block.minecraft.black_wool": "黑色咩咩毛", "block.minecraft.blackstone": "非洲石头", "block.minecraft.blackstone_slab": "非洲石半砖", "block.minecraft.blackstone_stairs": "非洲石楼梯", @@ -1189,10 +1316,10 @@ "block.minecraft.blue_ice": "滑滑冰", "block.minecraft.blue_orchid": "蝴蝶兰", "block.minecraft.blue_shulker_box": "蓝色傻瓜盒子", - "block.minecraft.blue_stained_glass": "蓝色染色玻璃", - "block.minecraft.blue_stained_glass_pane": "蓝色染色玻璃板", + "block.minecraft.blue_stained_glass": "蓝色太阳镜", + "block.minecraft.blue_stained_glass_pane": "蓝色太阳镜片", "block.minecraft.blue_terracotta": "蓝色陶瓦", - "block.minecraft.blue_wool": "蓝色羊毛", + "block.minecraft.blue_wool": "蓝色咩咩毛", "block.minecraft.bone_block": "压缩骨灰", "block.minecraft.bookshelf": "书山", "block.minecraft.brain_coral": "脑纹珊瑚", @@ -1204,30 +1331,31 @@ "block.minecraft.brick_stairs": "砖楼梯", "block.minecraft.brick_wall": "砖块墙", "block.minecraft.bricks": "砖块", - "block.minecraft.brown_banner": "棕色旗帜", - "block.minecraft.brown_bed": "棕色床", - "block.minecraft.brown_candle": "棕色鞭炮", - "block.minecraft.brown_candle_cake": "插上棕色鞭炮的蛋糕", - "block.minecraft.brown_carpet": "棕色地毯", - "block.minecraft.brown_concrete": "棕色具体的", - "block.minecraft.brown_concrete_powder": "棕色具体的粉末", - "block.minecraft.brown_glazed_terracotta": "棕色带釉陶瓦", + "block.minecraft.brown_banner": "咖啡色旗帜", + "block.minecraft.brown_bed": "咖啡色床", + "block.minecraft.brown_candle": "咖啡色鞭炮", + "block.minecraft.brown_candle_cake": "插上咖啡色鞭炮的蛋糕", + "block.minecraft.brown_carpet": "咖啡色地毯", + "block.minecraft.brown_concrete": "咖啡色具体的", + "block.minecraft.brown_concrete_powder": "咖啡色具体的粉末", + "block.minecraft.brown_glazed_terracotta": "咖啡色带釉陶瓦", "block.minecraft.brown_mushroom": "棕伞伞", "block.minecraft.brown_mushroom_block": "棕伞伞块", - "block.minecraft.brown_shulker_box": "棕色傻瓜盒子", - "block.minecraft.brown_stained_glass": "棕色染色玻璃", - "block.minecraft.brown_stained_glass_pane": "棕色染色玻璃板", - "block.minecraft.brown_terracotta": "棕色陶瓦", - "block.minecraft.brown_wool": "棕色羊毛", + "block.minecraft.brown_shulker_box": "咖啡色傻瓜盒子", + "block.minecraft.brown_stained_glass": "咖啡色太阳镜", + "block.minecraft.brown_stained_glass_pane": "咖啡色太阳镜片", + "block.minecraft.brown_terracotta": "咖啡色陶瓦", + "block.minecraft.brown_wool": "咖啡色咩咩毛", "block.minecraft.bubble_column": "气泡柱", "block.minecraft.bubble_coral": "气泡珊瑚", "block.minecraft.bubble_coral_block": "气泡珊瑚块", "block.minecraft.bubble_coral_fan": "气泡珊瑚粉丝", "block.minecraft.bubble_coral_wall_fan": "墙上的气泡珊瑚粉丝", - "block.minecraft.budding_amethyst": "紫水晶芽床", + "block.minecraft.budding_amethyst": "可疑的紫水晶", "block.minecraft.cactus": "拥抱死亡", "block.minecraft.cake": "蛋糕", "block.minecraft.calcite": "凯尔希", + "block.minecraft.calibrated_sculk_sensor": "调教过的幽(yóu)匿分贝仪", "block.minecraft.campfire": "篝火", "block.minecraft.candle": "鞭炮", "block.minecraft.candle_cake": "鞭炮蛋糕(消歧义)", @@ -1240,8 +1368,27 @@ "block.minecraft.cave_vines_plant": "洞穴藤蔓植物", "block.minecraft.chain": "铁 索 连 环", "block.minecraft.chain_command_block": "铁 索 连 环型滥权方块", + "block.minecraft.cherry_button": "撒库拉木抱枕", + "block.minecraft.cherry_door": "撒库拉木门", + "block.minecraft.cherry_fence": "撒库拉木栅栏", + "block.minecraft.cherry_fence_gate": "撒库拉木栅栏门", + "block.minecraft.cherry_hanging_sign": "上吊的撒库拉木搞事牌", + "block.minecraft.cherry_leaves": "撒库拉树叶", + "block.minecraft.cherry_log": "撒库拉日志", + "block.minecraft.cherry_planks": "撒库拉木板", + "block.minecraft.cherry_pressure_plate": "撒库拉木阿姨压一压板", + "block.minecraft.cherry_sapling": "撒库拉树宝宝", + "block.minecraft.cherry_sign": "撒库拉木搞事牌", + "block.minecraft.cherry_slab": "撒库拉木半砖", + "block.minecraft.cherry_stairs": "撒库拉木楼梯", + "block.minecraft.cherry_trapdoor": "撒库拉木陷阱门", + "block.minecraft.cherry_wall_hanging_sign": "墙上的上吊的撒库拉木搞事牌", + "block.minecraft.cherry_wall_sign": "墙上的撒库拉木搞事牌", + "block.minecraft.cherry_wood": "撒库拉树皮", "block.minecraft.chest": "胸部", "block.minecraft.chipped_anvil": "开裂的哐当", + "block.minecraft.chiseled_bookshelf": "使用了大师级雕刻技艺的书山", + "block.minecraft.chiseled_copper": "使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.chiseled_deepslate": "使用了大师级雕刻技艺的深♂石", "block.minecraft.chiseled_nether_bricks": "使用了大师级雕刻技艺的尼德兰砖块", "block.minecraft.chiseled_polished_blackstone": "使用了大师级雕刻技艺并使用了打磨工艺进行加工的非洲石头", @@ -1249,10 +1396,12 @@ "block.minecraft.chiseled_red_sandstone": "使用了大师级雕刻技艺的红砂岩", "block.minecraft.chiseled_sandstone": "使用了大师级雕刻技艺的砂岩", "block.minecraft.chiseled_stone_bricks": "使用了大师级雕刻技艺的砖石", + "block.minecraft.chiseled_tuff": "使用了大师级雕刻技艺的猛♂男岩", + "block.minecraft.chiseled_tuff_bricks": "使用了大师级雕刻技艺的猛♂男岩砖石", "block.minecraft.chorus_flower": "共鸣花", "block.minecraft.chorus_plant": "共鸣植物", "block.minecraft.clay": "土球球方块", - "block.minecraft.coal_block": "非洲方块", + "block.minecraft.coal_block": "非洲块", "block.minecraft.coal_ore": "非洲矿石", "block.minecraft.coarse_dirt": "废土", "block.minecraft.cobbled_deepslate": "深♂圆石", @@ -1264,19 +1413,24 @@ "block.minecraft.cobblestone_stairs": "圆石楼梯", "block.minecraft.cobblestone_wall": "圆石墙", "block.minecraft.cobweb": "互 联 网", - "block.minecraft.cocoa": "奥利果", + "block.minecraft.cocoa": "巧克力果", "block.minecraft.command_block": "感知作战滥权机器", "block.minecraft.comparator": "全 桥 整 流", "block.minecraft.composter": "粪桶", "block.minecraft.conduit": "导管", "block.minecraft.copper_block": "内部材料为铜的方块", + "block.minecraft.copper_bulb": "框架材料为铜的照明方块", + "block.minecraft.copper_door": "内部材料为铜的门", + "block.minecraft.copper_grate": "内部材料为铜还经历了镂空处理的洞洞方块", "block.minecraft.copper_ore": "铜矿石", + "block.minecraft.copper_trapdoor": "内部材料为铜的陷阱门", "block.minecraft.cornflower": "矢车菊", "block.minecraft.cracked_deepslate_bricks": "裂开来的深♂砖石", "block.minecraft.cracked_deepslate_tiles": "裂开来的深♂砖石瓦", "block.minecraft.cracked_nether_bricks": "裂开来的尼德兰砖块", "block.minecraft.cracked_polished_blackstone_bricks": "裂开来的使用了打磨工艺进行加工的非洲砖石", "block.minecraft.cracked_stone_bricks": "裂开来的砖石", + "block.minecraft.crafter": "合成器", "block.minecraft.crafting_table": "合成台", "block.minecraft.creeper_head": "爪巴者的头", "block.minecraft.creeper_wall_head": "墙上的爪巴者头颅", @@ -1285,6 +1439,7 @@ "block.minecraft.crimson_fence": "绯红木栅栏", "block.minecraft.crimson_fence_gate": "绯红木栅栏门", "block.minecraft.crimson_fungus": "绯红菌", + "block.minecraft.crimson_hanging_sign": "上吊的绯红木搞事牌", "block.minecraft.crimson_hyphae": "绯红菌丝", "block.minecraft.crimson_nylium": "绯红菌岩", "block.minecraft.crimson_planks": "绯红木板", @@ -1294,7 +1449,8 @@ "block.minecraft.crimson_slab": "绯红木半砖", "block.minecraft.crimson_stairs": "绯红木楼梯", "block.minecraft.crimson_stem": "绯红菌柄", - "block.minecraft.crimson_trapdoor": "绯红木活板门", + "block.minecraft.crimson_trapdoor": "绯红木陷阱门", + "block.minecraft.crimson_wall_hanging_sign": "墙上的上吊的绯红木搞事牌", "block.minecraft.crimson_wall_sign": "墙上的绯红木搞事牌", "block.minecraft.crying_obsidian": "大 喊 大 叫 黑 曜 石", "block.minecraft.cut_copper": "使用了切割工艺进行加工的内部材料为铜的方块", @@ -1304,25 +1460,26 @@ "block.minecraft.cut_red_sandstone_slab": "使用了切割工艺进行加工的红砂岩半砖", "block.minecraft.cut_sandstone": "使用了切割工艺进行加工的砂岩", "block.minecraft.cut_sandstone_slab": "使用了切割工艺进行加工的砂岩半砖", - "block.minecraft.cyan_banner": "青色旗帜", - "block.minecraft.cyan_bed": "青色床", - "block.minecraft.cyan_candle": "青色鞭炮", - "block.minecraft.cyan_candle_cake": "插上青色鞭炮的蛋糕", - "block.minecraft.cyan_carpet": "青色地毯", - "block.minecraft.cyan_concrete": "青色具体的", - "block.minecraft.cyan_concrete_powder": "青色具体的粉末", - "block.minecraft.cyan_glazed_terracotta": "青色带釉陶瓦", - "block.minecraft.cyan_shulker_box": "青色傻瓜盒子", - "block.minecraft.cyan_stained_glass": "青色染色玻璃", - "block.minecraft.cyan_stained_glass_pane": "青色染色玻璃板", - "block.minecraft.cyan_terracotta": "青色陶瓦", - "block.minecraft.cyan_wool": "青色羊毛", + "block.minecraft.cyan_banner": "蓝绿色旗帜", + "block.minecraft.cyan_bed": "蓝绿色床", + "block.minecraft.cyan_candle": "蓝绿色鞭炮", + "block.minecraft.cyan_candle_cake": "插上蓝绿色鞭炮的蛋糕", + "block.minecraft.cyan_carpet": "蓝绿色地毯", + "block.minecraft.cyan_concrete": "蓝绿色具体的", + "block.minecraft.cyan_concrete_powder": "蓝绿色具体的粉末", + "block.minecraft.cyan_glazed_terracotta": "蓝绿色带釉陶瓦", + "block.minecraft.cyan_shulker_box": "蓝绿色傻瓜盒子", + "block.minecraft.cyan_stained_glass": "蓝绿色太阳镜", + "block.minecraft.cyan_stained_glass_pane": "蓝绿色太阳镜片", + "block.minecraft.cyan_terracotta": "蓝绿色陶瓦", + "block.minecraft.cyan_wool": "蓝绿色咩咩毛", "block.minecraft.damaged_anvil": "炸裂的哐当", "block.minecraft.dandelion": "黄花", "block.minecraft.dark_oak_button": "巧克力抱枕", "block.minecraft.dark_oak_door": "巧克力门", "block.minecraft.dark_oak_fence": "巧克力栅栏", "block.minecraft.dark_oak_fence_gate": "巧克力栅栏门", + "block.minecraft.dark_oak_hanging_sign": "上吊的巧克力搞事牌", "block.minecraft.dark_oak_leaves": "巧克力树叶", "block.minecraft.dark_oak_log": "巧克力日志", "block.minecraft.dark_oak_planks": "巧克力木板", @@ -1331,12 +1488,13 @@ "block.minecraft.dark_oak_sign": "巧克力搞事牌", "block.minecraft.dark_oak_slab": "巧克力半砖", "block.minecraft.dark_oak_stairs": "巧克力楼梯", - "block.minecraft.dark_oak_trapdoor": "巧克力活板门", + "block.minecraft.dark_oak_trapdoor": "巧克力陷阱门", + "block.minecraft.dark_oak_wall_hanging_sign": "墙上的上吊的巧克力搞事牌", "block.minecraft.dark_oak_wall_sign": "墙上的巧克力搞事牌", "block.minecraft.dark_oak_wood": "巧克力树皮", - "block.minecraft.dark_prismarine": "暗海晶石", - "block.minecraft.dark_prismarine_slab": "暗海晶石半砖", - "block.minecraft.dark_prismarine_stairs": "暗海晶石楼梯", + "block.minecraft.dark_prismarine": "暗海磷", + "block.minecraft.dark_prismarine_slab": "暗海磷半砖", + "block.minecraft.dark_prismarine_stairs": "暗海磷楼梯", "block.minecraft.daylight_detector": "电荷耦合器件", "block.minecraft.dead_brain_coral": "死脑纹珊瑚", "block.minecraft.dead_brain_coral_block": "死脑纹珊瑚块", @@ -1346,7 +1504,7 @@ "block.minecraft.dead_bubble_coral_block": "死气泡珊瑚块", "block.minecraft.dead_bubble_coral_fan": "死气泡珊瑚粉丝", "block.minecraft.dead_bubble_coral_wall_fan": "墙上的死气泡珊瑚粉丝", - "block.minecraft.dead_bush": "死了的布什", + "block.minecraft.dead_bush": "布什,哥们你怎么似了", "block.minecraft.dead_fire_coral": "死火珊瑚", "block.minecraft.dead_fire_coral_block": "死火珊瑚块", "block.minecraft.dead_fire_coral_fan": "死火珊瑚粉丝", @@ -1359,11 +1517,12 @@ "block.minecraft.dead_tube_coral_block": "死管珊瑚块", "block.minecraft.dead_tube_coral_fan": "死管珊瑚粉丝", "block.minecraft.dead_tube_coral_wall_fan": "墙上的死管珊瑚粉丝", + "block.minecraft.decorated_pot": "不插花的大型花盆", "block.minecraft.deepslate": "华硕品质,坚如____", - "block.minecraft.deepslate_bricks": "深♂砖石", "block.minecraft.deepslate_brick_slab": "深♂砖石半砖", "block.minecraft.deepslate_brick_stairs": "深♂砖石楼梯", "block.minecraft.deepslate_brick_wall": "深♂砖石墙", + "block.minecraft.deepslate_bricks": "深♂砖石", "block.minecraft.deepslate_coal_ore": "深♂非洲矿石", "block.minecraft.deepslate_copper_ore": "深♂铜矿石", "block.minecraft.deepslate_diamond_ore": "深♂祖安矿石", @@ -1372,12 +1531,12 @@ "block.minecraft.deepslate_iron_ore": "深♂老铁矿石", "block.minecraft.deepslate_lapis_ore": "深♂蓝宝石矿石", "block.minecraft.deepslate_redstone_ore": "深♂雷石东矿石", - "block.minecraft.deepslate_tiles": "深♂砖石瓦", "block.minecraft.deepslate_tile_slab": "深♂砖石瓦半砖", "block.minecraft.deepslate_tile_stairs": "深♂砖石瓦楼梯", "block.minecraft.deepslate_tile_wall": "深♂砖石瓦墙", - "block.minecraft.detector_rail": "探测轨道", - "block.minecraft.diamond_block": "祖安石块", + "block.minecraft.deepslate_tiles": "深♂砖石瓦", + "block.minecraft.detector_rail": "阿姨压一压轨道", + "block.minecraft.diamond_block": "祖安石方块", "block.minecraft.diamond_ore": "祖安矿石", "block.minecraft.diorite": "DIO岩", "block.minecraft.diorite_slab": "DIO岩半砖", @@ -1391,7 +1550,7 @@ "block.minecraft.dragon_wall_head": "墙上的昆图库塔卡提考特苏瓦西拉松头", "block.minecraft.dried_kelp_block": "紫菜块", "block.minecraft.dripstone_block": "滴水石块", - "block.minecraft.dropper": "Linus Sebastian", + "block.minecraft.dropper": "星跳水立方(消歧义)", "block.minecraft.emerald_block": "原谅方块", "block.minecraft.emerald_ore": "原谅矿石", "block.minecraft.enchanting_table": "覆膜台", @@ -1405,29 +1564,35 @@ "block.minecraft.end_stone_brick_wall": "奶砖墙", "block.minecraft.end_stone_bricks": "奶砖", "block.minecraft.ender_chest": "小布尔乔亚之箱", + "block.minecraft.exposed_chiseled_copper": "经过了轻度的自然发生的氧化反应且使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.exposed_copper": "经过了轻度的自然发生的氧化反应且内部材料为铜的方块", + "block.minecraft.exposed_copper_bulb": "经过了轻度的自然发生的氧化反应且框架材料为铜的照明方块", + "block.minecraft.exposed_copper_door": "经过了轻度的自然发生的氧化反应且内部材料为铜的门", + "block.minecraft.exposed_copper_grate": "经过了轻度的自然发生的氧化反应且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.exposed_copper_trapdoor": "经过了轻度的自然发生的氧化反应且内部材料为铜的陷阱门", "block.minecraft.exposed_cut_copper": "经过了轻度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的方块", "block.minecraft.exposed_cut_copper_slab": "经过了轻度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的半砖", "block.minecraft.exposed_cut_copper_stairs": "经过了轻度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的楼梯", "block.minecraft.farmland": "农田", "block.minecraft.fern": "妈的,蕨了!", - "block.minecraft.fire": "火", + "block.minecraft.fire": "着火啦", "block.minecraft.fire_coral": "火珊瑚", "block.minecraft.fire_coral_block": "火珊瑚块", "block.minecraft.fire_coral_fan": "火珊瑚粉丝", "block.minecraft.fire_coral_wall_fan": "墙上的火珊瑚粉丝", - "block.minecraft.fletching_table": "制箭台", + "block.minecraft.fletching_table": "箭人台", "block.minecraft.flower_pot": "fa♂盆", "block.minecraft.flowering_azalea": "开fa♂的杜鹃花丛", "block.minecraft.flowering_azalea_leaves": "开fa♂的杜鹃树叶", + "block.minecraft.frogspawn": "老大哥在看着你", "block.minecraft.frosted_ice": "霜冰", "block.minecraft.furnace": "炉子", "block.minecraft.gilded_blackstone": "尼德兰黄油矿石的非洲表哥", - "block.minecraft.glass": "玻璃", - "block.minecraft.glass_pane": "玻璃板", + "block.minecraft.glass": "眼镜", + "block.minecraft.glass_pane": "眼镜片", "block.minecraft.glow_lichen": "发光的李晨", "block.minecraft.glowstone": "发光石", - "block.minecraft.gold_block": "黄油块", + "block.minecraft.gold_block": "黄油方块", "block.minecraft.gold_ore": "黄油矿石", "block.minecraft.granite": "花岗岩", "block.minecraft.granite_slab": "花岗岩半砖", @@ -1435,7 +1600,7 @@ "block.minecraft.granite_wall": "花岗岩墙", "block.minecraft.grass": "草(一类植物)", "block.minecraft.grass_block": "草(一类方块)", - "block.minecraft.gravel": "氵少石乐", + "block.minecraft.gravel": "石乐", "block.minecraft.gray_banner": "灰色旗帜", "block.minecraft.gray_bed": "灰色床", "block.minecraft.gray_candle": "灰色鞭炮", @@ -1445,10 +1610,10 @@ "block.minecraft.gray_concrete_powder": "灰色具体的粉末", "block.minecraft.gray_glazed_terracotta": "灰色带釉陶瓦", "block.minecraft.gray_shulker_box": "灰色傻瓜盒子", - "block.minecraft.gray_stained_glass": "灰色染色玻璃", - "block.minecraft.gray_stained_glass_pane": "灰色染色玻璃板", + "block.minecraft.gray_stained_glass": "灰色太阳镜", + "block.minecraft.gray_stained_glass_pane": "灰色太阳镜片", "block.minecraft.gray_terracotta": "灰色陶瓦", - "block.minecraft.gray_wool": "灰色羊毛", + "block.minecraft.gray_wool": "灰色咩咩毛", "block.minecraft.green_banner": "原谅色旗帜", "block.minecraft.green_bed": "原谅色床", "block.minecraft.green_candle": "原谅色鞭炮", @@ -1458,15 +1623,16 @@ "block.minecraft.green_concrete_powder": "原谅色具体的粉末", "block.minecraft.green_glazed_terracotta": "原谅色带釉陶瓦", "block.minecraft.green_shulker_box": "原谅色傻瓜盒子", - "block.minecraft.green_stained_glass": "原谅色染色玻璃", - "block.minecraft.green_stained_glass_pane": "原谅色染色玻璃板", + "block.minecraft.green_stained_glass": "原谅色太阳镜", + "block.minecraft.green_stained_glass_pane": "原谅色太阳镜片", "block.minecraft.green_terracotta": "原谅色陶瓦", - "block.minecraft.green_wool": "原谅色羊毛", - "block.minecraft.grindstone": "轮子", + "block.minecraft.green_wool": "原谅色咩咩毛", + "block.minecraft.grindstone": "磨石", "block.minecraft.hanging_roots": "上吊的根", "block.minecraft.hay_block": "草垛块", + "block.minecraft.heavy_core": "超重子", "block.minecraft.heavy_weighted_pressure_plate": "老铁阿姨压一压板", - "block.minecraft.honey_block": "音效巨恶心的黏糊糊的方块", + "block.minecraft.honey_block": "音效巨恶心的黏糊糊方块", "block.minecraft.honeycomb_block": "蜂房方块", "block.minecraft.hopper": "H O P", "block.minecraft.horn_coral": "鹿鹿角珊瑚", @@ -1485,25 +1651,27 @@ "block.minecraft.iron_block": "老铁方块", "block.minecraft.iron_door": "防盗门", "block.minecraft.iron_ore": "老铁矿石", - "block.minecraft.iron_trapdoor": "老铁憨活板门", + "block.minecraft.iron_trapdoor": "老铁陷阱门", "block.minecraft.jack_o_lantern": "杰克,噢!灯笼!", "block.minecraft.jigsaw": "线锯方块", "block.minecraft.jukebox": "光驱", - "block.minecraft.jungle_button": "丛林木抱枕", - "block.minecraft.jungle_door": "丛林木门", - "block.minecraft.jungle_fence": "丛林木栅栏", - "block.minecraft.jungle_fence_gate": "丛林木栅栏门", - "block.minecraft.jungle_leaves": "丛林树叶", - "block.minecraft.jungle_log": "丛林日志", - "block.minecraft.jungle_planks": "丛林木板", - "block.minecraft.jungle_pressure_plate": "丛林木阿姨压一压板", - "block.minecraft.jungle_sapling": "丛林树宝宝", - "block.minecraft.jungle_sign": "丛林木搞事牌", - "block.minecraft.jungle_slab": "丛林木半砖", - "block.minecraft.jungle_stairs": "丛林木楼梯", - "block.minecraft.jungle_trapdoor": "丛林木活板门", - "block.minecraft.jungle_wall_sign": "墙上的丛林木搞事牌", - "block.minecraft.jungle_wood": "丛林树皮", + "block.minecraft.jungle_button": "雨林木抱枕", + "block.minecraft.jungle_door": "雨林木门", + "block.minecraft.jungle_fence": "雨林木栅栏", + "block.minecraft.jungle_fence_gate": "雨林木栅栏门", + "block.minecraft.jungle_hanging_sign": "上吊的雨林木搞事牌", + "block.minecraft.jungle_leaves": "雨林树叶", + "block.minecraft.jungle_log": "雨林日志", + "block.minecraft.jungle_planks": "雨林木板", + "block.minecraft.jungle_pressure_plate": "雨林木阿姨压一压板", + "block.minecraft.jungle_sapling": "雨林树宝宝", + "block.minecraft.jungle_sign": "雨林木搞事牌", + "block.minecraft.jungle_slab": "雨林木半砖", + "block.minecraft.jungle_stairs": "雨林木楼梯", + "block.minecraft.jungle_trapdoor": "雨林木陷阱门", + "block.minecraft.jungle_wall_hanging_sign": "墙上的上吊的雨林木搞事牌", + "block.minecraft.jungle_wall_sign": "墙上的雨林木搞事牌", + "block.minecraft.jungle_wood": "雨林树皮", "block.minecraft.kelp": "生鲜紫菜", "block.minecraft.kelp_plant": "生鲜紫菜丛", "block.minecraft.ladder": "上 墙 工 具", @@ -1526,10 +1694,10 @@ "block.minecraft.light_blue_concrete_powder": "亮蓝色具体的粉末", "block.minecraft.light_blue_glazed_terracotta": "亮蓝色带釉陶瓦", "block.minecraft.light_blue_shulker_box": "亮蓝色傻瓜盒子", - "block.minecraft.light_blue_stained_glass": "亮蓝色染色玻璃", - "block.minecraft.light_blue_stained_glass_pane": "亮蓝色染色玻璃板", + "block.minecraft.light_blue_stained_glass": "亮蓝色太阳镜", + "block.minecraft.light_blue_stained_glass_pane": "亮蓝色太阳镜片", "block.minecraft.light_blue_terracotta": "亮蓝色陶瓦", - "block.minecraft.light_blue_wool": "亮蓝色羊毛", + "block.minecraft.light_blue_wool": "亮蓝色咩咩毛", "block.minecraft.light_gray_banner": "亮灰色旗帜", "block.minecraft.light_gray_bed": "亮灰色床", "block.minecraft.light_gray_candle": "亮灰色鞭炮", @@ -1539,47 +1707,65 @@ "block.minecraft.light_gray_concrete_powder": "亮灰色具体的粉末", "block.minecraft.light_gray_glazed_terracotta": "亮灰色带釉陶瓦", "block.minecraft.light_gray_shulker_box": "亮灰色傻瓜盒子", - "block.minecraft.light_gray_stained_glass": "亮灰色染色玻璃", - "block.minecraft.light_gray_stained_glass_pane": "亮灰色染色玻璃板", + "block.minecraft.light_gray_stained_glass": "亮灰色太阳镜", + "block.minecraft.light_gray_stained_glass_pane": "亮灰色太阳镜片", "block.minecraft.light_gray_terracotta": "亮灰色陶瓦", - "block.minecraft.light_gray_wool": "亮灰色羊毛", + "block.minecraft.light_gray_wool": "亮灰色咩咩毛", "block.minecraft.light_weighted_pressure_plate": "黄油阿姨压一压板", "block.minecraft.lightning_rod": "雷 霆 法 杖", "block.minecraft.lilac": "丁香", "block.minecraft.lily_of_the_valley": "幽谷百合", "block.minecraft.lily_pad": "莲叶", - "block.minecraft.lime_banner": "黄绿色旗帜", - "block.minecraft.lime_bed": "黄绿色床", - "block.minecraft.lime_candle": "黄绿色鞭炮", - "block.minecraft.lime_candle_cake": "插上黄绿色鞭炮的蛋糕", - "block.minecraft.lime_carpet": "黄绿色地毯", - "block.minecraft.lime_concrete": "黄绿色具体的", - "block.minecraft.lime_concrete_powder": "黄绿色具体的粉末", - "block.minecraft.lime_glazed_terracotta": "黄绿色带釉陶瓦", - "block.minecraft.lime_shulker_box": "黄绿色傻瓜盒子", - "block.minecraft.lime_stained_glass": "黄绿色染色玻璃", - "block.minecraft.lime_stained_glass_pane": "黄绿色染色玻璃板", - "block.minecraft.lime_terracotta": "黄绿色陶瓦", - "block.minecraft.lime_wool": "黄绿色羊毛", + "block.minecraft.lime_banner": "酸橙色旗帜", + "block.minecraft.lime_bed": "酸橙色床", + "block.minecraft.lime_candle": "酸橙色鞭炮", + "block.minecraft.lime_candle_cake": "插上酸橙色鞭炮的蛋糕", + "block.minecraft.lime_carpet": "酸橙色地毯", + "block.minecraft.lime_concrete": "酸橙色具体的", + "block.minecraft.lime_concrete_powder": "酸橙色具体的粉末", + "block.minecraft.lime_glazed_terracotta": "酸橙色带釉陶瓦", + "block.minecraft.lime_shulker_box": "酸橙色傻瓜盒子", + "block.minecraft.lime_stained_glass": "酸橙色太阳镜", + "block.minecraft.lime_stained_glass_pane": "酸橙色太阳镜片", + "block.minecraft.lime_terracotta": "酸橙色陶瓦", + "block.minecraft.lime_wool": "酸橙色咩咩毛", "block.minecraft.lodestone": "罗德(岛)石", "block.minecraft.loom": "珍妮纺纱机", - "block.minecraft.magenta_banner": "品红色旗帜", - "block.minecraft.magenta_bed": "品红色床", - "block.minecraft.magenta_candle": "品红色鞭炮", - "block.minecraft.magenta_candle_cake": "插上品红色鞭炮的蛋糕", - "block.minecraft.magenta_carpet": "品红色地毯", - "block.minecraft.magenta_concrete": "品红色具体的", - "block.minecraft.magenta_concrete_powder": "品红色具体的粉末", - "block.minecraft.magenta_glazed_terracotta": "品红色带釉陶瓦", - "block.minecraft.magenta_shulker_box": "品红色傻瓜盒子", - "block.minecraft.magenta_stained_glass": "品红色染色玻璃", - "block.minecraft.magenta_stained_glass_pane": "品红色染色玻璃板", - "block.minecraft.magenta_terracotta": "品红色陶瓦", - "block.minecraft.magenta_wool": "品红色羊毛", + "block.minecraft.magenta_banner": "洋红色旗帜", + "block.minecraft.magenta_bed": "洋红色床", + "block.minecraft.magenta_candle": "洋红色鞭炮", + "block.minecraft.magenta_candle_cake": "插上洋红色鞭炮的蛋糕", + "block.minecraft.magenta_carpet": "洋红色地毯", + "block.minecraft.magenta_concrete": "洋红色具体的", + "block.minecraft.magenta_concrete_powder": "洋红色具体的粉末", + "block.minecraft.magenta_glazed_terracotta": "洋红色带釉陶瓦", + "block.minecraft.magenta_shulker_box": "洋红色傻瓜盒子", + "block.minecraft.magenta_stained_glass": "洋红色太阳镜", + "block.minecraft.magenta_stained_glass_pane": "洋红色太阳镜片", + "block.minecraft.magenta_terracotta": "洋红色陶瓦", + "block.minecraft.magenta_wool": "洋红色咩咩毛", "block.minecraft.magma_block": "方舟快乐块", + "block.minecraft.mangrove_button": "红木抱枕", + "block.minecraft.mangrove_door": "红木木门", + "block.minecraft.mangrove_fence": "红木栅栏", + "block.minecraft.mangrove_fence_gate": "红木栅栏门", + "block.minecraft.mangrove_hanging_sign": "上吊的红木搞事牌", + "block.minecraft.mangrove_leaves": "红树树叶", + "block.minecraft.mangrove_log": "红树日志", + "block.minecraft.mangrove_planks": "红树木板", + "block.minecraft.mangrove_pressure_plate": "红木阿姨压一压板", + "block.minecraft.mangrove_propagule": "红树繁殖体", + "block.minecraft.mangrove_roots": "红树根", + "block.minecraft.mangrove_sign": "红木搞事牌", + "block.minecraft.mangrove_slab": "红木半砖", + "block.minecraft.mangrove_stairs": "红树木楼梯", + "block.minecraft.mangrove_trapdoor": "红树木陷阱门", + "block.minecraft.mangrove_wall_hanging_sign": "墙上的上吊的红木搞事牌", + "block.minecraft.mangrove_wall_sign": "墙上的红木搞事牌", + "block.minecraft.mangrove_wood": "红树树皮", "block.minecraft.medium_amethyst_bud": "中型紫水晶芽", "block.minecraft.melon": "你这瓜保熟吗?", - "block.minecraft.melon_stem": "瓜茎", + "block.minecraft.melon_stem": "瓜梗", "block.minecraft.moss_block": "MOSS块", "block.minecraft.moss_carpet": "MOSS地毯", "block.minecraft.mossy_cobblestone": "原谅圆石", @@ -1591,6 +1777,12 @@ "block.minecraft.mossy_stone_brick_wall": "原谅圆砖石墙", "block.minecraft.mossy_stone_bricks": "原谅圆砖石", "block.minecraft.moving_piston": "移动的↓↑", + "block.minecraft.mud": "我在东北玩泥巴", + "block.minecraft.mud_brick_slab": "泥巴砖半砖", + "block.minecraft.mud_brick_stairs": "泥巴砖楼梯", + "block.minecraft.mud_brick_wall": "泥巴砖墙", + "block.minecraft.mud_bricks": "泥巴砖", + "block.minecraft.muddy_mangrove_roots": "沾泥的红树林根", "block.minecraft.mushroom_stem": "白杆杆", "block.minecraft.mycelium": "发霉的土块", "block.minecraft.nether_brick_fence": "尼德兰砖栅栏", @@ -1599,11 +1791,11 @@ "block.minecraft.nether_brick_wall": "尼德兰砖墙", "block.minecraft.nether_bricks": "尼德兰砖块", "block.minecraft.nether_gold_ore": "尼德兰黄油矿石", - "block.minecraft.nether_portal": "尼德兰传送门", + "block.minecraft.nether_portal": "尼德兰门户", "block.minecraft.nether_quartz_ore": "尼德兰石英矿石", "block.minecraft.nether_sprouts": "尼德兰苗", "block.minecraft.nether_wart": "尼德兰疣", - "block.minecraft.nether_wart_block": "尼德兰疣块", + "block.minecraft.nether_wart_block": "绯红疣块", "block.minecraft.netherite_block": "下界玄素块", "block.minecraft.netherrack": "尼德兰岩", "block.minecraft.note_block": "笔记方块", @@ -1611,6 +1803,7 @@ "block.minecraft.oak_door": "橡木门", "block.minecraft.oak_fence": "橡木栅栏", "block.minecraft.oak_fence_gate": "橡木栅栏门", + "block.minecraft.oak_hanging_sign": "上吊的橡木搞事牌", "block.minecraft.oak_leaves": "杂交了苹果树枝的橡树树叶", "block.minecraft.oak_log": "橡木日志", "block.minecraft.oak_planks": "橡木木板", @@ -1619,12 +1812,14 @@ "block.minecraft.oak_sign": "橡木搞事牌", "block.minecraft.oak_slab": "橡木半砖", "block.minecraft.oak_stairs": "橡木楼梯", - "block.minecraft.oak_trapdoor": "橡木活板门", + "block.minecraft.oak_trapdoor": "橡木陷阱门", + "block.minecraft.oak_wall_hanging_sign": "墙上的上吊的橡木搞事牌", "block.minecraft.oak_wall_sign": "墙上的橡木搞事牌", "block.minecraft.oak_wood": "橡树皮", - "block.minecraft.observer": "思辨者.jpg", + "block.minecraft.observer": "观察者", "block.minecraft.obsidian": "黑曜石", - "block.minecraft.ominous_banner": "灾厄旗帜", + "block.minecraft.ochre_froglight": "赭黄蛙の明灯", + "block.minecraft.ominous_banner": "阿米诺斯旗帜", "block.minecraft.orange_banner": "橙色旗帜", "block.minecraft.orange_bed": "橙色床", "block.minecraft.orange_candle": "橙色鞭炮", @@ -1634,19 +1829,28 @@ "block.minecraft.orange_concrete_powder": "橙色具体的粉末", "block.minecraft.orange_glazed_terracotta": "橙色带釉陶瓦", "block.minecraft.orange_shulker_box": "橙色傻瓜盒子", - "block.minecraft.orange_stained_glass": "橙色染色玻璃", - "block.minecraft.orange_stained_glass_pane": "橙色染色玻璃板", + "block.minecraft.orange_stained_glass": "橙色太阳镜", + "block.minecraft.orange_stained_glass_pane": "橙色太阳镜片", "block.minecraft.orange_terracotta": "橙色陶瓦", "block.minecraft.orange_tulip": "橙色郁金香", - "block.minecraft.orange_wool": "橙色羊毛", + "block.minecraft.orange_wool": "橙色咩咩毛", "block.minecraft.oxeye_daisy": "菊 花", + "block.minecraft.oxidized_chiseled_copper": "经过了自然发生的氧化反应且使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.oxidized_copper": "经过了自然发生的氧化反应且内部材料为铜的方块", + "block.minecraft.oxidized_copper_bulb": "经过了自然发生的氧化反应且框架材料为铜的照明方块", + "block.minecraft.oxidized_copper_door": "经过了自然发生的氧化反应且内部材料为铜的门", + "block.minecraft.oxidized_copper_grate": "经过了自然发生的氧化反应且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.oxidized_copper_trapdoor": "经过了自然发生的氧化反应且内部材料为铜的陷阱门", "block.minecraft.oxidized_cut_copper": "经过了自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的方块", "block.minecraft.oxidized_cut_copper_slab": "经过了自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的半砖", "block.minecraft.oxidized_cut_copper_stairs": "经过了自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的楼梯", "block.minecraft.packed_ice": "商 品 冰", + "block.minecraft.packed_mud": "打包的泥巴", + "block.minecraft.pearlescent_froglight": "珠光蛙の明灯", "block.minecraft.peony": "牡丹", "block.minecraft.petrified_oak_slab": "木半砖化石", + "block.minecraft.piglin_head": "猪刚鬣的头", + "block.minecraft.piglin_wall_head": "墙上的猪刚鬣的头", "block.minecraft.pink_banner": "粉红色旗帜", "block.minecraft.pink_bed": "粉红色床", "block.minecraft.pink_candle": "粉红色鞭炮", @@ -1655,14 +1859,17 @@ "block.minecraft.pink_concrete": "粉红色具体的", "block.minecraft.pink_concrete_powder": "粉红色具体的粉末", "block.minecraft.pink_glazed_terracotta": "粉红色带釉陶瓦", + "block.minecraft.pink_petals": "粉红花瓣(迫真)", "block.minecraft.pink_shulker_box": "粉红色傻瓜盒子", - "block.minecraft.pink_stained_glass": "粉红色染色玻璃", - "block.minecraft.pink_stained_glass_pane": "粉红色染色玻璃板", + "block.minecraft.pink_stained_glass": "粉红色太阳镜", + "block.minecraft.pink_stained_glass_pane": "粉红色太阳镜片", "block.minecraft.pink_terracotta": "粉红色陶瓦", "block.minecraft.pink_tulip": "粉红色郁金香", - "block.minecraft.pink_wool": "粉红色羊毛", + "block.minecraft.pink_wool": "粉红色咩咩毛", "block.minecraft.piston": "↓↑", "block.minecraft.piston_head": "↓↑头", + "block.minecraft.pitcher_crop": "投手植株", + "block.minecraft.pitcher_plant": "投手植物", "block.minecraft.player_head": "玩家头颅", "block.minecraft.player_head.named": "%s的头", "block.minecraft.player_wall_head": "墙上的玩家头颅", @@ -1677,7 +1884,7 @@ "block.minecraft.polished_blackstone_brick_stairs": "使用了打磨工艺进行加工的非洲砖石楼梯", "block.minecraft.polished_blackstone_brick_wall": "使用了打磨工艺进行加工的非洲砖石墙", "block.minecraft.polished_blackstone_bricks": "使用了打磨工艺进行加工的非洲砖石块", - "block.minecraft.polished_blackstone_button": "使用了打磨工艺进行加工的非洲石按钮", + "block.minecraft.polished_blackstone_button": "使用了打磨工艺进行加工的非洲石抱枕", "block.minecraft.polished_blackstone_pressure_plate": "使用了打磨工艺进行加工的非洲石阿姨压一压板", "block.minecraft.polished_blackstone_slab": "使用了打磨工艺进行加工的非洲石半砖", "block.minecraft.polished_blackstone_stairs": "使用了打磨工艺进行加工的非洲石楼梯", @@ -1692,18 +1899,22 @@ "block.minecraft.polished_granite": "使用了打磨工艺进行加工的花岗岩", "block.minecraft.polished_granite_slab": "使用了打磨工艺进行加工的花岗岩半砖", "block.minecraft.polished_granite_stairs": "使用了打磨工艺进行加工的花岗岩楼梯", + "block.minecraft.polished_tuff": "使用了打磨工艺进行加工的猛♂男岩", + "block.minecraft.polished_tuff_slab": "使用了打磨工艺进行加工的猛♂男岩半砖", + "block.minecraft.polished_tuff_stairs": "使用了打磨工艺进行加工的猛♂男岩楼梯", + "block.minecraft.polished_tuff_wall": "使用了打磨工艺进行加工的猛♂男岩墙", "block.minecraft.poppy": "你比蔷薇更美丽", "block.minecraft.potatoes": "育碧服务器", "block.minecraft.potted_acacia_sapling": "相思树宝宝盆栽", "block.minecraft.potted_allium": "大花葱盆栽", - "block.minecraft.potted_azalea_bush": "杜鹃花丛盆栽", - "block.minecraft.potted_flowering_azalea_bush": "开fa♂的杜鹃花丛盆栽", - "block.minecraft.potted_azure_bluet": "茜草花盆栽", + "block.minecraft.potted_azalea_bush": "杜鹃fa♂丛盆栽", + "block.minecraft.potted_azure_bluet": "蓝花美耳草盆栽", "block.minecraft.potted_bamboo": "た↓け↑盆栽", "block.minecraft.potted_birch_sapling": "白桦树宝宝盆栽", "block.minecraft.potted_blue_orchid": "兰花盆栽", "block.minecraft.potted_brown_mushroom": "棕伞伞盆栽", "block.minecraft.potted_cactus": "无法拥抱的死亡", + "block.minecraft.potted_cherry_sapling": "撒库拉树宝宝盆栽", "block.minecraft.potted_cornflower": "矢车菊盆栽", "block.minecraft.potted_crimson_fungus": "绯红菌盆栽", "block.minecraft.potted_crimson_roots": "绯红菌索盆栽", @@ -1711,8 +1922,10 @@ "block.minecraft.potted_dark_oak_sapling": "巧克力树宝宝盆栽", "block.minecraft.potted_dead_bush": "死了的布什盆栽", "block.minecraft.potted_fern": "妈的,蕨了!盆栽", - "block.minecraft.potted_jungle_sapling": "丛林树宝宝盆栽", + "block.minecraft.potted_flowering_azalea_bush": "开fa♂的杜鹃fa♂丛盆栽", + "block.minecraft.potted_jungle_sapling": "雨林树宝宝盆栽", "block.minecraft.potted_lily_of_the_valley": "幽谷百合盆栽", + "block.minecraft.potted_mangrove_propagule": "红树林胎生苗盆栽", "block.minecraft.potted_oak_sapling": "橡树宝宝盆栽", "block.minecraft.potted_orange_tulip": "橙色郁金香盆栽", "block.minecraft.potted_oxeye_daisy": "菊花盆栽", @@ -1721,22 +1934,23 @@ "block.minecraft.potted_red_mushroom": "红伞伞盆栽", "block.minecraft.potted_red_tulip": "红色郁金香盆栽", "block.minecraft.potted_spruce_sapling": "云杉树宝宝盆栽", + "block.minecraft.potted_torchflower": "火炬花盆栽(不可发光)", "block.minecraft.potted_warped_fungus": "幽蓝菌盆栽", "block.minecraft.potted_warped_roots": "幽蓝菌索盆栽", "block.minecraft.potted_white_tulip": "白色郁金香盆栽", - "block.minecraft.potted_wither_rose": "死亡之花盆栽", + "block.minecraft.potted_wither_rose": "死亡玫瑰盆栽", "block.minecraft.powder_snow": "更雪的雪", "block.minecraft.powder_snow_cauldron": "装有雪糕的中华锅", "block.minecraft.powered_rail": "黄油轨道", - "block.minecraft.prismarine": "海晶石", - "block.minecraft.prismarine_brick_slab": "海晶砖石半砖", - "block.minecraft.prismarine_brick_stairs": "海晶砖石楼梯", - "block.minecraft.prismarine_bricks": "海晶砖石", - "block.minecraft.prismarine_slab": "海晶石半砖", - "block.minecraft.prismarine_stairs": "海晶石楼梯", - "block.minecraft.prismarine_wall": "海晶石墙", + "block.minecraft.prismarine": "海磷", + "block.minecraft.prismarine_brick_slab": "海磷砖石半砖", + "block.minecraft.prismarine_brick_stairs": "海磷砖石楼梯", + "block.minecraft.prismarine_bricks": "海磷砖石", + "block.minecraft.prismarine_slab": "海磷半砖", + "block.minecraft.prismarine_stairs": "海磷楼梯", + "block.minecraft.prismarine_wall": "海磷墙", "block.minecraft.pumpkin": "不要脸的南瓜", - "block.minecraft.pumpkin_stem": "南瓜茎", + "block.minecraft.pumpkin_stem": "南瓜梗", "block.minecraft.purple_banner": "紫色旗帜", "block.minecraft.purple_bed": "紫色床", "block.minecraft.purple_candle": "紫色鞭炮", @@ -1746,10 +1960,10 @@ "block.minecraft.purple_concrete_powder": "紫色具体的粉末", "block.minecraft.purple_glazed_terracotta": "紫色带釉陶瓦", "block.minecraft.purple_shulker_box": "紫色傻瓜盒子", - "block.minecraft.purple_stained_glass": "紫色染色玻璃", - "block.minecraft.purple_stained_glass_pane": "紫色染色玻璃板", + "block.minecraft.purple_stained_glass": "紫色太阳镜", + "block.minecraft.purple_stained_glass_pane": "紫色太阳镜片", "block.minecraft.purple_terracotta": "紫色陶瓦", - "block.minecraft.purple_wool": "紫色羊毛", + "block.minecraft.purple_wool": "紫色咩咩毛", "block.minecraft.purpur_block": "珀珀块", "block.minecraft.purpur_pillar": "珀珀柱子", "block.minecraft.purpur_slab": "珀珀半砖", @@ -1759,7 +1973,7 @@ "block.minecraft.quartz_pillar": "石英柱子", "block.minecraft.quartz_slab": "石英半砖", "block.minecraft.quartz_stairs": "石英楼梯", - "block.minecraft.rail": "轨", + "block.minecraft.rail": "轨!", "block.minecraft.raw_copper_block": "僵硬的猪刚鬣块", "block.minecraft.raw_gold_block": "金灿灿的育碧服务器块", "block.minecraft.raw_iron_block": "育碧服务器块", @@ -1783,17 +1997,18 @@ "block.minecraft.red_sandstone_stairs": "红砂岩楼梯", "block.minecraft.red_sandstone_wall": "红砂岩墙", "block.minecraft.red_shulker_box": "红色傻瓜盒子", - "block.minecraft.red_stained_glass": "红色染色玻璃", - "block.minecraft.red_stained_glass_pane": "红色染色玻璃板", + "block.minecraft.red_stained_glass": "红色太阳镜", + "block.minecraft.red_stained_glass_pane": "红色太阳镜片", "block.minecraft.red_terracotta": "红色陶瓦", "block.minecraft.red_tulip": "红色郁金香", - "block.minecraft.red_wool": "红色羊毛", + "block.minecraft.red_wool": "红色咩咩毛", "block.minecraft.redstone_block": "雷石东块", "block.minecraft.redstone_lamp": "雷石东灯", "block.minecraft.redstone_ore": "雷石东矿石", - "block.minecraft.redstone_torch": "雷石东火把", - "block.minecraft.redstone_wall_torch": "墙上的雷石东火把", + "block.minecraft.redstone_torch": "雷石东火炬", + "block.minecraft.redstone_wall_torch": "墙上的雷石东火炬", "block.minecraft.redstone_wire": "雷石东线", + "block.minecraft.reinforced_deepslate": "强化深♂石", "block.minecraft.repeater": "雷石东直放站", "block.minecraft.repeating_command_block": "复读型滥权方块", "block.minecraft.respawn_anchor": "锚台", @@ -1805,25 +2020,25 @@ "block.minecraft.sandstone_stairs": "砂岩楼梯", "block.minecraft.sandstone_wall": "砂岩墙", "block.minecraft.scaffolding": "嘤架", - "block.minecraft.sculk_sensor": "潜声传感器", - "block.minecraft.sea_lantern": "海晶灯", + "block.minecraft.sculk": "幽(yóu)匿块", + "block.minecraft.sculk_catalyst": "幽(yóu)匿催化剂", + "block.minecraft.sculk_sensor": "幽(yóu)匿分贝仪", + "block.minecraft.sculk_shrieker": "幽(yóu)匿尖叫体", + "block.minecraft.sculk_vein": "幽(yóu)匿脉络", + "block.minecraft.sea_lantern": "海磷灯", "block.minecraft.sea_pickle": "泡在海里的菜", "block.minecraft.seagrass": "草(海生植物)", - "block.minecraft.spore_blossom": "孢 子 开 花", - "block.minecraft.weathered_copper": "经过了中度的自然发生的氧化反应且内部材料为铜的方块", - "block.minecraft.weathered_cut_copper": "经过了中度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的方块", - "block.minecraft.weathered_cut_copper_slab": "经过了中度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的半砖", - "block.minecraft.weathered_cut_copper_stairs": "经过了中度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的楼梯", "block.minecraft.set_spawn": "死去活来点已设置", + "block.minecraft.short_grass": "矮草丛", "block.minecraft.shroomlight": "菌明", "block.minecraft.shulker_box": "傻瓜盒子", "block.minecraft.skeleton_skull": "小白头颅", - "block.minecraft.skeleton_wall_skull": "墙上的骷髅头颅", + "block.minecraft.skeleton_wall_skull": "墙上的小白头颅", "block.minecraft.slime_block": "黏糊糊方块", "block.minecraft.small_amethyst_bud": "紫水晶芽宝宝", "block.minecraft.small_dripleaf": "小LeaF", "block.minecraft.smithing_table": "锤子台", - "block.minecraft.smoker": "我承认,我馋它吃的", + "block.minecraft.smoker": "1!5!", "block.minecraft.smooth_basalt": "滑溜溜的玄武岩", "block.minecraft.smooth_quartz": "白巧克力块", "block.minecraft.smooth_quartz_slab": "滑溜溜的石英半砖", @@ -1834,24 +2049,29 @@ "block.minecraft.smooth_sandstone": "滑溜溜的砂岩", "block.minecraft.smooth_sandstone_slab": "滑溜溜的砂岩半砖", "block.minecraft.smooth_sandstone_stairs": "滑溜溜的砂岩楼梯", - "block.minecraft.smooth_stone": "滑溜溜的石", - "block.minecraft.smooth_stone_slab": "滑溜溜的石半砖", + "block.minecraft.smooth_stone": "滑溜溜的MC石头", + "block.minecraft.smooth_stone_slab": "滑溜溜的MC石头半砖", + "block.minecraft.sniffer_egg": "嗅嗅的蛋", "block.minecraft.snow": "思诺", "block.minecraft.snow_block": "思诺块", "block.minecraft.soul_campfire": "加速篝火", "block.minecraft.soul_fire": "鬼火", - "block.minecraft.soul_lantern": "灵魂欧式灯笼", + "block.minecraft.soul_lantern": "加速欧式灯笼", "block.minecraft.soul_sand": "亡魂沙", "block.minecraft.soul_soil": "亡魂泥", "block.minecraft.soul_torch": "加速火把", "block.minecraft.soul_wall_torch": "墙上的加速火把", "block.minecraft.spawn.not_valid": "<床> 我认识你吗?\n<充能的锚台> 我认识你吗?", - "block.minecraft.spawner": "产 卵 器", + "block.minecraft.spawner": "产卵器", + "block.minecraft.spawner.desc1": "用幼体交互时:", + "block.minecraft.spawner.desc2": "设置暴徒种类", "block.minecraft.sponge": "黄 色 大 发 糕", + "block.minecraft.spore_blossom": "孢 子 开 花", "block.minecraft.spruce_button": "云杉木抱枕", "block.minecraft.spruce_door": "云杉木门", "block.minecraft.spruce_fence": "云杉木栅栏", "block.minecraft.spruce_fence_gate": "云杉木栅栏门", + "block.minecraft.spruce_hanging_sign": "上吊的云杉木搞事牌", "block.minecraft.spruce_leaves": "云杉树叶", "block.minecraft.spruce_log": "云杉日志", "block.minecraft.spruce_planks": "云杉木板", @@ -1860,7 +2080,8 @@ "block.minecraft.spruce_sign": "云杉木搞事牌", "block.minecraft.spruce_slab": "云杉木半砖", "block.minecraft.spruce_stairs": "云杉木楼梯", - "block.minecraft.spruce_trapdoor": "云杉木活板门", + "block.minecraft.spruce_trapdoor": "云杉木陷阱门", + "block.minecraft.spruce_wall_hanging_sign": "墙上的上吊的云杉木搞事牌", "block.minecraft.spruce_wall_sign": "墙上的云杉木搞事牌", "block.minecraft.spruce_wood": "云杉树皮", "block.minecraft.sticky_piston": "黏糊糊的↓↑", @@ -1871,19 +2092,24 @@ "block.minecraft.stone_bricks": "砖石", "block.minecraft.stone_button": "石头抱枕", "block.minecraft.stone_pressure_plate": "石质阿姨压一压板", - "block.minecraft.stone_slab": "石半砖", - "block.minecraft.stone_stairs": "石楼梯", + "block.minecraft.stone_slab": "MC石头半砖", + "block.minecraft.stone_stairs": "MC石头楼梯", "block.minecraft.stonecutter": "石头刽子手", "block.minecraft.stripped_acacia_log": "去皮相思日志", "block.minecraft.stripped_acacia_wood": "去皮相思树皮", + "block.minecraft.stripped_bamboo_block": "去皮た↓け↑块", "block.minecraft.stripped_birch_log": "去皮白桦日志", "block.minecraft.stripped_birch_wood": "去皮白桦树皮", + "block.minecraft.stripped_cherry_log": "去皮撒库拉日志", + "block.minecraft.stripped_cherry_wood": "去皮撒库拉树皮", "block.minecraft.stripped_crimson_hyphae": "去皮绯红菌丝", "block.minecraft.stripped_crimson_stem": "去皮绯红菌柄", "block.minecraft.stripped_dark_oak_log": "去皮巧克力日志", "block.minecraft.stripped_dark_oak_wood": "去皮巧克力树皮", - "block.minecraft.stripped_jungle_log": "去皮丛林日志", - "block.minecraft.stripped_jungle_wood": "去皮丛林树皮", + "block.minecraft.stripped_jungle_log": "去皮雨林日志", + "block.minecraft.stripped_jungle_wood": "去皮雨林树皮", + "block.minecraft.stripped_mangrove_log": "去皮红树日志", + "block.minecraft.stripped_mangrove_wood": "去皮红树树皮", "block.minecraft.stripped_oak_log": "去皮橡木日志", "block.minecraft.stripped_oak_wood": "去皮橡树皮", "block.minecraft.stripped_spruce_log": "去皮云杉日志", @@ -1893,26 +2119,40 @@ "block.minecraft.structure_block": "剽窃方块", "block.minecraft.structure_void": "剽窃虚空", "block.minecraft.sugar_cane": "糖手杖", - "block.minecraft.sunflower": "小破花", + "block.minecraft.sunflower": "向阳花", + "block.minecraft.suspicious_gravel": "SUS的氵少石乐", + "block.minecraft.suspicious_sand": "SUS的沙子子", "block.minecraft.sweet_berry_bush": "甜莓丛", "block.minecraft.tall_grass": "大草(一类植物)", "block.minecraft.tall_seagrass": "大草(海生植物)", "block.minecraft.target": "TARGET®", "block.minecraft.terracotta": "陶瓦", - "block.minecraft.tinted_glass": "见光死玻璃", + "block.minecraft.tinted_glass": "墨镜", "block.minecraft.tnt": "大伊万", "block.minecraft.torch": "火炬", + "block.minecraft.torchflower": "火炬花(不可发光)", + "block.minecraft.torchflower_crop": "火炬花植株(不可发光)", "block.minecraft.trapped_chest": "被困的胸部", + "block.minecraft.trial_spawner": "产卵器(试用)", "block.minecraft.tripwire": "绊线", "block.minecraft.tripwire_hook": "绊线钩", "block.minecraft.tube_coral": "管珊瑚", "block.minecraft.tube_coral_block": "管珊瑚块", "block.minecraft.tube_coral_fan": "管珊瑚粉丝", "block.minecraft.tube_coral_wall_fan": "墙上的管珊瑚粉丝", - "block.minecraft.tuff": "凝灰岩", - "block.minecraft.turtle_egg": "王八蛋", + "block.minecraft.tuff": "猛♂男岩", + "block.minecraft.tuff_brick_slab": "猛♂男岩砖石半砖", + "block.minecraft.tuff_brick_stairs": "猛♂男岩砖石楼梯", + "block.minecraft.tuff_brick_wall": "猛♂男岩砖石墙", + "block.minecraft.tuff_bricks": "猛♂男岩砖石", + "block.minecraft.tuff_slab": "猛♂男岩半砖", + "block.minecraft.tuff_stairs": "猛♂男岩楼梯", + "block.minecraft.tuff_wall": "猛♂男岩墙", + "block.minecraft.turtle_egg": "兲蛋", "block.minecraft.twisting_vines": "通天藤", "block.minecraft.twisting_vines_plant": "通天藤植物", + "block.minecraft.vault": "个人保管库", + "block.minecraft.verdant_froglight": "青翠蛙の明灯", "block.minecraft.vine": "藤蔓", "block.minecraft.void_air": "虚空废气", "block.minecraft.wall_torch": "墙上的火炬", @@ -1921,6 +2161,7 @@ "block.minecraft.warped_fence": "幽蓝木栅栏", "block.minecraft.warped_fence_gate": "幽蓝木栅栏门", "block.minecraft.warped_fungus": "幽蓝菌", + "block.minecraft.warped_hanging_sign": "上吊的幽蓝木搞事牌", "block.minecraft.warped_hyphae": "幽蓝菌丝", "block.minecraft.warped_nylium": "幽蓝菌岩", "block.minecraft.warped_planks": "幽蓝木板", @@ -1930,29 +2171,59 @@ "block.minecraft.warped_slab": "幽蓝木半砖", "block.minecraft.warped_stairs": "幽蓝木楼梯", "block.minecraft.warped_stem": "幽蓝菌柄", - "block.minecraft.warped_trapdoor": "幽蓝木活板门", + "block.minecraft.warped_trapdoor": "幽蓝木陷阱门", + "block.minecraft.warped_wall_hanging_sign": "墙上的上吊的幽蓝木搞事牌", "block.minecraft.warped_wall_sign": "墙上的幽蓝木搞事牌", "block.minecraft.warped_wart_block": "幽蓝疣块", "block.minecraft.water": "水", "block.minecraft.water_cauldron": "贴吧中华锅", + "block.minecraft.waxed_chiseled_copper": "以镀膜的形式将蜡均匀地覆盖在表面上且使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.waxed_copper_block": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的方块", + "block.minecraft.waxed_copper_bulb": "以镀膜的形式将蜡均匀地覆盖在表面上且框架材料为铜的照明方块", + "block.minecraft.waxed_copper_door": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的门", + "block.minecraft.waxed_copper_grate": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.waxed_copper_trapdoor": "以镀膜的形式将蜡均匀地覆盖在表面上且内部材料为铜的陷阱门", "block.minecraft.waxed_cut_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并使用了切割工艺进行加工的内部材料为铜的方块", "block.minecraft.waxed_cut_copper_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并使用了切割工艺进行加工的内部材料为铜的半砖", "block.minecraft.waxed_cut_copper_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并使用了切割工艺进行加工的内部材料为铜的楼梯", + "block.minecraft.waxed_exposed_chiseled_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.waxed_exposed_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜的方块", + "block.minecraft.waxed_exposed_copper_bulb": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且框架材料为铜的照明方块", + "block.minecraft.waxed_exposed_copper_door": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜的门", + "block.minecraft.waxed_exposed_copper_grate": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.waxed_exposed_copper_trapdoor": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应且内部材料为铜的陷阱门", "block.minecraft.waxed_exposed_cut_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的方块", "block.minecraft.waxed_exposed_cut_copper_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的半砖", "block.minecraft.waxed_exposed_cut_copper_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了轻度的自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的楼梯", + "block.minecraft.waxed_oxidized_chiseled_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.waxed_oxidized_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的方块", + "block.minecraft.waxed_oxidized_copper_bulb": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且框架材料为铜的照明方块", + "block.minecraft.waxed_oxidized_copper_door": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的门", + "block.minecraft.waxed_oxidized_copper_grate": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.waxed_oxidized_copper_trapdoor": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应且内部材料为铜的陷阱门", "block.minecraft.waxed_oxidized_cut_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的方块", "block.minecraft.waxed_oxidized_cut_copper_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的半砖", "block.minecraft.waxed_oxidized_cut_copper_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的楼梯", + "block.minecraft.waxed_weathered_chiseled_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且使用了大师级雕刻技艺的内部材料为铜的方块", "block.minecraft.waxed_weathered_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的方块", + "block.minecraft.waxed_weathered_copper_bulb": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且框架材料为铜的照明方块", + "block.minecraft.waxed_weathered_copper_door": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的门", + "block.minecraft.waxed_weathered_copper_grate": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.waxed_weathered_copper_trapdoor": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应且内部材料为铜的陷阱门", "block.minecraft.waxed_weathered_cut_copper": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的方块", "block.minecraft.waxed_weathered_cut_copper_slab": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的半砖", "block.minecraft.waxed_weathered_cut_copper_stairs": "以镀膜的形式将蜡均匀地覆盖在表面上并经过了中度的自然发生的氧化反应还使用了切割工艺进行加工的内部材料为铜的楼梯", - "block.minecraft.weeping_vines": "垂泪藤", - "block.minecraft.weeping_vines_plant": "垂泪藤植物", + "block.minecraft.weathered_chiseled_copper": "经过了中度的自然发生的氧化反应且使用了大师级雕刻技艺的内部材料为铜的方块", + "block.minecraft.weathered_copper": "经过了中度的自然发生的氧化反应且内部材料为铜的方块", + "block.minecraft.weathered_copper_bulb": "经过了中度的自然发生的氧化反应且框架材料为铜的照明方块", + "block.minecraft.weathered_copper_door": "经过了中度的自然发生的氧化反应且内部材料为铜的门", + "block.minecraft.weathered_copper_grate": "经过了中度的自然发生的氧化反应且内部材料为铜还经历了镂空处理的洞洞方块", + "block.minecraft.weathered_copper_trapdoor": "经过了中度的自然发生的氧化反应且内部材料为铜的陷阱门", + "block.minecraft.weathered_cut_copper": "经过了中度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的方块", + "block.minecraft.weathered_cut_copper_slab": "经过了中度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的半砖", + "block.minecraft.weathered_cut_copper_stairs": "经过了中度的自然发生的氧化反应且使用了切割工艺进行加工的内部材料为铜的楼梯", + "block.minecraft.weeping_vines": "呜呜藤", + "block.minecraft.weeping_vines_plant": "呜呜藤植物", "block.minecraft.wet_sponge": "泡 水 黄 色 大 发 糕", "block.minecraft.wheat": "小麦", "block.minecraft.white_banner": "法国国旗", @@ -1964,12 +2235,12 @@ "block.minecraft.white_concrete_powder": "白色具体的粉末", "block.minecraft.white_glazed_terracotta": "白色带釉陶瓦", "block.minecraft.white_shulker_box": "白色傻瓜盒子", - "block.minecraft.white_stained_glass": "白色染色玻璃", - "block.minecraft.white_stained_glass_pane": "白色染色玻璃板", + "block.minecraft.white_stained_glass": "白色太阳镜", + "block.minecraft.white_stained_glass_pane": "白色太阳镜片", "block.minecraft.white_terracotta": "白色陶瓦", "block.minecraft.white_tulip": "白色郁金香", - "block.minecraft.white_wool": "白色羊毛", - "block.minecraft.wither_rose": "死亡之花", + "block.minecraft.white_wool": "白色咩咩毛", + "block.minecraft.wither_rose": "死亡玫瑰", "block.minecraft.wither_skeleton_skull": "凋零骷髅头颅", "block.minecraft.wither_skeleton_wall_skull": "墙上的凋零骷髅头颅", "block.minecraft.yellow_banner": "黄色旗帜", @@ -1981,15 +2252,15 @@ "block.minecraft.yellow_concrete_powder": "黄色具体的粉末", "block.minecraft.yellow_glazed_terracotta": "黄色带釉陶瓦", "block.minecraft.yellow_shulker_box": "黄色傻瓜盒子", - "block.minecraft.yellow_stained_glass": "黄色染色玻璃", - "block.minecraft.yellow_stained_glass_pane": "黄色染色玻璃板", + "block.minecraft.yellow_stained_glass": "黄色太阳镜", + "block.minecraft.yellow_stained_glass_pane": "黄色太阳镜片", "block.minecraft.yellow_terracotta": "黄色陶瓦", - "block.minecraft.yellow_wool": "黄色羊毛", + "block.minecraft.yellow_wool": "黄色咩咩毛", "block.minecraft.zombie_head": "姜丝的头", "block.minecraft.zombie_wall_head": "墙上的姜丝头颅", "book.byAuthor": "%1$s写的", "book.editTitle": "输入书名:", - "book.finalizeButton": "署名并关闭", + "book.finalizeButton": "署名并关掉", "book.finalizeWarning": "若署名了就等于你放弃了修改的权力,所以这是一个好事吗?", "book.generation.0": "原作", "book.generation.1": "原作的副本", @@ -2002,18 +2273,33 @@ "chat.cannotSend": "嗦不出话", "chat.coordinates": "%s, %s, %s", "chat.coordinates.tooltip": "点此闪现", - "chat.copy": "复制到剪贴板", - "chat.copy.click": "单击复制到剪贴板", - "chat.disabled.options": "您已被客户端选项禁言", - "chat.disabled.launcher": "您已被启动器选项禁言", - "chat.disabled.profile": "您已被账户设置禁言", + "chat.copy": "复制分享链接", + "chat.copy.click": "单击复制分享链接", + "chat.deleted_marker": "此唠嗑消息已被服务器削除。", + "chat.disabled.chain_broken": "由于消息链损坏,唠嗑已被禁用。请尝试重新连接。", + "chat.disabled.expiredProfileKey": "你的玩家信息密钥过期啦,别人菊♂爆不了你,试试重新登陆吧", + "chat.disabled.invalid_command_signature": "命令包含意外或缺失的命令参数签名。", + "chat.disabled.invalid_signature": "聊天签名无效。请尝试重新连接。", + "chat.disabled.launcher": "你已被启动器选项禁言", + "chat.disabled.missingProfileKey": "由于个人信息公钥丢失,唠嗑已被关掉。请尝试重新连接。", + "chat.disabled.options": "你已被客户端选项禁言", + "chat.disabled.out_of_order_chat": "接收到了乱序的聊天消息。你的系统时间是否被更改过?", + "chat.disabled.profile": "你已被账户设置禁言", + "chat.disabled.profile.moreInfo": "你的Macrohard账号设置不允许你唠嗑,所以你既不能说话也不能看别人唠嗑。", "chat.editBox": "唠嗑", + "chat.filtered": "被服务器过滤。", + "chat.filtered_full": "服务器把你的消息和谐了", "chat.link.confirm": "打开啊,愣住干啥?", "chat.link.confirmTrusted": "打开啊,愣住干啥?", - "chat.link.open": "在浏览器中打开", + "chat.link.open": "在网上冲浪用具里打开", "chat.link.warning": "打开试试吧,也许是好东西呢?", "chat.queue": "[+%s行待发送]", "chat.square_brackets": "[%s]", + "chat.tag.error": "服务器发送了无效消息。", + "chat.tag.modified": "消息被服务器乱改。原文:", + "chat.tag.not_secure": "未经验证的消息。无法菊♂爆。", + "chat.tag.system": "服务器消息。无法菊♂爆。", + "chat.tag.system_single_player": "服务器唠嗑。", "chat.type.admin": "[%s: %s]", "chat.type.advancement.challenge": "%s完成了挑战%s", "chat.type.advancement.goal": "%s达成了目标%s", @@ -2025,21 +2311,27 @@ "chat.type.team.text": "%s <%s> %s", "chat.type.text": "<%s> %s", "chat.type.text.narrate": "%s说%s", + "chat.validation_error": "聊天验证错误", "chat_screen.message": "要发送的消息:%s", "chat_screen.title": "唠嗑界面", "chat_screen.usage": "输入消息并按Enter键发送", + "chunk.toast.checkLog": "查看日志获取详情", + "chunk.toast.loadFailure": "无法加载%s处的大块", + "chunk.toast.lowDiskSpace": "磁盘空间不足!", + "chunk.toast.lowDiskSpace.description": "可能无法保存世界。", + "chunk.toast.saveFailure": "无法保存%s处的大块", "clear.failed.multiple": "%s名玩家一无所有", "clear.failed.single": "%s一无所有", "color.minecraft.black": "黑色", "color.minecraft.blue": "蓝色", - "color.minecraft.brown": "棕色", - "color.minecraft.cyan": "青色", + "color.minecraft.brown": "咖啡色", + "color.minecraft.cyan": "蓝绿色", "color.minecraft.gray": "灰色", "color.minecraft.green": "原谅色", "color.minecraft.light_blue": "亮蓝色", "color.minecraft.light_gray": "亮灰色", - "color.minecraft.lime": "黄绿色", - "color.minecraft.magenta": "品红色", + "color.minecraft.lime": "酸橙色", + "color.minecraft.magenta": "洋红色", "color.minecraft.orange": "橙色", "color.minecraft.pink": "粉红色", "color.minecraft.purple": "紫色", @@ -2051,29 +2343,30 @@ "command.exception": "无法解析命令:%s", "command.expected.separator": "参数后应有空格分隔,但发现了紧邻的数据", "command.failed": "试图执行该命令时出现意外错误", + "command.forkLimit": "上下文数量已达上限值(%s)", "command.unknown.argument": "错误的命令参数", "command.unknown.command": "未知或不完整的命令,错误见下", - "commands.advancement.advancementNotFound": "没有找到名为'%s'的进步", - "commands.advancement.criterionNotFound": "进步%1$s并不包含条件'%2$s'", - "commands.advancement.grant.criterion.to.many.failure": "无法将进步%2$s的达成条件'%1$s'赋予%3$s名玩家,因为他们已达成此条件", - "commands.advancement.grant.criterion.to.many.success": "已将进步%2$s的达成条件'%1$s'赋予%3$s名玩家", - "commands.advancement.grant.criterion.to.one.failure": "无法将进步%2$s的达成条件'%1$s'赋予%3$s,因为该玩家已达成此条件", - "commands.advancement.grant.criterion.to.one.success": "已将进步%2$s的达成条件'%1$s'赋予%3$s", - "commands.advancement.grant.many.to.many.failure": "无法将%s个进步赋予%s名玩家,因为他们已达成这些进步", + "commands.advancement.advancementNotFound": "没有找到名为“%s”的进步", + "commands.advancement.criterionNotFound": "进步%1$s并不包含条件“%2$s”", + "commands.advancement.grant.criterion.to.many.failure": "无法将进步%2$s的达成条件“%1$s”赋予%3$s名玩家,因为他们已达成此条件", + "commands.advancement.grant.criterion.to.many.success": "已将进步%2$s的达成条件“%1$s”赋予%3$s名玩家", + "commands.advancement.grant.criterion.to.one.failure": "无法将进步%2$s的达成条件“%1$s”赋予%3$s,因为该玩家已达成此条件", + "commands.advancement.grant.criterion.to.one.success": "已将进步%2$s的达成条件“%1$s”赋予%3$s", + "commands.advancement.grant.many.to.many.failure": "无法将%s个进步赋予%s名玩家,因为他们已达成这种进步", "commands.advancement.grant.many.to.many.success": "已将%s个进步赋予%s名玩家", - "commands.advancement.grant.many.to.one.failure": "无法将%s个进步赋予%s,因为该玩家已达成这些进步", + "commands.advancement.grant.many.to.one.failure": "无法将%s个进步赋予%s,因为他们已达成这种进步", "commands.advancement.grant.many.to.one.success": "已将%s个进步赋予%s", - "commands.advancement.grant.one.to.many.failure": "无法将进步%s赋予%s名玩家,因为他们已达成此进步", + "commands.advancement.grant.one.to.many.failure": "无法将进步%s赋予%s名玩家,因为他们已达成这种进步", "commands.advancement.grant.one.to.many.success": "已将进步%s赋予%s名玩家", - "commands.advancement.grant.one.to.one.failure": "无法将进步%s赋予%s,因为该玩家已达成此进步", + "commands.advancement.grant.one.to.one.failure": "无法将进步%s赋予%s,因为他们已达成这种进步", "commands.advancement.grant.one.to.one.success": "已将进步%s赋予%s", - "commands.advancement.revoke.criterion.to.many.failure": "无法撤销%3$s名玩家关于进步%2$s的达成条件'%1$s',因为该玩家并未达成此条件", - "commands.advancement.revoke.criterion.to.many.success": "已撤销%3$s名玩家关于进步%2$s的达成条件'%1$s'", - "commands.advancement.revoke.criterion.to.one.failure": "无法撤销%3$s关于进步%2$s的达成条件'%1$s',因为该玩家并未达成此条件", - "commands.advancement.revoke.criterion.to.one.success": "已撤销%3$s关于进步%2$s的达成条件'%1$s'", + "commands.advancement.revoke.criterion.to.many.failure": "无法撤销%3$s名玩家关于进步%2$s的达成条件“%1$s”,因为该玩家并未达成此条件", + "commands.advancement.revoke.criterion.to.many.success": "已撤销%3$s名玩家关于进步%2$s的达成条件“%1$s”", + "commands.advancement.revoke.criterion.to.one.failure": "无法撤销%3$s关于进步%2$s的达成条件“%1$s”,因为该玩家并未达成此条件", + "commands.advancement.revoke.criterion.to.one.success": "已撤销%3$s关于进步%2$s的达成条件“%1$s”", "commands.advancement.revoke.many.to.many.failure": "无法撤销%2$s名玩家的%1$s个进步,因为他们并未达成此进步", "commands.advancement.revoke.many.to.many.success": "已撤销%2$s名玩家的%1$s个进步", - "commands.advancement.revoke.many.to.one.failure": "无法撤销%2$s的%1$s个进步,因为该玩家并未达成这些进步", + "commands.advancement.revoke.many.to.one.failure": "无法撤销%2$s的%1$s个进步,因为该玩家并未达成此进步", "commands.advancement.revoke.many.to.one.success": "已撤销%2$s的%1$s个进步", "commands.advancement.revoke.one.to.many.failure": "无法撤销%2$s名玩家的进步%1$s,因为他们并未达成此进步", "commands.advancement.revoke.one.to.many.success": "已撤销%2$s名玩家的进步%1$s", @@ -2090,18 +2383,19 @@ "commands.attribute.modifier.value.get.success": "实体%3$s的属性%2$s中修饰符%1$s值为%4$s", "commands.attribute.value.get.success": "实体%2$s的属性%1$s的值为%3$s", "commands.ban.failed": "你想鞭尸吗?", - "commands.ban.success": "梗体中文提示您:已对%s进行滥权:%s", + "commands.ban.success": "梗体中文提示你:已对%s进行滥权:%s", "commands.banip.failed": "你想鞭尸吗?", - "commands.banip.info": "梗体中文提示您:此次滥权涉及%s个玩家:%s", + "commands.banip.info": "梗体中文提示你:此次滥权涉及%s个玩家:%s", "commands.banip.invalid": "这是不存在的", - "commands.banip.success": "梗体中文提示您:已滥权IP%s:%s", - "commands.banlist.entry": "梗体中文提示您:%s被%s滥权:%s", + "commands.banip.success": "梗体中文提示你:已滥权IP%s:%s", + "commands.banlist.entry": "梗体中文提示你:%s被%s滥权:%s", + "commands.banlist.entry.unknown": "(未知)", "commands.banlist.list": "梗体中文说:共有%s条滥权记录:", "commands.banlist.none": "无内鬼,没有人滥权", - "commands.bossbar.create.failed": "ID为'%s'老板栏已经存在", + "commands.bossbar.create.failed": "ID为“%s”老板栏已经存在", "commands.bossbar.create.success": "已创建自定义老板栏%s", "commands.bossbar.get.max": "自定义老板栏%s的最大值为%s", - "commands.bossbar.get.players.none": "自定义老板栏%s目前没有在线玩家", + "commands.bossbar.get.players.none": "自定义老板栏%s目前没有玩家", "commands.bossbar.get.players.some": "自定义老板栏%s当前在线的%s名玩家有:%s", "commands.bossbar.get.value": "自定义老板栏%s的数值为%s", "commands.bossbar.get.visible.hidden": "自定义老板栏%s现为隐藏", @@ -2126,7 +2420,7 @@ "commands.bossbar.set.visibility.unchanged.visible": "无变化,老板栏原已可见", "commands.bossbar.set.visible.success.hidden": "已将自定义老板栏%s改为隐藏", "commands.bossbar.set.visible.success.visible": "已将自定义老板栏%s改为可见", - "commands.bossbar.unknown": "不存在ID为'%s'的老板栏", + "commands.bossbar.unknown": "不存在ID为“%s”的老板栏", "commands.clear.success.multiple": "已移除%2$s名玩家的%1$s个物品", "commands.clear.success.single": "已移除玩家%2$s的%1$s个物品", "commands.clear.test.multiple": "已在%2$s名玩家身上找到%1$s个匹配的物品", @@ -2135,6 +2429,8 @@ "commands.clone.overlap": "源区域和目标区域不能重叠", "commands.clone.success": "已成功复制%s个方块", "commands.clone.toobig": "指定区域内的方块太多(最大值为%s,指定值为%s)", + "commands.damage.invulnerable": "对象免疫指定的伤害类型", + "commands.damage.success": "已将%s伤害施加于%s", "commands.data.block.get": "%2$s, %3$s, %4$s的%1$s在乘以倍率%5$s后的值是%6$s", "commands.data.block.invalid": "目标方块不是方块实体", "commands.data.block.modified": "已修改%s, %s, %s处的方块数据", @@ -2149,30 +2445,35 @@ "commands.data.merge.failed": "无变化,所指定的属性已有这些值", "commands.data.modify.expected_list": "需要列表,却发现了:%s", "commands.data.modify.expected_object": "需要对象,却发现了:%s", + "commands.data.modify.expected_value": "需要值,却发现了:%s", "commands.data.modify.invalid_index": "无效的列表索引:%s", + "commands.data.modify.invalid_substring": "无效的子串索引:%s到%s", "commands.data.storage.get": "在存储%2$s中的%1$s在乘以倍率%3$s后的值是%4$s", "commands.data.storage.modified": "已修改存储%s", "commands.data.storage.query": "存储%s含有以下内容:%s", - "commands.datapack.disable.failed": "数据包'%s'并未启用!", - "commands.datapack.enable.failed": "数据包'%s'原已启用!", + "commands.datapack.disable.failed": "数据包“%s”并未启用!", + "commands.datapack.disable.failed.feature": "无法禁用数据包“%s”,因为它属于已启用功能!", + "commands.datapack.enable.failed": "数据包“%s”原已启用!", + "commands.datapack.enable.failed.no_flags": "无法打开数据包“%s”,因为所需的特有未在此世界打开:%s!", "commands.datapack.list.available.none": "已无更多可用的数据包", "commands.datapack.list.available.success": "共有%s个数据包可用:%s", "commands.datapack.list.enabled.none": "没有启用中的数据包", "commands.datapack.list.enabled.success": "已启用%s个数据包:%s", "commands.datapack.modify.disable": "正在禁用数据包%s", "commands.datapack.modify.enable": "正在启用数据包%s", - "commands.datapack.unknown": "未知的数据包'%s'", - "commands.debug.alreadyRunning": "刻分析器原已开启", - "commands.debug.function.traceFailed": "追踪函数失败", + "commands.datapack.unknown": "未知的数据包“%s”", + "commands.debug.alreadyRunning": "刻分析器原已打开", "commands.debug.function.noRecursion": "搁这套娃呢?", + "commands.debug.function.noReturnRun": "使用/return run时无法追踪", "commands.debug.function.success.multiple": "已追踪%2$s个函数内的%1$s条命令至输出文件%3$s", - "commands.debug.function.success.single": "已追踪函数'%2$s'内的%1$s条命令至输出文件%3$s", + "commands.debug.function.success.single": "已追踪函数“%2$s”内的%1$s条命令至输出文件%3$s", + "commands.debug.function.traceFailed": "追踪函数失败", "commands.debug.notRunning": "刻分析器尚未启动", "commands.debug.started": "开始调试分析", "commands.debug.stopped": "已停止刻分析,用时%s秒和%s刻(每秒%s刻)", "commands.defaultgamemode.success": "默认游戏模式现在为%s", - "commands.deop.failed": "梗体中文提示您:无变化,此玩家已经不能滥权了", - "commands.deop.success": "梗体中文提示您:%s不再能滥权了", + "commands.deop.failed": "梗体中文提示你:无变化,此玩家已经不能滥权了", + "commands.deop.success": "梗体中文提示你:%s不再能滥权了", "commands.difficulty.failure": "本来就是%s,你改了个寂寞", "commands.difficulty.query": "目前难度为%s", "commands.difficulty.success": "难度已被设置为%s", @@ -2203,6 +2504,7 @@ "commands.execute.conditional.fail_count": "测试失败,计数:%s", "commands.execute.conditional.pass": "测试通过", "commands.execute.conditional.pass_count": "测试通过,计数:%s", + "commands.execute.function.instantiationFailure": "无法实例化函数%s:%s", "commands.experience.add.levels.success.multiple": "已给予%2$s名玩家%1$s级人生经验", "commands.experience.add.levels.success.single": "已给予%2$s %1$s级人生经验", "commands.experience.add.points.success.multiple": "已给予%2$s名玩家%1$s点人生经验", @@ -2216,7 +2518,10 @@ "commands.experience.set.points.success.single": "已将%2$s的经验值设为%1$s", "commands.fill.failed": "没有方块被填充", "commands.fill.success": "成功地填充了%s个方块", - "commands.fill.toobig": "成功地填充了%s个方块,%s个里剩下的请手动替换", + "commands.fill.toobig": "指定区域内的方块太多(最大值为%s,指定值为%s)", + "commands.fillbiome.success": "已在%s, %s, %s与%s, %s, %s之间设置生物群系", + "commands.fillbiome.success.count": "已在%2$s, %3$s, %4$s与%5$s, %6$s, %7$s之间设置%1$s个生物群系单元", + "commands.fillbiome.toobig": "指定区域内的方块太多(最大值为%s,指定值为%s)", "commands.forceload.added.failure": "没有被标记为强制加载的大块", "commands.forceload.added.multiple": "已将%2$s中的%3$s至%4$s间的%1$s个大块标记为强制加载", "commands.forceload.added.none": "在%s中未找到强制加载的大块", @@ -2229,11 +2534,22 @@ "commands.forceload.removed.failure": "没有强制加载的大块被移除", "commands.forceload.removed.multiple": "已将%2$s中的%3$s至%4$s间的%1$s个大块取消强制加载", "commands.forceload.removed.single": "已将%2$s中的大块%1$s解除强制加载", - "commands.forceload.toobig": "指定区域内大块过多(最大值为%s,指定值为%s)", + "commands.forceload.toobig": "指定区域内大块太多辣(最大值为%s,指定值为%s)", + "commands.function.error.argument_not_compound": "无效的参数类型:%s,应为Compound类型", + "commands.function.error.missing_argument": "函数%1$s缺少传入参数%2$s", + "commands.function.error.missing_arguments": "函数%s缺少传入参数", + "commands.function.error.parse": "实例化宏%s时:命令“%s”发生错误:%s", + "commands.function.instantiationFailure": "无法实例化函数%s:%s", + "commands.function.result": "函数%s返回了%s", + "commands.function.scheduled.multiple": "正在运行函数%s", + "commands.function.scheduled.no_functions": "无法找到名称为%s的函数", + "commands.function.scheduled.single": "正在运行函数%s", "commands.function.success.multiple": "%2$s个函数中的%1$s条命令!啪的一下执行完了,很快啊!", + "commands.function.success.multiple.result": "执行了%s个函数", "commands.function.success.single": "%2$s中的%1$s条命令!啪的一下执行完了,很快啊!", + "commands.function.success.single.result": "函数“%2$s”返回了%1$s", "commands.gamemode.success.other": "将%s的游戏模式改为%s", - "commands.gamemode.success.self": "您的游戏模式已被设置为%s ", + "commands.gamemode.success.self": "你的游戏模式已被设置为%s ", "commands.gamerule.query": "游戏规则%s目前为:%s", "commands.gamerule.set": "游戏规则%s已被设为:%s", "commands.give.failed.toomanyitems": "搞这么多,电脑都要化掉了!最多给%s个%s,不能再多了。", @@ -2253,20 +2569,24 @@ "commands.jfr.start.failed": "无法启动爪哇飞机录制器", "commands.jfr.started": "已启动爪哇飞机录制器", "commands.jfr.stopped": "已结束爪哇飞机录制器,结果已倾倒至%s", + "commands.kick.owner.failed": "无法在菊域网游戏中踹出服务器所有者", + "commands.kick.singleplayer.failed": "怎么可以踢自己的屁股呢?", "commands.kick.success": "已踹出%s:%s", "commands.kill.success.multiple": "弄死了%s个实体", "commands.kill.success.single": "已弄死%s", "commands.list.nameAndId": "%s(%s)", "commands.list.players": "当前共有%s名玩家在线(最大玩家数为%s):%s", - "commands.locate.failed": "尚未完工的建筑!", - "commands.locate.success": "最近的%s位于%s(%s个方块外)", - "commands.locatebiome.invalid": "没有名为“%s”的生物群系", - "commands.locatebiome.notFound": "无法在合理距离内找到类型为“%s”的生物群系", - "commands.locatebiome.success": "最近的%s位于%s(%s个方块外)", + "commands.locate.biome.not_found": "无法在合理距离内找到类型为“%s”的生物群系", + "commands.locate.biome.success": "最近的%s位于%s(%s个方块外)", + "commands.locate.poi.not_found": "无法在合理距离内找到类型为“%s”的生物群系", + "commands.locate.poi.success": "最近的%s位于%s(%s个方块外)", + "commands.locate.structure.invalid": "没有“%s”这种结构啊!", + "commands.locate.structure.not_found": "无法在附近找到类型为“%s”的结构", + "commands.locate.structure.success": "最近的%s位于%s(%s个方块外)", "commands.message.display.incoming": "%s悄悄地对你说:%s", "commands.message.display.outgoing": "你悄悄地对%s说:%s", - "commands.op.failed": "梗体中文提示您:该玩家本就可以滥权", - "commands.op.success": "梗体中文提示您:%s可以滥权了,大家小心!", + "commands.op.failed": "梗体中文提示你:该玩家本就可以滥权", + "commands.op.success": "梗体中文提示你:%s可以滥权了,大家小心!", "commands.pardon.failed": "无变化,该玩家还是可以逍遥自在", "commands.pardon.success": "%s可以逍遥自在了", "commands.pardonip.failed": "无变化,该IP地址可以逍遥自在", @@ -2274,19 +2594,37 @@ "commands.pardonip.success": "IP地址%s可以逍遥自在了", "commands.particle.failed": "该颗粒无法被任何玩家看见", "commands.particle.success": "正在显示颗粒%s", - "commands.perf.alreadyRunning": "性能分析器原已开启", + "commands.perf.alreadyRunning": "性能分析器原已打开", "commands.perf.notRunning": "性能分析器尚未启动", "commands.perf.reportFailed": "生成调试报告失败", "commands.perf.reportSaved": "已在%s生成调试报告", "commands.perf.started": "已开始时长为10秒的性能分析测试(使用'/perf stop'以提前结束)", "commands.perf.stopped": "已停止性能分析,用时%s秒和%s刻(每秒%s刻)", + "commands.place.feature.failed": "没法放置特性", + "commands.place.feature.invalid": "没有%s这种特性啊!", + "commands.place.feature.success": "把%s放在了%s,%s,%s", + "commands.place.jigsaw.failed": "没法生成线锯", + "commands.place.jigsaw.invalid": "没有%s这种模版池啊!", + "commands.place.jigsaw.success": "把线锯生成在了%s,%s,%s", + "commands.place.structure.failed": "没法放置结构", + "commands.place.structure.invalid": "没有%s这种结构啊!", + "commands.place.structure.success": "把%s结构生成在了%s,%s,%s", + "commands.place.template.failed": "放置模板失败", + "commands.place.template.invalid": "没有类型为“%s”的模板", + "commands.place.template.success": "已在%2$s, %3$s, %4$s处加载模板“%1$s”", "commands.playsound.failed": "你没有顺风耳", "commands.playsound.success.multiple": "已将声音%s放送给%s名玩家", "commands.playsound.success.single": "已将声音%s放送给%s", "commands.publish.alreadyPublished": "已存在开放于%s端口的多人游戏", "commands.publish.failed": "无法建立本地游戏", - "commands.publish.started": "本地游戏已在端口%s上开启", - "commands.publish.success": "多人游戏已在%s端口上开启", + "commands.publish.started": "本地游戏已在端口%s上打开", + "commands.publish.success": "多人游戏已在%s端口上打开", + "commands.random.error.range_too_large": "随机值的范围最大为2147483646", + "commands.random.error.range_too_small": "随机值的范围最小为2", + "commands.random.reset.all.success": "已重置%s个随机序列", + "commands.random.reset.success": "已重置随机序列%s", + "commands.random.roll": "%s掷出了%s(从%s到%s)", + "commands.random.sample.success": "随机值:%s", "commands.recipe.give.failed": "没有新食谱被解锁", "commands.recipe.give.success.multiple": "已为%2$s名玩家解锁了%1$s条食谱", "commands.recipe.give.success.single": "已为%2$s解锁了%1$s条食谱", @@ -2295,7 +2633,15 @@ "commands.recipe.take.success.single": "%2$s的%1$s条食谱已忘记", "commands.reload.failure": "重载程序失败,跑路中……", "commands.reload.success": "重载程序已启动!", - "commands.save.alreadyOff": "已经关闭世界保存", + "commands.ride.already_riding": "%s已经在骑乘%s", + "commands.ride.dismount.success": "%s已停止骑乘%s", + "commands.ride.mount.failure.cant_ride_players": "无法骑乘玩家", + "commands.ride.mount.failure.generic": "%s无法骑乘%s", + "commands.ride.mount.failure.loop": "无法让实体骑乘自身或其乘客", + "commands.ride.mount.failure.wrong_dimension": "无法骑乘位于不同维度的实体", + "commands.ride.mount.success": "%s已开始骑乘%s", + "commands.ride.not_riding": "%s未骑乘任何载具", + "commands.save.alreadyOff": "已经关掉世界保存", "commands.save.alreadyOn": "已经打开世界保存", "commands.save.disabled": "自动保存。It's OFF.", "commands.save.enabled": "自动保存。It's ON.", @@ -2304,8 +2650,8 @@ "commands.save.success": "游戏已保存", "commands.schedule.cleared.failure": "没有ID为%s的计划", "commands.schedule.cleared.success": "已移除%s个ID为%s的计划", - "commands.schedule.created.function": "已将函数'%s'计划在%s刻后,即游戏时间%s时执行", - "commands.schedule.created.tag": "已将标签'%s'计划在%s刻后,即游戏时间%s时执行", + "commands.schedule.created.function": "已将函数“%s”计划在%s刻后,即游戏时间%s时执行", + "commands.schedule.created.tag": "已将标签“%s”计划在%s刻后,即游戏时间%s时执行", "commands.schedule.same_tick": "无法将函数计划在当前刻", "commands.scoreboard.objectives.add.duplicate": "已经存在同名记分项", "commands.scoreboard.objectives.add.success": "创建了新的记分项%s", @@ -2315,12 +2661,24 @@ "commands.scoreboard.objectives.display.set": "已将显示位置%s设置为展示记分项%s", "commands.scoreboard.objectives.list.empty": "不存在任何记分项", "commands.scoreboard.objectives.list.success": "共有%s个记分项:%s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.disable": "已禁用记分项%s的展示自动更新", + "commands.scoreboard.objectives.modify.displayAutoUpdate.enable": "已启用记分项%s的展示自动更新", "commands.scoreboard.objectives.modify.displayname": "记分项%s的显示名称已改为%s", + "commands.scoreboard.objectives.modify.objectiveFormat.clear": "已清除记分项%s的默认数字格式", + "commands.scoreboard.objectives.modify.objectiveFormat.set": "已更改记分项%s的默认数字格式", "commands.scoreboard.objectives.modify.rendertype": "已更改记分项%s的显示类型", "commands.scoreboard.objectives.remove.success": "移除了记分项%s", "commands.scoreboard.players.add.success.multiple": "将%3$s个实体的%2$s增加了%1$s", "commands.scoreboard.players.add.success.single": "将%3$s的%2$s增加了%1$s(现在是%4$s)", - "commands.scoreboard.players.enable.failed": "无变化,触发器原已开启", + "commands.scoreboard.players.display.name.clear.success.multiple": "已清除%s个实体在%s中的显示名称", + "commands.scoreboard.players.display.name.clear.success.single": "已清除%s在%s中的显示名称", + "commands.scoreboard.players.display.name.set.success.multiple": "已将%2$s个实体在%3$s中的显示名称更改为%1$s", + "commands.scoreboard.players.display.name.set.success.single": "已将%2$s在%3$s中的显示名称更改为%1$s", + "commands.scoreboard.players.display.numberFormat.clear.success.multiple": "已清除%s个实体在%s中的数字格式", + "commands.scoreboard.players.display.numberFormat.clear.success.single": "已清除%s在%s中的数字格式", + "commands.scoreboard.players.display.numberFormat.set.success.multiple": "已更改%s个实体在%s中的数字格式", + "commands.scoreboard.players.display.numberFormat.set.success.single": "已更改%s在%s中的数字格式", + "commands.scoreboard.players.enable.failed": "无变化,触发器原已打开", "commands.scoreboard.players.enable.invalid": "只能启用trigger类记分项", "commands.scoreboard.players.enable.success.multiple": "为%1$s个实体启用了触发器%2$s", "commands.scoreboard.players.enable.success.single": "已将触发器%s对%s启用", @@ -2345,36 +2703,38 @@ "commands.setblock.failed": "无法放置方块", "commands.setblock.success": "更改了位于%s, %s, %s的方块", "commands.setidletimeout.success": "玩家的闲置限时现在为%s分钟", - "commands.setworldspawn.success": "已将世界的产卵室设置为%s, %s, %s [%s]", - "commands.spawnpoint.success.multiple": "已将%6$s名玩家在%5$s的产卵室设为%1$s, %2$s, %3$s [%4$s]", - "commands.spawnpoint.success.single": "已将%6$s在%5$s的产卵室设为%1$s, %2$s, %3$s [%4$s]", + "commands.setworldspawn.failure.not_overworld": "只能为主世界设置世界的死去活来点", + "commands.setworldspawn.success": "已将世界的死去活来点设置为%s, %s, %s [%s]", + "commands.spawnpoint.success.multiple": "已将%6$s名玩家在%5$s的死去活来点设为%1$s, %2$s, %3$s [%4$s]", + "commands.spawnpoint.success.single": "已将%6$s在%5$s的死去活来点设为%1$s, %2$s, %3$s [%4$s]", "commands.spectate.not_spectator": "%s尚未处于游魂模式", "commands.spectate.self": "怎么可以自己看自己呢?", "commands.spectate.success.started": "正在偷窥%s", "commands.spectate.success.stopped": "不再偷窥实体", - "commands.spreadplayers.failed.entities": "无法将%s个实体在%s, %s周围扩散(空间内实体数量过多 - 请尝试最多扩散%s个)", - "commands.spreadplayers.failed.teams": "无法将%s个专业团队在%s, %s周围扩散(空间内实体数量过多 - 请尝试最多扩散%s个)", + "commands.spreadplayers.failed.entities": "无法将%s个实体在%s, %s周围扩散(空间内实体数量太多辣 - 请尝试最多扩散%s个)", + "commands.spreadplayers.failed.invalid.height": "maxHeight %s无效;世界最低也才%s啊!", + "commands.spreadplayers.failed.teams": "无法将%s个专业团队在%s, %s周围扩散(空间内实体数量太多辣 - 请尝试最多扩散%s个)", "commands.spreadplayers.success.entities": "已以%2$s, %3$s为中心分散了%1$s个玩家,平均距离为%4$s个方块", "commands.spreadplayers.success.teams": "已以%2$s, %3$s为中心分散了%1$s个专业团队,平均距离为%4$s个方块", "commands.stop.stopping": "正在切断服务器上的电线", - "commands.stopsound.success.source.any": "已停止播放所有'%s'的音效", - "commands.stopsound.success.source.sound": "已停止资源为'%2$s'的声音'%1$s'", + "commands.stopsound.success.source.any": "已停止播放所有“%s”的音效", + "commands.stopsound.success.source.sound": "已停止资源为“%2$s”的声音“%1$s”", "commands.stopsound.success.sourceless.any": "已停止所有声音", - "commands.stopsound.success.sourceless.sound": "已停止声音'%s'", + "commands.stopsound.success.sourceless.sound": "已停止声音“%s”", "commands.summon.failed": "传唤失败,请重试!", "commands.summon.failed.uuid": "UUID重复,传唤实体失败", - "commands.summon.invalidPosition": "无效的传唤坐标", + "commands.summon.invalidPosition": "你想把它传唤到奇怪的地方?不可以!", "commands.summon.success": "传唤了新的%s", - "commands.tag.add.failed": "对象已拥有此标签或拥有过多标签", - "commands.tag.add.success.multiple": "已为%2$s个实体添加了标签'%1$s'", - "commands.tag.add.success.single": "已为%2$s添加了标签'%1$s'", + "commands.tag.add.failed": "对象已拥有此标签或拥有太多标签", + "commands.tag.add.success.multiple": "已为%2$s个实体添加了标签“%1$s”", + "commands.tag.add.success.single": "已为%2$s添加了标签“%1$s”", "commands.tag.list.multiple.empty": "%s个实体没有任何标签", "commands.tag.list.multiple.success": "%s个实体拥有共计%s项标签:%s", "commands.tag.list.single.empty": "%s没有标签", "commands.tag.list.single.success": "%s拥有%s个标签:%s", "commands.tag.remove.failed": "对象没有这个标签", - "commands.tag.remove.success.multiple": "已移除%2$s个实体的标签'%1$s'", - "commands.tag.remove.success.single": "已移除%2$s的标签'%1$s'", + "commands.tag.remove.success.multiple": "已移除%2$s个实体的标签“%1$s”", + "commands.tag.remove.success.single": "已移除%2$s的标签“%1$s”", "commands.team.add.duplicate": "已经存在同名专业团队", "commands.team.add.success": "已创建专业团队%s", "commands.team.empty.success": "已将%s名成员从专业团队%s中移除", @@ -2414,6 +2774,21 @@ "commands.teleport.success.entity.single": "已将%s闪现至%s", "commands.teleport.success.location.multiple": "已闪现%s个实体至%s, %s, %s", "commands.teleport.success.location.single": "已将%s闪现到 %s,%s,%s", + "commands.tick.query.percentiles": "百分位数:50%%:%s毫秒 95%%:%s毫秒 99%%:%s毫秒,共采样:%s", + "commands.tick.query.rate.running": "目标速率:%s刻每秒。\n每刻平均时间:%s毫秒(目标:%s毫秒)", + "commands.tick.query.rate.sprinting": "目标速率:%s刻每秒(已忽略,仅供参考)。\n每刻平均时间:%s毫秒", + "commands.tick.rate.success": "已设置目标速率为每秒%s刻", + "commands.tick.sprint.report": "游戏加速已完成,速率为每秒%s刻,即每刻%s毫秒", + "commands.tick.sprint.stop.fail": "没有正在执行的游戏刻加速", + "commands.tick.sprint.stop.success": "游戏刻加速已中止", + "commands.tick.status.frozen": "「白金之星·世界」", + "commands.tick.status.lagging": "游戏正在运行,但无法达到目标速率", + "commands.tick.status.running": "游戏现在以正常速度运行", + "commands.tick.status.sprinting": "「最后说一次,时间要加速了」", + "commands.tick.step.fail": "无法步进游戏,请先冻结游戏", + "commands.tick.step.stop.fail": "没有正在执行的游戏刻步进", + "commands.tick.step.stop.success": "游戏刻步进已中止", + "commands.tick.step.success": "正在步进%s刻", "commands.time.query": "目前时间为%s", "commands.time.set": "已把时间滥权为%s", "commands.title.cleared.multiple": "已清除%s个玩家的标题", @@ -2428,6 +2803,9 @@ "commands.title.show.title.single": "正在向%s显示新的标题", "commands.title.times.multiple": "已更改%s名玩家的标题显示时间", "commands.title.times.single": "已更改%s的标题显示时间", + "commands.transfer.error.no_players": "必须至少指定一个待转移的玩家", + "commands.transfer.success.multiple": "正在转移%s个玩家至%s:%s", + "commands.transfer.success.single": "正在转移%s至%s:%s", "commands.trigger.add.success": "已触发%s(数值已增加%s)", "commands.trigger.failed.invalid": "你只能触发'trigger'类型的记分项", "commands.trigger.failed.unprimed": "你尚无法触发这个记分项", @@ -2440,8 +2818,8 @@ "commands.whitelist.add.success": "已将%s加入白名单", "commands.whitelist.alreadyOff": "白名单本来就是关的", "commands.whitelist.alreadyOn": "白名单本来就是开的", - "commands.whitelist.disabled": "白名单已关闭", - "commands.whitelist.enabled": "白名单已开启", + "commands.whitelist.disabled": "白名单已关掉", + "commands.whitelist.enabled": "白名单已打开", "commands.whitelist.list": "白名单中共有%s名玩家:%s", "commands.whitelist.none": "白名单中没有玩家", "commands.whitelist.reloaded": "已重新读取白名单", @@ -2455,6 +2833,7 @@ "commands.worldborder.damage.buffer.success": "已将世界边界伤害缓冲区设置为%s个方块", "commands.worldborder.get": "当前的世界边界宽度为%s个方块", "commands.worldborder.set.failed.big": "世界边界的宽度不能大于%s格", + "commands.worldborder.set.failed.far": "世界边界不能比%s格更远", "commands.worldborder.set.failed.nochange": "无变化,世界边界已经是此大小", "commands.worldborder.set.failed.small": "世界边界的宽度不能小于1格", "commands.worldborder.set.grow": "正在将世界边界的宽度扩大为%s个方块,时间%s秒", @@ -2464,24 +2843,32 @@ "commands.worldborder.warning.distance.success": "已将世界边界警告距离设置为%s个方块", "commands.worldborder.warning.time.failed": "无变化,世界边界警告时间已经是此时长", "commands.worldborder.warning.time.success": "已将世界边界警告时间设置为%s秒", + "compliance.playtime.greaterThan24Hours": "你都玩了超过24小时了", + "compliance.playtime.hours": "你都玩了%s小时了", + "compliance.playtime.message": "MC虽好,可不要贪玩哦", "connect.aborted": "断了!", "connect.authorizing": "登录中…", "connect.connecting": "对接服务器的套接字", "connect.encrypting": "进服记得加密!加密中……", "connect.failed": "由于一些特定的原因导致连接失败,非常不抱歉", + "connect.failed.transfer": "转移到服务器时连接失败", "connect.joining": "加入世界中…", "connect.negotiating": "连接协商中…", + "connect.reconfiging": "重新配置中…", + "connect.reconfiguring": "重新配置中…", + "connect.transferring": "正在转移至新的服务器…", "container.barrel": "酒吧桶", "container.beacon": "培根方块", "container.blast_furnace": "炼铜机", - "container.brewing": "酿造台", + "container.brewing": "调和台", "container.cartography_table": "几何画板", "container.chest": "胸部", "container.chestDouble": "大型胸部", + "container.crafter": "合成器", "container.crafting": "合成", "container.creative": "物品选栏", "container.dispenser": "启动器", - "container.dropper": "Linus Sebastian", + "container.dropper": "星跳水立方", "container.enchant": "覆膜", "container.enchant.clue": "%s…?", "container.enchant.lapis.many": "花费:%s个蓝宝石", @@ -2493,7 +2880,7 @@ "container.furnace": "炉子", "container.grindstone_title": "修复和祛膜", "container.hopper": "H O P", - "container.inventory": "物品栏", + "container.inventory": "库存", "container.isLocked": "%s:有种你拿钥匙来啊!", "container.lectern": "百 家 讲 坛", "container.loom": "珍妮纺纱机", @@ -2501,12 +2888,17 @@ "container.repair.cost": "覆膜花费:%1$s", "container.repair.expensive": "你太穷了!", "container.shulkerBox": "傻瓜盒子", + "container.shulkerBox.itemCount": "%s ×%s", "container.shulkerBox.more": "还有%s项未显示…", + "container.shulkerBox.unknownContents": "【你是怎么看到这个字符串的?】", "container.smoker": "吸烟者", "container.spectatorCantOpen": "薛定谔的猫:瞅啥,有种现形开啊!", "container.stonecutter": "石头刽子手", "container.upgrade": "升级装备", + "container.upgrade.error_tooltip": "该物品无法用此方式升级", + "container.upgrade.missing_template_tooltip": "在此放入{{锻造}}", "controls.keybinds": "键位绑定…", + "controls.keybinds.duplicateKeybinds": "该按键被用掉啦:\n%s", "controls.keybinds.title": "键位绑定", "controls.reset": "重置", "controls.resetAll": "重置按键", @@ -2541,7 +2933,7 @@ "createWorld.customize.custom.minHeight": "最低高度", "createWorld.customize.custom.next": "下一页", "createWorld.customize.custom.page0": "基本设置", - "createWorld.customize.custom.page1": "矿物设置", + "createWorld.customize.custom.page1": "矿物质设置", "createWorld.customize.custom.page2": "高级设置(仅限高级用户!)", "createWorld.customize.custom.page3": "超高级设置(仅限高级用户!)", "createWorld.customize.custom.preset.caveChaos": "混沌洞穴", @@ -2562,13 +2954,13 @@ "createWorld.customize.custom.stretchY": "高度伸展", "createWorld.customize.custom.upperLimitScale": "规模上限", "createWorld.customize.custom.useCaves": "洞穴", - "createWorld.customize.custom.useDungeons": "地牢", + "createWorld.customize.custom.useDungeons": "地下城", "createWorld.customize.custom.useLavaLakes": "熔岩湖", "createWorld.customize.custom.useLavaOceans": "熔岩海", - "createWorld.customize.custom.useMansions": "林地府邸", + "createWorld.customize.custom.useMansions": "鬼子的老家", "createWorld.customize.custom.useMineShafts": "废弃矿井", "createWorld.customize.custom.useMonuments": "海之霸餐厅", - "createWorld.customize.custom.useOceanRuins": "海底废墟", + "createWorld.customize.custom.useOceanRuins": "水猴子的老家", "createWorld.customize.custom.useRavines": "峡谷", "createWorld.customize.custom.useStrongholds": "要塞", "createWorld.customize.custom.useTemples": "神庙", @@ -2581,141 +2973,161 @@ "createWorld.customize.flat.layer.top": "顶层 - %s", "createWorld.customize.flat.removeLayer": "移除层面", "createWorld.customize.flat.tile": "此层的材料", - "createWorld.customize.flat.title": "自定义超平坦世界", - "createWorld.customize.preset.bottomless_pit": "无底深渊", - "createWorld.customize.preset.classic_flat": "经典平坦", - "createWorld.customize.preset.desert": "沙子漠", - "createWorld.customize.preset.overworld": "主世界", - "createWorld.customize.preset.redstone_ready": "雷石东俱备", - "createWorld.customize.preset.snowy_kingdom": "北国风光", - "createWorld.customize.preset.the_void": "虚空", - "createWorld.customize.preset.tunnelers_dream": "挖掘工的梦想", - "createWorld.customize.preset.water_world": "贴吧世界", + "createWorld.customize.flat.title": "自定义平 淡 的世界", "createWorld.customize.presets": "预设", "createWorld.customize.presets.list": "另外,这里是些我们早期瞎编的!", "createWorld.customize.presets.select": "使用预设", "createWorld.customize.presets.share": "想要与别人分享你瞎编的方案吗?使用下面的输入框吧!", "createWorld.customize.presets.title": "选择一个预设", "createWorld.preparing": "正在准备世界生成……", + "createWorld.tab.game.title": "游戏", + "createWorld.tab.more.title": "更多…", + "createWorld.tab.world.title": "世界", + "credits_and_attribution.button.attribution": "Bugjump的借物表", + "credits_and_attribution.button.credits": "梗体中文制作组与Bugjump人员名单", + "credits_and_attribution.button.licenses": "不翻译就谁都看不懂的授权协议", + "credits_and_attribution.screen.title": "关于我们,还有Bugjump", + "dataPack.bundle.description": "打开还没做完的套娃用的袋子物品", + "dataPack.bundle.name": "套娃用的袋子", "dataPack.title": "选择数据包", - "dataPack.validation.back": "返回", + "dataPack.trade_rebalance.description": "奸商的船新交♂易", + "dataPack.trade_rebalance.name": "奸商不可告人的交♂易变化", + "dataPack.update_1_20.description": "Minecraft 1.20的新特性与内容", + "dataPack.update_1_20.name": "1.20更新", + "dataPack.update_1_21.description": "Minecraft 1.21的新功能与内容", + "dataPack.update_1_21.name": "1.21更新", + "dataPack.validation.back": "退后", "dataPack.validation.failed": "数据包验证失败!", "dataPack.validation.reset": "重置为默认", "dataPack.validation.working": "正在验证已选的数据包…", "dataPack.vanilla.description": "Minecraft唯一官方指定数据包!", + "dataPack.vanilla.name": "默认", "datapackFailure.safeMode": "安全模式", - "datapackFailure.title": "目前选中的数据包中出现了Bug,导致世界噔 噔 咚了。\n你可以尝试只载入香草数据包(“安全模式”)或回家(指的是标题画面)手动修复该问题。", - "death.attack.anvil": "%1$s被坠落的哐当压扁了", - "death.attack.anvil.player": "%1$s在与%2$s战斗时被掉落的哐当砸扁了", + "datapackFailure.safeMode.failed.description": "这个世界包含无效或损坏的存档数据。", + "datapackFailure.safeMode.failed.title": "无法在安全模式下加载世界。", + "datapackFailure.title": "目前选中的数据包中出现了Bug,导致世界噔 噔 咚了。\n你可以尝试只加载香草数据包(“安全模式”)或回家(指的是标题画面)手动修复该问题。", + "death.attack.anvil": "%1$s被坠落的哐当压缩成了zip文件", + "death.attack.anvil.player": "%1$s在与%2$s战斗时被掉落的哐当压缩成了zip文件", "death.attack.arrow": "%1$s被%2$s一箭穿心", "death.attack.arrow.item": "%1$s被%2$s用%3$s一箭穿心", - "death.attack.badRespawnPoint.link": "“刻意的游戏设计”", + "death.attack.badRespawnPoint.link": "来自Bugjump员工的恶意", "death.attack.badRespawnPoint.message": "%1$s被%2$s弄死了", "death.attack.cactus": "%1$s抱住了死神", "death.attack.cactus.player": "%1$s在试图逃离%2$s时抱住了死神", "death.attack.cramming": "%1$s被压成肉饼", "death.attack.cramming.player": "%1$s被%2$s压成肉饼", - "death.attack.dragonBreath": "%1$s被龙(nóng)痰所烤焦", - "death.attack.dragonBreath.player": "%1$s被%2$s的龙(nóng)痰所烤焦", + "death.attack.dragonBreath": "%1$s被龙(nóng)痰熏入味了", + "death.attack.dragonBreath.player": "%1$s被%2$s的龙(nóng)痰熏入味了", "death.attack.drown": "%1$s与水融为了一体", "death.attack.drown.player": "%1$s在试图逃离%2$s时与水融为了一体", "death.attack.dryout": "%1$s变成了咸鱼", "death.attack.dryout.player": "%1$s在试图逃离%2$s时突然变成了咸鱼", - "death.attack.even_more_magic": "%1$s被不为人知的魔法弄死了", + "death.attack.even_more_magic": "%1$s被不为人知的魔法biu~了", "death.attack.explosion": "%1$s:我裂开来", - "death.attack.explosion.player": "%1$s被%2$s炸死了", - "death.attack.explosion.player.item": "%1$s被%2$s用%3$s炸死了", + "death.attack.explosion.player": "%1$s:看到了%2$s,我裂开来", + "death.attack.explosion.player.item": "%1$s:看到%2$s拿着%3$s,我裂开来", "death.attack.fall": "%1$s摔烂了腿", "death.attack.fall.player": "%1$s在逃离%2$s时摔烂了腿", - "death.attack.fallingBlock": "%1$s被坠落的方块压扁了", - "death.attack.fallingBlock.player": "%1$s在与%2$s战斗时被掉落的方块砸扁了", + "death.attack.fallingBlock": "%1$s被坠落的方块压缩成了zip文件", + "death.attack.fallingBlock.player": "%1$s在与%2$s战斗时被掉落的方块压缩成了zip文件", "death.attack.fallingStalactite": "%1$s被坠落的钟乳石刺穿了", "death.attack.fallingStalactite.player": "%1$s在与%2$s战斗时被坠落的钟乳石刺穿了", - "death.attack.fireball": "%1$s被%2$s用火球烧死了", - "death.attack.fireball.item": "%1$s被%2$s用%3$s发射的火球烧死了", + "death.attack.fireball": "%1$s被%2$s用发热宝烧死了", + "death.attack.fireball.item": "%1$s被%2$s用%3$s发射的发热宝烧死了", "death.attack.fireworks": "%1$s炸了", "death.attack.fireworks.item": "%1$s随着%2$s用%3$s发射的窜天猴发出的巨响,炸了", "death.attack.fireworks.player": "%1$s在与%2$s战斗时随着一声巨响,炸了", - "death.attack.flyIntoWall": "%1$s的头感受到了牛顿和科里奥利的祝福", - "death.attack.flyIntoWall.player": "%1$s在试图逃离%2$s时头感受到了牛顿和科里奥利的祝福", + "death.attack.flyIntoWall": "%1$s被创死了", + "death.attack.flyIntoWall.player": "%1$s在试图逃离%2$s时被创死了", "death.attack.freeze": "%1$s本色出演了《冰雪奇缘》", "death.attack.freeze.player": "%1$s因%2$s而本色出演了《冰雪奇缘》", "death.attack.generic": "%1$s再起不能", "death.attack.generic.player": "%1$s因%2$s而再起不能", - "death.attack.hotFloor": "%1$s发现地板烫jo", - "death.attack.hotFloor.player": "%1$s因%2$s而被烫jo", + "death.attack.genericKill": "%1$s:AWSL", + "death.attack.genericKill.player": "%1$s在与%2$s战斗时死了", + "death.attack.hotFloor": "%1$s发现地板烫jio", + "death.attack.hotFloor.player": "%1$s因%2$s而被烫jio", "death.attack.inFire": "%1$s被锟斤拷烫烫烫", "death.attack.inFire.player": "%1$s在与%2$s战斗时被锟斤拷烫烫烫", "death.attack.inWall": "%1$s被方块堵住了呼吸道", "death.attack.inWall.player": "%1$s在与%2$s战斗时被方块堵住了呼吸道", - "death.attack.indirectMagic": "%1$s被%2$s使用的魔法弄死了", - "death.attack.indirectMagic.item": "%1$s被%2$s用%3$s弄死了", + "death.attack.indirectMagic": "%1$s被%2$s使用的魔法biu~了", + "death.attack.indirectMagic.item": "%1$s被%2$s用%3$sbiu~了", "death.attack.lava": "%1$s试图铁锅炖自己", "death.attack.lava.player": "%1$s在逃离%2$s时试图铁锅炖自己", "death.attack.lightningBolt": "%1$s装B被雷劈", "death.attack.lightningBolt.player": "%1$s在与%2$s战斗时装B过度被雷劈死了", - "death.attack.magic": "%1$s被魔法弄死了", - "death.attack.magic.player": "%1$s在试图逃离%2$s时被魔法弄死了", + "death.attack.magic": "%1$s被魔法biu~了", + "death.attack.magic.player": "%1$s在试图逃离%2$s时被魔法biu~了", "death.attack.message_too_long": "因为Minecraft十分失败,所以有的消息被吃掉了。剩下的消息:%s", "death.attack.mob": "%1$s被%2$s弄死了", "death.attack.mob.item": "%1$s被%2$s用%3$s弄死了", "death.attack.onFire": "%1$s燃起来了!", - "death.attack.onFire.player": "%1$s在试图与%2$s战斗时被烤得酥脆,好吃(╹ڡ╹ )!", - "death.attack.outOfWorld": "%1$s步入了虚空之地(虽然不知道是不是因为虚空而死)", + "death.attack.onFire.item": "%1$s在试图与带着%3$s的%2$s战斗时被烤熟了,好吃(╹ڡ╹ )!", + "death.attack.onFire.player": "%1$s在试图与%2$s战斗时被烤熟了,好吃(╹ڡ╹ )!", + "death.attack.outOfWorld": "%1$s步入了虚空之地", "death.attack.outOfWorld.player": "%1$s与%2$s不共戴天", + "death.attack.outsideBorder": "%1$s被挤出去了", + "death.attack.outsideBorder.player": "%1$s在与%2$s战斗时被挤出去了", "death.attack.player": "%1$s被%2$s处决了", "death.attack.player.item": "%1$s被%2$s用%3$s处决了", - "death.attack.stalagmite": "%1$s被石笋干烂了", - "death.attack.stalagmite.player": "%1$s在与%2$s战斗时被石笋干烂了", + "death.attack.sonic_boom": "%1$s被低音炮轰飞了", + "death.attack.sonic_boom.item": "%1$s在试图逃离带着%3$s的%2$s时被低音炮轰飞了", + "death.attack.sonic_boom.player": "%1$s在试图逃离%2$s时被低音炮轰飞了", + "death.attack.stalagmite": "%1$s被石笋橄榄了", + "death.attack.stalagmite.player": "%1$s在与%2$s战斗时被石笋橄榄了", "death.attack.starve": "%1$s饿死了,丢人!", "death.attack.starve.player": "%1$s在与%2$s战斗时饿死了,丢人!", "death.attack.sting": "%1$s蜂了", + "death.attack.sting.item": "%1$s被%2$s用%3$s弄蜂了", "death.attack.sting.player": "%1$s被%2$s弄蜂了", - "death.attack.sweetBerryBush": "%1$s被甜莓丛刺死了", - "death.attack.sweetBerryBush.player": "%1$s在试图逃离%2$s时被甜莓丛刺死了", - "death.attack.thorns": "%1$s在试图伤害%2$s时被杀", - "death.attack.thorns.item": "%1$s在试图伤害%2$s时被%3$s弄死", + "death.attack.sweetBerryBush": "%1$s在甜莓丛里甜蜜蜜地去世了", + "death.attack.sweetBerryBush.player": "%1$s在试图逃离%2$s时在甜莓丛里甜蜜蜜地去世了", + "death.attack.thorns": "%1$s说:\"是我杀了我!\"%2$s说:\"回答正确!\"", + "death.attack.thorns.item": "%1$s:\"是我杀了我!\"%2$s拿着%3$s说:\"回答正确!\"", "death.attack.thrown": "%1$s被%2$s压扁了", "death.attack.thrown.item": "%1$s被%2$s用%3$s给砸死了", - "death.attack.trident": "%1$s被%2$s刺穿了", - "death.attack.trident.item": "%1$s被%2$s用%3$s刺穿了", + "death.attack.trident": "%1$s被%2$s做成了串串", + "death.attack.trident.item": "%1$s被%2$s用%3$s做成了串串", "death.attack.wither": "%1$s遇上了死神", "death.attack.wither.player": "%1$s在与%2$s战斗时遇上了死神", "death.attack.witherSkull": "%1$s被%2$s的发射的头颅射中了", + "death.attack.witherSkull.item": "%1$s被%2$s用%3$s发射的头颅射中了", "death.fell.accident.generic": "%1$s摔得骨灰都不剩", "death.fell.accident.ladder": "%1$s试图上墙但被成功拦截", - "death.fell.accident.other_climbable": "%1$s在爪巴时摔了下来", - "death.fell.accident.scaffolding": "%1$s从嘤架上摔了下来", - "death.fell.accident.twisting_vines": "%1$s从通天藤上摔了下来", - "death.fell.accident.vines": "%1$s从藤蔓上摔了下来", - "death.fell.accident.weeping_vines": "%1$s从垂泪藤上摔了下来", - "death.fell.assist": "%1$s因为%2$s注定要摔死", - "death.fell.assist.item": "%1$s因为%2$s使用了%3$s注定要摔死", + "death.fell.accident.other_climbable": "%1$s在爪巴时摔烂了腿", + "death.fell.accident.scaffolding": "%1$s从嘤架上摔烂了腿", + "death.fell.accident.twisting_vines": "%1$s从通天藤上摔烂了腿", + "death.fell.accident.vines": "%1$s从藤蔓上摔烂了腿", + "death.fell.accident.weeping_vines": "%1$s从呜呜藤上摔烂了腿", + "death.fell.assist": "%1$s因为%2$s注定要摔烂腿", + "death.fell.assist.item": "%1$s因为%2$s使用了%3$s注定要摔烂腿", "death.fell.finish": "%1$s摔伤得太重并被%2$s完结了生命", "death.fell.finish.item": "%1$s摔伤得太重并被%2$s用%3$s完结了生命", "death.fell.killer": "%1$s原地爆炸", "deathScreen.quit.confirm": "你确定要跑路吗?", "deathScreen.respawn": "死去活来", "deathScreen.score": "成绩", - "deathScreen.spectate": "灵魂出窍", + "deathScreen.score.value": "成绩:%s", + "deathScreen.spectate": "亡魂出窍", "deathScreen.title": "AWSL!", - "deathScreen.title.hardcore": "生命只有一次", + "deathScreen.title.hardcore": "生命只有一次!", "deathScreen.titleScreen": "回家", - "debug.advanced_tooltips.help": "F3 + H = 显示高级提示框", - "debug.advanced_tooltips.off": "高级提示框:隐藏", - "debug.advanced_tooltips.on": "高级提示框:显示", + "debug.advanced_tooltips.help": "F3 + H = 骇客模式", + "debug.advanced_tooltips.off": "骇客模式:关掉", + "debug.advanced_tooltips.on": "骇客模式:打开", "debug.chunk_boundaries.help": "F3 + G = 显示大块边界", "debug.chunk_boundaries.off": "大块边界:隐藏", "debug.chunk_boundaries.on": "大块边界:显示", "debug.clear_chat.help": "F3 + D = 清空唠嗑记录", "debug.copy_location.help": "F3 + C = 用/tp命令的形式复制你的位置,按住F3 + C使游戏原地爆炸", - "debug.copy_location.message": "坐标已复制到剪贴板", + "debug.copy_location.message": "坐标已复制到剪贴板,切勿向你不信任的人分享你的坐标!", "debug.crash.message": "F3 + C已被按下。除非释放按键否则这将让游戏原地爆炸。", - "debug.crash.warning": "在%s秒后原地爆炸…", + "debug.crash.warning": "在%s秒后瞬间爆炸…", "debug.creative_spectator.error": "你没那权限", "debug.creative_spectator.help": "F3 + N = 在上一个模式和游魂模式间切换", - "debug.cycle_renderdistance.help": "F3 + F = 在目力程度间循环(按Shift来反向循环)", - "debug.cycle_renderdistance.message": "目力程度:%s", + "debug.dump_dynamic_textures": "已将动态纹理保存至%s", + "debug.dump_dynamic_textures.help": "F3 + S = 转储动态纹理", "debug.gamemodes.error": "你没有权限打开游戏模式切换器,爪巴!", "debug.gamemodes.help": "F3 + F4 = 打开游戏模式切换器", "debug.gamemodes.press_f4": "[ F4 ]", @@ -2727,10 +3139,10 @@ "debug.inspect.help": "F3 + I = 将实体或方块的数据复制到剪贴板", "debug.inspect.server.block": "服务端方块数据已复制到剪贴板", "debug.inspect.server.entity": "服务端实体数据已复制到剪贴板", - "debug.pause.help": "F3 + Esc = 暂停但不显示菜单(如果可以暂停的话)", - "debug.pause_focus.help": "F3 + P = 失去焦点时暂停", - "debug.pause_focus.off": "失去焦点时暂停:停用", - "debug.pause_focus.on": "失去焦点时暂停:启用", + "debug.pause.help": "F3 + Esc = 打开非静止画面(如果可以的话)", + "debug.pause_focus.help": "F3 + P = 失去焦点时打开非静止画面", + "debug.pause_focus.off": "失去焦点时打开非静止画面:停用", + "debug.pause_focus.on": "失去焦点时打开非静止画面:启用", "debug.prefix": "[调试]:", "debug.profiling.help": "F3 + L = 开始/停止胡乱分析", "debug.profiling.start": "开始随便收集点数据然后胡乱分析一波。%s秒后就好,等不及了就按F3 + L提前结束。", @@ -2747,12 +3159,12 @@ "demo.day.3": "第三天", "demo.day.4": "第四天", "demo.day.5": "这是你白嫖之旅的最后一天!", - "demo.day.6": "您已经度过5天的白嫖时间,按%s来为你的成果截图留念", - "demo.day.warning": "您的白嫖时间即将结束!", + "demo.day.6": "你已经度过5天的白嫖时间,按%s来为你的成果截图留念", + "demo.day.warning": "你的白嫖时间即将结束!", "demo.demoExpired": "白嫖时间结束了!", "demo.help.buy": "买买买!", - "demo.help.fullWrapped": "这次白嫖只会持续5游戏天的时间(现实时间大约1小时40分钟)。查看进步来获得提示!祝您玩得开心!", - "demo.help.inventory": "按%1$s来打开你的物品栏", + "demo.help.fullWrapped": "这次白嫖只会持续5游戏天的时间(现实时间大约1小时40分钟)。查看进步来获得提示!祝你玩得开心!", + "demo.help.inventory": "按%1$s来打开你的库存", "demo.help.jump": "按%1$s来跳跃", "demo.help.later": "继续,别停!", "demo.help.movement": "按%1$s,%2$s,%3$s,%4$s以及鼠标来移动", @@ -2763,30 +3175,39 @@ "demo.reminder": "白嫖时间已经结束,请剁手来继续或开始一个新的世界!", "difficulty.lock.question": "你确定你要锁定这个世界的难度吗?这会将这个世界的难度锁定为%1$s,并且永远无法再次改变难度。", "difficulty.lock.title": "锁定世界难度", - "disconnect.closed": "连接已关闭", + "disconnect.closed": "连接已关掉", "disconnect.disconnected": "被服务器中断连接", "disconnect.endOfStream": "数据流终止", "disconnect.exceeded_packet_rate": "由于超出封包速率限制而被踢出游戏", "disconnect.genericReason": "%s", - "disconnect.kicked": "您已被踹出游戏", + "disconnect.ignoring_status_request": "忽略状态请求", + "disconnect.kicked": "你已被踹出游戏", "disconnect.loginFailed": "登入失败", "disconnect.loginFailedInfo": "登入失败:%s", "disconnect.loginFailedInfo.insufficientPrivileges": "多人游戏已被禁用,请检查你的Macrohard账户设置。", "disconnect.loginFailedInfo.invalidSession": "登录失效了!给老子退出游戏!(要是坚信你家窄带没问题,找腐竹,“He will fix it.”)", "disconnect.loginFailedInfo.serversUnavailable": "你还没有实名制,不能进入游戏。", + "disconnect.loginFailedInfo.userBanned": "你已被禁止进行多人游戏", "disconnect.lost": "你把连接丢掉了!", "disconnect.overflow": "缓冲区溢出", + "disconnect.packetError": "网络协议错误", "disconnect.quitting": "怒退", "disconnect.spam": "由于b话太多而被踢出游戏", - "disconnect.timeout": "连接超时", + "disconnect.timeout": "前面的区域,以后再来探索吧", + "disconnect.transfer": "已转移至另一个服务器", "disconnect.unknownHost": "未知的主机", + "download.pack.failed": "有%s个包下载失败,共%s个包", + "download.pack.progress.bytes": "进度:%s(总大小未知)", + "download.pack.progress.percent": "进度:%s%%", + "download.pack.title": "正在下载资源包%s/%s", "editGamerule.default": "默认:%s", "editGamerule.title": "编辑游戏规则", - "effect.effectNotFound": "未知的buff:%s", - "effect.minecraft.absorption": "肉", + "effect.duration.infinite": "∞", + "effect.minecraft.absorption": "肉盾", "effect.minecraft.bad_omen": "凶兆", "effect.minecraft.blindness": "目害了", "effect.minecraft.conduit_power": "超勇能量", + "effect.minecraft.darkness": "谁关灯了", "effect.minecraft.dolphins_grace": "游泳健将", "effect.minecraft.fire_resistance": "赴汤蹈火", "effect.minecraft.glowing": "电灯泡", @@ -2794,7 +3215,8 @@ "effect.minecraft.health_boost": "打鸡血", "effect.minecraft.hero_of_the_village": "村之希望", "effect.minecraft.hunger": "好饿好饿", - "effect.minecraft.instant_damage": "瞬间爆炸", + "effect.minecraft.infested": "蚁蚁蚀", + "effect.minecraft.instant_damage": "瞬间去世", "effect.minecraft.instant_health": "瞬间鸡血", "effect.minecraft.invisibility": "透 明 人", "effect.minecraft.jump_boost": "duang duang duang", @@ -2803,21 +3225,26 @@ "effect.minecraft.mining_fatigue": "懒癌", "effect.minecraft.nausea": "D区", "effect.minecraft.night_vision": "火眼金睛", + "effect.minecraft.oozing": "污液蚀", "effect.minecraft.poison": "有毒", + "effect.minecraft.raid_omen": "袭凶", "effect.minecraft.regeneration": "持续鸡血", - "effect.minecraft.resistance": "铁 幕 装 置", + "effect.minecraft.resistance": "动 能 屏 障", "effect.minecraft.saturation": "饱了", "effect.minecraft.slow_falling": "慢慢飞", "effect.minecraft.slowness": "龟速", "effect.minecraft.speed": "Plash Speed", "effect.minecraft.strength": "Powup333的祝福", + "effect.minecraft.trial_omen": "试用版凶兆", "effect.minecraft.unluck": "非气", "effect.minecraft.water_breathing": "肺积水", "effect.minecraft.weakness": "肾虚", + "effect.minecraft.weaving": "拔丝", + "effect.minecraft.wind_charged": "胀气", "effect.minecraft.wither": "死神来了", "effect.none": "无buff", "enchantment.level.1": "sin²θ+cos²θ", - "enchantment.level.10": "1²+3²", + "enchantment.level.10": "A₁₆", "enchantment.level.2": "ln §oe§r²", "enchantment.level.3": "[π]", "enchantment.level.4": "2²", @@ -2827,10 +3254,12 @@ "enchantment.level.8": "2³", "enchantment.level.9": "3²", "enchantment.minecraft.aqua_affinity": "水下搞快点", - "enchantment.minecraft.bane_of_arthropods": "节肢杀手", + "enchantment.minecraft.bane_of_arthropods": "虫豸杀手", "enchantment.minecraft.binding_curse": "脱不下来", "enchantment.minecraft.blast_protection": "炸裂保护", + "enchantment.minecraft.breach": "削击珠", "enchantment.minecraft.channeling": "杨氏电疗", + "enchantment.minecraft.density": "气刃斩", "enchantment.minecraft.depth_strider": "深海搞事者", "enchantment.minecraft.efficiency": "搞快点", "enchantment.minecraft.feather_falling": "轻飘飘", @@ -2843,7 +3272,7 @@ "enchantment.minecraft.infinity": "∞", "enchantment.minecraft.knockback": "鸡腿", "enchantment.minecraft.looting": "拿来吧你", - "enchantment.minecraft.loyalty": "回来吧", + "enchantment.minecraft.loyalty": "回来吧你", "enchantment.minecraft.luck_of_the_sea": "海神祝福", "enchantment.minecraft.lure": "钓弯饵甜", "enchantment.minecraft.mending": "正在治愈", @@ -2853,31 +3282,41 @@ "enchantment.minecraft.projectile_protection": "弹射物保护", "enchantment.minecraft.protection": "保护", "enchantment.minecraft.punch": "冲击", - "enchantment.minecraft.quick_charge": "快速冲锋", + "enchantment.minecraft.quick_charge": "冲冲冲冲冲锋", "enchantment.minecraft.respiration": "外置鱼鳃", "enchantment.minecraft.riptide": "水中逮虾户", "enchantment.minecraft.sharpness": "磨 刀 石", "enchantment.minecraft.silk_touch": "丝绸之触", - "enchantment.minecraft.smite": "亡灵杀手", + "enchantment.minecraft.smite": "诸神之战®", "enchantment.minecraft.soul_speed": "灵逸", "enchantment.minecraft.sweeping": "破碎之刃", + "enchantment.minecraft.sweeping_edge": "破碎之刃", + "enchantment.minecraft.swift_sneak": "迅捷偷偷摸摸", "enchantment.minecraft.thorns": "扎心", "enchantment.minecraft.unbreaking": "续命", - "enchantment.minecraft.vanishing_curse": "拜拜了您嘞", - "enchantment.unknown": "未知的膜法:%s", + "enchantment.minecraft.vanishing_curse": "拜拜了你嘞", + "enchantment.minecraft.wind_burst": "爆弹桶", + "entity.minecraft.allay": "小安粒", "entity.minecraft.area_effect_cloud": "区域buff云", - "entity.minecraft.armor_stand": "真•工具人", - "entity.minecraft.arrow": "指针", + "entity.minecraft.armadillo": "犰狳", + "entity.minecraft.armor_stand": "真·工具人", + "entity.minecraft.arrow": "箭", "entity.minecraft.axolotl": "六角恐龙", - "entity.minecraft.bat": "蝙蝠", + "entity.minecraft.bat": "棒球棍", "entity.minecraft.bee": "蜂子", - "entity.minecraft.blaze": "棒子人", - "entity.minecraft.boat": "《明日方舟》", + "entity.minecraft.blaze": "火棒子人", + "entity.minecraft.block_display": "方块展示", + "entity.minecraft.boat": "明日方舟®", + "entity.minecraft.bogged": "池沼骷髅", + "entity.minecraft.breeze": "风棒子人", + "entity.minecraft.breeze_wind_charge": "风弹", + "entity.minecraft.camel": "骆驼", "entity.minecraft.cat": "喵喵", - "entity.minecraft.cave_spider": "洞穴蜘蛛", + "entity.minecraft.cave_spider": "洞穴失败的", + "entity.minecraft.chest_boat": "带胸部的明日方舟®", "entity.minecraft.chest_minecart": "带胸部的《我的世界》", "entity.minecraft.chicken": "这是鸡还是鸭?", - "entity.minecraft.cod": "生鲜鳕鱼", + "entity.minecraft.cod": "生鲜使命召唤®", "entity.minecraft.command_block_minecart": "带滥权块的《我的世界》", "entity.minecraft.cow": "牛", "entity.minecraft.creeper": "爪巴者", @@ -2886,51 +3325,56 @@ "entity.minecraft.dragon_fireball": "龙(nóng)痰弹", "entity.minecraft.drowned": "水猴子", "entity.minecraft.egg": "掷出的鸡蛋", - "entity.minecraft.elder_guardian": "远古痞老板", - "entity.minecraft.end_crystal": "末影水晶", + "entity.minecraft.elder_guardian": "痞老板的爷爷", + "entity.minecraft.end_crystal": "终端水晶", "entity.minecraft.ender_dragon": "昆图库塔卡提考特苏瓦西拉松", - "entity.minecraft.ender_pearl": "掷出的末影珍珠", + "entity.minecraft.ender_pearl": "掷出的小黑珍珠", "entity.minecraft.enderman": "小黑", - "entity.minecraft.endermite": "末影螨", - "entity.minecraft.evoker": "唤魔者", - "entity.minecraft.evoker_fangs": "唤魔者的大夹子", + "entity.minecraft.endermite": "紫色蠢虫", + "entity.minecraft.evoker": "招魂师", + "entity.minecraft.evoker_fangs": "招魂师的大夹子", "entity.minecraft.experience_bottle": "掷出的覆膜之瓶", - "entity.minecraft.experience_orb": "经验球", + "entity.minecraft.experience_orb": "xp球", "entity.minecraft.eye_of_ender": "小黑眼", "entity.minecraft.falling_block": "匀速下降的方块", - "entity.minecraft.fireball": "火球", + "entity.minecraft.falling_block_type": "下落的%s", + "entity.minecraft.fireball": "发热宝", "entity.minecraft.firework_rocket": "窜天猴", "entity.minecraft.fishing_bobber": "浮漂", - "entity.minecraft.fox": "狐狸", + "entity.minecraft.fox": "福克斯", + "entity.minecraft.frog": "蛙", "entity.minecraft.furnace_minecart": "带炉子的《我的世界》", "entity.minecraft.ghast": "地狱轰炸机", "entity.minecraft.giant": "大型姜丝", "entity.minecraft.glow_item_frame": "发光的木板做的物品炫耀框", - "entity.minecraft.glow_squid": "并没有移动光源的珊瑚感染八爪鱼", - "entity.minecraft.goat": "山羊", + "entity.minecraft.glow_squid": "并没有移动光源的珊瑚感染夺心魔", + "entity.minecraft.goat": "大角羊", "entity.minecraft.guardian": "痞老板", "entity.minecraft.hoglin": "嚎猪兽", "entity.minecraft.hopper_minecart": "带H O P的《我的世界》", "entity.minecraft.horse": "马", - "entity.minecraft.husk": "尸壳", + "entity.minecraft.husk": "木乃伊", "entity.minecraft.illusioner": "影流之主", + "entity.minecraft.interaction": "Taptap®", "entity.minecraft.iron_golem": "铁憨憨", "entity.minecraft.item": "物品", + "entity.minecraft.item_display": "物品展示", "entity.minecraft.item_frame": "物品炫耀框", - "entity.minecraft.killer_bunny": "杀手兔", - "entity.minecraft.leash_knot": "拴绳结", - "entity.minecraft.lightning_bolt": "ElectroBOOM快乐束", + "entity.minecraft.killer_bunny": "咬人的兔崽子", + "entity.minecraft.leash_knot": "绳结", + "entity.minecraft.lightning_bolt": "Adobe Flash®", "entity.minecraft.llama": "草泥马", "entity.minecraft.llama_spit": "草泥马的口水", "entity.minecraft.magma_cube": "岩浆萌王", "entity.minecraft.marker": "马克笔(确信)", "entity.minecraft.minecart": "《我的世界》", - "entity.minecraft.mooshroom": "哞菇", + "entity.minecraft.mooshroom": "叉剋", "entity.minecraft.mule": "骡", "entity.minecraft.ocelot": "豹猫", - "entity.minecraft.painting": "世 界 名 画.kif", + "entity.minecraft.ominous_item_spawner": "阿米诺斯物体生成器", + "entity.minecraft.painting": "世 界 名 画", "entity.minecraft.panda": "滚滚", - "entity.minecraft.parrot": "咕咕咕", + "entity.minecraft.parrot": "咕咕", "entity.minecraft.phantom": "IcyPhantom", "entity.minecraft.pig": "猪", "entity.minecraft.piglin": "猪刚鬣", @@ -2948,17 +3392,20 @@ "entity.minecraft.shulker_bullet": "潜影贝导弹", "entity.minecraft.silverfish": "蠢虫", "entity.minecraft.skeleton": "小白", - "entity.minecraft.skeleton_horse": "骷髅马", + "entity.minecraft.skeleton_horse": "白髅马", "entity.minecraft.slime": "萌王", - "entity.minecraft.small_fireball": "小火球", - "entity.minecraft.snow_golem": "雪傀儡", + "entity.minecraft.small_fireball": "小发热宝", + "entity.minecraft.sniffer": "嗅嗅", + "entity.minecraft.snow_golem": "雪人", "entity.minecraft.snowball": "雪球", - "entity.minecraft.spawner_minecart": "带生成器的《我的世界》", + "entity.minecraft.spawner_minecart": "带产卵器的《我的世界》", "entity.minecraft.spectral_arrow": "Lxazl5770", - "entity.minecraft.spider": "蜘蛛", - "entity.minecraft.squid": "八爪鱼", - "entity.minecraft.stray": "流髑", + "entity.minecraft.spider": "失败的", + "entity.minecraft.squid": "夺心魔", + "entity.minecraft.stray": "冷冻骷髅", "entity.minecraft.strider": "炫迈兽", + "entity.minecraft.tadpole": "蝌蚪", + "entity.minecraft.text_display": "文本展示", "entity.minecraft.tnt": "被激活的大伊万", "entity.minecraft.tnt_minecart": "带大伊万的《我的世界》", "entity.minecraft.trader_llama": "行商草泥马", @@ -2981,7 +3428,7 @@ "entity.minecraft.tropical_fish.predefined.21": "黄刺尾鲷", "entity.minecraft.tropical_fish.predefined.3": "蝴蝶鱼", "entity.minecraft.tropical_fish.predefined.4": "丽鱼", - "entity.minecraft.tropical_fish.predefined.5": "小鱼君 · 本色出演", + "entity.minecraft.tropical_fish.predefined.5": "小鱼君·本色出演", "entity.minecraft.tropical_fish.predefined.6": "五彩搏鱼", "entity.minecraft.tropical_fish.predefined.7": "绣雀鲷", "entity.minecraft.tropical_fish.predefined.8": "川纹笛鲷", @@ -2998,11 +3445,11 @@ "entity.minecraft.tropical_fish.type.spotty": "多斑类", "entity.minecraft.tropical_fish.type.stripey": "条纹类", "entity.minecraft.tropical_fish.type.sunstreak": "日纹类", - "entity.minecraft.turtle": "王八", + "entity.minecraft.turtle": "兲", "entity.minecraft.vex": "猥傀", "entity.minecraft.villager": "奸商", "entity.minecraft.villager.armorer": "盔甲匠", - "entity.minecraft.villager.butcher": "屠夫", + "entity.minecraft.villager.butcher": "催逝员", "entity.minecraft.villager.cartographer": "制图机器人", "entity.minecraft.villager.cleric": "神职人员", "entity.minecraft.villager.farmer": "龙鸣", @@ -3010,131 +3457,329 @@ "entity.minecraft.villager.fletcher": "箭人", "entity.minecraft.villager.leatherworker": "黄鹤", "entity.minecraft.villager.librarian": "茵蒂克丝", - "entity.minecraft.villager.mason": "石匠", - "entity.minecraft.villager.nitwit": "憨憨", - "entity.minecraft.villager.none": "村民", + "entity.minecraft.villager.mason": "打灰人", + "entity.minecraft.villager.nitwit": "笨瓜", + "entity.minecraft.villager.none": "奸商", "entity.minecraft.villager.shepherd": "放羊娃", "entity.minecraft.villager.toolsmith": "工 具 人", "entity.minecraft.villager.weaponsmith": "军火商", - "entity.minecraft.vindicator": "卫道士", + "entity.minecraft.vindicator": "辩护者", "entity.minecraft.wandering_trader": "流浪奸商", - "entity.minecraft.witch": "女巫", + "entity.minecraft.warden": "傻大个", + "entity.minecraft.wind_charge": "风弹", + "entity.minecraft.witch": "巫婆", "entity.minecraft.wither": "凋零怪", "entity.minecraft.wither_skeleton": "凋零骷髅", "entity.minecraft.wither_skull": "凋零怪之首", - "entity.minecraft.wolf": "HLDoramon", + "entity.minecraft.wolf": "HLDoroWolf", "entity.minecraft.zoglin": "死猪兽", "entity.minecraft.zombie": "姜丝", "entity.minecraft.zombie_horse": "姜丝马", - "entity.minecraft.zombie_villager": "姜丝村民", + "entity.minecraft.zombie_villager": "姜丝奸商", "entity.minecraft.zombified_piglin": "僵硬的猪刚鬣", - "entity.notFound": "未知的实体:%s", + "entity.not_summonable": "无法传唤类型为%s的实体", "event.minecraft.raid": "鬼子进村", - "event.minecraft.raid.defeat": "失败", + "event.minecraft.raid.defeat": "寄!", + "event.minecraft.raid.defeat.full": "寄完了! - 奸商一个不剩,也可能是你打太慢了", "event.minecraft.raid.raiders_remaining": "剩余%s名鬼子", - "event.minecraft.raid.victory": "胜利", + "event.minecraft.raid.victory": "赢!", + "event.minecraft.raid.victory.full": "赢麻了! - 鬼子一个不剩了", "filled_map.buried_treasure": "藏宝图", + "filled_map.explorer_jungle": "雨林旅游指南", + "filled_map.explorer_swamp": "池沼旅游指南", "filled_map.id": "编号#%s", "filled_map.level": "(等级 %s/%s)", "filled_map.locked": "已锁定", "filled_map.mansion": "SkyEye_FAST", - "filled_map.monument": "海之霸餐厅地图附用餐券", + "filled_map.monument": "海之霸餐厅附用餐券", "filled_map.scale": "比例:%s", - "filled_map.unknown": "未知映射", - "gameMode.adventure": "冒险模式", + "filled_map.trial_chambers": "试用大厅旅游指南", + "filled_map.unknown": "请打开定位功能", + "filled_map.village_desert": "沙子漠奸商聚集地宰客指南", + "filled_map.village_plains": "一 马 平 川的奸商聚集地宰客指南", + "filled_map.village_savanna": "萨瓦纳奸商聚集地宰客指南", + "filled_map.village_snowy": "北国奸商聚集地宰客指南", + "filled_map.village_taiga": "针叶林奸商聚集地宰客指南", + "flat_world_preset.minecraft.bottomless_pit": "无底深渊", + "flat_world_preset.minecraft.classic_flat": "经典平坦", + "flat_world_preset.minecraft.desert": "沙子漠", + "flat_world_preset.minecraft.overworld": "上面的世界", + "flat_world_preset.minecraft.redstone_ready": "雷石东俱备", + "flat_world_preset.minecraft.snowy_kingdom": "北国风光", + "flat_world_preset.minecraft.the_void": "虚无世界", + "flat_world_preset.minecraft.tunnelers_dream": "家里有矿!", + "flat_world_preset.minecraft.water_world": "贴吧世界", + "flat_world_preset.unknown": "???", + "gameMode.adventure": "干瞪眼模式", "gameMode.changed": "你的游戏模式已被更新为%s", "gameMode.creative": "上帝模式", "gameMode.hardcore": "硬核模式!", - "gameMode.spectator": "孤魂野鬼模式", - "gameMode.survival": "生存模式", + "gameMode.spectator": "游魂模式", + "gameMode.survival": "活下去模式", "gamerule.announceAdvancements": "向全世界大声宣布你的进步", + "gamerule.blockExplosionDropDecay": "减少方块BOOM!后留下的掉落物", + "gamerule.blockExplosionDropDecay.description": "在方块交互并BOOM!后,一些方块不会掉落战利品", "gamerule.category.chat": "唠嗑", - "gamerule.category.drops": "Linus", + "gamerule.category.drops": "D R O P", "gamerule.category.misc": "乱七八糟的东西", "gamerule.category.mobs": "暴徒", "gamerule.category.player": "玩家", "gamerule.category.spawning": "产卵", "gamerule.category.updates": "世界更新", "gamerule.commandBlockOutput": "向世界大声告诉命令方块输出", + "gamerule.commandModificationBlockLimit": "命令修改方块数量限制", + "gamerule.commandModificationBlockLimit.description": "单条命令(如fill和clone)最多能更改的方块数量", "gamerule.disableElytraMovementCheck": "禁用鞘翅滥权检测", "gamerule.disableRaids": "阻止鬼子进村", "gamerule.doDaylightCycle": "光阴似箭,日月如梭,或者身处日不落帝国", "gamerule.doEntityDrops": "掉落实体装备", - "gamerule.doEntityDrops.description": "控制《我的世界》(包括物品栏)、物品炫耀框、方舟等的掉落物", + "gamerule.doEntityDrops.description": "控制《我的世界》(包括库存)、物品炫耀框、明日方舟®等的掉落物", "gamerule.doFireTick": "星星之火可以燎原", "gamerule.doImmediateRespawn": "立即死去活来", "gamerule.doInsomnia": "生成IcyPhantom", "gamerule.doLimitedCrafting": "合成需要食谱", "gamerule.doLimitedCrafting.description": "若启用,玩家只能使用已解锁的食谱合成", "gamerule.doMobLoot": "掉落暴徒战利品", - "gamerule.doMobLoot.description": "控制暴徒死亡后是否掉落资源,包括经验球", + "gamerule.doMobLoot.description": "控制暴徒死亡后是否掉落资源,包括xp球", "gamerule.doMobSpawning": "生成暴徒", "gamerule.doMobSpawning.description": "一些实体可能有独立的规则", "gamerule.doPatrolSpawning": "鬼子扫荡", - "gamerule.doTileDrops": "方块掉落", - "gamerule.doTileDrops.description": "控制破坏方块后是否掉落资源,包括经验球", + "gamerule.doTileDrops": "方块DROP", + "gamerule.doTileDrops.description": "控制方块dead后是否drop资源,包括xp球", "gamerule.doTraderSpawning": "生成流浪奸商", + "gamerule.doVinesSpread": "藤蔓蔓延", + "gamerule.doVinesSpread.description": "控制藤蔓方块是否会随机向相邻的方块蔓延。不会影响其他藤蔓类方块(例如呜呜藤和通天藤等)。", + "gamerule.doWardenSpawning": "生成傻大个", "gamerule.doWeatherCycle": "风云变幻", "gamerule.drowningDamage": "旱鸭子伤害", + "gamerule.enderPearlsVanishOnDeath": "掷出的末影珍珠在死亡时消失", + "gamerule.enderPearlsVanishOnDeath.description": "玩家投掷的末影珍珠是否在玩家死亡时消失。", + "gamerule.entitiesWithPassengersCanUsePortals": "被骑乘的实体能否访问门户", + "gamerule.entitiesWithPassengersCanUsePortals.description": "允许被骑乘的实体通过尼德兰门户、终端门户和终端网关传送。", "gamerule.fallDamage": "断腿伤害", "gamerule.fireDamage": "红烧肉伤害", "gamerule.forgiveDeadPlayers": "原谅死者", "gamerule.forgiveDeadPlayers.description": "愤怒的中立型暴徒将在其目标玩家于附近死亡后恢复中立状态。", "gamerule.freezeDamage": "冰冻伤害", - "gamerule.keepInventory": "白给后保留物品栏", + "gamerule.globalSoundEvents": "全局声音事件", + "gamerule.globalSoundEvents.description": "特定游戏事件(如老板生成)发生时,声音可在所有地方听见。", + "gamerule.keepInventory": "白给后保留库存", + "gamerule.lavaSourceConversion": "无限熔岩", + "gamerule.lavaSourceConversion.description": "熔岩+熔岩=∞熔岩", "gamerule.logAdminCommands": "向世界大声告诉管理员滥权命令", "gamerule.maxCommandChainLength": "命令铁 索 连 环执行数量限制", "gamerule.maxCommandChainLength.description": "应用于命令方块铁 索 连 环执行和函数", - "gamerule.maxEntityCramming": "实体挤压上限", + "gamerule.maxCommandForkCount": "命令上下文数量限制", + "gamerule.maxCommandForkCount.description": "“execute as”等命令可以使用的上下文数量最大值。", + "gamerule.maxEntityCramming": "实体贴贴上限", + "gamerule.mobExplosionDropDecay": "减少暴徒爆炸产生的掉落物", + "gamerule.mobExplosionDropDecay.description": "在暴徒交互爆炸中,一些方块不会掉落战利品", "gamerule.mobGriefing": "允许暴徒搞破坏", "gamerule.naturalRegeneration": "自动回血", + "gamerule.playersNetherPortalCreativeDelay": "创造模式下玩家在下界传送门中等待的时间", + "gamerule.playersNetherPortalCreativeDelay.description": "创造模式下的玩家通过下界传送门前往其他维度前需要站在其中等待的时间(以刻为单位)。", + "gamerule.playersNetherPortalDefaultDelay": "非创造模式下玩家在下界传送门中等待的时间", + "gamerule.playersNetherPortalDefaultDelay.description": "非创造模式下的玩家通过下界传送门前往其他维度前需要站在其中等待的时间(以刻为单位)。", "gamerule.playersSleepingPercentage": "阻止修仙占比", "gamerule.playersSleepingPercentage.description": "使全体玩家不能修仙所需玩家的占比", + "gamerule.projectilesCanBreakBlocks": "弹射物能否破坏方块", + "gamerule.projectilesCanBreakBlocks.description": "控制弹射物是否能破坏可被其破坏的方块。", "gamerule.randomTickSpeed": "随机刻速率", "gamerule.reducedDebugInfo": "简化调试信息", "gamerule.reducedDebugInfo.description": "把F3里的玩意简化到除了电脑信息啥也不剩", "gamerule.sendCommandFeedback": "发送命令反馈", "gamerule.showDeathMessages": "显示白给消息", + "gamerule.snowAccumulationHeight": "积雪厚度", + "gamerule.snowAccumulationHeight.description": "决定当前世界在南方还是在北方。", + "gamerule.spawnChunkRadius": "出生区块半径", + "gamerule.spawnChunkRadius.description": "主世界死去活来点周围保持加载的区块数量。", "gamerule.spawnRadius": "死去活来点半径", + "gamerule.spawnRadius.description": "控制适合玩家生成的死去活来点周围区域大小。", "gamerule.spectatorsGenerateChunks": "允许游魂生成地形", + "gamerule.tntExplosionDropDecay": "减少大伊万爆炸产生的掉落物", + "gamerule.tntExplosionDropDecay.description": "在大伊万交互爆炸中,一些方块不会掉落战利品", "gamerule.universalAnger": "无 能 狂 怒", "gamerule.universalAnger.description": "愤怒的中立型暴徒将攻击附近的所有玩家,而不限于激怒它们的玩家。推荐禁用“原谅死者”以达到最佳buff。", - "generator.amplified": "膨化世界", + "gamerule.waterSourceConversion": "无限水", + "gamerule.waterSourceConversion.description": "水+水=∞水", "generator.custom": "自定义", - "generator.customized": "自定义", - "generator.debug_all_block_states": "调试模式", - "generator.default": "默认", - "generator.flat": "平 淡 的", - "generator.large_biomes": "巨型生物群系", + "generator.customized": "旧自定义", + "generator.minecraft.amplified": "膨化世界", + "generator.minecraft.amplified.info": "注意:仅图一乐,推荐的配置是i9 10900K加RTX 3090。", + "generator.minecraft.debug_all_block_states": "调试模式", + "generator.minecraft.flat": "平 淡 的", + "generator.minecraft.large_biomes": "巨型生物群系", + "generator.minecraft.normal": "默认", + "generator.minecraft.single_biome_surface": "单一生物群系", "generator.single_biome_caves": "洞穴", "generator.single_biome_floating_islands": "浮岛", - "generator.single_biome_surface": "单一生物群系", + "gui.abuseReport.attestation": "提交此举报,即代表你确认你提供的信息已尽可能准确和完整。", + "gui.abuseReport.comments": "小作文", + "gui.abuseReport.describe": "提供小作文可以帮助我们更严谨地做出决定。", + "gui.abuseReport.discard.content": "如果离开,该菊♂爆及小作文将不会被保留。\n确定要离开吗?", + "gui.abuseReport.discard.discard": "怂,放弃菊♂爆", + "gui.abuseReport.discard.draft": "保存为草稿", + "gui.abuseReport.discard.return": "继续编辑", + "gui.abuseReport.discard.title": "你要放弃菊♂爆并写小作文吗?", + "gui.abuseReport.draft.content": "继续编辑现有菊♂爆还是放弃并新建另一份菊♂爆?", + "gui.abuseReport.draft.discard": "怂", + "gui.abuseReport.draft.edit": "继续编辑", + "gui.abuseReport.draft.quittotitle.content": "继续编辑还是放弃?", + "gui.abuseReport.draft.quittotitle.title": "这份菊♂爆草稿将在退出时丢失", + "gui.abuseReport.draft.title": "编辑菊♂爆草稿?", + "gui.abuseReport.error.title": "发送菊♂爆时出现问题", + "gui.abuseReport.message": "你在哪里观察到了不良行为?\n这有助于我们调查你的案例。", + "gui.abuseReport.more_comments": "请描述发生的状况:", + "gui.abuseReport.name.reporting": "菊♂爆“%s”中。", + "gui.abuseReport.name.title": "菊♂爆玩家的姓名牌", + "gui.abuseReport.observed_what": "干啥子要菊♂爆哟?", + "gui.abuseReport.read_info": "了解菊♂爆功能", + "gui.abuseReport.reason.alcohol_tobacco_drugs": "吸毒或饮酒", + "gui.abuseReport.reason.alcohol_tobacco_drugs.description": "有人教唆他人涉毒或教唆未成年人吸烟饮酒。", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse": "炼铜", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description": "有人谈论或以其他方式宣扬涉及儿童的不当行为。", + "gui.abuseReport.reason.defamation_impersonation_false_information": "诽谤、冒充他人或散布虚假信息", + "gui.abuseReport.reason.defamation_impersonation_false_information.description": "有人以利用或误导他人为目的,损害他人名誉、冒充他人或散布虚假信息。", + "gui.abuseReport.reason.description": "描述:", + "gui.abuseReport.reason.false_reporting": "不实菊♂爆", + "gui.abuseReport.reason.generic": "俺就是要菊♂爆", + "gui.abuseReport.reason.generic.description": "俺瞅介龟孙贼不爽老久哩。", + "gui.abuseReport.reason.harassment_or_bullying": "开盒", + "gui.abuseReport.reason.harassment_or_bullying.description": "有人羞辱、攻击、霸凌你或其他人。这包括在未经允许的情况下不断尝试联系你或其他人,或发布你或其他人的隐私信息。", + "gui.abuseReport.reason.hate_speech": "仇恨言论", + "gui.abuseReport.reason.hate_speech.description": "有人因身份认同(宗教信仰、种族或性取向)攻击你或其他玩家。", + "gui.abuseReport.reason.imminent_harm": "即将发生的伤害行为 — 真人快打", + "gui.abuseReport.reason.imminent_harm.description": "有人威胁要在现实生活中伤害你或其他人。", + "gui.abuseReport.reason.narration": "%s:%s", + "gui.abuseReport.reason.non_consensual_intimate_imagery": "未经同意发布私密图像", + "gui.abuseReport.reason.non_consensual_intimate_imagery.description": "有人谈论、分享私密或亲密的图像,或以其他方式宣扬有关行为。", + "gui.abuseReport.reason.self_harm_or_suicide": "即将发生的伤害行为 — 自残或自杀", + "gui.abuseReport.reason.self_harm_or_suicide.description": "有人威胁要自残或谈论现实生活中的自残行为。", + "gui.abuseReport.reason.terrorism_or_violent_extremism": "恐怖主义或暴力极端主义", + "gui.abuseReport.reason.terrorism_or_violent_extremism.description": "有人因政治、宗教、意识形态或其他原因,谈论、宣扬、威胁实施恐怖主义或极端暴力行为。", + "gui.abuseReport.reason.title": "你为啥子要菊♂爆", + "gui.abuseReport.report_sent_msg": "我们已经成功收到你的菊♂爆。非常感谢!\n\n我们的团队将尽~快~进行审核。", + "gui.abuseReport.select_reason": "你为啥子要菊♂爆", + "gui.abuseReport.send": "发送菊♂爆", + "gui.abuseReport.send.comment_too_long": "小作文太长了", + "gui.abuseReport.send.error_message": "发送菊♂爆时返回了错误:\n“%s”", + "gui.abuseReport.send.generic_error": "发送菊♂爆时遇到意外错误。", + "gui.abuseReport.send.http_error": "发送菊♂爆时发生了意外的HTTP错误。", + "gui.abuseReport.send.json_error": "发送菊♂爆时遇到了格式错误的负载。", + "gui.abuseReport.send.no_reason": "请选择菊♂爆类型", + "gui.abuseReport.send.not_attested": "请先阅读上方文本并勾选复选框后,再发送举报", + "gui.abuseReport.send.service_unavailable": "无法使用“菊♂爆滥用”服务。请检查是否已联网,然后重试。", + "gui.abuseReport.sending.title": "菊♂爆中...", + "gui.abuseReport.sent.title": "已菊♂爆", + "gui.abuseReport.skin.title": "对玩家画皮进行菊♂爆", + "gui.abuseReport.title": "菊♂爆", + "gui.abuseReport.type.chat": "彼/彼女の唠嗑内容", + "gui.abuseReport.type.name": "彼/彼女の姓名牌", + "gui.abuseReport.type.skin": "彼/彼女の画皮", + "gui.acknowledge": "焯!", "gui.advancements": "进步", "gui.all": "全部", - "gui.back": "返回", + "gui.back": "退后", + "gui.banned.description": "%s\n\n%s\n\n点击以下链接了解更多:%s", + "gui.banned.description.permanent": "你的账户已被喂龙,无法进行多人游戏或加入领域。", + "gui.banned.description.reason": "我们最近收到菊♂爆称你的账户被用来搞事。我们的监督员已审核你的案件并将其认定为%s,这违反了Minecraft社区准则。", + "gui.banned.description.reason_id": "代码:%s", + "gui.banned.description.reason_id_message": "代码:%s - %s", + "gui.banned.description.temporary": "%s期限结束前,你无法进行在线游戏或加入领域。", + "gui.banned.description.temporary.duration": "你的账户已被暂时封禁并将于%s后解封。", + "gui.banned.description.unknownreason": "我们最近收到菊♂爆称你的账户被用来搞事。我们的监督员已审核你的案件并认定你违反了Minecraft社区准则。", + "gui.banned.name.description": "你当前的名称(“%s”)违反了我们的社区准则。你可以进行单人游戏,但需要更改名称才能进行在线游戏。\n\n通过以下链接了解更多或提交案件审查:%s", + "gui.banned.name.title": "多人游戏中不允许使用当前名称", + "gui.banned.reason.defamation_impersonation_false_information": "假冒或分享信息以利用或误导他人", + "gui.banned.reason.drugs": "推销非法药品", + "gui.banned.reason.extreme_violence_or_gore": "描述现实生活中过度暴力或血腥的场面", + "gui.banned.reason.false_reporting": "过多虚假或不实菊♂爆", + "gui.banned.reason.fraud": "欺骗性获取或使用内容", + "gui.banned.reason.generic_violation": "违反社区准则", + "gui.banned.reason.harassment_or_bullying": "有针对性地、有害地使用辱骂性语言", + "gui.banned.reason.hate_speech": "仇恨或歧视言论", + "gui.banned.reason.hate_terrorism_notorious_figure": "推广仇恨群体、恐怖组织或不法分子", + "gui.banned.reason.imminent_harm_to_person_or_property": "意图在现实生活中造成人身或财产伤害", + "gui.banned.reason.nudity_or_pornography": "展示淫秽或色情材料", + "gui.banned.reason.sexually_inappropriate": "性相关话题或内容", + "gui.banned.reason.spam_or_advertising": "垃圾消息或广告宣传", + "gui.banned.skin.description": "你当前的皮肤违反了我们的社区准则。你仍然可以使用默认皮肤,或者选择新皮肤进行游戏。\n\n通过以下链接了解更多或提交案件审查:%s", + "gui.banned.skin.title": "当前皮肤不允许使用", + "gui.banned.title.permanent": "账户已被喂龙", + "gui.banned.title.temporary": "账户已被暂时封禁", "gui.cancel": "算了", + "gui.chatReport.comments": "小作文", + "gui.chatReport.describe": "提供小作文可以帮助我们更严谨地做出决定。", + "gui.chatReport.discard.content": "如果离开,该菊♂爆及小作文将不会被保留。\n确定要离开吗?", + "gui.chatReport.discard.discard": "离开并放弃菊♂爆", + "gui.chatReport.discard.draft": "保存为草稿", + "gui.chatReport.discard.return": "继续编辑", + "gui.chatReport.discard.title": "放弃菊♂爆和小作文?", + "gui.chatReport.draft.content": "继续编辑现有菊♂爆还是放弃并新建另一份菊♂爆?", + "gui.chatReport.draft.discard": "放弃", + "gui.chatReport.draft.edit": "继续编辑", + "gui.chatReport.draft.quittotitle.content": "继续编辑还是放弃?", + "gui.chatReport.draft.quittotitle.title": "你有一份菊♂爆草稿将在退出时丢失", + "gui.chatReport.draft.title": "编辑菊♂爆草稿?", + "gui.chatReport.more_comments": "请描述发生的状况:", + "gui.chatReport.observed_what": "你为什么要菊♂爆?", + "gui.chatReport.read_info": "了解菊♂爆功能", + "gui.chatReport.report_sent_msg": "我们已经成功收到你的菊♂爆。非常感谢!\n\n我们的团队将尽快进行审核。", + "gui.chatReport.select_chat": "选择要菊♂爆的唠嗑消息", + "gui.chatReport.select_reason": "选择菊♂爆类型", + "gui.chatReport.selected_chat": "已选择%s条要菊♂爆的唠嗑消息", + "gui.chatReport.send": "发送菊♂爆", + "gui.chatReport.send.comments_too_long": "小作文字数太多了", + "gui.chatReport.send.no_reason": "请选择菊♂爆类型", + "gui.chatReport.send.no_reported_messages": "请选择至少一条要菊♂爆的唠嗑消息", + "gui.chatReport.send.too_many_messages": "菊♂爆的消息太多了", + "gui.chatReport.title": "菊♂爆唠嗑", + "gui.chatSelection.context": "所选唠嗑前后的部分消息将会用于提供额外的辅助信息", + "gui.chatSelection.fold": "已隐藏%s条消息", + "gui.chatSelection.heading": "%s %s", + "gui.chatSelection.join": "%s加入了唠嗑", + "gui.chatSelection.message.narrate": "%1$s在%3$s说:%2$s", + "gui.chatSelection.selected": "已选中%s条消息,共%s条", + "gui.chatSelection.title": "选择要菊♂爆的聊天消息", + "gui.continue": "继续", + "gui.copy_link_to_clipboard": "复制链接到剪贴板", + "gui.days": "%s天", "gui.done": "我好了", "gui.down": "向下", "gui.entity_tooltip.type": "类型:%s", + "gui.fileDropFailure.detail": "拒绝了%s个文件", + "gui.fileDropFailure.title": "添加文件失败", + "gui.hours": "%s小时", + "gui.loadingMinecraft": "正在加载Minecraft", + "gui.minutes": "%s分钟", + "gui.multiLineEditBox.character_limit": "%s/%s", "gui.narrate.button": "%s,抱枕", "gui.narrate.editBox": "%s,编辑框,%s", "gui.narrate.slider": "%s,滑块", + "gui.narrate.tab": "%s标签页", "gui.no": "呐呐呐!", "gui.none": "冇", "gui.ok": "彳亍", + "gui.open_report_dir": "打开报告目录", "gui.proceed": "继续", "gui.recipebook.moreRecipes": "右击以获取更多信息", - "gui.recipebook.search_hint": "必应一下……", + "gui.recipebook.page": "%s/%s", + "gui.recipebook.search_hint": "百度一下……", "gui.recipebook.toggleRecipes.all": "显示全部", "gui.recipebook.toggleRecipes.blastable": "仅显示可炼铜", "gui.recipebook.toggleRecipes.craftable": "仅显示可合成", "gui.recipebook.toggleRecipes.smeltable": "仅显示可烧炼", "gui.recipebook.toggleRecipes.smokable": "仅显示可熏制", + "gui.report_to_server": "向服务器报告", "gui.socialInteractions.blocking_hint": "使用Macrohard账号管理", "gui.socialInteractions.empty_blocked": "未屏蔽任何玩家的唠嗑消息", "gui.socialInteractions.empty_hidden": "未隐藏任何玩家的唠嗑消息", "gui.socialInteractions.hidden_in_chat": "%s的唠嗑消息将会隐藏", "gui.socialInteractions.hide": "在唠嗑中隐藏", + "gui.socialInteractions.narration.hide": "隐藏%s发送的消息", + "gui.socialInteractions.narration.report": "菊♂爆玩家%s", + "gui.socialInteractions.narration.show": "显示%s发送的消息", + "gui.socialInteractions.report": "菊♂爆", "gui.socialInteractions.search_empty": "未找到使用此名称的玩家", "gui.socialInteractions.search_hint": "搜索……", "gui.socialInteractions.server_label.multiple": "%s - %s名玩家", @@ -3150,93 +3795,143 @@ "gui.socialInteractions.tab_blocked": "已屏蔽", "gui.socialInteractions.tab_hidden": "隐藏", "gui.socialInteractions.title": "选择性失聪", - "gui.socialInteractions.tooltip.hide": "隐藏%s的唠嗑消息", - "gui.socialInteractions.tooltip.show": "展示%s的唠嗑消息", + "gui.socialInteractions.tooltip.hide": "隐藏消息", + "gui.socialInteractions.tooltip.report": "菊♂爆玩家", + "gui.socialInteractions.tooltip.report.disabled": "菊♂爆服务不可用", + "gui.socialInteractions.tooltip.report.no_messages": "玩家%s没有可菊♂爆的消息", + "gui.socialInteractions.tooltip.report.not_reportable": "无法菊♂爆该玩家,服务器无法验证其唠嗑内容。", + "gui.socialInteractions.tooltip.show": "显示消息", "gui.stats": "统计信息", "gui.toMenu": "我要怒退!", - "gui.toTitle": "我不想玩了!", + "gui.toRealms": "返回到领域列表", + "gui.toTitle": "我不想玩辣!", + "gui.toWorld": "返回到世界列表", + "gui.togglable_slot": "点击以禁用槽位", "gui.up": "向上", "gui.yes": "彳亍", - "inventory.binSlot": "摧毁物品", - "inventory.hotbarInfo": "用%1$s+%2$s来保存工具栏", - "inventory.hotbarSaved": "已保存物品工具栏(用%1$s+%2$s来加载)", + "hanging_sign.edit": "写点什么吧", + "instrument.minecraft.admire_goat_horn": "啊呀", + "instrument.minecraft.call_goat_horn": "啊啊", + "instrument.minecraft.dream_goat_horn": "啊呼", + "instrument.minecraft.feel_goat_horn": "啊嗯", + "instrument.minecraft.ponder_goat_horn": "啊巴", + "instrument.minecraft.seek_goat_horn": "啊喂", + "instrument.minecraft.sing_goat_horn": "啊哦", + "instrument.minecraft.yearn_goat_horn": "啊哈", + "inventory.binSlot": "销毁赃物", + "inventory.hotbarInfo": "用%1$s+%2$s来保存当前火热的吧台", + "inventory.hotbarSaved": "保存过的火热吧台(用%1$s+%2$s来加载)", "item.canBreak": "能破坏:", "item.canPlace": "可以放在:", + "item.canUse.unknown": "未知", "item.color": "颜色:%s", + "item.components": "%s个组件", + "item.disabled": "已禁用物品", "item.durability": "耐久度:%s / %s", "item.dyed": "已染色", "item.minecraft.acacia_boat": "相思方舟", - "item.minecraft.amethyst_shard": "紫水晶碎片", + "item.minecraft.acacia_chest_boat": "带胸部的相思方舟", + "item.minecraft.allay_spawn_egg": "小安粒幼体", + "item.minecraft.amethyst_shard": "紫水晶碎碎冰", + "item.minecraft.angler_pottery_shard": "沙滩男孩纹样陶片", + "item.minecraft.angler_pottery_sherd": "沙滩男孩纹样陶片", "item.minecraft.apple": "苹果", - "item.minecraft.armor_stand": "真•工具人", + "item.minecraft.archer_pottery_shard": "弓兵纹样陶片", + "item.minecraft.archer_pottery_sherd": "弓兵纹样陶片", + "item.minecraft.armadillo_scute": "犰狳鳞甲", + "item.minecraft.armadillo_spawn_egg": "犰狳刷怪蛋", + "item.minecraft.armor_stand": "真·工具人", + "item.minecraft.arms_up_pottery_shard": "法国纹样陶片", + "item.minecraft.arms_up_pottery_sherd": "法国纹样陶片", "item.minecraft.arrow": "箭", "item.minecraft.axolotl_bucket": "六角恐龙铁桶", "item.minecraft.axolotl_spawn_egg": "六角恐龙幼体", "item.minecraft.baked_potato": "烤熟的育碧服务器", - "item.minecraft.bat_spawn_egg": "蝙蝠幼体", + "item.minecraft.bamboo_chest_raft": "带胸部的た↓け↑《木筏求生》", + "item.minecraft.bamboo_raft": "た↓け↑《木筏求生》", + "item.minecraft.bat_spawn_egg": "棒球棍幼体", "item.minecraft.bee_spawn_egg": "蜂子幼体", - "item.minecraft.beef": "生牛肉", + "item.minecraft.beef": "顶级西冷牛排,但是零分熟", "item.minecraft.beetroot": "甜菜根", "item.minecraft.beetroot_seeds": "甜菜.torrent", "item.minecraft.beetroot_soup": "猪血煲", "item.minecraft.birch_boat": "白桦方舟", + "item.minecraft.birch_chest_boat": "带胸部的白桦方舟", "item.minecraft.black_dye": "头发", - "item.minecraft.blaze_powder": "火杆屑", - "item.minecraft.blaze_rod": "大火杆", - "item.minecraft.blaze_spawn_egg": "烈焰人幼体", - "item.minecraft.blue_dye": "蓝色染料", + "item.minecraft.blade_pottery_shard": "小刀纹样陶片", + "item.minecraft.blade_pottery_sherd": "小刀纹样陶片", + "item.minecraft.blaze_powder": "火棒子人之粉", + "item.minecraft.blaze_rod": "烧火棍", + "item.minecraft.blaze_spawn_egg": "火棒子人幼体", + "item.minecraft.blue_dye": "蓝色颜料", + "item.minecraft.bogged_spawn_egg": "池沼骷髅幼体", + "item.minecraft.bolt_armor_trim_smithing_template": "{{模板}}", "item.minecraft.bone": "小白碎片", "item.minecraft.bone_meal": "拌饭用的骨灰", "item.minecraft.book": "聪明人才能翻开的书", "item.minecraft.bow": "弓", "item.minecraft.bowl": "碗", "item.minecraft.bread": "法国面包", + "item.minecraft.breeze_rod": "风棒子", + "item.minecraft.breeze_spawn_egg": "风棒子人刷怪蛋", + "item.minecraft.brewer_pottery_shard": "药瓶纹样陶片", + "item.minecraft.brewer_pottery_sherd": "药瓶纹样陶片", "item.minecraft.brewing_stand": "调和台", "item.minecraft.brick": "砖", - "item.minecraft.brown_dye": "稀奥利给", + "item.minecraft.brown_dye": "巧克力碎", + "item.minecraft.brush": "鸡毛掸子", "item.minecraft.bucket": "User:铁桶", "item.minecraft.bundle": "套娃用的袋子", "item.minecraft.bundle.fullness": "容量:%s / %s", + "item.minecraft.burn_pottery_shard": "火之纹章陶片", + "item.minecraft.burn_pottery_sherd": "火之纹章陶片", + "item.minecraft.camel_spawn_egg": "骆驼幼体", "item.minecraft.carrot": "胡萝北", "item.minecraft.carrot_on_a_stick": "胡萝北在林昆上", - "item.minecraft.cat_spawn_egg": "生成一只喵喵", + "item.minecraft.cat_spawn_egg": "喵喵幼体", "item.minecraft.cauldron": "中华锅", - "item.minecraft.cave_spider_spawn_egg": "洞穴蜘蛛幼体", + "item.minecraft.cave_spider_spawn_egg": "洞穴失败的幼体", "item.minecraft.chainmail_boots": "蕾丝靴子", "item.minecraft.chainmail_chestplate": "蕾丝胸甲", "item.minecraft.chainmail_helmet": "蕾丝头盔", "item.minecraft.chainmail_leggings": "蕾丝护腿", "item.minecraft.charcoal": "木炭", + "item.minecraft.cherry_boat": "撒库拉方舟", + "item.minecraft.cherry_chest_boat": "带胸部的撒库拉方舟", "item.minecraft.chest_minecart": "带胸部的《我的世界》", - "item.minecraft.chicken": "生鸡肉", + "item.minecraft.chicken": "生鲜鸡肉", "item.minecraft.chicken_spawn_egg": "鸡幼体", "item.minecraft.chorus_fruit": "共鸣果", "item.minecraft.clay_ball": "土球球", "item.minecraft.clock": "时间都去哪儿了", "item.minecraft.coal": "无定形碳", - "item.minecraft.cocoa_beans": "奥利给", - "item.minecraft.cod": "生鲜鳕鱼", - "item.minecraft.cod_bucket": "鳕鱼铁桶", - "item.minecraft.cod_spawn_egg": "鳕鱼幼体", + "item.minecraft.coast_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.cocoa_beans": "巧克力豆", + "item.minecraft.cod": "使命召唤®", + "item.minecraft.cod_bucket": "使命召唤®铁桶", + "item.minecraft.cod_spawn_egg": "使命召唤®幼体", "item.minecraft.command_block_minecart": "带滥权块的《我的世界》", "item.minecraft.compass": "不指南的指南针", "item.minecraft.cooked_beef": "顶级西冷牛排", "item.minecraft.cooked_chicken": "烤鸡", - "item.minecraft.cooked_cod": "沸腾鳕鱼", - "item.minecraft.cooked_mutton": "熟羊肉", + "item.minecraft.cooked_cod": "沸腾使命召唤®", + "item.minecraft.cooked_mutton": "熟咩咩肉", "item.minecraft.cooked_porkchop": "熟猪排", "item.minecraft.cooked_rabbit": "红烧兔肉", "item.minecraft.cooked_salmon": "沸腾鲑鱼", - "item.minecraft.cookie": "死扛", + "item.minecraft.cookie": "司康", "item.minecraft.copper_ingot": "铜元宝", - "item.minecraft.cow_spawn_egg": "牛蛋", + "item.minecraft.cow_spawn_egg": "牛幼体", "item.minecraft.creeper_banner_pattern": "旗帜图案", "item.minecraft.creeper_banner_pattern.desc": "爪巴者盾徽", "item.minecraft.creeper_spawn_egg": "Creeper?", "item.minecraft.crossbow": "诸葛连弩", "item.minecraft.crossbow.projectile": "弹射物:", - "item.minecraft.cyan_dye": "青色染料", + "item.minecraft.cyan_dye": "蓝绿色颜料", + "item.minecraft.danger_pottery_shard": "要寄纹样陶片", + "item.minecraft.danger_pottery_sherd": "要寄纹样陶片", "item.minecraft.dark_oak_boat": "巧克力方舟", + "item.minecraft.dark_oak_chest_boat": "带胸部的巧克力方舟", "item.minecraft.debug_stick": "覆膜林昆", "item.minecraft.debug_stick.empty": "%s一无所有", "item.minecraft.debug_stick.select": "已选择“%s”(%s)", @@ -3252,26 +3947,34 @@ "item.minecraft.diamond_pickaxe": "祖安石giao子", "item.minecraft.diamond_shovel": "祖安石锨", "item.minecraft.diamond_sword": "FtyLollipop", + "item.minecraft.disc_fragment_5": "金 曲 残 片", + "item.minecraft.disc_fragment_5.desc": "???? - ?? ????????", "item.minecraft.dolphin_spawn_egg": "海豚幼体", - "item.minecraft.donkey_spawn_egg": "生成一只阿米娅", + "item.minecraft.donkey_spawn_egg": "阿米娅幼体", "item.minecraft.dragon_breath": "龙(nóng)痰", "item.minecraft.dried_kelp": "海苔", "item.minecraft.drowned_spawn_egg": "水猴子蛋", + "item.minecraft.dune_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.echo_shard": "回响碎片", "item.minecraft.egg": "这是鸡蛋还是鸭蛋?", - "item.minecraft.elder_guardian_spawn_egg": "远古痞老板幼体", - "item.minecraft.elytra": "我要飞得更高", + "item.minecraft.elder_guardian_spawn_egg": "痞老板的爷爷幼体", + "item.minecraft.elytra": "一飞冲天啊,我!", "item.minecraft.emerald": "原谅石", "item.minecraft.enchanted_book": "覆膜书", "item.minecraft.enchanted_golden_apple": "Notch苹果", - "item.minecraft.end_crystal": "末影水晶", + "item.minecraft.end_crystal": "终端水晶", + "item.minecraft.ender_dragon_spawn_egg": "昆图库塔卡提考特苏瓦西拉松幼体", "item.minecraft.ender_eye": "小黑眼", "item.minecraft.ender_pearl": "小黑珍珠", "item.minecraft.enderman_spawn_egg": "小黑幼体", - "item.minecraft.endermite_spawn_egg": "末影螨幼体", - "item.minecraft.evoker_spawn_egg": "唤魔者幼体", + "item.minecraft.endermite_spawn_egg": "紫色蠢虫幼体", + "item.minecraft.evoker_spawn_egg": "招魂师幼体", "item.minecraft.experience_bottle": "覆膜之瓶", + "item.minecraft.explorer_pottery_shard": "地图纹样陶片", + "item.minecraft.explorer_pottery_sherd": "地图纹样陶片", + "item.minecraft.eye_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.feather": "鸡毛", - "item.minecraft.fermented_spider_eye": "发酵蛛眼", + "item.minecraft.fermented_spider_eye": "发酵失败的爱", "item.minecraft.filled_map": "映射", "item.minecraft.fire_charge": "火焰弹", "item.minecraft.firework_rocket": "窜天猴", @@ -3279,17 +3982,17 @@ "item.minecraft.firework_star": "石灰", "item.minecraft.firework_star.black": "黑色", "item.minecraft.firework_star.blue": "蓝色", - "item.minecraft.firework_star.brown": "棕色", + "item.minecraft.firework_star.brown": "咖啡色", "item.minecraft.firework_star.custom_color": "自定义", - "item.minecraft.firework_star.cyan": "青色", + "item.minecraft.firework_star.cyan": "蓝绿色", "item.minecraft.firework_star.fade_to": "淡化至", "item.minecraft.firework_star.flicker": "闪烁", "item.minecraft.firework_star.gray": "灰色", "item.minecraft.firework_star.green": "原谅色", "item.minecraft.firework_star.light_blue": "亮蓝色", "item.minecraft.firework_star.light_gray": "亮灰色", - "item.minecraft.firework_star.lime": "黄绿色", - "item.minecraft.firework_star.magenta": "品红色", + "item.minecraft.firework_star.lime": "酸橙色", + "item.minecraft.firework_star.magenta": "洋红色", "item.minecraft.firework_star.orange": "橙色", "item.minecraft.firework_star.pink": "粉红色", "item.minecraft.firework_star.purple": "紫色", @@ -3304,69 +4007,89 @@ "item.minecraft.firework_star.white": "白色", "item.minecraft.firework_star.yellow": "黄色", "item.minecraft.fishing_rod": "沙滩男孩", - "item.minecraft.flint": "【你知道吗】这玩意是石英家亲戚。", + "item.minecraft.flint": "火石", "item.minecraft.flint_and_steel": "哪里不会点哪里", + "item.minecraft.flow_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.flow_banner_pattern": "旗帜图案", + "item.minecraft.flow_banner_pattern.desc": "鱼板", + "item.minecraft.flow_pottery_sherd": "鱼板陶罐碎片", "item.minecraft.flower_banner_pattern": "旗帜图案", - "item.minecraft.flower_banner_pattern.desc": "花朵盾徽", + "item.minecraft.flower_banner_pattern.desc": "小fa♂", "item.minecraft.flower_pot": "fa♂盆", - "item.minecraft.fox_spawn_egg": "狐狸幼体", + "item.minecraft.fox_spawn_egg": "福克斯幼体", + "item.minecraft.friend_pottery_shard": "浮莲子纹样陶片", + "item.minecraft.friend_pottery_sherd": "浮莲子纹样陶片", + "item.minecraft.frog_spawn_egg": "生成蛙", "item.minecraft.furnace_minecart": "火车头", - "item.minecraft.ghast_spawn_egg": "传唤地狱轰炸机", + "item.minecraft.ghast_spawn_egg": "地狱轰炸机幼体", "item.minecraft.ghast_tear": "黑沉沉泪", - "item.minecraft.glass_bottle": "玻璃瓶", + "item.minecraft.glass_bottle": "安瓿瓶", "item.minecraft.glistering_melon_slice": "瓜粒子是金子做的", "item.minecraft.globe_banner_pattern": "旗帜图案", "item.minecraft.globe_banner_pattern.desc": "地“方”", "item.minecraft.glow_berries": "荧光莓", - "item.minecraft.glow_ink_sac": "荧光墨囊", + "item.minecraft.glow_ink_sac": "珊瑚感染夺心魔的袋袋", "item.minecraft.glow_item_frame": "发光的木板做的物品炫耀框", - "item.minecraft.glow_squid_spawn_egg": "生成一只并没有移动光源的珊瑚感染八爪鱼", + "item.minecraft.glow_squid_spawn_egg": "并没有移动光源的珊瑚感染夺心魔幼体", "item.minecraft.glowstone_dust": "发光石粉", - "item.minecraft.goat_spawn_egg": "山羊幼体", + "item.minecraft.goat_horn": "妙脆角", + "item.minecraft.goat_spawn_egg": "大角羊幼体", "item.minecraft.gold_ingot": "黄油元宝", - "item.minecraft.gold_nugget": "金立", + "item.minecraft.gold_nugget": "黄油粒", "item.minecraft.golden_apple": "黄油苹果", "item.minecraft.golden_axe": "黄油斧", "item.minecraft.golden_boots": "黄油靴子", "item.minecraft.golden_carrot": "黄油胡萝北", "item.minecraft.golden_chestplate": "黄油胸甲", "item.minecraft.golden_helmet": "黄油头盔", - "item.minecraft.golden_hoe": "黄油锄", + "item.minecraft.golden_hoe": "皇帝用的金锄头", "item.minecraft.golden_horse_armor": "黄油马甲", "item.minecraft.golden_leggings": "黄油护腿", "item.minecraft.golden_pickaxe": "镐黄色", "item.minecraft.golden_shovel": "黄油锨", "item.minecraft.golden_sword": "Ftylollipop金色传说限定", - "item.minecraft.gray_dye": "灰色染料", - "item.minecraft.green_dye": "原谅色染料", + "item.minecraft.gray_dye": "灰色颜料", + "item.minecraft.green_dye": "原谅色颜料", "item.minecraft.guardian_spawn_egg": "痞老板幼体", "item.minecraft.gunpowder": "炮灰", + "item.minecraft.guster_banner_pattern": "旗帜图案", + "item.minecraft.guster_banner_pattern.desc": "钻头", + "item.minecraft.guster_pottery_sherd": "钻头陶罐碎片", "item.minecraft.heart_of_the_sea": "武则天の海洋之心", + "item.minecraft.heart_pottery_shard": "充满决心的纹样陶片", + "item.minecraft.heart_pottery_sherd": "充满决心的纹样陶片", + "item.minecraft.heartbreak_pottery_shard": "决心碎了的纹样陶片", + "item.minecraft.heartbreak_pottery_sherd": "决心碎了的纹样陶片", "item.minecraft.hoglin_spawn_egg": "嚎猪兽幼体", "item.minecraft.honey_bottle": "甜蜜蜜瓶子", "item.minecraft.honeycomb": "蜂房", "item.minecraft.hopper_minecart": "带H O P的《我的世界》", "item.minecraft.horse_spawn_egg": "马蛋", - "item.minecraft.husk_spawn_egg": "尸壳幼体", - "item.minecraft.ink_sac": "墨囊", - "item.minecraft.iron_axe": "铁斧", + "item.minecraft.host_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.howl_pottery_shard": "HLD纹样陶片", + "item.minecraft.howl_pottery_sherd": "HLD纹样陶片", + "item.minecraft.husk_spawn_egg": "木乃伊幼体", + "item.minecraft.ink_sac": "夺心魔的袋袋", + "item.minecraft.iron_axe": "老铁斧", "item.minecraft.iron_boots": "倒着的Airpods", - "item.minecraft.iron_chestplate": "铁胸甲", - "item.minecraft.iron_helmet": "铁头盔", - "item.minecraft.iron_hoe": "铁锄", - "item.minecraft.iron_horse_armor": "铁马甲", + "item.minecraft.iron_chestplate": "老铁胸甲", + "item.minecraft.iron_golem_spawn_egg": "铁憨憨幼体", + "item.minecraft.iron_helmet": "老铁头盔", + "item.minecraft.iron_hoe": "老铁锄", + "item.minecraft.iron_horse_armor": "老铁马甲", "item.minecraft.iron_ingot": "老铁元宝", - "item.minecraft.iron_leggings": "铁护腿", - "item.minecraft.iron_nugget": "铁粒", + "item.minecraft.iron_leggings": "老铁护腿", + "item.minecraft.iron_nugget": "老铁粒", "item.minecraft.iron_pickaxe": "Ff98sha", - "item.minecraft.iron_shovel": "铁锨", + "item.minecraft.iron_shovel": "老铁锨", "item.minecraft.iron_sword": "劣质武士刀", "item.minecraft.item_frame": "物品炫耀框", - "item.minecraft.jungle_boat": "丛林方舟", + "item.minecraft.jungle_boat": "雨林方舟", + "item.minecraft.jungle_chest_boat": "带胸部的雨林方舟", "item.minecraft.knowledge_book": "原谅书", "item.minecraft.lapis_lazuli": "蓝(只是颜色上)宝石", - "item.minecraft.lava_bucket": "熔岩铁桶", - "item.minecraft.lead": "拴绳", + "item.minecraft.lava_bucket": "多喝熔岩", + "item.minecraft.lead": "铅", "item.minecraft.leather": "荷兰进口皮", "item.minecraft.leather_boots": "真皮皮鞋", "item.minecraft.leather_chestplate": "真皮大衣", @@ -3374,75 +4097,98 @@ "item.minecraft.leather_horse_armor": "真皮马甲", "item.minecraft.leather_leggings": "真皮裤子", "item.minecraft.light_blue_dye": "LakeJason", - "item.minecraft.light_gray_dye": "亮灰色染料", - "item.minecraft.lime_dye": "黄绿色染料", - "item.minecraft.lingering_potion": "滞留溶液", - "item.minecraft.lingering_potion.effect.awkward": "滞留型粗制溶液", - "item.minecraft.lingering_potion.effect.empty": "不可合成的滞留型溶液", - "item.minecraft.lingering_potion.effect.fire_resistance": "滞留型耐高温溶液", - "item.minecraft.lingering_potion.effect.harming": "滞留型伤害溶液", - "item.minecraft.lingering_potion.effect.healing": "滞留型治疗溶液", - "item.minecraft.lingering_potion.effect.invisibility": "滞留型透明溶液", - "item.minecraft.lingering_potion.effect.leaping": "滞留型兔崽子溶液", - "item.minecraft.lingering_potion.effect.levitation": "滞留型升天溶液", - "item.minecraft.lingering_potion.effect.luck": "滞留型欧气溶液", - "item.minecraft.lingering_potion.effect.mundane": "滞留型平凡的溶液", - "item.minecraft.lingering_potion.effect.night_vision": "滞留型莎普爱思", - "item.minecraft.lingering_potion.effect.poison": "滞留型剧毒溶液", - "item.minecraft.lingering_potion.effect.regeneration": "滞留型再生溶液", - "item.minecraft.lingering_potion.effect.slow_falling": "滞留型降落伞溶液", - "item.minecraft.lingering_potion.effect.slowness": "滞留型迟缓溶液", - "item.minecraft.lingering_potion.effect.strength": "滞留型伏特加", - "item.minecraft.lingering_potion.effect.swiftness": "滞留型迅捷溶液", - "item.minecraft.lingering_potion.effect.thick": "滞留型浓稠的溶液", - "item.minecraft.lingering_potion.effect.turtle_master": "滞留型王八溶液", - "item.minecraft.lingering_potion.effect.water": "滞留型氧烷", - "item.minecraft.lingering_potion.effect.water_breathing": "滞留型肺积水溶液", - "item.minecraft.lingering_potion.effect.weakness": "滞留型虚弱溶液", + "item.minecraft.light_gray_dye": "亮灰色颜料", + "item.minecraft.lime_dye": "酸橙色颜料", + "item.minecraft.lingering_potion": "洗地板用溶液", + "item.minecraft.lingering_potion.effect.awkward": "洗地板用半成品溶液", + "item.minecraft.lingering_potion.effect.empty": "洗地板用不给合成的溶液", + "item.minecraft.lingering_potion.effect.fire_resistance": "洗地板用耐高温溶液", + "item.minecraft.lingering_potion.effect.harming": "洗地板用瓶装黑狗血", + "item.minecraft.lingering_potion.effect.healing": "洗地板用瓶装鸡血", + "item.minecraft.lingering_potion.effect.infested": "洗地板用蚁蚁蚀溶液", + "item.minecraft.lingering_potion.effect.invisibility": "洗地板用透明溶液", + "item.minecraft.lingering_potion.effect.leaping": "洗地板用兔崽子溶液", + "item.minecraft.lingering_potion.effect.levitation": "洗地板用升天溶液", + "item.minecraft.lingering_potion.effect.luck": "洗地板用欧气溶液", + "item.minecraft.lingering_potion.effect.mundane": "洗地板用杂~鱼♡溶液", + "item.minecraft.lingering_potion.effect.night_vision": "洗地板用莎普爱思", + "item.minecraft.lingering_potion.effect.oozing": "洗地板用污液蚀溶液", + "item.minecraft.lingering_potion.effect.poison": "洗地板用瓶装寄汤", + "item.minecraft.lingering_potion.effect.regeneration": "洗地板用血瓶", + "item.minecraft.lingering_potion.effect.slow_falling": "洗地板用降落伞溶液", + "item.minecraft.lingering_potion.effect.slowness": "洗地板用走不动溶液", + "item.minecraft.lingering_potion.effect.strength": "洗地板用伏特加", + "item.minecraft.lingering_potion.effect.swiftness": "洗地板用Plash Speed药水", + "item.minecraft.lingering_potion.effect.thick": "洗地板用倒不出来的溶液", + "item.minecraft.lingering_potion.effect.turtle_master": "洗地板用兲溶液", + "item.minecraft.lingering_potion.effect.water": "洗地板用氧烷", + "item.minecraft.lingering_potion.effect.water_breathing": "洗地板用肺积水溶液", + "item.minecraft.lingering_potion.effect.weakness": "洗地板用很弱欸溶液", + "item.minecraft.lingering_potion.effect.weaving": "洗地板用拔丝溶液", + "item.minecraft.lingering_potion.effect.wind_charged": "洗地板用胀气溶液", "item.minecraft.llama_spawn_egg": "草泥马幼体", "item.minecraft.lodestone_compass": "罗德(岛)石NullPointerException", - "item.minecraft.magenta_dye": "品红色染料", + "item.minecraft.mace": "咚咚锤", + "item.minecraft.magenta_dye": "洋红色颜料", "item.minecraft.magma_cream": "西瓜霜", - "item.minecraft.magma_cube_spawn_egg": "生成一只岩浆萌王", + "item.minecraft.magma_cube_spawn_egg": "岩浆萌王幼体", + "item.minecraft.mangrove_boat": "红树林方舟", + "item.minecraft.mangrove_chest_boat": "带胸部的红树林方舟", "item.minecraft.map": "空映射", "item.minecraft.melon_seeds": "瓜粒子", "item.minecraft.melon_slice": "你TM劈我瓜是吧", - "item.minecraft.milk_bucket": "桶装奶", + "item.minecraft.milk_bucket": "Let's 牛乳dance!", "item.minecraft.minecart": "《我的世界》", + "item.minecraft.miner_pottery_shard": "坚挺的Ff98sha纹样陶片", + "item.minecraft.miner_pottery_sherd": "坚挺的Ff98sha纹样陶片", "item.minecraft.mojang_banner_pattern": "旗帜图案", "item.minecraft.mojang_banner_pattern.desc": "Bugjump徽标", - "item.minecraft.mooshroom_spawn_egg": "哞菇幼体", + "item.minecraft.mooshroom_spawn_egg": "叉剋幼体", + "item.minecraft.mourner_pottery_shard": "【悲报】纹样陶片", + "item.minecraft.mourner_pottery_sherd": "【悲报】纹样陶片", "item.minecraft.mule_spawn_egg": "骡幼体", "item.minecraft.mushroom_stew": "伞伞煲", "item.minecraft.music_disc_11": "劲 歌 金 曲", - "item.minecraft.music_disc_11.desc": "noma - Brain Power", - "item.minecraft.music_disc_13": "加 国 圣 歌", - "item.minecraft.music_disc_13.desc": "Lazslo - Supernova", + "item.minecraft.music_disc_11.desc": "C418 - 11", + "item.minecraft.music_disc_13": "劲 歌 金 曲", + "item.minecraft.music_disc_13.desc": "C418 - 13", + "item.minecraft.music_disc_5": "劲 歌 金 曲", + "item.minecraft.music_disc_5.desc": "Samuel Åberg - 5", "item.minecraft.music_disc_blocks": "劲 歌 金 曲", - "item.minecraft.music_disc_blocks.desc": "井口裕香 - 白金ディスコ", + "item.minecraft.music_disc_blocks.desc": "C418 - blocks", "item.minecraft.music_disc_cat": "劲 歌 金 曲", - "item.minecraft.music_disc_cat.desc": "サカナクション - 新宝島", + "item.minecraft.music_disc_cat.desc": "C418 - cat", "item.minecraft.music_disc_chirp": "劲 歌 金 曲", - "item.minecraft.music_disc_chirp.desc": "花澤香菜 - 恋愛サーキュレーション", + "item.minecraft.music_disc_chirp.desc": "C418 - chirp", + "item.minecraft.music_disc_creator": "劲 歌 金 曲", + "item.minecraft.music_disc_creator.desc": "Lena Raine - Creator", + "item.minecraft.music_disc_creator_music_box": "劲 歌 金 曲", + "item.minecraft.music_disc_creator_music_box.desc": "Lena Raine - Creator(八音盒)", "item.minecraft.music_disc_far": "劲 歌 金 曲", - "item.minecraft.music_disc_far.desc": "Yes - Roundabout", + "item.minecraft.music_disc_far.desc": "C418 - far", "item.minecraft.music_disc_mall": "劲 歌 金 曲", - "item.minecraft.music_disc_mall.desc": "Jack Stauber - buttercup", - "item.minecraft.music_disc_mellohi": "希 望 之 花", - "item.minecraft.music_disc_mellohi.desc": "翩跹梨兮 - フリージア", - "item.minecraft.music_disc_pigstep": "猪 灵 抬 棺", - "item.minecraft.music_disc_pigstep.desc": "Vicetone/Tony Igy - Astronomia", + "item.minecraft.music_disc_mall.desc": "C418 - mall", + "item.minecraft.music_disc_mellohi": "劲 歌 金 曲", + "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", + "item.minecraft.music_disc_otherside": "劲 歌 金 曲", + "item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside", + "item.minecraft.music_disc_pigstep": "劲 歌 金 曲", + "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep", + "item.minecraft.music_disc_precipice": "劲 歌 金 曲", + "item.minecraft.music_disc_precipice.desc": "Aaron Cherof - Precipice", + "item.minecraft.music_disc_relic": "劲 歌 金 曲", + "item.minecraft.music_disc_relic.desc": "Aaron Cherof - Relic", "item.minecraft.music_disc_stal": "劲 歌 金 曲", - "item.minecraft.music_disc_stal.desc": "Toby Fox - MEGALOVANIA", + "item.minecraft.music_disc_stal.desc": "C418 - stal", "item.minecraft.music_disc_strad": "劲 歌 金 曲", - "item.minecraft.music_disc_strad.desc": "Yunomi/nicamoq - インドア系ならトラックメイカー", + "item.minecraft.music_disc_strad.desc": "C418 - strad", "item.minecraft.music_disc_wait": "劲 歌 金 曲", - "item.minecraft.music_disc_wait.desc": "蒋雪儿 - 爱河", + "item.minecraft.music_disc_wait.desc": "C418 - wait", "item.minecraft.music_disc_ward": "劲 歌 金 曲", - "item.minecraft.music_disc_ward.desc": "Dave Rodgers - DEJA VU", - "item.minecraft.mutton": "生羊肉", + "item.minecraft.music_disc_ward.desc": "C418 - ward", + "item.minecraft.mutton": "生鲜咩咩肉", "item.minecraft.name_tag": "名牌", - "item.minecraft.nautilus_shell": "海螺螺", + "item.minecraft.nautilus_shell": "神奇海螺", "item.minecraft.nether_brick": "尼德兰砖", "item.minecraft.nether_star": "白 金 之 星", "item.minecraft.nether_wart": "尼德兰疣", @@ -3457,90 +4203,119 @@ "item.minecraft.netherite_scrap": "虚 空 之 光", "item.minecraft.netherite_shovel": "下界玄素锨", "item.minecraft.netherite_sword": "黑化形态FtyLollipop", + "item.minecraft.netherite_upgrade_smithing_template": "{{锻造}}", "item.minecraft.oak_boat": "橡木方舟", + "item.minecraft.oak_chest_boat": "带胸部的橡木方舟", "item.minecraft.ocelot_spawn_egg": "豹猫幼体", - "item.minecraft.orange_dye": "橙色染料", - "item.minecraft.painting": "世 界 名 画.kif", + "item.minecraft.ominous_bottle": "阿米诺斯之瓶", + "item.minecraft.ominous_trial_key": "阿米诺斯试用版密钥", + "item.minecraft.orange_dye": "橙色颜料", + "item.minecraft.painting": "世 界 名 画", "item.minecraft.panda_spawn_egg": "滚滚幼体", "item.minecraft.paper": "纸", "item.minecraft.parrot_spawn_egg": "咕咕幼体", "item.minecraft.phantom_membrane": "IcyPhantom的膜", - "item.minecraft.phantom_spawn_egg": "生成一只IcyPhantom", - "item.minecraft.pig_spawn_egg": "猪蛋", + "item.minecraft.phantom_spawn_egg": "IcyPhantom幼体", + "item.minecraft.pig_spawn_egg": "猪幼体", "item.minecraft.piglin_banner_pattern": "旗帜图案", "item.minecraft.piglin_banner_pattern.desc": "插座", "item.minecraft.piglin_brute_spawn_egg": "猪蛮子幼体", "item.minecraft.piglin_spawn_egg": "猪刚鬣幼体", "item.minecraft.pillager_spawn_egg": "掠夺者幼体", - "item.minecraft.pink_dye": "粉红色染料", + "item.minecraft.pink_dye": "粉红色颜料", + "item.minecraft.pitcher_crop": "投手植株", + "item.minecraft.pitcher_plant": "投手植物", + "item.minecraft.pitcher_pod": "投手荚果", + "item.minecraft.plenty_pottery_shard": "很多纹样陶片", + "item.minecraft.plenty_pottery_sherd": "很多纹样陶片", "item.minecraft.poisonous_potato": "有毒的育碧服务器", "item.minecraft.polar_bear_spawn_egg": "北极熊幼体", "item.minecraft.popped_chorus_fruit": "炸裂共鸣果", "item.minecraft.porkchop": "生猪排", "item.minecraft.potato": "育碧服务器", "item.minecraft.potion": "溶液", - "item.minecraft.potion.effect.awkward": "粗制的溶液", - "item.minecraft.potion.effect.empty": "不可合成的溶液", + "item.minecraft.potion.effect.awkward": "半成品溶液", + "item.minecraft.potion.effect.empty": "不给合成的溶液", "item.minecraft.potion.effect.fire_resistance": "耐高温溶液", - "item.minecraft.potion.effect.harming": "自杀溶液", - "item.minecraft.potion.effect.healing": "鸡血溶液", + "item.minecraft.potion.effect.harming": "瓶装黑狗血", + "item.minecraft.potion.effect.healing": "瓶装鸡血", + "item.minecraft.potion.effect.infested": "蚁蚁蚀溶液", "item.minecraft.potion.effect.invisibility": "透明溶液", "item.minecraft.potion.effect.leaping": "兔崽子溶液", "item.minecraft.potion.effect.levitation": "升天溶液", "item.minecraft.potion.effect.luck": "欧气溶液", - "item.minecraft.potion.effect.mundane": "平凡的溶液", + "item.minecraft.potion.effect.mundane": "杂~鱼♡溶液", "item.minecraft.potion.effect.night_vision": "莎普爱思", - "item.minecraft.potion.effect.poison": "剧毒溶液", - "item.minecraft.potion.effect.regeneration": "再生溶液", + "item.minecraft.potion.effect.oozing": "污液蚀溶液", + "item.minecraft.potion.effect.poison": "瓶装寄汤", + "item.minecraft.potion.effect.regeneration": "血瓶", "item.minecraft.potion.effect.slow_falling": "降落伞溶液", - "item.minecraft.potion.effect.slowness": "迟缓溶液", + "item.minecraft.potion.effect.slowness": "走不动溶液", "item.minecraft.potion.effect.strength": "伏特加", - "item.minecraft.potion.effect.swiftness": "迅捷溶液", - "item.minecraft.potion.effect.thick": "浓稠的溶液", - "item.minecraft.potion.effect.turtle_master": "王八溶液", + "item.minecraft.potion.effect.swiftness": "跑得快溶液", + "item.minecraft.potion.effect.thick": "倒不出来的溶液", + "item.minecraft.potion.effect.turtle_master": "兲溶液", "item.minecraft.potion.effect.water": "氧烷", "item.minecraft.potion.effect.water_breathing": "肺积水溶液", - "item.minecraft.potion.effect.weakness": "虚弱溶液", + "item.minecraft.potion.effect.weakness": "很弱欸溶液", + "item.minecraft.potion.effect.weaving": "拔丝溶液", + "item.minecraft.potion.effect.wind_charged": "胀气溶液", + "item.minecraft.pottery_shard_archer": "弓箭纹样陶片", + "item.minecraft.pottery_shard_arms_up": "举臂纹样陶片", + "item.minecraft.pottery_shard_prize": "珍宝纹样陶片", + "item.minecraft.pottery_shard_skull": "头颅纹样陶片", "item.minecraft.powder_snow_bucket": "雪糕桶", - "item.minecraft.prismarine_crystals": "海晶砂粒", + "item.minecraft.prismarine_crystals": "海磷砂粒", "item.minecraft.prismarine_shard": "海晶碎片", + "item.minecraft.prize_pottery_shard": "奖励纹样陶片", + "item.minecraft.prize_pottery_sherd": "奖励纹样陶片", "item.minecraft.pufferfish": "泡芙鱼", "item.minecraft.pufferfish_bucket": "泡芙鱼铁桶", "item.minecraft.pufferfish_spawn_egg": "泡芙鱼幼体", "item.minecraft.pumpkin_pie": "南瓜π", "item.minecraft.pumpkin_seeds": "南瓜.torrent", - "item.minecraft.purple_dye": "紫色染料", + "item.minecraft.purple_dye": "紫色颜料", "item.minecraft.quartz": "尼德兰石英", - "item.minecraft.rabbit": "兔兔这么可爱为什么要杀兔兔???", + "item.minecraft.rabbit": "兔兔这么可爱为什么要杀兔兔???", "item.minecraft.rabbit_foot": "兔崽子脚", "item.minecraft.rabbit_hide": "兔崽子皮", "item.minecraft.rabbit_spawn_egg": "兔崽子幼体", - "item.minecraft.rabbit_stew": "兔兔这么可爱为什么要吃兔兔???", + "item.minecraft.rabbit_stew": "兔兔这么可爱为什么要吃兔兔???", + "item.minecraft.raiser_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.ravager_spawn_egg": "无敌铁牛幼体", "item.minecraft.raw_copper": "尚未经过精炼的自然铜矿", "item.minecraft.raw_gold": "尚未经过精炼的自然黄油矿", "item.minecraft.raw_iron": "尚未经过精炼的自然老铁矿", - "item.minecraft.red_dye": "红色染料", + "item.minecraft.recovery_compass": "死去活来NullPointerException", + "item.minecraft.red_dye": "红色颜料", "item.minecraft.redstone": "雷石东粉", + "item.minecraft.rib_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.rotten_flesh": "发霉的烂肉", "item.minecraft.saddle": "鞍", "item.minecraft.salmon": "生鲜鲑鱼", "item.minecraft.salmon_bucket": "鲑鱼铁桶", "item.minecraft.salmon_spawn_egg": "鲑鱼幼体", + "item.minecraft.scrape_pottery_sherd": "刮刮锻造模板", "item.minecraft.scute": "原谅甲", + "item.minecraft.sentry_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.shaper_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.sheaf_pottery_shard": "麦捆纹样陶片", + "item.minecraft.sheaf_pottery_sherd": "麦捆纹样陶片", "item.minecraft.shears": "夹子", "item.minecraft.sheep_spawn_egg": "咩咩幼体", + "item.minecraft.shelter_pottery_shard": "树荫纹样陶片", + "item.minecraft.shelter_pottery_sherd": "树荫纹样陶片", "item.minecraft.shield": "盾牌", "item.minecraft.shield.black": "黑色盾牌", "item.minecraft.shield.blue": "蓝色盾牌", - "item.minecraft.shield.brown": "棕色盾牌", - "item.minecraft.shield.cyan": "青色盾牌", + "item.minecraft.shield.brown": "咖啡色盾牌", + "item.minecraft.shield.cyan": "蓝绿色盾牌", "item.minecraft.shield.gray": "灰色盾牌", "item.minecraft.shield.green": "原谅色盾牌", "item.minecraft.shield.light_blue": "亮蓝色盾牌", "item.minecraft.shield.light_gray": "亮灰色盾牌", - "item.minecraft.shield.lime": "黄绿色盾牌", - "item.minecraft.shield.magenta": "品红色盾牌", + "item.minecraft.shield.lime": "酸橙色盾牌", + "item.minecraft.shield.magenta": "洋红色盾牌", "item.minecraft.shield.orange": "橙色盾牌", "item.minecraft.shield.pink": "粉红色盾牌", "item.minecraft.shield.purple": "紫色盾牌", @@ -3550,257 +4325,331 @@ "item.minecraft.shulker_shell": "潜影壳", "item.minecraft.shulker_spawn_egg": "潜影贝幼体", "item.minecraft.sign": "搞事牌", + "item.minecraft.silence_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.silverfish_spawn_egg": "蠢虫幼体", - "item.minecraft.skeleton_horse_spawn_egg": "骷髅马幼体", + "item.minecraft.skeleton_horse_spawn_egg": "白髅马幼体", "item.minecraft.skeleton_spawn_egg": "小白幼体", "item.minecraft.skull_banner_pattern": "旗帜图案", - "item.minecraft.skull_banner_pattern.desc": "头颅盾徽", + "item.minecraft.skull_banner_pattern.desc": "有毒品标志", + "item.minecraft.skull_pottery_shard": "骷髅头纹样陶片", + "item.minecraft.skull_pottery_sherd": "骷髅头纹样陶片", "item.minecraft.slime_ball": "鼻涕球", - "item.minecraft.slime_spawn_egg": "生成一只萌王", + "item.minecraft.slime_spawn_egg": "萌王幼体", + "item.minecraft.smithing_template": "{{锻造}}", + "item.minecraft.smithing_template.applies_to": "可应用于:", + "item.minecraft.smithing_template.armor_trim.additions_slot_description": "在此放入元宝或矿物质", + "item.minecraft.smithing_template.armor_trim.applies_to": "盔甲", + "item.minecraft.smithing_template.armor_trim.base_slot_description": "在此放入盔甲", + "item.minecraft.smithing_template.armor_trim.ingredients": "元宝与矿物质", + "item.minecraft.smithing_template.ingredients": "所需原材料:", + "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "在此放入下界玄素元宝", + "item.minecraft.smithing_template.netherite_upgrade.applies_to": "祖安装备", + "item.minecraft.smithing_template.netherite_upgrade.base_slot_description": "在此放入祖安盔甲、武器或工具", + "item.minecraft.smithing_template.netherite_upgrade.ingredients": "下界玄素元宝", + "item.minecraft.smithing_template.upgrade": "已有升级:", + "item.minecraft.sniffer_spawn_egg": "嗅嗅幼体", + "item.minecraft.snort_pottery_shard": "嗅嗅纹样陶片", + "item.minecraft.snort_pottery_sherd": "嗅嗅纹样陶片", + "item.minecraft.snout_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.snow_golem_spawn_egg": "雪人幼体", "item.minecraft.snowball": "雪球", "item.minecraft.spectral_arrow": "Lxazl5770", - "item.minecraft.spider_eye": "蜘蛛眼", - "item.minecraft.spider_spawn_egg": "蜘蛛幼体", - "item.minecraft.splash_potion": "喷溅溶液", - "item.minecraft.splash_potion.effect.awkward": "喷溅型粗制溶液", - "item.minecraft.splash_potion.effect.empty": "不可合成的喷溅型溶液", - "item.minecraft.splash_potion.effect.fire_resistance": "喷溅型耐高温溶液", - "item.minecraft.splash_potion.effect.harming": "喷溅型杀人溶液", - "item.minecraft.splash_potion.effect.healing": "喷溅型鸡血溶液", - "item.minecraft.splash_potion.effect.invisibility": "喷溅型透明溶液", - "item.minecraft.splash_potion.effect.leaping": "喷溅型兔崽子溶液", - "item.minecraft.splash_potion.effect.levitation": "喷溅型升天溶液", - "item.minecraft.splash_potion.effect.luck": "喷溅型欧气溶液", - "item.minecraft.splash_potion.effect.mundane": "喷溅型平凡的溶液", - "item.minecraft.splash_potion.effect.night_vision": "喷溅型莎普爱思", - "item.minecraft.splash_potion.effect.poison": "喷溅型剧毒溶液", - "item.minecraft.splash_potion.effect.regeneration": "喷溅型再生溶液", - "item.minecraft.splash_potion.effect.slow_falling": "喷溅型降落伞溶液", - "item.minecraft.splash_potion.effect.slowness": "喷溅型迟缓溶液", - "item.minecraft.splash_potion.effect.strength": "喷溅型伏特加", - "item.minecraft.splash_potion.effect.swiftness": "喷溅型迅捷溶液", - "item.minecraft.splash_potion.effect.thick": "喷溅型浓稠的溶液", - "item.minecraft.splash_potion.effect.turtle_master": "喷溅型王八溶液", - "item.minecraft.splash_potion.effect.water": "喷溅型氧烷", - "item.minecraft.splash_potion.effect.water_breathing": "喷溅型肺积水溶液", - "item.minecraft.splash_potion.effect.weakness": "喷溅型虚弱溶液", + "item.minecraft.spider_eye": "失败的爱", + "item.minecraft.spider_spawn_egg": "失败的幼体", + "item.minecraft.spire_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.splash_potion": "搞事情用溶液", + "item.minecraft.splash_potion.effect.awkward": "搞事情用半成品溶液", + "item.minecraft.splash_potion.effect.empty": "搞事情用不给合成的溶液", + "item.minecraft.splash_potion.effect.fire_resistance": "搞事情用耐高温溶液", + "item.minecraft.splash_potion.effect.harming": "搞事情用瓶装黑狗血", + "item.minecraft.splash_potion.effect.healing": "搞事情用瓶装鸡血", + "item.minecraft.splash_potion.effect.infested": "搞事情用蚁蚁蚀溶液", + "item.minecraft.splash_potion.effect.invisibility": "搞事情用透明溶液", + "item.minecraft.splash_potion.effect.leaping": "搞事情用兔崽子溶液", + "item.minecraft.splash_potion.effect.levitation": "搞事情用升天溶液", + "item.minecraft.splash_potion.effect.luck": "搞事情用欧气溶液", + "item.minecraft.splash_potion.effect.mundane": "搞事情用杂~鱼♡溶液", + "item.minecraft.splash_potion.effect.night_vision": "搞事情用莎普爱思", + "item.minecraft.splash_potion.effect.oozing": "搞事情用污液蚀溶液", + "item.minecraft.splash_potion.effect.poison": "搞事情用瓶装寄汤", + "item.minecraft.splash_potion.effect.regeneration": "搞事情用血瓶", + "item.minecraft.splash_potion.effect.slow_falling": "搞事情用降落伞溶液", + "item.minecraft.splash_potion.effect.slowness": "搞事情用走不动溶液", + "item.minecraft.splash_potion.effect.strength": "搞事情用伏特加", + "item.minecraft.splash_potion.effect.swiftness": "搞事情用Plash Speed药水", + "item.minecraft.splash_potion.effect.thick": "搞事情用倒不出来的溶液", + "item.minecraft.splash_potion.effect.turtle_master": "搞事情用兲溶液", + "item.minecraft.splash_potion.effect.water": "搞事情用氧烷", + "item.minecraft.splash_potion.effect.water_breathing": "搞事情用肺积水溶液", + "item.minecraft.splash_potion.effect.weakness": "搞事情用很弱欸溶液", + "item.minecraft.splash_potion.effect.weaving": "搞事情用拔丝溶液", + "item.minecraft.splash_potion.effect.wind_charged": "搞事情用胀气溶液", "item.minecraft.spruce_boat": "云杉方舟", + "item.minecraft.spruce_chest_boat": "带胸部的云杉方舟", "item.minecraft.spyglass": "偷窥镜", - "item.minecraft.squid_spawn_egg": "八爪鱼幼体", + "item.minecraft.squid_spawn_egg": "夺心魔幼体", "item.minecraft.stick": "林昆", "item.minecraft.stone_axe": "石斧", "item.minecraft.stone_hoe": "石锄", "item.minecraft.stone_pickaxe": "石giao子", "item.minecraft.stone_shovel": "石锨", "item.minecraft.stone_sword": "石剑", - "item.minecraft.stray_spawn_egg": "流髑幼体", + "item.minecraft.stray_spawn_egg": "冷冻骷髅幼体", "item.minecraft.strider_spawn_egg": "炫迈兽幼体", "item.minecraft.string": "字符串", - "item.minecraft.sugar": "小强尼你在吃糖?", - "item.minecraft.suspicious_stew": "可疑的炖肉", + "item.minecraft.sugar": "削个椰子皮", + "item.minecraft.suspicious_stew": "SUS的炖肉", "item.minecraft.sweet_berries": "甜莓", + "item.minecraft.tadpole_bucket": "蝌蚪桶", + "item.minecraft.tadpole_spawn_egg": "假的蝌蚪卵", + "item.minecraft.tide_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.tipped_arrow": "药箭", "item.minecraft.tipped_arrow.effect.awkward": "药箭", "item.minecraft.tipped_arrow.effect.empty": "不可合成的药箭", "item.minecraft.tipped_arrow.effect.fire_resistance": "耐高温之箭", - "item.minecraft.tipped_arrow.effect.harming": "伤害之箭", - "item.minecraft.tipped_arrow.effect.healing": "鸡血之箭", + "item.minecraft.tipped_arrow.effect.harming": "会飞的黑狗血", + "item.minecraft.tipped_arrow.effect.healing": "会飞的鸡血", + "item.minecraft.tipped_arrow.effect.infested": "蚁蚁蚀之箭", "item.minecraft.tipped_arrow.effect.invisibility": "透明之箭", "item.minecraft.tipped_arrow.effect.leaping": "兔崽子之箭", "item.minecraft.tipped_arrow.effect.levitation": "升天之箭", "item.minecraft.tipped_arrow.effect.luck": "欧气之箭", "item.minecraft.tipped_arrow.effect.mundane": "药箭", - "item.minecraft.tipped_arrow.effect.night_vision": "β-胡萝卜素之箭", - "item.minecraft.tipped_arrow.effect.poison": "剧毒之箭", - "item.minecraft.tipped_arrow.effect.regeneration": "再生之箭", + "item.minecraft.tipped_arrow.effect.night_vision": "莎普爱思之箭", + "item.minecraft.tipped_arrow.effect.oozing": "污液蚀之箭", + "item.minecraft.tipped_arrow.effect.poison": "会飞的寄汤", + "item.minecraft.tipped_arrow.effect.regeneration": "会飞的血瓶", "item.minecraft.tipped_arrow.effect.slow_falling": "降落伞之箭", - "item.minecraft.tipped_arrow.effect.slowness": "迟缓之箭", + "item.minecraft.tipped_arrow.effect.slowness": "走不动之箭", "item.minecraft.tipped_arrow.effect.strength": "伏特加之箭", - "item.minecraft.tipped_arrow.effect.swiftness": "迅捷之箭", + "item.minecraft.tipped_arrow.effect.swiftness": "Plash Speed之箭", "item.minecraft.tipped_arrow.effect.thick": "药箭", - "item.minecraft.tipped_arrow.effect.turtle_master": "王八之箭", + "item.minecraft.tipped_arrow.effect.turtle_master": "兲之箭", "item.minecraft.tipped_arrow.effect.water": "氧烷之箭", "item.minecraft.tipped_arrow.effect.water_breathing": "肺积水之箭", - "item.minecraft.tipped_arrow.effect.weakness": "虚弱之箭", + "item.minecraft.tipped_arrow.effect.weakness": "肾虚之箭", + "item.minecraft.tipped_arrow.effect.weaving": "拔丝之箭", + "item.minecraft.tipped_arrow.effect.wind_charged": "胀气之箭", "item.minecraft.tnt_minecart": "带大伊万的《我的世界》", + "item.minecraft.torchflower_seeds": "火炬花.torrent", "item.minecraft.totem_of_undying": "安全用一次性物品", "item.minecraft.trader_llama_spawn_egg": "行商草泥马幼体", + "item.minecraft.trial_key": "试用版密钥", "item.minecraft.trident": "鱼叉", "item.minecraft.tropical_fish": "User:机智的小鱼君", "item.minecraft.tropical_fish_bucket": "小鱼君铁桶", - "item.minecraft.tropical_fish_spawn_egg": "真 · “小”鱼君", + "item.minecraft.tropical_fish_spawn_egg": "真·“小”鱼君", "item.minecraft.turtle_helmet": "原谅帽", - "item.minecraft.turtle_spawn_egg": "海龟幼体", + "item.minecraft.turtle_scute": "海龟鳞甲", + "item.minecraft.turtle_spawn_egg": "假的兲蛋", + "item.minecraft.vex_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.vex_spawn_egg": "猥傀幼体", - "item.minecraft.villager_spawn_egg": "村民幼体", - "item.minecraft.vindicator_spawn_egg": "卫道士幼体", + "item.minecraft.villager_spawn_egg": "奸商幼体", + "item.minecraft.vindicator_spawn_egg": "辩护者幼体", "item.minecraft.wandering_trader_spawn_egg": "流浪奸商幼体", + "item.minecraft.ward_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.warden_spawn_egg": "傻大个幼体", "item.minecraft.warped_fungus_on_a_stick": "幽蓝菌在林昆上", "item.minecraft.water_bucket": "贴吧铁桶", + "item.minecraft.wayfinder_armor_trim_smithing_template": "{{锻造}}", "item.minecraft.wheat": "麦子", "item.minecraft.wheat_seeds": "麦子.torrent", "item.minecraft.white_dye": "稀饭", - "item.minecraft.witch_spawn_egg": "女巫幼体", + "item.minecraft.wild_armor_trim_smithing_template": "{{锻造}}", + "item.minecraft.wind_charge": "风弹", + "item.minecraft.witch_spawn_egg": "巫婆幼体", "item.minecraft.wither_skeleton_spawn_egg": "凋零骷髅幼体", + "item.minecraft.wither_spawn_egg": "凋零怪幼体", + "item.minecraft.wolf_armor": "沃尔夫钢", "item.minecraft.wolf_spawn_egg": "多洛超可爱同人gkd!", "item.minecraft.wooden_axe": "建筑神器", "item.minecraft.wooden_hoe": "圈地工具", "item.minecraft.wooden_pickaxe": "木giao子", "item.minecraft.wooden_shovel": "木锨", "item.minecraft.wooden_sword": "桃木剑", - "item.minecraft.writable_book": "书和羽毛", + "item.minecraft.writable_book": "书和鸡毛", "item.minecraft.written_book": "本子", - "item.minecraft.yellow_dye": "妙脆角", + "item.minecraft.yellow_dye": "黄色颜料", "item.minecraft.zoglin_spawn_egg": "死猪兽幼体", "item.minecraft.zombie_horse_spawn_egg": "姜丝马幼体", "item.minecraft.zombie_spawn_egg": "姜丝幼体", - "item.minecraft.zombie_villager_spawn_egg": "姜丝村民幼体", + "item.minecraft.zombie_villager_spawn_egg": "姜丝奸商幼体", "item.minecraft.zombified_piglin_spawn_egg": "僵硬的猪刚鬣幼体", + "item.modifiers.any": "玩家任意部位碰到时:", + "item.modifiers.armor": "穿在随便哪个地方时:", + "item.modifiers.body": "穿在身上时:", "item.modifiers.chest": "夹在腋下时:", "item.modifiers.feet": "踩在脚下时:", + "item.modifiers.hand": "抄在不管哪个手上时:", "item.modifiers.head": "遮在眼前时:", "item.modifiers.legs": "抄在裤腰带上时:", "item.modifiers.mainhand": "抄在主手上时:", "item.modifiers.offhand": "抄在废手上时:", "item.nbt_tags": "NBT:%s个标签", "item.unbreakable": "坚不可摧", - "itemGroup.brewing": "炼,就硬炼", "itemGroup.buildingBlocks": "造房子用的", + "itemGroup.coloredBlocks": "带颜色的方块", "itemGroup.combat": "打架用品", - "itemGroup.decorations": "花里胡哨", - "itemGroup.food": "恰饭", - "itemGroup.hotbar": "已保存的工具栏", - "itemGroup.inventory": "生存模式物品栏", - "itemGroup.materials": "材料", - "itemGroup.misc": "乱七八糟的东西", - "itemGroup.redstone": "雷石东", + "itemGroup.consumables": "耗材", + "itemGroup.crafting": "合成用品", + "itemGroup.foodAndDrink": "吃吃喝喝", + "itemGroup.functional": "函数方块", + "itemGroup.hotbar": "保存过的火热吧台", + "itemGroup.ingredients": "原材料", + "itemGroup.inventory": "生存模式库存", + "itemGroup.natural": "孜然方块", + "itemGroup.op": "滥权用品", + "itemGroup.redstone": "雷石东方块", "itemGroup.search": "百度一下", - "itemGroup.tools": "工 具 人", - "itemGroup.transportation": "我 是 火 车 王", + "itemGroup.spawnEggs": "幼体", + "itemGroup.tools": "工 具 人和实用品", "item_modifier.unknown": "未知的物品修饰器:%s", "jigsaw_block.final_state": "转变为:", "jigsaw_block.generate": "生成", "jigsaw_block.joint.aligned": "固定", "jigsaw_block.joint.rollable": "可旋转", "jigsaw_block.joint_label": "拼接类型:", - "jigsaw_block.keep_jigsaws": "保留拼图", + "jigsaw_block.keep_jigsaws": "保留线锯", "jigsaw_block.levels": "层数:%s", "jigsaw_block.name": "名称:", + "jigsaw_block.placement_priority": "放置优先级:", + "jigsaw_block.placement_priority.tooltip": "当此线锯方块连接到部件时,此处即为在更大的结构中各部件处理连接的顺序。\n\n部件按照优先级由高到低处理,若优先级相同,则按照插入顺序处理。", "jigsaw_block.pool": "目标池:", + "jigsaw_block.selection_priority": "选择优先级:", + "jigsaw_block.selection_priority.tooltip": "当父级片段处理连接时,此处即为各线锯方块尝试连接目标部件的顺序。\n\n线锯方块将会按照优先级由高到低处理,同级则随机处理。", "jigsaw_block.target": "目标名称:", + "jukebox_song.minecraft.11": "C418 - 11", + "jukebox_song.minecraft.13": "C418 - 13", + "jukebox_song.minecraft.5": "Samuel Åberg - 5", + "jukebox_song.minecraft.blocks": "C418 - blocks", + "jukebox_song.minecraft.cat": "C418 - cat", + "jukebox_song.minecraft.chirp": "C418 - chirp", + "jukebox_song.minecraft.creator": "Lena Raine - Creator", + "jukebox_song.minecraft.creator_music_box": "Lena Raine - Creator(八音盒)", + "jukebox_song.minecraft.far": "C418 - far", + "jukebox_song.minecraft.mall": "C418 - mall", + "jukebox_song.minecraft.mellohi": "C418 - mellohi", + "jukebox_song.minecraft.otherside": "Lena Raine - otherside", + "jukebox_song.minecraft.pigstep": "Lena Raine - Pigstep", + "jukebox_song.minecraft.precipice": "Aaron Cherof - Precipice", + "jukebox_song.minecraft.relic": "Aaron Cherof - Relic", + "jukebox_song.minecraft.stal": "C418 - stal", + "jukebox_song.minecraft.strad": "C418 - strad", + "jukebox_song.minecraft.wait": "C418 - wait", + "jukebox_song.minecraft.ward": "C418 - ward", "key.advancements": "进步", "key.attack": "攻击/摧毁", - "key.back": "向后移动", + "key.back": "太空步", "key.categories.creative": "上帝模式", "key.categories.gameplay": "游戏内容", - "key.categories.inventory": "物品栏", + "key.categories.inventory": "库存", "key.categories.misc": "乱七八糟的东西", "key.categories.movement": "乱动", "key.categories.multiplayer": "一起来,更精彩", "key.categories.ui": "游戏界面", "key.chat": "打开唠嗑栏", "key.command": "输入滥权命令", - "key.drop": "丢弃所选物品", + "key.drop": "释放剑气", "key.forward": "向前移动", - "key.fullscreen": "全屏显示切换", - "key.hotbar.1": "快捷栏1", - "key.hotbar.2": "快捷栏2", - "key.hotbar.3": "快捷栏3", - "key.hotbar.4": "快捷栏4", - "key.hotbar.5": "快捷栏5", - "key.hotbar.6": "快捷栏6", - "key.hotbar.7": "快捷栏7", - "key.hotbar.8": "快捷栏8", - "key.hotbar.9": "快捷栏9", - "key.inventory": "开启/关闭物品栏", + "key.fullscreen": "切换到铺满整个屏幕", + "key.hotbar.1": "火热的吧台 壹号", + "key.hotbar.2": "火热的吧台 贰号", + "key.hotbar.3": "火热的吧台 叁号", + "key.hotbar.4": "火热的吧台 肆号", + "key.hotbar.5": "火热的吧台 伍号", + "key.hotbar.6": "火热的吧台 陆号", + "key.hotbar.7": "火热的吧台 柒号", + "key.hotbar.8": "火热的吧台 捌号", + "key.hotbar.9": "火热的吧台 玖号", + "key.inventory": "打开/关掉库存", "key.jump": "duang", - "key.keyboard.apostrophe": "'", - "key.keyboard.backslash": "\\", + "key.keyboard.apostrophe": "撇号", + "key.keyboard.backslash": "反斜杠", "key.keyboard.backspace": "退格", - "key.keyboard.caps.lock": "Caps Lock", - "key.keyboard.comma": ",", - "key.keyboard.delete": "Delete", + "key.keyboard.caps.lock": "大小写锁定", + "key.keyboard.comma": "逗点", + "key.keyboard.delete": "删除", "key.keyboard.down": "下方向键", - "key.keyboard.end": "End", - "key.keyboard.enter": "Enter", - "key.keyboard.equal": "=", - "key.keyboard.escape": "Esc", - "key.keyboard.f1": "F1", - "key.keyboard.f10": "F10", - "key.keyboard.f11": "F11", - "key.keyboard.f12": "F12", - "key.keyboard.f13": "F13", - "key.keyboard.f14": "F14", - "key.keyboard.f15": "F15", - "key.keyboard.f16": "F16", - "key.keyboard.f17": "F17", - "key.keyboard.f18": "F18", - "key.keyboard.f19": "F19", - "key.keyboard.f2": "F2", - "key.keyboard.f20": "F20", - "key.keyboard.f21": "F21", - "key.keyboard.f22": "F22", - "key.keyboard.f23": "F23", - "key.keyboard.f24": "F24", - "key.keyboard.f25": "F25", - "key.keyboard.f3": "F3", - "key.keyboard.f4": "F4", - "key.keyboard.f5": "F5", - "key.keyboard.f6": "F6", - "key.keyboard.f7": "F7", - "key.keyboard.f8": "F8", - "key.keyboard.f9": "F9", - "key.keyboard.grave.accent": "`", - "key.keyboard.home": "家", - "key.keyboard.insert": "插♂入", - "key.keyboard.keypad.0": "小键盘 0", - "key.keyboard.keypad.1": "小键盘 1", - "key.keyboard.keypad.2": "小键盘 2", - "key.keyboard.keypad.3": "小键盘 3", - "key.keyboard.keypad.4": "小键盘 4", - "key.keyboard.keypad.5": "小键盘 5", - "key.keyboard.keypad.6": "小键盘 6", - "key.keyboard.keypad.7": "小键盘 7", - "key.keyboard.keypad.8": "小键盘 8", - "key.keyboard.keypad.9": "小键盘 9", - "key.keyboard.keypad.add": "小键盘 +", - "key.keyboard.keypad.decimal": "小键盘 .", - "key.keyboard.keypad.divide": "小键盘 /", - "key.keyboard.keypad.enter": "小键盘 Enter", - "key.keyboard.keypad.equal": "小键盘 =", - "key.keyboard.keypad.multiply": "小键盘 *", - "key.keyboard.keypad.subtract": "小键盘 -", + "key.keyboard.end": "“末地”", + "key.keyboard.enter": "回车", + "key.keyboard.equal": "等号", + "key.keyboard.escape": "返回", + "key.keyboard.f1": "功能键 壹", + "key.keyboard.f10": "功能键 壹拾", + "key.keyboard.f11": "功能键 壹拾壹", + "key.keyboard.f12": "功能键 壹拾贰", + "key.keyboard.f13": "功能键 壹拾叁", + "key.keyboard.f14": "功能键 壹拾肆", + "key.keyboard.f15": "功能键 壹拾伍", + "key.keyboard.f16": "功能键 壹拾陆", + "key.keyboard.f17": "功能键 壹拾柒", + "key.keyboard.f18": "功能键 壹拾捌", + "key.keyboard.f19": "功能键 壹拾玖", + "key.keyboard.f2": "功能键 贰", + "key.keyboard.f20": "功能键 贰拾", + "key.keyboard.f21": "功能键 贰拾壹", + "key.keyboard.f22": "功能键 贰拾贰", + "key.keyboard.f23": "功能键 贰拾叁", + "key.keyboard.f24": "功能键 贰拾肆", + "key.keyboard.f25": "功能键 贰拾伍", + "key.keyboard.f3": "功能键 叁", + "key.keyboard.f4": "功能键 肆", + "key.keyboard.f5": "功能键 伍", + "key.keyboard.f6": "功能键 陆", + "key.keyboard.f7": "功能键 柒", + "key.keyboard.f8": "功能键 捌", + "key.keyboard.f9": "功能键 玖", + "key.keyboard.grave.accent": "反引号", + "key.keyboard.home": "“家”", + "key.keyboard.insert": "插入", + "key.keyboard.keypad.0": "小键盘 零", + "key.keyboard.keypad.1": "小键盘 壹", + "key.keyboard.keypad.2": "小键盘 贰", + "key.keyboard.keypad.3": "小键盘 叁", + "key.keyboard.keypad.4": "小键盘 肆", + "key.keyboard.keypad.5": "小键盘 伍", + "key.keyboard.keypad.6": "小键盘 陆", + "key.keyboard.keypad.7": "小键盘 柒", + "key.keyboard.keypad.8": "小键盘 捌", + "key.keyboard.keypad.9": "小键盘 玖", + "key.keyboard.keypad.add": "小键盘 加号", + "key.keyboard.keypad.decimal": "小键盘 小数点", + "key.keyboard.keypad.divide": "小键盘 斜杠", + "key.keyboard.keypad.enter": "小键盘 回车", + "key.keyboard.keypad.equal": "小键盘 等号", + "key.keyboard.keypad.multiply": "小键盘 星号", + "key.keyboard.keypad.subtract": "小键盘 减号", "key.keyboard.left": "左方向键", - "key.keyboard.left.alt": "左Alt", - "key.keyboard.left.bracket": "[", - "key.keyboard.left.control": "左Ctrl", - "key.keyboard.left.shift": "左Shift", - "key.keyboard.left.win": "左Win", + "key.keyboard.left.alt": "左交替换档键", + "key.keyboard.left.bracket": "左中括号", + "key.keyboard.left.control": "左控制键", + "key.keyboard.left.shift": "左换档键", + "key.keyboard.left.win": "左徽标键", "key.keyboard.menu": "菜单", - "key.keyboard.minus": "-", - "key.keyboard.num.lock": "Num Lock", - "key.keyboard.page.down": "Page Down", - "key.keyboard.page.up": "Page Up", - "key.keyboard.pause": "Pause", - "key.keyboard.period": ".", - "key.keyboard.print.screen": "Print Screen", + "key.keyboard.minus": "减号", + "key.keyboard.num.lock": "数字键开关", + "key.keyboard.page.down": "向下翻页键", + "key.keyboard.page.up": "向上翻页键", + "key.keyboard.pause": "中断暂停键", + "key.keyboard.period": "句点", + "key.keyboard.print.screen": "截屏键(你已经截屏了)", "key.keyboard.right": "右方向键", - "key.keyboard.right.alt": "右Alt", - "key.keyboard.right.bracket": "]", - "key.keyboard.right.control": "右Ctrl", - "key.keyboard.right.shift": "右Shift", - "key.keyboard.right.win": "右Win", - "key.keyboard.scroll.lock": "Scroll Lock(居然有人用)", - "key.keyboard.semicolon": ";", - "key.keyboard.slash": "/", + "key.keyboard.right.alt": "右交替换档键", + "key.keyboard.right.bracket": "右中括号", + "key.keyboard.right.control": "右控制键", + "key.keyboard.right.shift": "右换档键", + "key.keyboard.right.win": "右徽标键", + "key.keyboard.scroll.lock": "滚动锁定键(居然有人用)", + "key.keyboard.semicolon": "分号", + "key.keyboard.slash": "斜杠", "key.keyboard.space": "空格", - "key.keyboard.tab": "Tab", + "key.keyboard.tab": "制表键", "key.keyboard.unknown": "未指定", "key.keyboard.up": "上方向键", "key.keyboard.world.1": "World 1", "key.keyboard.world.2": "World 2", "key.left": "向左移动", - "key.loadToolbarActivator": "加载物品工具栏", + "key.loadToolbarActivator": "加载物品吧台", "key.mouse": "鼠标按键%1$s", "key.mouse.left": "左键", "key.mouse.middle": "中键", @@ -3808,17 +4657,32 @@ "key.pickItem": "选取方块", "key.playerlist": "玩家列表", "key.right": "向右移动", - "key.saveToolbarActivator": "保存物品工具栏", + "key.saveToolbarActivator": "保存物品吧台", "key.screenshot": "截图", - "key.smoothCamera": "切换电影视角", - "key.sneak": "潜行", + "key.smoothCamera": "切换圆鼠标标", + "key.sneak": "偷偷摸摸", "key.socialInteractions": "选择性失聪界面", "key.spectatorOutlines": "高亮玩家(游魂)", - "key.sprint": "疾跑", + "key.sprint": "déjà vu", "key.swapOffhand": "交换主废手的物品", "key.togglePerspective": "切换视角", "key.use": "使用物品/放置方块", + "known_server_link.announcements": "公告告", + "known_server_link.community": "社区区", + "known_server_link.community_guidelines": "方针针", + "known_server_link.feedback": "反馈馈", + "known_server_link.forums": "论坛坛", + "known_server_link.news": "新闻闻", + "known_server_link.report_bug": "漏洞洞", + "known_server_link.status": "状态态", + "known_server_link.support": "支持持", + "known_server_link.website": "网站站", "lanServer.otherPlayers": "对其他玩家的设置", + "lanServer.port": "端口号", + "lanServer.port.invalid": "端口无效。\n请将编辑框留空,或重新编一个介于1024和65535之间的数字。", + "lanServer.port.invalid.new": "端口无效。\n请将编辑框留空,或重新编一个介于%s和%s之间的数字。", + "lanServer.port.unavailable": "端口不可用。\n请将编辑框留空,或重新编一个介于1024和65535之间的新数字。", + "lanServer.port.unavailable.new": "端口不可用。\n请将编辑框留空,或重新编一个介于%s和%s之间的新数字。", "lanServer.scanning": "正在你的本地网络中寻找游戏", "lanServer.start": "创造一个菊域网世界", "lanServer.title": "菊域网世界", @@ -3826,8 +4690,340 @@ "language.name": "梗体中文", "language.region": "天朝", "lectern.take_book": "把书拿走", + "loading.progress": "%s%%", + "mco.account.privacy.info": "阅读更多关于Bugjump和其隐私政策", + "mco.account.privacy.info.button": "阅读关于《通用数据保护条例》的内容", + "mco.account.privacy.information": "Bugjump实施许多方法来帮助保护儿童及其隐私权,包括履行《儿童在线隐私权保护法案》(COPPA)与《通用数据保护条例》(GDPR)。\n\n在取得领域账户访问权之前,你可能需要获得父母的同意。", + "mco.account.privacyinfo": "Bugjump实施许多方法来帮助保护儿童及其隐私权,包括履行《儿童在线隐私权保护法案》(COPPA)与《通用数据保护条例》(GDPR)。\n\n在取得领域账户访问权之前,你可能需要获得父母的同意。\n\n如果你拥有旧版的Minecraft账户(登录时使用用户名),你需要将其合并到Bugjump账户以获取领域访问权。", + "mco.account.update": "更新账号", + "mco.activity.noactivity": "过去%s天都无动态", + "mco.activity.title": "玩家动态", + "mco.backup.button.download": "下崽最新版本", + "mco.backup.button.reset": "重置世界", + "mco.backup.button.restore": "还原", + "mco.backup.button.upload": "上传世界", + "mco.backup.changes.tooltip": "更改", + "mco.backup.entry": "备份 (%s)", + "mco.backup.entry.description": "描述", + "mco.backup.entry.enabledPack": "打开包", + "mco.backup.entry.gameDifficulty": "游戏难度", + "mco.backup.entry.gameMode": "游戏模式", + "mco.backup.entry.gameServerVersion": "游戏服务器名称", + "mco.backup.entry.name": "名称", + "mco.backup.entry.seed": "种子", + "mco.backup.entry.templateName": "模板名称", + "mco.backup.entry.undefined": "未定义的更改", + "mco.backup.entry.uploaded": "已上传", + "mco.backup.entry.worldType": "世界类型", + "mco.backup.generate.world": "生成世界", + "mco.backup.info.title": "自上次备份以来发生的更改", + "mco.backup.narration": "备份自%s", + "mco.backup.nobackups": "这个领域目前没有任何备份。", + "mco.backup.restoring": "正在还原你的领域中", + "mco.backup.unknown": "我不到啊", + "mco.brokenworld.download": "下崽", + "mco.brokenworld.downloaded": "已下崽", + "mco.brokenworld.message.line1": "请重置或选择另一个世界。", + "mco.brokenworld.message.line2": "你可以选择将世界下崽至单人模式中。", + "mco.brokenworld.minigame.title": "此小游戏已不受支持", + "mco.brokenworld.nonowner.error": "请等待领域所有者重置世界", + "mco.brokenworld.nonowner.title": "世界已过期", + "mco.brokenworld.play": "开始游戏", + "mco.brokenworld.reset": "重置", + "mco.brokenworld.title": "当前的世界已不受支持", + "mco.client.incompatible.msg.line1": "你的客户端与领域不兼容。", + "mco.client.incompatible.msg.line2": "请使用最新版本的Minecraft。", + "mco.client.incompatible.msg.line3": "领域不与快照版本兼容。", + "mco.client.incompatible.title": "客户端不兼容!", + "mco.client.outdated.stable.version": "你的客户端版本(%s)与领域不兼容。\n\n请使用最新版本的领域。", + "mco.client.unsupported.snapshot.version": "你的客户端版本(%s)与领域不兼容。\n\n领域在此快照版本不可用。", + "mco.compatibility.downgrade": "降级", + "mco.compatibility.downgrade.description": "这个世界上次是在%s版本中打开的,你正在使用%s版本。降低世界的游戏版本可能会导致存档损坏——我们无法保证它可以正确加载和运行。\n\n此世界的备份将会保存在“世界备份”下。如有需要,请恢复原来的世界。", + "mco.compatibility.incompatible.popup.title": "版本不兼容", + "mco.compatibility.incompatible.releaseType.popup.message": "尝试加入的世界与所在版本不兼容。", + "mco.compatibility.incompatible.series.popup.message": "这个世界上次是在%s版本中打开的,你正在使用%s版本。\n\n这些系列互不兼容。此版本需要创建新的世界。", + "mco.compatibility.unverifiable.message": "无法验证这个上次打开这个世界的版本。如果升级或降级这个世界,备份将会被自动创建并保存在“世界备份”下。", + "mco.compatibility.unverifiable.title": "无法验证兼容性", + "mco.compatibility.upgrade": "升级", + "mco.compatibility.upgrade.description": "这个世界上次是在%s版本中打开的,你正在使用%s版本。\n\n此世界的备份将会保存在“世界备份”下。如有需要,请恢复原来的世界。", + "mco.compatibility.upgrade.friend.description": "这个世界上次是在%s版本中打开的,你正在使用%s版本。\n\n此世界的备份将会保存在“世界备份”下。\n\n如有需要,Realm的所有者可以恢复原来的世界。", + "mco.compatibility.upgrade.title": "你真的想升级此世界吗?", + "mco.configure.current.minigame": "当前", + "mco.configure.world.activityfeed.disabled": "玩家推送暂不可用", + "mco.configure.world.backup": "世界备份", + "mco.configure.world.buttons.activity": "玩家动态", + "mco.configure.world.buttons.close": "关掉领域", + "mco.configure.world.buttons.delete": "删除", + "mco.configure.world.buttons.done": "完成", + "mco.configure.world.buttons.edit": "编辑", + "mco.configure.world.buttons.invite": "邀请玩家", + "mco.configure.world.buttons.moreoptions": "更多选项", + "mco.configure.world.buttons.open": "打开领域", + "mco.configure.world.buttons.options": "世界选项", + "mco.configure.world.buttons.players": "玩家", + "mco.configure.world.buttons.resetworld": "重置世界", + "mco.configure.world.buttons.settings": "设置", + "mco.configure.world.buttons.subscription": "订购", + "mco.configure.world.buttons.switchminigame": "换个小游戏", + "mco.configure.world.close.question.line1": "您的领域将变为不可用。", + "mco.configure.world.close.question.line2": "你确定要继续吗?", + "mco.configure.world.closing": "关掉领域中…", + "mco.configure.world.commandBlocks": "滥权方块", + "mco.configure.world.delete.button": "删除领域", + "mco.configure.world.delete.question.line1": "你的领域将被永久删除", + "mco.configure.world.delete.question.line2": "你确定要继续吗?", + "mco.configure.world.description": "领域描述", + "mco.configure.world.edit.slot.name": "世界名称", + "mco.configure.world.edit.subscreen.adventuremap": "由于你当前的世界为一场冒险,有些设置将会被禁用", + "mco.configure.world.edit.subscreen.experience": "由于你当前的世界为一场体验,有些设定将会被禁用", + "mco.configure.world.edit.subscreen.inspiration": "由于你当前的世界是示例世界,一些设置被禁用", + "mco.configure.world.forceGameMode": "强制游戏模式", + "mco.configure.world.invite.narration": "你有%s项新的邀请", + "mco.configure.world.invite.profile.name": "名称", + "mco.configure.world.invited": "已邀请", + "mco.configure.world.invited.number": "已邀请(%s)", + "mco.configure.world.invites.normal.tooltip": "垃圾普通玩家", + "mco.configure.world.invites.ops.tooltip": "滥权管理员", + "mco.configure.world.invites.remove.tooltip": "移除", + "mco.configure.world.leave.question.line1": "如果你离开这个领域,你只有被再次邀请才能看见它。", + "mco.configure.world.leave.question.line2": "你确定要继续吗?", + "mco.configure.world.location": "位置", + "mco.configure.world.minigame": "当前:%s", + "mco.configure.world.name": "领域名称", + "mco.configure.world.opening": "打开领域中…", + "mco.configure.world.players.error": "不存在该指定名称的玩家", + "mco.configure.world.players.inviting": "邀请玩家中…", + "mco.configure.world.players.title": "玩家", + "mco.configure.world.pvp": "玩家对战", + "mco.configure.world.reset.question.line1": "您的领域将被重新生成而您当前的领域将会消失", + "mco.configure.world.reset.question.line2": "你确定要继续吗?", + "mco.configure.world.resourcepack.question": "这个Realm需要一个自定义的资源包\n\n你想要自动下载并安装它吗?", + "mco.configure.world.resourcepack.question.line1": "这个领域需要一个自定义的资源包。", + "mco.configure.world.resourcepack.question.line2": "你想要自动下崽并安装它吗?", + "mco.configure.world.restore.download.question.line1": "世界将会被下崽并添加至你的单人游戏世界中", + "mco.configure.world.restore.download.question.line2": "您想继续吗?", + "mco.configure.world.restore.question.line1": "您的领域将被还原至 “%s”(%s)", + "mco.configure.world.restore.question.line2": "你确定要继续吗?", + "mco.configure.world.settings.title": "设置", + "mco.configure.world.slot": "世界%s", + "mco.configure.world.slot.empty": "空", + "mco.configure.world.slot.switch.question.line1": "你的领域将会被切换至另一个世界", + "mco.configure.world.slot.switch.question.line2": "你确定要继续吗?", + "mco.configure.world.slot.tooltip": "切换到世界", + "mco.configure.world.slot.tooltip.active": "加入", + "mco.configure.world.slot.tooltip.minigame": "切换至小游戏", + "mco.configure.world.spawnAnimals": "生成动物", + "mco.configure.world.spawnMonsters": "生成怪物", + "mco.configure.world.spawnNPCs": "生成NPC", + "mco.configure.world.spawnProtection": "死去活来点保护", + "mco.configure.world.spawn_toggle.message": "把这个设置关掉,世界里所有这种类型的生物就全无啦!", + "mco.configure.world.spawn_toggle.message.npc": "把这个设置关掉,世界里所有这种类型的生物(比如村民)就全无啦!", + "mco.configure.world.spawn_toggle.title": "嘿!看这里!", + "mco.configure.world.status": "状态", + "mco.configure.world.subscription.day": "天", + "mco.configure.world.subscription.days": "天", + "mco.configure.world.subscription.expired": "已过期", + "mco.configure.world.subscription.extend": "延长订购时间", + "mco.configure.world.subscription.less_than_a_day": "一天以内", + "mco.configure.world.subscription.month": "月", + "mco.configure.world.subscription.months": "月", + "mco.configure.world.subscription.recurring.daysleft": "自动续期剩余时间:", + "mco.configure.world.subscription.recurring.info": "对你的领域订阅所做的更改(如续期和取消自动续订)将在下个结算日生效。", + "mco.configure.world.subscription.remaining.days": "%1$s天", + "mco.configure.world.subscription.remaining.months": "%1$s个月", + "mco.configure.world.subscription.remaining.months.days": "%1$s个月%2$s天", + "mco.configure.world.subscription.start": "开始日期", + "mco.configure.world.subscription.timeleft": "剩余时间", + "mco.configure.world.subscription.title": "订购信息", + "mco.configure.world.subscription.unknown": "未知", + "mco.configure.world.switch.slot": "创建世界", + "mco.configure.world.switch.slot.subtitle": "这个世界是空的,请选择行动", + "mco.configure.world.title": "配置领域:", + "mco.configure.world.uninvite.player": "你确定要取消邀请“%s”吗?", + "mco.configure.world.uninvite.question": "你确定你要取消邀请吗", + "mco.configure.worlds.title": "世界", + "mco.connect.authorizing": "登入中...", + "mco.connect.connecting": "正在连接至领域中…", + "mco.connect.failed": "未能连接至领域", + "mco.connect.success": "完成", + "mco.create.world": "创建", + "mco.create.world.error": "您必须输入一个名字!", + "mco.create.world.reset.title": "正在创建世界...", + "mco.create.world.skip": "跳过", + "mco.create.world.subtitle": "可选,选择想放进你新领域的世界", + "mco.create.world.wait": "正在创建领域…", + "mco.download.cancelled": "下崽已取消", + "mco.download.confirmation.line1": "你将下崽的世界大小大于%s", + "mco.download.confirmation.line2": "你无法再次将这个世界上传至领域", + "mco.download.confirmation.oversized": "你将下载的世界大小大于%s\n\n你无法再次将这个世界上传至Realm", + "mco.download.done": "下崽完成", + "mco.download.downloading": "正在下崽", + "mco.download.extracting": "提取中", + "mco.download.failed": "下崽失败", + "mco.download.percent": "%s %%", + "mco.download.preparing": "正在准备下崽", + "mco.download.resourcePack.fail": "亮目害眼包下崽失败!", + "mco.download.speed": "(%s/s)", + "mco.download.speed.narration": "%s/s", + "mco.download.title": "下崽最新的世界", + "mco.error.invalid.session.message": "请尝试重开Minecraft", + "mco.error.invalid.session.title": "无效的会话ID", + "mco.errorMessage.6001": "客户端已过期!", + "mco.errorMessage.6002": "尚未同意服务条款", + "mco.errorMessage.6003": "超过下崽限制", + "mco.errorMessage.6004": "超过上传限制", + "mco.errorMessage.6005": "世界已锁定", + "mco.errorMessage.6006": "世界已过期", + "mco.errorMessage.6007": "玩家所在的领域数量太多辣", + "mco.errorMessage.6008": "无效的领域名称", + "mco.errorMessage.6009": "无效的领域描述", + "mco.errorMessage.connectionFailure": "出错了,请稍候再试。", + "mco.errorMessage.generic": "发生错误:", + "mco.errorMessage.noDetails": "未提供错误详情", + "mco.errorMessage.realmsService": "发生错误(%s):", + "mco.errorMessage.realmsService.connectivity": "无法连接至领域:%s", + "mco.errorMessage.realmsService.realmsError": "领域(%s):", + "mco.errorMessage.realmsService.unknownCompatibility": "无法检查兼容版本,响应为:%s", + "mco.errorMessage.retry": "重试操作", + "mco.errorMessage.serviceBusy": "领域土豆复炸中。\n请在几分钟后再次尝试连接至你的领域。", + "mco.gui.button": "按钮", + "mco.gui.ok": "好的", + "mco.info": "信息!", + "mco.invited.player.narration": "已邀请玩家%s", + "mco.invites.button.accept": "中", + "mco.invites.button.reject": "不中", + "mco.invites.nopending": "没有未决邀请!", + "mco.invites.pending": "新的邀请!", + "mco.invites.title": "未决邀请", + "mco.minigame.world.changeButton": "选择另一个小游戏", + "mco.minigame.world.info.line1": "这将暂时将您的世界替换成一个小游戏!", + "mco.minigame.world.info.line2": "之后您可以毫无损失地返回到原来的世界。", + "mco.minigame.world.noSelection": "请选择", + "mco.minigame.world.restore": "结束小游戏中…", + "mco.minigame.world.restore.question.line1": "小游戏将结束而您的领域将被恢复。", + "mco.minigame.world.restore.question.line2": "你确定要这么做吗?", + "mco.minigame.world.selected": "所选的小游戏:", + "mco.minigame.world.slot.screen.title": "转换世界中…", + "mco.minigame.world.startButton": "转换", + "mco.minigame.world.starting.screen.title": "正在开始小游戏…", + "mco.minigame.world.stopButton": "结束小游戏", + "mco.minigame.world.switch.new": "选择另一个小游戏?", + "mco.minigame.world.switch.title": "切换小游戏", + "mco.minigame.world.title": "将领域切换成小游戏", + "mco.news": "领域新闻", + "mco.notification.dismiss": "关掉", + "mco.notification.transferSubscription.buttonText": "立即转移", + "mco.notification.transferSubscription.message": "Java版领域订阅即将转移到Macrohard商店。别让你的订阅过期了!\n现在转移即可免费获得30天的领域服务。\n请在minecraft.net的“档案”页面转移你的订阅。", + "mco.notification.visitUrl.buttonText.default": "打开链接", + "mco.notification.visitUrl.message.default": "请访问下方的链接", + "mco.onlinePlayers": "在线玩家", + "mco.question": "问题", + "mco.reset.world.adventure": "冒险", + "mco.reset.world.experience": "体验", + "mco.reset.world.generate": "新的世界", + "mco.reset.world.inspiration": "示例", + "mco.reset.world.resetting.screen.title": "重置世界中…", + "mco.reset.world.seed": "世界种子(可选)", + "mco.reset.world.template": "世界模板", + "mco.reset.world.title": "重置世界", + "mco.reset.world.upload": "上传世界", + "mco.reset.world.warning": "这将替换掉您目前的领域世界!", + "mco.selectServer.buy": "购买领域服务器!", + "mco.selectServer.close": "关掉", + "mco.selectServer.closed": "已关掉的领域", + "mco.selectServer.closeserver": "关掉领域", + "mco.selectServer.configure": "配置领域", + "mco.selectServer.configureRealm": "配置领域", + "mco.selectServer.create": "创建领域", + "mco.selectServer.create.subtitle": "选择想放进你新领域的世界", + "mco.selectServer.expired": "已过期的领域", + "mco.selectServer.expiredList": "你的领域已过期", + "mco.selectServer.expiredRenew": "续期", + "mco.selectServer.expiredSubscribe": "订阅", + "mco.selectServer.expiredTrial": "你的试用期已结束", + "mco.selectServer.expires.day": "将在一天内过期", + "mco.selectServer.expires.days": "将在%s天后过期", + "mco.selectServer.expires.soon": "即将过期", + "mco.selectServer.leave": "逊出领域", + "mco.selectServer.loading": "加载领域列表中", + "mco.selectServer.mapOnlySupportedForVersion": "此地图不受%s支持", + "mco.selectServer.minigame": "小游戏:", + "mco.selectServer.minigameName": "小游戏:%s", + "mco.selectServer.minigameNotSupportedInVersion": "无法在%s中进行这个小游戏", + "mco.selectServer.noRealms": "你似乎还没有领域。添加领域与朋友们一同畅玩。", + "mco.selectServer.note": "注意:", + "mco.selectServer.open": "已打开的领域", + "mco.selectServer.openserver": "打开领域", + "mco.selectServer.play": "开始游戏", + "mco.selectServer.popup": "领域是一种安全、简单地享受在线Minecraft世界的方式,可支持多达十位好友同时在线。它也支持多种小游戏与海量自定义世界!只有领域的所有者需要付款。", + "mco.selectServer.purchase": "添加领域", + "mco.selectServer.trial": "取得试用期!", + "mco.selectServer.uninitialized": "点击来创建领域!", + "mco.snapshot.createSnapshotPopup.text": "你即将创建免费的快照版领域,它会与你的付费领域订阅绑定。新的快照版领域在付费订阅生效期间可以随时访问。原本的付费领域不会受到影响。", + "mco.snapshot.createSnapshotPopup.title": "是否创建快照版领域?", + "mco.snapshot.creating": "正在创建快照版领域…", + "mco.snapshot.description": "与%s绑定", + "mco.snapshot.friendsRealm.downgrade": "你需要使用版本%s加入此领域", + "mco.snapshot.friendsRealm.upgrade": "在你使用此快照进行游戏之前,%s需要升级其领域", + "mco.snapshot.paired": "此快照版领域与%s绑定", + "mco.snapshot.parent.tooltip": "使用最新的Minecraft正式版在此领域上进行游戏", + "mco.snapshot.start": "开启免费的快照版领域", + "mco.snapshot.subscription.info": "这是与你的领域订阅“%s”绑定的快照版领域。它会在与其绑定的领域可用时保持可用。", + "mco.snapshot.tooltip": "使用快照版领域抢先了解即将推出的Minecraft版本,其中可能包括新功能和其他更改。\n\n你可以在游戏的正式版中找到普通的领域。", + "mco.snapshotRealmsPopup.message": "领域从23w41a开始可在快照版本中使用。每份领域订阅中包含一份和你普通Java版领域相互独立的免费快照版领域!", + "mco.snapshotRealmsPopup.title": "领域现可在快照版本中使用", + "mco.snapshotRealmsPopup.urlText": "了解更多", + "mco.template.button.publisher": "发布者", + "mco.template.button.select": "选择", + "mco.template.button.trailer": "预告片", + "mco.template.default.name": "世界模板", + "mco.template.info.tooltip": "发布者的网站", + "mco.template.name": "模板", + "mco.template.select.failure": "我们无法接收这个分类的内容。\n请检查你的网络连接,或稍后再试。", + "mco.template.select.narrate.authors": "作者:%s", + "mco.template.select.narrate.version": "版本:%s", + "mco.template.select.none": "抱歉,看来这个分类目前是空的。\n请之后再回来检查是否有新内容,如果你是一名创作者的话,\n%s。", + "mco.template.select.none.linkTitle": "尝试自己提交一些自己的内容", + "mco.template.title": "世界模板", + "mco.template.title.minigame": "领域小游戏", + "mco.template.trailer.tooltip": "地图预告", + "mco.terms.buttons.agree": "中", + "mco.terms.buttons.disagree": "不中", + "mco.terms.sentence.1": "我已阅读并接受Minecraft领域的", + "mco.terms.sentence.2": "服务条款", + "mco.terms.title": "领域服务条款", + "mco.time.daysAgo": "%1$s天前", + "mco.time.hoursAgo": "%1$s时前", + "mco.time.minutesAgo": "%1$s分钟前", + "mco.time.now": "刚刚", + "mco.time.secondsAgo": "%1$s秒前", + "mco.trial.message.line1": "你想获得属于自己的领域吗?", + "mco.trial.message.line2": "点击此处来获得更多消息!", + "mco.upload.button.name": "上传", + "mco.upload.cancelled": "上传已取消", + "mco.upload.close.failure": "无法关掉服务器,请稍候再试", + "mco.upload.done": "完成上传", + "mco.upload.entry.cheats": "%1$s, %2$s", + "mco.upload.entry.commands": "%1$s, %2$s", + "mco.upload.entry.id": "%1$s(%2$s)", + "mco.upload.failed": "上传失败!(%s)", + "mco.upload.hardcore": "极限世界不能被上传!", + "mco.upload.percent": "%s %%", + "mco.upload.preparing": "正在准备您的世界数据", + "mco.upload.select.world.none": "找不到单人游戏世界!", + "mco.upload.select.world.subtitle": "请选择一个单人游戏世界来上传", + "mco.upload.select.world.title": "上传世界", + "mco.upload.size.failure.line1": "\"%s\"太大了!", + "mco.upload.size.failure.line2": "你想上传%s的地图,超过了%s的限制。", + "mco.upload.uploading": "正在上传“%s”", + "mco.upload.verifying": "正在验证你的地图", + "mco.version": "版本:%s", + "mco.warning": "警告!", + "mco.worldSlot.minigame": "小游戏", "menu.convertingLevel": "改天换地中", "menu.disconnect": "断开连接", + "menu.feedback": "反馈…", + "menu.feedback.title": "反馈", "menu.game": "游戏菜单", "menu.generatingLevel": "起初神创造天地。地是空虚混沌,渊面黑暗。", "menu.generatingTerrain": "神说:“天下的水要聚在一处,使旱地露出来。”事就这样成了。", @@ -3839,6 +5035,7 @@ "menu.options": "控制面板", "menu.paused": "非静止画面", "menu.playdemo": "开始白嫖", + "menu.playerReporting": "玩家菊♂爆", "menu.preparingSpawn": "准备生成区域中:%s%%", "menu.quit": "逊出游戏", "menu.reportBugs": "把漏洞献给Bugjump", @@ -3849,17 +5046,20 @@ "menu.savingChunks": "保存大块中", "menu.savingLevel": "保存世界中", "menu.sendFeedback": "投诉游戏", + "menu.server_links": "服务器链接…", + "menu.server_links.title": "服务器链接", "menu.shareToLan": "对菊域网开放", "menu.singleplayer": "孤独地玩游戏", "menu.working": "处理中…", - "merchant.current_level": "奸商的当前等级", + "merchant.current_level": "奸商的当前水平", "merchant.deprecated": "奸商每天最多补货两次。", "merchant.level.1": "菜鸟", "merchant.level.2": "萌新", "merchant.level.3": "大佬", "merchant.level.4": "砖家", "merchant.level.5": "大神", - "merchant.next_level": "奸商的下一等级", + "merchant.next_level": "奸商的更高水平", + "merchant.title": "%s - %s", "merchant.trades": "交♂易", "mirror.front_back": "↑ ↓", "mirror.left_right": "← →", @@ -3872,35 +5072,46 @@ "multiplayer.disconnect.banned.reason": "哎呀,服务器封禁了你!\n原因:%s", "multiplayer.disconnect.banned_ip.expiration": "\n你的滥权将于%s解除", "multiplayer.disconnect.banned_ip.reason": "你的IP已被此服务器的管理员滥权。\n原因:%s", + "multiplayer.disconnect.chat_validation_failed": "没法验证你的聊天消息,你就不能被人菊♂爆啦", "multiplayer.disconnect.duplicate_login": "你已在异地登录,或你被(假)玩家顶替", + "multiplayer.disconnect.expired_public_key": "你的玩家资料公钥过期啦,看看你的系统时间正确不正确,或者重开游戏吧", "multiplayer.disconnect.flying": "此服务器未启用滥权", - "multiplayer.disconnect.generic": "连接中止", + "multiplayer.disconnect.generic": "喜报!连接中止", "multiplayer.disconnect.idling": "别想挂机!", "multiplayer.disconnect.illegal_characters": "你在干啥?", "multiplayer.disconnect.incompatible": "客户端不兼容!请使用%s", "multiplayer.disconnect.invalid_entity_attacked": "你把自己打晕了", "multiplayer.disconnect.invalid_packet": "服务器发来了看不懂的东西呢(懵)", "multiplayer.disconnect.invalid_player_data": "无效的玩家数据", - "multiplayer.disconnect.invalid_player_movement": "收到了包含非法玩家移动的数据包", + "multiplayer.disconnect.invalid_player_movement": "收到了包含非法玩家移动的数据包。你是不是开飞行了?", + "multiplayer.disconnect.invalid_public_key_signature": "无效的个人信息公钥签名,重开游戏吧", + "multiplayer.disconnect.invalid_public_key_signature.new": "无效的个人信息公钥签名。\n请尝试重开游戏。", "multiplayer.disconnect.invalid_vehicle_movement": "收到了包含非法载具移动的数据包", "multiplayer.disconnect.ip_banned": "你的IP地址已被此服务器的管理员滥权", "multiplayer.disconnect.kicked": "被管理员滥权", - "multiplayer.disconnect.missing_tags": "从服务器接收到不完整标签集。\n赶快找服主修特性吧。", + "multiplayer.disconnect.missing_tags": "从服务器接收到不完整标签集。\n赶快找腐竹修特性吧。", "multiplayer.disconnect.name_taken": "此名称已被占用", "multiplayer.disconnect.not_whitelisted": "请先找人把你运作进白名单", + "multiplayer.disconnect.out_of_order_chat": "你的聊天数据包顺序错乱了!你的电脑时间是不是设错了?", "multiplayer.disconnect.outdated_client": "这什么上古客户端,请换成%s加入游戏", "multiplayer.disconnect.outdated_server": "服务器有点旧了,请使用%s加入游戏", "multiplayer.disconnect.server_full": "服务器被玩家填满了!", - "multiplayer.disconnect.server_shutdown": "服主跑路了", - "multiplayer.disconnect.slow_login": "登录超时", + "multiplayer.disconnect.server_shutdown": "腐竹跑路了", + "multiplayer.disconnect.slow_login": "登录不上", + "multiplayer.disconnect.too_many_pending_chats": "你的聊天消息水的太多啦", + "multiplayer.disconnect.transfers_disabled": "服务器不接受转移", "multiplayer.disconnect.unexpected_query_response": "从客户端收到未知的自定义数据", + "multiplayer.disconnect.unsigned_chat": "你没有聊天签名,别人菊♂爆不了你", "multiplayer.disconnect.unverified_username": "无法验证用户名!", - "multiplayer.downloadingStats": "正在下载统计数据…", + "multiplayer.downloadingStats": "正在下崽统计数据…", "multiplayer.downloadingTerrain": "加载地形中…", + "multiplayer.lan.server_found": "发现新的服务器:%s", "multiplayer.message_not_delivered": "唠嗑消息无法发送,请检查服务器日志。截断后的消息:%s", "multiplayer.player.joined": "%s加入了游戏,问候一下他吧!", "multiplayer.player.joined.renamed": "%s(以前叫做%s)加入了游戏,问候一下他吧!", "multiplayer.player.left": "%s退出了游戏,有缘再见!", + "multiplayer.player.list.hp": "%s生命值", + "multiplayer.player.list.narration": "在线玩家:%s", "multiplayer.requiredTexturePrompt.disconnect": "服务器需要自定义亮目害眼包", "multiplayer.requiredTexturePrompt.line1": "这个服务器需要使用自定义的亮目害眼包。", "multiplayer.requiredTexturePrompt.line2": "拒绝该自定义亮目害眼包将使你被滥权(确信)。", @@ -3911,33 +5122,41 @@ "multiplayer.status.cannot_resolve": "无法解析主机名", "multiplayer.status.finished": "已完成", "multiplayer.status.incompatible": "不兼容的版本!", + "multiplayer.status.motd.narration": "服务器信息:%s", "multiplayer.status.no_connection": "(无连接)", "multiplayer.status.old": "旧版", + "multiplayer.status.online": "在线", "multiplayer.status.ping": "%s毫秒", + "multiplayer.status.ping.narration": "延迟为%s毫秒", "multiplayer.status.pinging": "检测中…", + "multiplayer.status.player_count": "%s/%s", + "multiplayer.status.player_count.narration": "%s名玩家在线,共%s名玩家", "multiplayer.status.quitting": "退出", "multiplayer.status.request_handled": "状态请求已被处理", "multiplayer.status.unknown": "啊wee改哈鞥嫦娥我刚不疤痕处哈维楚王嗡阿格王朔!!!!!!!!!!!!", "multiplayer.status.unrequested": "收到了未请求的状态", + "multiplayer.status.version.narration": "服务器版本:%s", "multiplayer.stopSleeping": "别睡了,起来嗨", "multiplayer.texturePrompt.failure.line1": "无法应用服务器亮目害眼包", "multiplayer.texturePrompt.failure.line2": "所有依赖自定义亮目害眼包的功能都可能会当 场 炸 裂。", "multiplayer.texturePrompt.line1": "这个服务器推荐使用自定义的亮目害眼包。", - "multiplayer.texturePrompt.line2": "你想要自动下载和安装它吗?", + "multiplayer.texturePrompt.line2": "你想要自动下崽和安装它吗?", "multiplayer.texturePrompt.serverPrompt": "%s\n\n来自服务器的温馨提示:\n%s", - "multiplayer.title": "多人娱乐", + "multiplayer.title": "多人游戏", + "multiplayer.unsecureserver.toast": "该服务器上发送的消息可能会被乱改,无法反映原始内容", + "multiplayer.unsecureserver.toast.title": "无法验证唠嗑消息", "multiplayerWarning.check": "别管我!", "multiplayerWarning.header": "警告:你可能正在接触在线放毒", "multiplayerWarning.message": "在线游戏由第三π对服务器提供,它们不由Bugjump Studios或Macrohard拥有、运营和监督。在线游戏的过程中,你可能会接受到不受【数据删除】的唠嗑消息或者其他类型的UGC,甚至会被 动 长 大(意味深)(但是你莫得选择)。It's up to you.", "narration.button": "按钮:%s", - "narration.button.usage.focused": "按下回车键以激活", + "narration.button.usage.focused": "按下Enter键以激活", "narration.button.usage.hovered": "单击鼠标左键激活", - "narration.component_list.usage": "按下Tab键以移动到下一屏幕控件", - "narration.cycle_button.usage.focused": "按下回车键以切换到%s", - "narration.cycle_button.usage.hovered": "单击鼠标左键切换到%s", "narration.checkbox": "复选框:%s", - "narration.checkbox.usage.focused": "按下回车键以切换", + "narration.checkbox.usage.focused": "按下Enter键以切换", "narration.checkbox.usage.hovered": "单击鼠标左键切换", + "narration.component_list.usage": "按下Tab键以移动到下一屏幕控件", + "narration.cycle_button.usage.focused": "按下Enter键以切换到%s", + "narration.cycle_button.usage.hovered": "单击鼠标左键切换到%s", "narration.edit_box": "编辑框:%s", "narration.recipe": "%s的食谱", "narration.recipe.usage": "单击鼠标左键选中", @@ -3947,13 +5166,18 @@ "narration.slider.usage.hovered": "拖动滑块以更改数值", "narration.suggestion": "选中了%2$d项建议中的第%1$d项:%3$s", "narration.suggestion.tooltip": "选中了%2$d项建议中的第%1$d项:%3$s(%4$s)", + "narration.suggestion.usage.cycle.fixed": "按下Tab键切换到下一个建议", + "narration.suggestion.usage.cycle.hidable": "按下Tab键切换到下一个建议,或按下Escape键忽略建议", + "narration.suggestion.usage.fill.fixed": "按下Tab键使用建议", + "narration.suggestion.usage.fill.hidable": "按下Tab键使用建议,或按下Escape键忽略建议", + "narration.tab_navigation.usage": "按下Ctrl键和Tab键切换标签页", "narrator.button.accessibility": "轻松使用", "narrator.button.difficulty_lock": "难度锁", "narrator.button.difficulty_lock.locked": "已锁定", "narrator.button.difficulty_lock.unlocked": "未锁定", "narrator.button.language": "言语", "narrator.controls.bound": "%s已绑定至%s", - "narrator.controls.reset": "重置%s,抱枕", + "narrator.controls.reset": "重置%s,按钮", "narrator.controls.unbound": "%s未绑定", "narrator.joining": "加入中", "narrator.loading": "加载中:%s", @@ -3961,28 +5185,51 @@ "narrator.position.list": "已选中列表的第%s行,共%s行", "narrator.position.object_list": "已选中一列控件中的第%s项,共%s项", "narrator.position.screen": "第%s个屏幕控件,共%s个", + "narrator.position.tab": "已选中第%s个标签页,共%s个", + "narrator.ready_to_play": "准备就绪", "narrator.screen.title": "标题画面", "narrator.screen.usage": "使用鼠标指针或Tab键选择屏幕控件", "narrator.select": "已选择:%s", "narrator.select.world": "已选择%s,上次游玩:%s,%s,%s,版本:%s", - "narrator.toast.disabled": "复读机已关闭", - "narrator.toast.enabled": "复读机已开启", + "narrator.select.world_info": "已选择%s,上次进入游戏:%s,%s", + "narrator.toast.disabled": "复读机已关掉", + "narrator.toast.enabled": "复读机已打开", "optimizeWorld.confirm.description": "这将尝试用最新的游戏格式储存所有数据来达到优化世界的buff。取决于世界的状况,这可能会花费不少时间。一旦完成,游玩时可能变流畅但是你的世界将不再与旧版游戏兼容。你确定要继续吗?", "optimizeWorld.confirm.title": "优化世界", "optimizeWorld.info.converted": "更新的大块:%s", "optimizeWorld.info.skipped": "忽略的大块:%s", "optimizeWorld.info.total": "总计大块:%s", + "optimizeWorld.progress.counter": "%s / %s", + "optimizeWorld.progress.percentage": "%s%%", "optimizeWorld.stage.counting": "统计大块中…", "optimizeWorld.stage.failed": "失败了!:))))))))", "optimizeWorld.stage.finished": "马上完成,真的…", + "optimizeWorld.stage.finished.chunks": "即将完成区块的升级…", + "optimizeWorld.stage.finished.entities": "即将完成实体的升级…", + "optimizeWorld.stage.finished.poi": "即将完成兴趣点的升级…", "optimizeWorld.stage.upgrading": "更新所有大块中…", + "optimizeWorld.stage.upgrading.chunks": "升级所有区块中…", + "optimizeWorld.stage.upgrading.entities": "升级所有实体中…", + "optimizeWorld.stage.upgrading.poi": "升级所有兴趣点中…", "optimizeWorld.title": "正在劣化世界“%s”", + "options.accessibility": "轻松使用设置…", + "options.accessibility.high_contrast": "霓虹灯牌", + "options.accessibility.high_contrast.error.tooltip": "霓虹灯牌资源包不可用", + "options.accessibility.high_contrast.tooltip": "提高UI控件的对比度", "options.accessibility.link": "轻松使用指南", + "options.accessibility.menu_background_blurriness": "菜单背景看不清程度", + "options.accessibility.menu_background_blurriness.tooltip": "更改看不清菜单背景的程度", + "options.accessibility.narrator_hotkey": "快速启动复读机", + "options.accessibility.narrator_hotkey.mac.tooltip": "允许使用“Cmd+B”打开和关掉复读机", + "options.accessibility.narrator_hotkey.tooltip": "允许使用“Ctrl+B”打开和关掉复读机", + "options.accessibility.panorama_speed": "背景准备滚多快?", "options.accessibility.text_background": "文本背景", "options.accessibility.text_background.chat": "唠嗑", "options.accessibility.text_background.everywhere": "全局", - "options.accessibility.text_background_opacity": "文本背景不透明度", + "options.accessibility.text_background_opacity": "唠嗑文本后面的不透明度", "options.accessibility.title": "轻松使用设置…", + "options.allowServerListing": "允许列入服务器玩家列表", + "options.allowServerListing.tooltip": "服务器可能会把在线的玩家列为它们的公开状态。\n打开它,你就可以隐身了。", "options.ao": "逼真滑溜溜的光照", "options.ao.max": "最大", "options.ao.min": "最小", @@ -3992,8 +5239,9 @@ "options.attackIndicator": "攻击指示器", "options.audioDevice": "声音设备", "options.audioDevice.default": "系统预设", - "options.autoJump": "自动跳跳", - "options.autoSuggestCommands": "命令提示", + "options.autoJump": "全自动蹦蹦跳跳", + "options.autoSuggestCommands": "滥权时提示", + "options.autosaveIndicator": "拯救硬盘指示器", "options.biomeBlendRadius": "生物群系过渡距离", "options.biomeBlendRadius.1": "关(最快)", "options.biomeBlendRadius.11": "11x11(极高)", @@ -4003,6 +5251,7 @@ "options.biomeBlendRadius.5": "5x5(普通)", "options.biomeBlendRadius.7": "7x7(高)", "options.biomeBlendRadius.9": "9x9(很高)", + "options.chat": "唠嗑设置…", "options.chat.color": "颜色", "options.chat.delay": "唠嗑延迟:%s秒", "options.chat.delay_none": "唠嗑延迟:无", @@ -4020,39 +5269,59 @@ "options.chat.visibility.system": "仅限命令", "options.chat.width": "宽度", "options.chunks": "%s个大块", - "options.clouds.fancy": "高品质", - "options.clouds.fast": "流畅", + "options.clouds.fancy": "好棒棒", + "options.clouds.fast": "一般般", "options.controls": "控制…", + "options.credits_and_attribution": "关于我们", "options.customizeTitle": "自定义世界设置", + "options.damageTiltStrength": "受伤抖动效果", + "options.damageTiltStrength.tooltip": "受到伤害导致的游戏视角晃动程度。", "options.darkMojangStudiosBackgroundColor": "永 远 怀 念", "options.darkMojangStudiosBackgroundColor.tooltip": "既然开这个就不会在加载界面瞎眼那为什么不早点出啊!!!!!!!", + "options.darknessEffectScale": "黑暗脉动效果", + "options.darknessEffectScale.tooltip": "控制傻大个或幽(yóu)匿尖叫体给予的黑暗脉动效果程度。", "options.difficulty": "难度", "options.difficulty.easy": "ez", + "options.difficulty.easy.info": "敌对暴徒会生成,但伤害较低。生命值在饥饿值耗尽后最终会降至5颗心。", "options.difficulty.hard": "硬", - "options.difficulty.hardcore": "硬核啊兄dei", + "options.difficulty.hard.info": "敌对暴徒会生成,伤害较高。饥饿值耗尽后最终会饿死。", + "options.difficulty.hardcore": "硬核", "options.difficulty.normal": "一般般", + "options.difficulty.normal.info": "敌对暴徒会生成,伤害适中。生命值在饥饿值耗尽后最终会降至半颗心。", + "options.difficulty.online": "服务器难度", "options.difficulty.peaceful": "怂", + "options.difficulty.peaceful.info": "不会生成绝大多数敌对暴徒。饥饿值不会消耗,且生命值会自然恢复。", + "options.directionalAudio": "定向音乐(lè)", + "options.directionalAudio.off.tooltip": "经典立体声", + "options.directionalAudio.on.tooltip": "通过基于HRTF算法的定向环绕音频来改善立体音效的模拟。需使用与HRTF兼容的音频硬件,推荐在使用时佩戴耳机。", "options.discrete_mouse_scroll": "忽略系统滚动幅度值", "options.entityDistanceScaling": "实体可视距离", "options.entityShadows": "实体阴影", + "options.font": "字体设置…", + "options.font.title": "字体设置", "options.forceUnicodeFont": "我爱Unicode字体", "options.fov": "视场角", "options.fov.max": "鹰眼", "options.fov.min": "视力正常", "options.fovEffectScale": "视场角buff", - "options.fovEffectScale.tooltip": "控制Plash Speed和龟速buff改变玩家鹰眼的程度。", + "options.fovEffectScale.tooltip": "控制buff改变玩家鹰眼的程度。", "options.framerate": "%s fps", "options.framerateLimit": "最大帧率", "options.framerateLimit.max": "无所谓,你们随便搞", - "options.fullscreen": "全屏(默认F11)", + "options.fullscreen": "铺满(默认F11)", "options.fullscreen.current": "当前分辨率", - "options.fullscreen.resolution": "全屏分辨率", + "options.fullscreen.entry": "%s×%s@%sHz(%s位色深)", + "options.fullscreen.resolution": "铺满的分辨率", "options.fullscreen.unavailable": "设置不可用", - "options.gamma": "亮度", - "options.gamma.max": "亮目害了我的狗眼", + "options.gamma": "目害眼度", "options.gamma.default": "在近视与亮目害之间的最佳平衡", + "options.gamma.max": "亮目害了我的狗眼", "options.gamma.min": "我目害了", "options.generic_value": "%s:%s", + "options.glintSpeed": "覆膜光效目害速度", + "options.glintSpeed.tooltip": "控制覆膜物品的光效的目害速度。", + "options.glintStrength": "覆膜光效目害力度", + "options.glintStrength.tooltip": "控制覆膜物品光效的透明程度。", "options.graphics": "显卡压力", "options.graphics.fabulous": "钞能力!", "options.graphics.fabulous.tooltip": "%s画质——让透明更透明,让显卡更燃烧!没有光追,胜似光追(指性能要求)!", @@ -4067,43 +5336,57 @@ "options.graphics.warning.title": "你的显卡弱爆了!", "options.graphics.warning.vendor": "检测到厂商:[%s]", "options.graphics.warning.version": "检测到OpenGL版本:[%s]", - "options.guiScale": "界面尺寸", - "options.guiScale.auto": "我自己来", + "options.guiScale": "关怀模式等级", + "options.guiScale.auto": "随意", "options.hidden": "隐藏", "options.hideLightningFlashes": "这个闪电大E了", "options.hideLightningFlashes.tooltip": "隐藏云层与大地之间放电击穿空气后,空气分子电离时能级跃迁发出可见光的米氏散射效果。\n简单来说就是只有电没有闪。", "options.hideMatchedNames": "隐藏匹配名字", "options.hideMatchedNames.tooltip": "第三方服务器也许会发送非标准格式的唠嗑消息。\n此设置打开后,被隐藏的玩家将会被根据发言者的名字匹配。", + "options.hideSplashTexts": "隐藏闪烁标语", + "options.hideSplashTexts.tooltip": "隐藏主菜单上的黄色闪烁标语。", "options.invertMouse": "鼠标反转", + "options.japaneseGlyphVariants": "日本字形变体", + "options.japaneseGlyphVariants.tooltip": "在默认字体中为CJK字符使用日本字形", "options.key.hold": "按住", "options.key.toggle": "切换", "options.language": "你精通八国语言吗?", + "options.language.title": "言语", + "options.languageAccuracyWarning": "言语翻译并一定不100%%误错,其尤梗体中文是", "options.languageWarning": "言语翻译并一定不100%%误错,其尤梗体中文是", - "options.mainHand": "主手", - "options.mainHand.left": "左手", - "options.mainHand.right": "右手", + "options.mainHand": "吃饭饭", + "options.mainHand.left": "不是右手", + "options.mainHand.right": "不是左手", "options.mipmapLevels": "Mipmap级别", - "options.modelPart.cape": "披风", - "options.modelPart.hat": "帽子", - "options.modelPart.jacket": "衣物", - "options.modelPart.left_pants_leg": "左裤腿", - "options.modelPart.left_sleeve": "左袖", - "options.modelPart.right_pants_leg": "右裤腿", - "options.modelPart.right_sleeve": "右袖", + "options.modelPart.cape": "被被", + "options.modelPart.hat": "帽帽", + "options.modelPart.jacket": "褂褂", + "options.modelPart.left_pants_leg": "左裤裤", + "options.modelPart.left_sleeve": "左袖袖", + "options.modelPart.right_pants_leg": "右裤裤", + "options.modelPart.right_sleeve": "右袖袖", "options.mouseWheelSensitivity": "滚轮灵敏度", "options.mouse_settings": "鼠标设置…", "options.mouse_settings.title": "鼠标设置", "options.multiplayer.title": "多人游戏设置…", + "options.multiplier": "%sx", "options.narrator": "大 声 复 读", "options.narrator.all": "复 读 一 切", "options.narrator.chat": "复读别人的话", "options.narrator.notavailable": "不可用", - "options.narrator.off": "复读机已关闭", + "options.narrator.off": "复读机已关掉", "options.narrator.system": "复读系统消息", + "options.notifications.display_time": "通知显示时长", + "options.notifications.display_time.tooltip": "影响所有通知在屏幕上停留的时长。", "options.off": "关掉", - "options.off.composed": "%s:关闭", + "options.off.composed": "%s:关掉", "options.on": "打开", - "options.on.composed": "%s:开启", + "options.on.composed": "%s:打开", + "options.online": "在线…", + "options.online.title": "在线选项", + "options.onlyShowSecureChat": "仅展示安全的唠嗑", + "options.onlyShowSecureChat.tooltip": "仅显示来自其他玩家并经由验证为该玩家发送且未被修改的唠嗑。", + "options.operatorItemsTab": "滥权物品组", "options.particles": "颗粒buff", "options.particles.all": "我全都要", "options.particles.decreased": "少一点", @@ -4111,42 +5394,53 @@ "options.percent_add_value": "%s:+%s%%", "options.percent_value": "%s:%s%%", "options.pixel_value": "%s:%spx", - "options.prioritizeChunkUpdates": "渲染更新优先级", - "options.prioritizeChunkUpdates.byPlayer": "玩家附近", - "options.prioritizeChunkUpdates.nearby": "邻近", - "options.prioritizeChunkUpdates.none": "无", + "options.prioritizeChunkUpdates": "区块构建器", + "options.prioritizeChunkUpdates.byPlayer": "全部堵住", + "options.prioritizeChunkUpdates.byPlayer.tooltip": "在区块内的一些行动会立刻重新编译区块。这包括方块放置和破坏。", + "options.prioritizeChunkUpdates.nearby": "半堵住", + "options.prioritizeChunkUpdates.nearby.tooltip": "附近的区块总是立刻编译。当方块被放置和破坏时,这可能会影响游戏性能", + "options.prioritizeChunkUpdates.none": "多管齐下", + "options.prioritizeChunkUpdates.none.tooltip": "附近的区块是以平行方式被编译的。当方块被破坏时,这可能会导致简短的视觉洞。", "options.rawMouseInput": "原始输入(去除加速度)", - "options.realmsNotifications": "领域的通知", + "options.realmsNotifications": "领域新闻与邀请", + "options.realmsNotifications.tooltip": "在标题屏幕上获取Realms新闻和邀请,并在Realms按钮上显示相应图标。", "options.reducedDebugInfo": "tl;dr,调试信息请少一点", "options.renderClouds": "云(不是玩家)", "options.renderDistance": "显卡迫害等级", "options.resourcepack": "亮目害眼包…", "options.screenEffectScale": "O区剧烈度", - "options.screenEffectScale.tooltip": "D区buff和尼德兰传送门使你O区的剧烈度。\n值较低时,D区buff会被一层原谅色的视觉buff替代。", + "options.screenEffectScale.tooltip": "D区buff和尼德兰门户使你O区的剧烈度。\n值较低时,D区buff会被一层原谅色的视觉buff替代。", "options.sensitivity": "鼠标灵敏度", "options.sensitivity.max": "晕死你!!!", "options.sensitivity.min": "我太老了…", - "options.showSubtitles": "显示字幕", + "options.showSubtitles": "显示剧本", "options.simulationDistance": "处理器迫害等级", - "options.skinCustomisation": "自定义皮肤…", - "options.skinCustomisation.title": "自定义皮肤", - "options.snooper": "Is this Privacy?", - "options.snooper.desc": "我们不想改进Minecraft,所以不要把任何信息告诉我们。我们不想明白需要支持什么样的硬件以及主要的问题出在哪里。这不也能让我们大致知道活跃玩家群体的规模。您能在下方查看我们收集的所有信息,不过应该是没有的。", - "options.snooper.title": "给我们数据!", - "options.snooper.view": "匿名信息反馈设置…", + "options.skinCustomisation": "裤裤飞飞选项…", + "options.skinCustomisation.title": "裤裤飞飞选项", "options.sounds": "杜比顶级音效…", "options.sounds.title": "杜比顶级音效选项", - "options.title": "选项", + "options.telemetry": "遥测数据...", + "options.telemetry.button": "数据收集", + "options.telemetry.button.tooltip": "“%s”仅包含必要数据。\n“%s”包含可选数据和必要数据", + "options.telemetry.disabled": "遥测已禁用。", + "options.telemetry.state.all": "全部", + "options.telemetry.state.minimal": "最少", + "options.telemetry.state.none": "无", + "options.title": "控制面板", "options.touchscreen": "触屏模式", "options.video": "压榨显卡设置…", "options.videoTitle": "压榨显卡设置", "options.viewBobbing": "脑震荡(别开!)", "options.visible": "显示", "options.vsync": "使用掉帧的垂直同步", + "outOfMemory.message": "Minecraft已经把内存吃完了。\n请给游戏喂食更多的内存。\n为了避免存档损坏,你已被踢出游戏。我们已尝试腾出足够的内存来使你返回主菜单进而返回游戏,但这可能没什么卵用。\n你耗子尾汁罢!", + "outOfMemory.title": "内存:寄!", "pack.available.title": "可用", "pack.copyFailure": "复制压缩包失败", "pack.dropConfirm": "你确定要将这些压缩包添加进Minecraft中吗?", "pack.dropInfo": "将文件拖放到这个窗口内来添加压缩包", + "pack.dropRejected.message": "以下项目不是有效的包,未能执行复制操作:\n %s", + "pack.dropRejected.title": "所添加的内容不是包", "pack.folderInfo": "(在此放置压缩包文件)", "pack.incompatible": "不兼容", "pack.incompatible.confirm.new": "这个压缩包是为未来的Minecraft版本所打造的,不要再玩这个老掉牙的版本啦!", @@ -4158,27 +5452,131 @@ "pack.openFolder": "打开压缩包文件夹", "pack.selected.title": "已选", "pack.source.builtin": "内置", + "pack.source.feature": "特性", "pack.source.local": "本地", "pack.source.server": "服务器", "pack.source.world": "世界", + "painting.dimensions": "%sx%s", + "painting.minecraft.alban.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.alban.title": "《阿尔巴尼亚人》", + "painting.minecraft.aztec.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.aztec.title": "《阿兹特克》", + "painting.minecraft.aztec2.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.aztec2.title": "《阿兹特克2》", + "painting.minecraft.backyard.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.backyard.title": "《后院》", + "painting.minecraft.baroque.author": "萨拉·伯文", + "painting.minecraft.baroque.title": "《巴洛克》", + "painting.minecraft.bomb.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.bomb.title": "《炸弹》", + "painting.minecraft.bouquet.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.bouquet.title": "《花束》", + "painting.minecraft.burning_skull.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.burning_skull.title": "《燃起来的头骨》", + "painting.minecraft.bust.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.bust.title": "《半身像》", + "painting.minecraft.cavebird.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.cavebird.title": "《洞中窥鸟》", + "painting.minecraft.changing.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.changing.title": "《换衣服》", + "painting.minecraft.cotan.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.cotan.title": "《科坦》", + "painting.minecraft.courbet.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.courbet.title": "《库尔贝》", + "painting.minecraft.creebet.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.creebet.title": "《爪巴者》", + "painting.minecraft.donkey_kong.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.donkey_kong.title": "《金刚》", + "painting.minecraft.earth.author": "Bugjump", + "painting.minecraft.earth.title": "《地》", + "painting.minecraft.endboss.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.endboss.title": "《最终BOSS》", + "painting.minecraft.fern.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.fern.title": "《蕨了》", + "painting.minecraft.fighters.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.fighters.title": "《比武者》", + "painting.minecraft.finding.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.finding.title": "《寻找》", + "painting.minecraft.fire.author": "Bugjump", + "painting.minecraft.fire.title": "《火》", + "painting.minecraft.graham.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.graham.title": "《格雷姆》", + "painting.minecraft.humble.author": "萨拉·伯文", + "painting.minecraft.humble.title": "《“厚障壁”》", + "painting.minecraft.kebab.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.kebab.title": "《土耳其烤肉》", + "painting.minecraft.lowmist.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.lowmist.title": "《山》", + "painting.minecraft.match.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.match.title": "《火柴》", + "painting.minecraft.meditative.author": "莎拉·伯文", + "painting.minecraft.meditative.title": "《冥想的玫瑰》", + "painting.minecraft.orb.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.orb.title": "《球》", + "painting.minecraft.owlemons.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.owlemons.title": "《猫头鹰和它的柠檬》", + "painting.minecraft.passage.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.passage.title": "《走廊》", + "painting.minecraft.pigscene.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.pigscene.title": "《猪的头像》", + "painting.minecraft.plant.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.plant.title": "《植物》", + "painting.minecraft.pointer.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.pointer.title": "《指针》", + "painting.minecraft.pond.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.pond.title": "《池塘》", + "painting.minecraft.pool.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.pool.title": "《小池塘》", + "painting.minecraft.prairie_ride.author": "萨拉·伯文", + "painting.minecraft.prairie_ride.title": "《草原骑行》", + "painting.minecraft.sea.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.sea.title": "《大海》", + "painting.minecraft.skeleton.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.skeleton.title": "《骷髅》", + "painting.minecraft.skull_and_roses.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.skull_and_roses.title": "《头骨与玫瑰》", + "painting.minecraft.stage.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.stage.title": "《舞台》", + "painting.minecraft.sunflowers.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.sunflowers.title": "《向日葵》", + "painting.minecraft.sunset.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.sunset.title": "《日落》", + "painting.minecraft.tides.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.tides.title": "《潮》", + "painting.minecraft.unpacked.author": "萨拉·伯文", + "painting.minecraft.unpacked.title": "《已解包的》", + "painting.minecraft.void.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.void.title": "《虚无世界》", + "painting.minecraft.wanderer.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.wanderer.title": "《旅人》", + "painting.minecraft.wasteland.author": "克里斯托弗·择特斯塔德", + "painting.minecraft.wasteland.title": "《垃圾场》", + "painting.minecraft.water.author": "Bugjump", + "painting.minecraft.water.title": "《水》", + "painting.minecraft.wind.author": "Bugjump", + "painting.minecraft.wind.title": "《风》", + "painting.minecraft.wither.author": "Bugjump", + "painting.minecraft.wither.title": "《凋零怪》", + "painting.random": "随地大小变", "parsing.bool.expected": "需要布尔值", - "parsing.bool.invalid": "无效的布尔值,需要'true'或'false'却找到了'%s',爬", + "parsing.bool.invalid": "无效的布尔值,需要'true'或'false'却找到了“%s”,爬", "parsing.double.expected": "需要双精度浮点数", - "parsing.double.invalid": "无效的双精度浮点数'%s'", - "parsing.expected": "需要'%s'", + "parsing.double.invalid": "无效的双精度浮点数“%s”", + "parsing.expected": "需要“%s”", "parsing.float.expected": "需要浮点数", - "parsing.float.invalid": "无效的浮点数'%s'", + "parsing.float.invalid": "无效的浮点数“%s”", "parsing.int.expected": "需要整数", - "parsing.int.invalid": "无效的整数'%s'", + "parsing.int.invalid": "无效的整数“%s”", "parsing.long.expected": "需要长整数", - "parsing.long.invalid": "无效的长整数'%s'", + "parsing.long.invalid": "无效的长整数“%s”", "parsing.quote.escape": "双引号内的字符串包含无效的转义序列'\\%s'", "parsing.quote.expected.end": "字符串的双引号不成对", "parsing.quote.expected.start": "字符串的开头需要双引号", + "particle.invalidOptions": "无法解析粒子选项:%s", "particle.notFound": "未知的颗粒:%s", "permissions.requires.entity": "必须要有实体才能在此执行该命令。", "permissions.requires.player": "必须要有玩家才能在此执行该命令。", - "potion.potency.0": "0!", + "potion.potency.0": "", "potion.potency.1": "√4", "potion.potency.2": "2!+1", "potion.potency.3": "2²", @@ -4188,19 +5586,41 @@ "potion.withAmplifier": "%s(%s)", "potion.withDuration": "%s(%s)", "predicate.unknown": "未知的谓词:%s", + "quickplay.error.invalid_identifier": "无法找到具有指定标识符的世界", + "quickplay.error.realm_connect": "无法连接至领域", + "quickplay.error.realm_permission": "猜猜看谁没有收到此领域的邀请,是你~!", + "quickplay.error.title": "无法快速进入游戏", "realms.missing.module.error.text": "当前无法打开领域,请暴锤Bugjump一顿", "realms.missing.snapshot.error.text": "你居然用快照打开领域?你想桃子呢", "recipe.notFound": "未知的食谱:%s", "recipe.toast.description": "请检查你的原谅色小本本", "recipe.toast.title": "新食谱get☆daze!", "record.nowPlaying": "正在游玩:%s", + "recover_world.bug_tracker": "报告漏洞", + "recover_world.button": "尝试恢复", + "recover_world.done.failed": "无法从之前的状态恢复。", + "recover_world.done.success": "恢复成功!", + "recover_world.done.title": "恢复已完成", + "recover_world.issue.missing_file": "缺失文件", + "recover_world.issue.none": "没有问题", + "recover_world.message": "尝试读取世界文件夹“%s”时出现以下问题。\n可以尝试从较旧的状态恢复此世界,也可以在漏洞跟踪器上报告此问题。", + "recover_world.no_fallback": "没有可以恢复的状态", + "recover_world.restore": "尝试恢复", + "recover_world.restoring": "尝试恢复世界中…", + "recover_world.state_entry": "%s的状态:", + "recover_world.state_entry.unknown": "未知", + "recover_world.title": "加载世界失败", + "recover_world.warning": "加载世界摘要失败", "resourcePack.broken_assets": "检测到损坏的资源文件", + "resourcePack.high_contrast.name": "赛博朋克模式", "resourcePack.load_fail": "重载资源失败", + "resourcePack.programmer_art.name": "程序猿の经典老番", "resourcePack.server.name": "世界指定亮目害眼包", "resourcePack.title": "选择亮目害眼包", "resourcePack.vanilla.description": "Minecraft唯一官方指定亮目害眼包!", - "resourcepack.downloading": "正在下载亮目害眼包中", - "resourcepack.progress": "下载文件中(%s MB)…", + "resourcePack.vanilla.name": "钦定", + "resourcepack.downloading": "正在下崽亮目害眼包中", + "resourcepack.progress": "下崽文件中(%s MB)…", "resourcepack.requesting": "正在发送请求…", "screenshot.failure": "无法保存截图:%s", "screenshot.success": "已将截图保存为%s", @@ -4209,7 +5629,7 @@ "selectServer.delete": "怒删", "selectServer.deleteButton": "怒删", "selectServer.deleteQuestion": "你真的真的确定要怒删此服务器吗?", - "selectServer.deleteWarning": "“%s”将拜拜了您咧!(真的!)", + "selectServer.deleteWarning": "“%s”将拜拜了你咧!(真的!)", "selectServer.direct": "懒得加,直接进", "selectServer.edit": "编辑", "selectServer.hiddenAddress": "(隐藏)", @@ -4219,19 +5639,21 @@ "selectWorld.access_failure": "访问世界失败", "selectWorld.allowCommands": "允许滥权", "selectWorld.allowCommands.info": "例如/gamemode、/experience等滥权命令", + "selectWorld.allowCommands.new": "允许命令", "selectWorld.backupEraseCache": "清除缓存数据", - "selectWorld.backupJoinConfirmButton": "创建备份并载入(怂)", - "selectWorld.backupJoinSkipButton": "我知道我在做什么!", + "selectWorld.backupJoinConfirmButton": "创建备份并加载(怂)", + "selectWorld.backupJoinSkipButton": "开玩笑,我超勇的!", "selectWorld.backupQuestion.customized": "自定义世界已炸裂", "selectWorld.backupQuestion.downgrade": "不支持降低存档的游戏版本", - "selectWorld.backupQuestion.experimental": "不支持使用“实验性设置”的世界", + "selectWorld.backupQuestion.experimental": "不支持使用“还没做完的设置”的世界", "selectWorld.backupQuestion.snapshot": "你真的真的真的想加载此世界吗?", - "selectWorld.backupWarning.customized": "不巧,我们在这个版本的Minecraft中不支持自定义世界。我们可以继续加载这个世界并保持原状,但任何新生成的地形将不再被自定义。我们很高兴能为您的探索增添一些乐趣,请不要客气。", - "selectWorld.backupWarning.downgrade": "这个世界上次是在%s版本中游玩的;您当前的版本为%s。降级世界的游戏版本可能不会导致损坏——但是我们也无法保证它可以被加载和运行。如果您怂,您就选备份;要是您勇,您就继续。", - "selectWorld.backupWarning.experimental": "这个世界使用的实验性设置可能会随时停止运作。我们无法保证这些设置将来能够加载或运作。务必谨慎,否则小心喂龙!", + "selectWorld.backupWarning.customized": "不巧,我们在这个版本的Minecraft中不支持自定义世界。我们可以继续加载这个世界并保持原状,但任何新生成的地形将不再被自定义。我们很高兴能为你的探索增添一些乐趣,请不要客气。", + "selectWorld.backupWarning.downgrade": "这个世界上次是在%s版本中游玩的;你当前的版本为%s。降级世界的游戏版本可能不会导致损坏——但是我们也无法保证它可以被加载和运行。如果你怂,你就选备份;要是你勇,你就继续。", + "selectWorld.backupWarning.experimental": "这个世界使用的还没做完的设置可能会随时停止运作。我们无法保证这些设置将来能够加载或运作。务必谨慎,否则小心喂龙!", "selectWorld.backupWarning.snapshot": "这个世界上次是在%s版本中游玩的,而你却在游玩%s这个版本?请备份你的世界,以免世界崩溃!", "selectWorld.bonusItems": "新手体恤包", "selectWorld.cheats": "可滥权", + "selectWorld.commands": "可命令", "selectWorld.conversion": "必须进行转换!", "selectWorld.conversion.tooltip": "请先穿越回过去(比如1.6.4)再穿越过来", "selectWorld.create": "开天辟地", @@ -4242,7 +5664,7 @@ "selectWorld.delete": "怒删", "selectWorld.deleteButton": "怒删", "selectWorld.deleteQuestion": "你真的真的确定要怒删这个世界吗?", - "selectWorld.deleteWarning": "“%s”将拜拜了您咧!(真的!)", + "selectWorld.deleteWarning": "“%s”将拜拜了你咧!(真的!)", "selectWorld.delete_failure": "怒删失败,砸电脑吧", "selectWorld.edit": "编辑", "selectWorld.edit.backup": "进行备份", @@ -4260,50 +5682,66 @@ "selectWorld.edit.title": "编辑世界", "selectWorld.enterName": "你得给它弄个什么名字", "selectWorld.enterSeed": "世界生成器的种子", + "selectWorld.experimental": "还没做完", + "selectWorld.experimental.details": "详细信息", + "selectWorld.experimental.details.entry": "需要的还没做完的功能:%s", + "selectWorld.experimental.details.title": "还没做完的功能需求", + "selectWorld.experimental.message": "全体目光向我看齐!!\n此配置需要使用还没做完(也可能永远不会完成)的功能。你的世界可能会崩溃、损坏或不兼容未来的更新(随时抛弃)。", + "selectWorld.experimental.title": "警告! 这些设置使用了还没做完的功能", + "selectWorld.experiments": "还没做完", + "selectWorld.experiments.info": "还没做完的功能,即还没做完的新功能。打开时请小心,因为这些内容可能不稳定或会导致药丸。已开启的还没做完的内容在创建世界后将无法再关掉。", "selectWorld.futureworld.error.text": "当我们试图加载一份来自未来版本的世界时,发生了一些错误。你是穿越回来的吗?", "selectWorld.futureworld.error.title": "出错了!", "selectWorld.gameMode": "游戏模式", - "selectWorld.gameMode.adventure": "鲁滨逊", + "selectWorld.gameMode.adventure": "冒险", + "selectWorld.gameMode.adventure.info": "与生存模式相同,但无法放置或破坏方块", "selectWorld.gameMode.adventure.line1": "与生存模式相同,但是方块", "selectWorld.gameMode.adventure.line2": "不能被添加或者移除", "selectWorld.gameMode.creative": "上帝", + "selectWorld.gameMode.creative.info": "无拘无束地探索创造。可以飞行,材料取之不尽,且不受怪物伤害。", "selectWorld.gameMode.creative.line1": "无限的资源、自由地滥权", "selectWorld.gameMode.creative.line2": "并且能够瞬间破坏方块", "selectWorld.gameMode.hardcore": "硬核", + "selectWorld.gameMode.hardcore.info": "难度锁定为“硬”的生存模式,且死亡后无法重生。", "selectWorld.gameMode.hardcore.line1": "难度锁定在困难的生存模式", "selectWorld.gameMode.hardcore.line2": "生命只有一次!", "selectWorld.gameMode.spectator": "游魂", + "selectWorld.gameMode.spectator.info": "你可以旁观,但不能互动。", "selectWorld.gameMode.spectator.line1": "你可以旁观,但不能互动", "selectWorld.gameMode.spectator.line2": "", - "selectWorld.gameMode.survival": "生存", + "selectWorld.gameMode.survival": "活下去", + "selectWorld.gameMode.survival.info": "探索未知的世界,尽情建造、收集、合成并与怪物战斗。", "selectWorld.gameMode.survival.line1": "到处逛逛、到处挖挖、整些用不上的道具", "selectWorld.gameMode.survival.line2": "顺便学学贝爷怎么生存的", "selectWorld.gameRules": "游戏规则", "selectWorld.import_worldgen_settings": "导入设置", - "selectWorld.import_worldgen_settings.deprecated.question": "有些功能迟早药丸。你确定要继续吗?", - "selectWorld.import_worldgen_settings.deprecated.title": "警告! 这些设置使用了迟早药丸的功能", - "selectWorld.import_worldgen_settings.experimental.question": "这些设置是实验性的,介于Bugjump有多少特性,迟早药丸。你确定要继续吗?", - "selectWorld.import_worldgen_settings.experimental.title": "警告! 这些设置使用实验性玩法", "selectWorld.import_worldgen_settings.failure": "导入设置时出错,可能是你写的太烂了", "selectWorld.import_worldgen_settings.select_file": "选择设置文件(Lake.json)", + "selectWorld.incompatible.description": "此世界无法在此版本中打开。\n最后一次打开此世界的版本是%s。", + "selectWorld.incompatible.info": "不兼容的版本:%s", + "selectWorld.incompatible.title": "版本不兼容", + "selectWorld.incompatible.tooltip": "此世界在不兼容的版本上创建,故无法打开。", "selectWorld.incompatible_series": "这世界版本要是再新点我肯定加载啊", "selectWorld.load_folder_access": "哦豁,无法读取或访问游戏世界存档所在的文件夹!", + "selectWorld.loading_list": "正在加载世界列表", "selectWorld.locked": "你在双开(甚至多开)Minecraft!", "selectWorld.mapFeatures": "生成顶级建筑", - "selectWorld.mapFeatures.info": "县城、地下城等等", - "selectWorld.mapType": "世界类型:", + "selectWorld.mapFeatures.info": "奸商聚集地、泰坦尼克号等等", + "selectWorld.mapType": "世界类型", "selectWorld.mapType.normal": "普通", "selectWorld.moreWorldOptions": "更多世界的选项…", "selectWorld.newWorld": "新的世界,新的开始", "selectWorld.recreate": "吃后悔药", - "selectWorld.recreate.customized.text": "时代变了,自定义世界在这个版本的Minecraft中已不受支持。我们可以尝试用同样的种子与选项重建它,但任何自定义的地形都会拜拜了您嘞。默哀一秒钟。", + "selectWorld.recreate.customized.text": "时代变了,自定义世界在这个版本的Minecraft中已不受支持。我们可以尝试用同样的种子与选项重建它,但任何自定义的地形都会拜拜了你嘞。默哀一秒钟。", "selectWorld.recreate.customized.title": "自定义世界已不受支持", "selectWorld.recreate.error.text": "后悔药过期了。", "selectWorld.recreate.error.title": "出错了!", + "selectWorld.resource_load": "准备资源中…", "selectWorld.resultFolder": "将会保存于:", "selectWorld.search": "百度一下世界", "selectWorld.seedInfo": "留空以生成随机种子", "selectWorld.select": "进入选中的世界", + "selectWorld.targetFolder": "存档文件夹:%s", "selectWorld.title": "选择世界", "selectWorld.tooltip.fromNewerVersion1": "世界是在更新的版本中被保存的,", "selectWorld.tooltip.fromNewerVersion2": "不过加载这个世界可能不会产生问题!", @@ -4315,13 +5753,20 @@ "selectWorld.versionQuestion": "你真的真的真的想加载此世界吗?", "selectWorld.versionUnknown": "母鸡", "selectWorld.versionWarning": "此世界上次是在%s版本中游玩的,在此版本中加载可能会导致数据炸裂!", + "selectWorld.warning.deprecated.question": "有些功能迟早药丸。你确定要继续吗?", + "selectWorld.warning.deprecated.title": "警告! 这些设置使用了迟早药丸的功能", + "selectWorld.warning.experimental.question": "有些功能还没做完,介于Bugjump有多少特性,迟早药丸。你确定要继续吗?", + "selectWorld.warning.experimental.title": "警告! 这些设置使用了还没做完的功能", + "selectWorld.warning.lowDiskSpace.description": "设备上的存储空间不足。\n运行游戏时磁盘空间不足可能会导致世界崩坏。", + "selectWorld.warning.lowDiskSpace.title": "警告!磁盘空间不足!", "selectWorld.world": "世界", "sign.edit": "写点什么吧", "sleep.not_possible": "目前的人数不足以让所有玩家停止修仙行为", "sleep.players_sleeping": "%s/%s名玩家正在阻止修仙行为", "sleep.skipping_night": "昏睡红茶真好喝……", - "slot.unknown": "未知的栏位:'%s'", - "soundCategory.ambient": "环境", + "slot.only_single_allowed": "只允许有单个栏位,实际为“%s”", + "slot.unknown": "未知的栏位:“%s”", + "soundCategory.ambient": "空谷传响", "soundCategory.block": "方块", "soundCategory.hostile": "敌对暴徒", "soundCategory.master": "主音量", @@ -4331,7 +5776,7 @@ "soundCategory.record": "光驱/笔记方块", "soundCategory.voice": "声音/语音", "soundCategory.weather": "天气", - "spectatorMenu.close": "关闭菜单", + "spectatorMenu.close": "关掉菜单", "spectatorMenu.next_page": "下一页", "spectatorMenu.previous_page": "上一页", "spectatorMenu.root.prompt": "按下一个键来选择命令,再按一次来使用它。", @@ -4344,12 +5789,12 @@ "stat.minecraft.animals_bred": "繁殖动物次数", "stat.minecraft.aviate_one_cm": "鞘翅滑行距离", "stat.minecraft.bell_ring": "噔噔咚次数", - "stat.minecraft.boat_one_cm": "坐《明日方舟》移动距离", + "stat.minecraft.boat_one_cm": "坐明日方舟®移动距离", "stat.minecraft.clean_armor": "清洗盔甲次数", "stat.minecraft.clean_banner": "清洗旗帜次数", "stat.minecraft.clean_shulker_box": "傻瓜盒子清洗次数", "stat.minecraft.climb_one_cm": "爪巴过的距离", - "stat.minecraft.crouch_one_cm": "潜行距离", + "stat.minecraft.crouch_one_cm": "偷偷摸摸距离", "stat.minecraft.damage_absorbed": "吸收的伤害", "stat.minecraft.damage_blocked_by_shield": "盾牌抵挡的伤害", "stat.minecraft.damage_dealt": "造成伤害", @@ -4363,21 +5808,21 @@ "stat.minecraft.enchant_item": "物品覆膜次数", "stat.minecraft.fall_one_cm": "自由落体高度", "stat.minecraft.fill_cauldron": "中华锅装水次数", - "stat.minecraft.fish_caught": "捕鲨数", + "stat.minecraft.fish_caught": "捕鱼数", "stat.minecraft.fly_one_cm": "飞行距离", "stat.minecraft.horse_one_cm": "骑马移动距离", "stat.minecraft.inspect_dispenser": "搜查启动器(消歧义)次数", - "stat.minecraft.inspect_dropper": "搜查Linus Sebastian次数", - "stat.minecraft.inspect_hopper": "播放H O P次数", + "stat.minecraft.inspect_dropper": "搜查星跳水立方(消歧义)次数", + "stat.minecraft.inspect_hopper": "打开H O P次数", "stat.minecraft.interact_with_anvil": "哐当次数", "stat.minecraft.interact_with_beacon": "与培根方块互动次数", - "stat.minecraft.interact_with_blast_furnace": "炼铜次数", + "stat.minecraft.interact_with_blast_furnace": "炼 铜 次 数", "stat.minecraft.interact_with_brewingstand": "与调和台互动次数", "stat.minecraft.interact_with_campfire": "与篝火互动次数", "stat.minecraft.interact_with_cartography_table": "与几何画板互动次数", "stat.minecraft.interact_with_crafting_table": "与合成台互动次数", "stat.minecraft.interact_with_furnace": "与炉子互动次数", - "stat.minecraft.interact_with_grindstone": "造轮子次数", + "stat.minecraft.interact_with_grindstone": "磨东西次数", "stat.minecraft.interact_with_lectern": "与百 家 讲 坛互动次数", "stat.minecraft.interact_with_loom": "与珍妮纺纱机互动次数", "stat.minecraft.interact_with_smithing_table": "与锤子台互动次数", @@ -4394,24 +5839,24 @@ "stat.minecraft.open_shulker_box": "傻瓜盒子打开次数", "stat.minecraft.pig_one_cm": "骑猪移动距离", "stat.minecraft.play_noteblock": "笔记方块游玩次数", - "stat.minecraft.play_time": "游戏时间", "stat.minecraft.play_record": "播放 劲 歌 金 曲 数", + "stat.minecraft.play_time": "游戏时间", "stat.minecraft.player_kills": "玩家击杀数", "stat.minecraft.pot_flower": "盆栽种植数", "stat.minecraft.raid_trigger": "鬼子进村次数", "stat.minecraft.raid_win": "击退鬼子队次数", "stat.minecraft.ring_bell": "噔噔咚次数", "stat.minecraft.sleep_in_bed": "躺在床上的次数", - "stat.minecraft.sneak_time": "潜行时间", - "stat.minecraft.sprint_one_cm": "疾跑距离", + "stat.minecraft.sneak_time": "偷偷摸摸时间", + "stat.minecraft.sprint_one_cm": "déjà vu距离", "stat.minecraft.strider_one_cm": "炫迈兽骑乘距离", "stat.minecraft.swim_one_cm": "游泳距离", - "stat.minecraft.talked_to_villager": "村民加密沟通次数", + "stat.minecraft.talked_to_villager": "奸商加密沟通次数", "stat.minecraft.target_hit": "击中TARGET®次数", "stat.minecraft.time_since_death": "自上次升天", "stat.minecraft.time_since_rest": "距上次歇歇", "stat.minecraft.total_world_time": "世界放置时间", - "stat.minecraft.traded_with_villager": "村民交♂易次数", + "stat.minecraft.traded_with_villager": "奸商交♂易次数", "stat.minecraft.treasure_fished": "吸欧气次数", "stat.minecraft.trigger_trapped_chest": "被困的胸部触发次数", "stat.minecraft.tune_noteblock": "笔记方块记笔记次数", @@ -4422,7 +5867,7 @@ "stat.mobsButton": "暴徒", "stat_type.minecraft.broken": "损坏次数", "stat_type.minecraft.crafted": "合成次数", - "stat_type.minecraft.dropped": "Linus Sebastian附体次数", + "stat_type.minecraft.dropped": "D R O P次数", "stat_type.minecraft.killed": "你弄死了%s只%s", "stat_type.minecraft.killed.none": "你太弱了,从来没有弄死过%s", "stat_type.minecraft.killed_by": "%s弄死了你%s次", @@ -4430,6 +5875,7 @@ "stat_type.minecraft.mined": "开采次数", "stat_type.minecraft.picked_up": "拾起个数", "stat_type.minecraft.used": "使用次数", + "stats.none": "-", "stats.tooltip.type.statistic": "统计", "structure_block.button.detect_size": "探测", "structure_block.button.load": "加载", @@ -4444,10 +5890,10 @@ "structure_block.integrity": "结构完整性及种子", "structure_block.integrity.integrity": "结构完整性", "structure_block.integrity.seed": "结构种子", - "structure_block.invalid_structure_name": "无效的结构名'%s'", - "structure_block.load_not_found": "不存在名为'%s'的结构 ", - "structure_block.load_prepare": "结构'%s'的加载位置已就绪", - "structure_block.load_success": "成功从'%s'中加载结构", + "structure_block.invalid_structure_name": "无效的结构名“%s”", + "structure_block.load_not_found": "不存在名为“%s”的结构 ", + "structure_block.load_prepare": "结构“%s”的加载位置已就绪", + "structure_block.load_success": "成功从“%s”中加载结构", "structure_block.mode.corner": "角落模式", "structure_block.mode.data": "数据模式", "structure_block.mode.load": "加载模式", @@ -4460,8 +5906,8 @@ "structure_block.position.x": "相对X坐标", "structure_block.position.y": "相对Y坐标", "structure_block.position.z": "相对Z坐标", - "structure_block.save_failure": "无法保存结构'%s'", - "structure_block.save_success": "成功将结构保存为'%s'", + "structure_block.save_failure": "无法保存结构“%s”", + "structure_block.save_success": "成功将结构保存为“%s”", "structure_block.show_air": "显示隐形方块:", "structure_block.show_boundingbox": "显示边框:", "structure_block.size": "结构大小", @@ -4469,10 +5915,11 @@ "structure_block.size.y": "结构Y轴大小", "structure_block.size.z": "结构Z轴大小", "structure_block.size_failure": "无法检测结构尺寸。请放置与结构名称对应的角落结构方块", - "structure_block.size_success": "'%s'的尺寸已成功检测", + "structure_block.size_success": "“%s”的尺寸已成功检测", "structure_block.structure_name": "结构名称", "subtitles.ambient.cave": "小心!Herobrine在附近", "subtitles.block.amethyst_block.chime": "紫水晶:呻吟", + "subtitles.block.amethyst_block.resonate": "紫水晶:共振", "subtitles.block.anvil.destroy": "哐当:被毁", "subtitles.block.anvil.land": "哐当:着地", "subtitles.block.anvil.use": "哐当:使用", @@ -4499,12 +5946,13 @@ "subtitles.block.bubble_column.whirlpool_ambient": "气泡:旋转", "subtitles.block.bubble_column.whirlpool_inside": "气泡:骤降", "subtitles.block.button.click": "抱枕:点击", - "subtitles.block.cake.add_candle": "蛋糕:疼死了!", + "subtitles.block.cake.add_candle": "蛋糕:噗叽啪", "subtitles.block.campfire.crackle": "篝火:噼里啪啦", "subtitles.block.candle.crackle": "鞭炮:噼里啪啦", - "subtitles.block.chest.close": "胸部:关上", + "subtitles.block.candle.extinguish": "鞭炮:死了", + "subtitles.block.chest.close": "胸部:关掉", "subtitles.block.chest.locked": "胸部:被锁上", - "subtitles.block.chest.open": "胸部:开启", + "subtitles.block.chest.open": "胸部:打开", "subtitles.block.chorus_flower.death": "共鸣花:死了", "subtitles.block.chorus_flower.grow": "共鸣花:生长", "subtitles.block.comparator.click": "全 桥 整 流:变脸", @@ -4515,58 +5963,124 @@ "subtitles.block.conduit.ambient": "导管:涌动", "subtitles.block.conduit.attack.target": "导管:攻击", "subtitles.block.conduit.deactivate": "导管:失效", + "subtitles.block.copper_bulb.turn_off": "框架材料为铜的照明方块:熄灭", + "subtitles.block.copper_bulb.turn_on": "框架材料为铜的照明方块:亮起", + "subtitles.block.copper_trapdoor.close": "活板门:关闭", + "subtitles.block.copper_trapdoor.open": "活板门:打开", + "subtitles.block.crafter.craft": "合成器:工作", + "subtitles.block.crafter.fail": "合成器:不工作", + "subtitles.block.decorated_pot.insert": "陶罐:装入", + "subtitles.block.decorated_pot.insert_fail": "陶罐:晃动", + "subtitles.block.decorated_pot.shatter": "陶罐:我裂开来", "subtitles.block.dispenser.dispense": "启动器:发射物品", "subtitles.block.dispenser.fail": "启动器:炸膛", "subtitles.block.door.toggle": "门:嘎吱作响", "subtitles.block.enchantment_table.use": "覆膜台:使用", - "subtitles.block.end_portal.spawn": "终端门户:开启", - "subtitles.block.end_portal_frame.fill": "末影之眼:嵌入", + "subtitles.block.end_portal.spawn": "终端门户:打开", + "subtitles.block.end_portal_frame.fill": "小黑眼:嵌入", "subtitles.block.fence_gate.toggle": "栅栏门:嘎吱作响", "subtitles.block.fire.ambient": "火:噼啪作响", "subtitles.block.fire.extinguish": "火:死了", + "subtitles.block.frogspawn.hatch": "蝌蚪:我要妈妈", "subtitles.block.furnace.fire_crackle": "在烧了在烧了", "subtitles.block.generic.break": "方块:我裂开来", "subtitles.block.generic.footsteps": "脚步声", "subtitles.block.generic.hit": "方块:我要裂开了", "subtitles.block.generic.place": "方块:我出生了", - "subtitles.block.grindstone.use": "轮子:成功", + "subtitles.block.grindstone.use": "磨石:转转转", "subtitles.block.growing_plant.crop": "植物:被割", - "subtitles.block.honey_block.slide": "恶心的音效", - "subtitles.block.iron_trapdoor.close": "活板门:关掉", - "subtitles.block.iron_trapdoor.open": "活板门:打开", + "subtitles.block.hanging_sign.waxed_interact_fail": "搞事牌:晃动", + "subtitles.block.honey_block.slide": "黏糊糊恶心心", + "subtitles.block.iron_trapdoor.close": "陷阱门:关掉", + "subtitles.block.iron_trapdoor.open": "陷阱门:打开", "subtitles.block.lava.ambient": "熔岩:迸裂", "subtitles.block.lava.extinguish": "熔岩:嘶嘶声", - "subtitles.block.lever.click": "控制杆:拉动", + "subtitles.block.lever.click": "控制杆:点击", "subtitles.block.note_block.note": "笔记方块:开始玩", - "subtitles.block.piston.move": "活塞:↓↑", + "subtitles.block.piston.move": "↓↑:↓↑", "subtitles.block.pointed_dripstone.drip_lava": "熔岩:做自由落体运动", "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "熔岩:做自由落体运动后掉进中华锅", "subtitles.block.pointed_dripstone.drip_water": "水:做自由落体运动", "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "水:做自由落体运动后掉进中华锅", - "subtitles.block.pointed_dripstone.land": "指向型滴水石:拜拜了您嘞", - "subtitles.block.portal.ambient": "传送门:呼啸", - "subtitles.block.portal.travel": "传送门:噪声消散", - "subtitles.block.portal.trigger": "传送门:噪声渐响", - "subtitles.block.pressure_plate.click": "压一压板:被触发", - "subtitles.block.pumpkin.carve": "夹子:雕刻", - "subtitles.block.redstone_torch.burnout": "雷石东火把:熄灭", - "subtitles.block.respawn_anchor.ambient": "传送门:呼啸", + "subtitles.block.pointed_dripstone.land": "指向型滴水石:拜拜了你嘞", + "subtitles.block.portal.ambient": "门户:呼啸", + "subtitles.block.portal.travel": "门户:噪声消散", + "subtitles.block.portal.trigger": "门户:噪声渐响", + "subtitles.block.pressure_plate.click": "压一压板:点击", + "subtitles.block.pumpkin.carve": "南瓜:给点面子", + "subtitles.block.redstone_torch.burnout": "雷石东火炬:死了", + "subtitles.block.respawn_anchor.ambient": "门户:呼啸", "subtitles.block.respawn_anchor.charge": "锚台:被充能", "subtitles.block.respawn_anchor.deplete": "锚台:耗能", - "subtitles.block.respawn_anchor.set_spawn": "锚台:设置产卵室", - "subtitles.block.sculk_sensor.clicking": "潜声传感器:你吼喇嘛大声干什么嘛", - "subtitles.block.sculk_sensor.clicking_stop": "潜声传感器:那你去找物管啊", + "subtitles.block.respawn_anchor.set_spawn": "锚台:设置死去活来点", + "subtitles.block.sculk.charge": "幽(yóu)匿:冒泡", + "subtitles.block.sculk.spread": "幽(yóu)匿:蔓延", + "subtitles.block.sculk_catalyst.bloom": "幽(yóu)匿催化剂:催发", + "subtitles.block.sculk_sensor.clicking": "幽(yóu)匿分贝仪:察觉", + "subtitles.block.sculk_sensor.clicking_stop": "幽(yóu)匿分贝仪:停止察觉", + "subtitles.block.sculk_shrieker.shriek": "幽(yóu)匿尖叫体:危", "subtitles.block.shulker_box.close": "傻瓜盒子:关掉", "subtitles.block.shulker_box.open": "傻瓜盒子:打开", + "subtitles.block.sign.waxed_interact_fail": "搞事牌:晃动", "subtitles.block.smithing_table.use": "锤子台:使用", - "subtitles.block.smoker.smoke": "吸烟者:吸烟", + "subtitles.block.smoker.smoke": "吸烟有害健康", + "subtitles.block.sniffer_egg.crack": "嗅探兽蛋:裂开", + "subtitles.block.sniffer_egg.hatch": "嗅探兽蛋:孵化", + "subtitles.block.sniffer_egg.plop": "嗅嗅:暴徒产卵", + "subtitles.block.sponge.absorb": "发糕:吸水", "subtitles.block.sweet_berry_bush.pick_berries": "甜莓:pia", - "subtitles.block.trapdoor.toggle": "活板门:嘎吱作响", + "subtitles.block.trapdoor.toggle": "陷阱门:嘎吱作响", + "subtitles.block.trial_spawner.about_to_spawn_item": "阿米诺斯物体:准备", + "subtitles.block.trial_spawner.ambient": "产卵器(试用):噼啪作响", + "subtitles.block.trial_spawner.ambient_charged": "阿米诺斯:噼啪作响", + "subtitles.block.trial_spawner.ambient_ominous": "阿米诺斯产卵器(试用):噼啪作响", + "subtitles.block.trial_spawner.charge_activate": "阿米诺斯:涌动", + "subtitles.block.trial_spawner.close_shutter": "产卵器(试用):关掉", + "subtitles.block.trial_spawner.detect_player": "产卵器(试用):充能", + "subtitles.block.trial_spawner.eject_item": "产卵器(试用):pu~", + "subtitles.block.trial_spawner.ominous_activate": "产卵器(试用):domo,玩家=3,阿米诺斯desu", + "subtitles.block.trial_spawner.open_shutter": "产卵器(试用):打开", + "subtitles.block.trial_spawner.spawn_item": "阿米诺斯物体:掉落", + "subtitles.block.trial_spawner.spawn_item_begin": "阿米诺斯物体:出现", + "subtitles.block.trial_spawner.spawn_mob": "产卵器(试用):生成生物", "subtitles.block.tripwire.attach": "绊线钩:连接", - "subtitles.block.tripwire.click": "绊线钩:被触发", + "subtitles.block.tripwire.click": "绊线钩:点击", "subtitles.block.tripwire.detach": "绊线钩:断开", + "subtitles.block.vault.activate": "个人保管库:燃起", + "subtitles.block.vault.ambient": "个人保管库:噼啪作响", + "subtitles.block.vault.close_shutter": "个人保管库:关掉", + "subtitles.block.vault.deactivate": "个人保管库:熄灭", + "subtitles.block.vault.eject_item": "个人保管库:喷出物品", + "subtitles.block.vault.insert_item": "个人保管库:解锁", + "subtitles.block.vault.insert_item_fail": "个人保管库:解锁失败", + "subtitles.block.vault.open_shutter": "个人保管库:打开", + "subtitles.block.vault.reject_rewarded_player": "个人保管库:429 Too Many Requests", "subtitles.block.water.ambient": "川流不息", + "subtitles.block.wet_sponge.dries": "发糕:烘干", + "subtitles.chiseled_bookshelf.insert": "书:被放入", + "subtitles.chiseled_bookshelf.insert_enchanted": "覆膜书:被放入", + "subtitles.chiseled_bookshelf.take": "书:被取出", + "subtitles.chiseled_bookshelf.take_enchanted": "覆膜书:被取出", "subtitles.enchant.thorns.hit": "荆棘:反刺", + "subtitles.entity.allay.ambient_with_item": "小安粒:搜寻物品", + "subtitles.entity.allay.ambient_without_item": "小安粒:哀求", + "subtitles.entity.allay.death": "小安粒:啊我死了", + "subtitles.entity.allay.hurt": "小安粒:疼!", + "subtitles.entity.allay.item_given": "小安粒:嬉笑", + "subtitles.entity.allay.item_taken": "小安粒:愉悦", + "subtitles.entity.allay.item_thrown": "小安粒:投掷物品", + "subtitles.entity.armadillo.ambient": "犰狳:呼噜", + "subtitles.entity.armadillo.brush": "鳞甲:被刷落", + "subtitles.entity.armadillo.death": "犰狳:死亡", + "subtitles.entity.armadillo.eat": "犰狳:进食", + "subtitles.entity.armadillo.hurt": "犰狳:受伤", + "subtitles.entity.armadillo.hurt_reduced": "犰狳:自卫", + "subtitles.entity.armadillo.land": "犰狳:着陆", + "subtitles.entity.armadillo.peek": "犰狳:偷看", + "subtitles.entity.armadillo.roll": "犰狳:压缩", + "subtitles.entity.armadillo.scute_drop": "犰狳:脱落鳞甲", + "subtitles.entity.armadillo.unroll_finish": "犰狳:解压缩", + "subtitles.entity.armadillo.unroll_start": "犰狳:偷看", "subtitles.entity.armor_stand.fall": "落地成盒", "subtitles.entity.arrow.hit": "箭:击中", "subtitles.entity.arrow.hit_player": "箭:击中玩家", @@ -4578,24 +6092,51 @@ "subtitles.entity.axolotl.idle_water": "六角恐龙:一通乱叫", "subtitles.entity.axolotl.splash": "六角恐龙:溅起水花", "subtitles.entity.axolotl.swim": "六角恐龙:游泳", - "subtitles.entity.bat.ambient": "蝙蝠:尖声叫", - "subtitles.entity.bat.death": "蝙蝠:AWSL", - "subtitles.entity.bat.hurt": "蝙蝠:哎哟!", - "subtitles.entity.bat.takeoff": "蝙蝠:起飞", + "subtitles.entity.bat.ambient": "棒球棍:尖声叫", + "subtitles.entity.bat.death": "棒球棍:啊我死了", + "subtitles.entity.bat.hurt": "棒球棍:哎哟!", + "subtitles.entity.bat.takeoff": "棒球棍:起飞", "subtitles.entity.bee.ambient": "蜂子:嗡嗡", "subtitles.entity.bee.death": "蜂子:啊我死了", "subtitles.entity.bee.hurt": "蜂子:哎哟!", "subtitles.entity.bee.loop": "蜂子:嗡嗡", - "subtitles.entity.bee.loop_aggressive": "蜂子:愤怒地嗡嗡叫", - "subtitles.entity.bee.pollinate": "蜂子:高兴地嗡嗡叫", - "subtitles.entity.bee.sting": "蜂子:蛰", - "subtitles.entity.blaze.ambient": "烈焰人:呼吸", - "subtitles.entity.blaze.burn": "烈焰人:噼啪作响", - "subtitles.entity.blaze.death": "烈焰人:啊我死了", - "subtitles.entity.blaze.hurt": "烈焰人:哎哟!", - "subtitles.entity.blaze.shoot": "烈焰人:射击", + "subtitles.entity.bee.loop_aggressive": "蜂子:蜂了", + "subtitles.entity.bee.pollinate": "蜂子:好耶", + "subtitles.entity.bee.sting": "蜂子:针不戳", + "subtitles.entity.blaze.ambient": "火棒子人:呼吸", + "subtitles.entity.blaze.burn": "火棒子人:噼啪作响", + "subtitles.entity.blaze.death": "火棒子人:啊我死了", + "subtitles.entity.blaze.hurt": "火棒子人:哎哟!", + "subtitles.entity.blaze.shoot": "火棒子人:射击", "subtitles.entity.boat.paddle_land": "陆游", "subtitles.entity.boat.paddle_water": "让我们荡起双桨~", + "subtitles.entity.bogged.ambient": "池沼骷髅:咯咯声", + "subtitles.entity.bogged.death": "池沼骷髅:啊我死了", + "subtitles.entity.bogged.hurt": "池沼骷髅:哎呦!", + "subtitles.entity.breeze.charge": "风棒子人:蓄力", + "subtitles.entity.breeze.death": "风棒子人:啊我死了", + "subtitles.entity.breeze.deflect": "风棒子人:反弹", + "subtitles.entity.breeze.hurt": "风棒子人:哎呦", + "subtitles.entity.breeze.idle_air": "风棒子人:飞行", + "subtitles.entity.breeze.idle_ground": "风棒子人:呼啸", + "subtitles.entity.breeze.inhale": "风棒子人:吸气", + "subtitles.entity.breeze.jump": "风棒子人:跳跃", + "subtitles.entity.breeze.land": "风棒子人:着陆", + "subtitles.entity.breeze.shoot": "风棒子人:射击", + "subtitles.entity.breeze.slide": "风棒子人:滑行", + "subtitles.entity.breeze.whirl": "风棒子人:旋转", + "subtitles.entity.breeze.wind_burst": "风弹:爆裂", + "subtitles.entity.camel.ambient": "骆驼:呼噜", + "subtitles.entity.camel.dash": "骆驼:舍身冲撞", + "subtitles.entity.camel.dash_ready": "骆驼:冷却中", + "subtitles.entity.camel.death": "骆驼:啊我死了", + "subtitles.entity.camel.eat": "骆驼:恰饭", + "subtitles.entity.camel.hurt": "骆驼:哎呦!", + "subtitles.entity.camel.saddle": "鞍:装备", + "subtitles.entity.camel.sit": "骆驼:坐下", + "subtitles.entity.camel.stand": "骆驼:站起", + "subtitles.entity.camel.step": "骆驼:脚步声", + "subtitles.entity.camel.step_sand": "骆驼:踩沙子子", "subtitles.entity.cat.ambient": "喵喵:喵呜~", "subtitles.entity.cat.beg_for_food": "喵喵:嘤嘤嘤~", "subtitles.entity.cat.death": "你弄死了喵喵,不可饶恕!", @@ -4605,11 +6146,11 @@ "subtitles.entity.cat.purr": "喵喵:ZZZ……", "subtitles.entity.chicken.ambient": "鸡:咯咯咯", "subtitles.entity.chicken.death": "鸡:啊我死了", - "subtitles.entity.chicken.egg": "鸡:下蛋", + "subtitles.entity.chicken.egg": "鸡:暴徒产卵", "subtitles.entity.chicken.hurt": "鸡:哎哟!", - "subtitles.entity.cod.death": "生鲜鳕鱼:啊我死了", - "subtitles.entity.cod.flop": "生鲜鳕鱼:扑腾", - "subtitles.entity.cod.hurt": "生鲜鳕鱼:哎哟!", + "subtitles.entity.cod.death": "使命召唤®:啊我死了", + "subtitles.entity.cod.flop": "使命召唤®:扑腾", + "subtitles.entity.cod.hurt": "使命召唤®:哎哟!", "subtitles.entity.cow.ambient": "牛:哞~", "subtitles.entity.cow.death": "牛:啊我死了", "subtitles.entity.cow.hurt": "牛:哎哟!", @@ -4619,20 +6160,21 @@ "subtitles.entity.creeper.primed": "爪巴者:嘶~", "subtitles.entity.dolphin.ambient": "海豚:啾啾", "subtitles.entity.dolphin.ambient_water": "海豚:吹口哨", - "subtitles.entity.dolphin.attack": "海豚:攻击", + "subtitles.entity.dolphin.attack": "海豚:11号脏话", "subtitles.entity.dolphin.death": "别杀海豚,你这个怪物!", - "subtitles.entity.dolphin.eat": "海豚:进食", + "subtitles.entity.dolphin.eat": "海豚:恰饭", "subtitles.entity.dolphin.hurt": "海豚:哎哟!", "subtitles.entity.dolphin.jump": "海豚:跃起", "subtitles.entity.dolphin.play": "海豚:嬉戏", "subtitles.entity.dolphin.splash": "海豚:溅起水花", "subtitles.entity.dolphin.swim": "海豚:游泳", - "subtitles.entity.donkey.ambient": "阿米娅:喊叫", + "subtitles.entity.donkey.ambient": "阿米娅:大 喊 大 叫", "subtitles.entity.donkey.angry": "阿米娅:生气", "subtitles.entity.donkey.chest": "阿米娅:装备胸部", "subtitles.entity.donkey.death": "阿米娅:啊我死了", "subtitles.entity.donkey.eat": "阿米娅:恰饭", "subtitles.entity.donkey.hurt": "阿米娅:哎哟!", + "subtitles.entity.donkey.jump": "阿米娅:跳跃", "subtitles.entity.drowned.ambient": "水猴子:呻吟", "subtitles.entity.drowned.ambient_water": "水猴子:呻吟", "subtitles.entity.drowned.death": "水猴子:啊我死了", @@ -4648,31 +6190,32 @@ "subtitles.entity.elder_guardian.flop": "远古痞老板:落地", "subtitles.entity.elder_guardian.hurt": "远古痞老板:哎哟!", "subtitles.entity.ender_dragon.ambient": "昆图库塔:咆哮", - "subtitles.entity.ender_dragon.death": "昆图库塔:拜拜了您那", + "subtitles.entity.ender_dragon.death": "昆图库塔:拜拜了你那", "subtitles.entity.ender_dragon.flap": "昆图库塔:拍打翅膀", "subtitles.entity.ender_dragon.growl": "昆图库塔:吼叫", "subtitles.entity.ender_dragon.hurt": "昆图库塔:哎哟!", "subtitles.entity.ender_dragon.shoot": "昆图库塔:口吐芬芳", - "subtitles.entity.ender_eye.death": "末影之眼:掉落", - "subtitles.entity.ender_eye.launch": "末影之眼:射出", - "subtitles.entity.ender_pearl.throw": "末影珍珠:飞了", + "subtitles.entity.ender_eye.death": "小黑眼:掉落", + "subtitles.entity.ender_eye.launch": "小黑眼:射出", + "subtitles.entity.ender_pearl.throw": "小黑珍珠:飞了", "subtitles.entity.enderman.ambient": "小黑:低鸣", "subtitles.entity.enderman.death": "小黑:啊我死了", "subtitles.entity.enderman.hurt": "小黑:哎哟!", + "subtitles.entity.enderman.scream": "小黑:大 喊 大 叫", "subtitles.entity.enderman.stare": "小黑:喊叫", "subtitles.entity.enderman.teleport": "小黑:传送", - "subtitles.entity.endermite.ambient": "末影螨:叫声", - "subtitles.entity.endermite.death": "末影螨:啊我死了", - "subtitles.entity.endermite.hurt": "末影螨:哎哟!", - "subtitles.entity.evoker.ambient": "唤魔者:咕哝", - "subtitles.entity.evoker.cast_spell": "唤魔者:施法", - "subtitles.entity.evoker.celebrate": "唤魔者:芜湖!", - "subtitles.entity.evoker.death": "唤魔者:啊我死了", - "subtitles.entity.evoker.hurt": "唤魔者:哎哟!", - "subtitles.entity.evoker.prepare_attack": "唤魔者:准备攻击", - "subtitles.entity.evoker.prepare_summon": "唤魔者:准备传唤", - "subtitles.entity.evoker.prepare_wololo": "唤魔者:准备施咒", - "subtitles.entity.evoker_fangs.attack": "尖牙:咬合", + "subtitles.entity.endermite.ambient": "紫色蠢虫:叫声", + "subtitles.entity.endermite.death": "紫色蠢虫:啊我死了", + "subtitles.entity.endermite.hurt": "紫色蠢虫:哎哟!", + "subtitles.entity.evoker.ambient": "招魂师:咕哝", + "subtitles.entity.evoker.cast_spell": "招魂师:施法", + "subtitles.entity.evoker.celebrate": "招魂师:芜湖!", + "subtitles.entity.evoker.death": "招魂师:啊我死了", + "subtitles.entity.evoker.hurt": "招魂师:哎哟!", + "subtitles.entity.evoker.prepare_attack": "招魂师:干架", + "subtitles.entity.evoker.prepare_summon": "招魂师:摇人", + "subtitles.entity.evoker.prepare_wololo": "招魂师:歪比巴卜", + "subtitles.entity.evoker_fangs.attack": "尖牙:啊呜", "subtitles.entity.experience_orb.pickup": "获得人生的经验", "subtitles.entity.firework_rocket.blast": "窜天猴:炸裂", "subtitles.entity.firework_rocket.launch": "窜天猴:发射", @@ -4680,17 +6223,23 @@ "subtitles.entity.fishing_bobber.retrieve": "钓完了?", "subtitles.entity.fishing_bobber.splash": "在钓了在钓了", "subtitles.entity.fishing_bobber.throw": "钓,就硬钓", - "subtitles.entity.fox.aggro": "狐狸:我怒了", - "subtitles.entity.fox.ambient": "狐狸:吱吱叫", - "subtitles.entity.fox.bite": "狐狸:撕咬", - "subtitles.entity.fox.death": "狐狸这么可爱为什么要杀狐狸??", - "subtitles.entity.fox.eat": "狐狸:进食", - "subtitles.entity.fox.hurt": "狐狸:哎哟!", - "subtitles.entity.fox.screech": "狐狸:尖声叫", - "subtitles.entity.fox.sleep": "狐狸:打鼾", - "subtitles.entity.fox.sniff": "狐狸:嗅探", - "subtitles.entity.fox.spit": "狐狸:我呸!", - "subtitles.entity.fox.teleport": "狐狸:传送", + "subtitles.entity.fox.aggro": "福克斯:我怒了", + "subtitles.entity.fox.ambient": "福克斯:吱吱叫", + "subtitles.entity.fox.bite": "福克斯:撕咬", + "subtitles.entity.fox.death": "福福这么可爱为什么要杀福福??", + "subtitles.entity.fox.eat": "福克斯:恰饭", + "subtitles.entity.fox.hurt": "福克斯:哎哟!", + "subtitles.entity.fox.screech": "福克斯:尖声叫", + "subtitles.entity.fox.sleep": "福克斯:打鼾", + "subtitles.entity.fox.sniff": "福克斯:嗅探", + "subtitles.entity.fox.spit": "福克斯:我呸!", + "subtitles.entity.fox.teleport": "福克斯:传送", + "subtitles.entity.frog.ambient": "蛙:蛤?", + "subtitles.entity.frog.death": "蛙:啊我死了", + "subtitles.entity.frog.eat": "蛙:恰饭", + "subtitles.entity.frog.hurt": "蛙:疼!", + "subtitles.entity.frog.lay_spawn": "蛙:暴徒产卵", + "subtitles.entity.frog.long_jump": "蛙:不知道高到哪里去了", "subtitles.entity.generic.big_fall": "落地成盒", "subtitles.entity.generic.burn": "烤肉中", "subtitles.entity.generic.death": "要死了要死了", @@ -4702,6 +6251,7 @@ "subtitles.entity.generic.small_fall": "腿还能动", "subtitles.entity.generic.splash": "溅起水花", "subtitles.entity.generic.swim": "实体:游泳", + "subtitles.entity.generic.wind_burst": "风弹:爆裂", "subtitles.entity.ghast.ambient": "地狱轰炸机:呜咽", "subtitles.entity.ghast.death": "地狱轰炸机:炸毁", "subtitles.entity.ghast.hurt": "地狱轰炸机:受损", @@ -4711,20 +6261,21 @@ "subtitles.entity.glow_item_frame.place": "发光的木板做的物品炫耀框:被放置", "subtitles.entity.glow_item_frame.remove_item": "发光的木板做的物品炫耀框:清空", "subtitles.entity.glow_item_frame.rotate_item": "发光的木板做的物品炫耀框:转动", - "subtitles.entity.glow_squid.ambient": "珊瑚感染八爪鱼:游泳", - "subtitles.entity.glow_squid.death": "珊瑚感染八爪鱼:啊我死了", - "subtitles.entity.glow_squid.hurt": "珊瑚感染八爪鱼:哎哟!", - "subtitles.entity.glow_squid.squirt": "珊瑚感染八爪鱼:吐墨", - "subtitles.entity.goat.ambient": "山羊:咩~", - "subtitles.entity.goat.eat": "山羊:进食", - "subtitles.entity.goat.death": "山羊:啊我死了", - "subtitles.entity.goat.hurt": "山羊:哎哟!", - "subtitles.entity.goat.long_jump": "山羊:尝试摆脱地心引力", - "subtitles.entity.goat.milk": "山羊:挤奶", - "subtitles.entity.goat.prepare_ram": "山羊:准备冲", - "subtitles.entity.goat.ram_impact": "山羊:舍身冲撞", - "subtitles.entity.goat.screaming.ambient": "山羊:咩啊?", - "subtitles.entity.goat.step": "山羊:脚步声", + "subtitles.entity.glow_squid.ambient": "珊瑚感染夺心魔:游泳", + "subtitles.entity.glow_squid.death": "珊瑚感染夺心魔:啊我死了", + "subtitles.entity.glow_squid.hurt": "珊瑚感染夺心魔:哎哟!", + "subtitles.entity.glow_squid.squirt": "珊瑚感染夺心魔:吐墨", + "subtitles.entity.goat.ambient": "大角羊:咩~", + "subtitles.entity.goat.death": "大角羊:啊我死了", + "subtitles.entity.goat.eat": "大角羊:恰饭", + "subtitles.entity.goat.horn_break": "大角羊:角-1", + "subtitles.entity.goat.hurt": "大角羊:哎哟!", + "subtitles.entity.goat.long_jump": "大角羊:尝试摆脱地心引力", + "subtitles.entity.goat.milk": "大角羊:挤奶", + "subtitles.entity.goat.prepare_ram": "大角羊:准备冲", + "subtitles.entity.goat.ram_impact": "大角羊:舍身冲撞", + "subtitles.entity.goat.screaming.ambient": "大角羊:咩啊?", + "subtitles.entity.goat.step": "大角羊:脚步声", "subtitles.entity.guardian.ambient": "痞老板:低鸣", "subtitles.entity.guardian.ambient_land": "痞老板:弹跳", "subtitles.entity.guardian.attack": "痞老板:射击", @@ -4743,16 +6294,16 @@ "subtitles.entity.horse.angry": "马:嘶鸣", "subtitles.entity.horse.armor": "马甲:装备", "subtitles.entity.horse.breathe": "马:呼吸", - "subtitles.entity.horse.death": "马:我没了", - "subtitles.entity.horse.eat": "马:进食", + "subtitles.entity.horse.death": "马:啊我死了", + "subtitles.entity.horse.eat": "马:恰饭", "subtitles.entity.horse.gallop": "马:奔腾", "subtitles.entity.horse.hurt": "马:哎哟!", "subtitles.entity.horse.jump": "马:跳跃", "subtitles.entity.horse.saddle": "鞍:装备", - "subtitles.entity.husk.ambient": "尸壳:低吼", - "subtitles.entity.husk.converted_to_zombie": "尸壳:转变为姜丝", - "subtitles.entity.husk.death": "尸壳:啊我死了", - "subtitles.entity.husk.hurt": "尸壳:哎哟!", + "subtitles.entity.husk.ambient": "木乃伊:低吼", + "subtitles.entity.husk.converted_to_zombie": "木乃伊:转变为姜丝", + "subtitles.entity.husk.death": "木乃伊:啊我死了", + "subtitles.entity.husk.hurt": "木乃伊:哎哟!", "subtitles.entity.illusioner.ambient": "影流之主:咕哝", "subtitles.entity.illusioner.cast_spell": "影流之主:施法", "subtitles.entity.illusioner.death": "影流之主:啊我死了", @@ -4772,15 +6323,15 @@ "subtitles.entity.item_frame.place": "物品炫耀框:被放置", "subtitles.entity.item_frame.remove_item": "物品炫耀框:清空", "subtitles.entity.item_frame.rotate_item": "物品炫耀框:转动", - "subtitles.entity.leash_knot.break": "栓绳结:被破坏", - "subtitles.entity.leash_knot.place": "栓绳结:被系上", + "subtitles.entity.leash_knot.break": "铅结:被破坏", + "subtitles.entity.leash_knot.place": "铅结:被系上", "subtitles.entity.lightning_bolt.impact": "电闪", "subtitles.entity.lightning_bolt.thunder": "雷鸣", "subtitles.entity.llama.ambient": "草泥马:吼叫", "subtitles.entity.llama.angry": "草泥马:怒吼", "subtitles.entity.llama.chest": "草泥马:装备胸部", "subtitles.entity.llama.death": "草泥马:啊我死了", - "subtitles.entity.llama.eat": "草泥马:进食", + "subtitles.entity.llama.eat": "草泥马:恰饭", "subtitles.entity.llama.hurt": "草泥马:哎哟!", "subtitles.entity.llama.spit": "草泥马:我呸!", "subtitles.entity.llama.step": "草泥马:脚步声", @@ -4789,16 +6340,17 @@ "subtitles.entity.magma_cube.hurt": "岩浆萌王:哎哟!", "subtitles.entity.magma_cube.squish": "岩浆萌王:移动", "subtitles.entity.minecart.riding": "《我的世界》:行进", - "subtitles.entity.mooshroom.convert": "哞菇:我变污惹", - "subtitles.entity.mooshroom.eat": "哞菇:进食", - "subtitles.entity.mooshroom.milk": "哞菇:挤奶", - "subtitles.entity.mooshroom.suspicious_milk": "哞菇:感觉怪怪的", + "subtitles.entity.mooshroom.convert": "叉剋:我变污惹", + "subtitles.entity.mooshroom.eat": "叉剋:恰饭", + "subtitles.entity.mooshroom.milk": "叉剋:挤奶", + "subtitles.entity.mooshroom.suspicious_milk": "叉剋:感觉怪怪的", "subtitles.entity.mule.ambient": "骡:鸣叫", "subtitles.entity.mule.angry": "骡:嘶鸣", "subtitles.entity.mule.chest": "骡:装备胸部", "subtitles.entity.mule.death": "骡:啊我死了", - "subtitles.entity.mule.eat": "骡:进食", + "subtitles.entity.mule.eat": "骡:恰饭", "subtitles.entity.mule.hurt": "骡:哎哟!", + "subtitles.entity.mule.jump": "骡:跳跃", "subtitles.entity.painting.break": "世 界 名 画:被破坏", "subtitles.entity.painting.place": "世 界 名 画:被放置", "subtitles.entity.panda.aggressive_ambient": "滚滚:发怒", @@ -4806,7 +6358,7 @@ "subtitles.entity.panda.bite": "滚滚:撕咬", "subtitles.entity.panda.cant_breed": "滚滚:哀鸣", "subtitles.entity.panda.death": "跟我去一趟警局,谢谢合作", - "subtitles.entity.panda.eat": "滚滚:进食", + "subtitles.entity.panda.eat": "滚滚:恰饭", "subtitles.entity.panda.hurt": "滚滚:哎哟!", "subtitles.entity.panda.pre_sneeze": "滚滚:鼻痒", "subtitles.entity.panda.sneeze": "滚滚:打喷嚏", @@ -4814,10 +6366,12 @@ "subtitles.entity.panda.worried_ambient": "滚滚:呜咽", "subtitles.entity.parrot.ambient": "咕咕:咕咕咕!", "subtitles.entity.parrot.death": "咕咕:咕不了了", - "subtitles.entity.parrot.eats": "咕咕:进食", + "subtitles.entity.parrot.eats": "咕咕:恰饭", "subtitles.entity.parrot.fly": "咕咕:扑腾", "subtitles.entity.parrot.hurts": "咕咕:哎哟!", "subtitles.entity.parrot.imitate.blaze": "咕咕:呼吸", + "subtitles.entity.parrot.imitate.bogged": "咕咕:咯咯声", + "subtitles.entity.parrot.imitate.breeze": "咕咕:呼啸", "subtitles.entity.parrot.imitate.creeper": "咕咕:Creeper?", "subtitles.entity.parrot.imitate.drowned": "咕咕:咕噜声", "subtitles.entity.parrot.imitate.elder_guardian": "咕咕:弹跳", @@ -4832,17 +6386,18 @@ "subtitles.entity.parrot.imitate.magma_cube": "咕咕:移动声", "subtitles.entity.parrot.imitate.phantom": "咕咕:尖声叫", "subtitles.entity.parrot.imitate.piglin": "咕咕:哼叫", - "subtitles.entity.parrot.imitate.piglin_brute": "咕咕:大声哼叫", + "subtitles.entity.parrot.imitate.piglin_brute": "咕咕:哼叫", "subtitles.entity.parrot.imitate.pillager": "咕咕:咕哝", "subtitles.entity.parrot.imitate.ravager": "咕咕:呼噜", "subtitles.entity.parrot.imitate.shulker": "咕咕:窥视声", - "subtitles.entity.parrot.imitate.silverfish": "咕咕:嘶~", + "subtitles.entity.parrot.imitate.silverfish": "咕咕:嘶嘶", "subtitles.entity.parrot.imitate.skeleton": "咕咕:咯咯声", "subtitles.entity.parrot.imitate.slime": "咕咕:移动声", "subtitles.entity.parrot.imitate.spider": "咕咕:嘶~", "subtitles.entity.parrot.imitate.stray": "咕咕:咯咯声", "subtitles.entity.parrot.imitate.vex": "咕咕:恼人", "subtitles.entity.parrot.imitate.vindicator": "咕咕:低语", + "subtitles.entity.parrot.imitate.warden": "咕咕:呻吟", "subtitles.entity.parrot.imitate.witch": "咕咕:暗笑", "subtitles.entity.parrot.imitate.wither": "咕咕:愤怒", "subtitles.entity.parrot.imitate.wither_skeleton": "咕咕:咯咯声", @@ -4891,15 +6446,16 @@ "subtitles.entity.player.hurt_drown": "玩家:卟噜卟噜…", "subtitles.entity.player.hurt_on_fire": "玩家:燃起来了", "subtitles.entity.player.levelup": "玩家:升级", + "subtitles.entity.player.teleport": "玩家:传送", "subtitles.entity.polar_bear.ambient": "北极熊:低吼", "subtitles.entity.polar_bear.ambient_baby": "北极熊:哼哼!", "subtitles.entity.polar_bear.death": "北极熊:啊我死了", "subtitles.entity.polar_bear.hurt": "北极熊:哎哟!", "subtitles.entity.polar_bear.warning": "北极熊:咆哮", - "subtitles.entity.potion.splash": "药瓶:我裂开", - "subtitles.entity.potion.throw": "药瓶:飞了", - "subtitles.entity.puffer_fish.blow_out": "泡芙鱼:收缩", - "subtitles.entity.puffer_fish.blow_up": "泡芙鱼:膨胀", + "subtitles.entity.potion.splash": "溶液:洒一地", + "subtitles.entity.potion.throw": "溶液:飞了", + "subtitles.entity.puffer_fish.blow_out": "泡芙鱼:收缩缩缩缩缩", + "subtitles.entity.puffer_fish.blow_up": "泡芙鱼:膨膨膨膨膨胀", "subtitles.entity.puffer_fish.death": "泡芙鱼:啊我死了", "subtitles.entity.puffer_fish.flop": "泡芙鱼:扑腾 ", "subtitles.entity.puffer_fish.hurt": "泡芙鱼:哎哟!", @@ -4924,7 +6480,7 @@ "subtitles.entity.sheep.death": "咩咩:啊我死了", "subtitles.entity.sheep.hurt": "咩咩:疼!", "subtitles.entity.shulker.ambient": "潜影贝:D区", - "subtitles.entity.shulker.close": "潜影贝:关上", + "subtitles.entity.shulker.close": "潜影贝:关掉", "subtitles.entity.shulker.death": "潜影贝:啊我死了", "subtitles.entity.shulker.hurt": "潜影贝:哎哟!", "subtitles.entity.shulker.open": "潜影贝:打开", @@ -4940,93 +6496,133 @@ "subtitles.entity.skeleton.death": "小白:啊我死了", "subtitles.entity.skeleton.hurt": "小白:哎哟!", "subtitles.entity.skeleton.shoot": "小白:射击", - "subtitles.entity.skeleton_horse.ambient": "骷髅马:嘶叫", - "subtitles.entity.skeleton_horse.death": "骷髅马:啊我死了", - "subtitles.entity.skeleton_horse.hurt": "骷髅马:哎哟!", - "subtitles.entity.skeleton_horse.swim": "骷髅马:游泳", + "subtitles.entity.skeleton_horse.ambient": "白髅马:嘶叫", + "subtitles.entity.skeleton_horse.death": "白髅马:啊我死了", + "subtitles.entity.skeleton_horse.hurt": "白髅马:哎哟!", + "subtitles.entity.skeleton_horse.swim": "白髅马:游泳", "subtitles.entity.slime.attack": "萌王:攻击", "subtitles.entity.slime.death": "萌王:啊我死了", "subtitles.entity.slime.hurt": "萌王:哎哟!", "subtitles.entity.slime.squish": "萌王:移动", - "subtitles.entity.snow_golem.death": "雪傀儡:啊我死了", - "subtitles.entity.snow_golem.hurt": "雪傀儡:哎哟!", + "subtitles.entity.sniffer.death": "嗅嗅:啊我死了", + "subtitles.entity.sniffer.digging": "嗅嗅:挖掘", + "subtitles.entity.sniffer.digging_stop": "嗅嗅:站起", + "subtitles.entity.sniffer.drop_seed": "嗅嗅:丢下种子", + "subtitles.entity.sniffer.eat": "嗅嗅:恰饭", + "subtitles.entity.sniffer.egg_crack": "嗅嗅的蛋:裂开", + "subtitles.entity.sniffer.egg_hatch": "嗅嗅的蛋:孵化", + "subtitles.entity.sniffer.happy": "嗅嗅:愉悦", + "subtitles.entity.sniffer.hurt": "嗅嗅:哎哟!", + "subtitles.entity.sniffer.idle": "嗅嗅:呼噜", + "subtitles.entity.sniffer.scenting": "嗅嗅:嗅闻", + "subtitles.entity.sniffer.searching": "嗅嗅:搜寻", + "subtitles.entity.sniffer.sniffing": "嗅嗅:嗅探", + "subtitles.entity.sniffer.step": "嗅嗅:脚步声", + "subtitles.entity.snow_golem.death": "雪人:啊我死了", + "subtitles.entity.snow_golem.hurt": "雪人:哎哟!", "subtitles.entity.snowball.throw": "雪球:飞了", - "subtitles.entity.spider.ambient": "蜘蛛:嘶嘶", - "subtitles.entity.spider.death": "蜘蛛:啊我死了", - "subtitles.entity.spider.hurt": "蜘蛛:哎哟!", - "subtitles.entity.squid.ambient": "八爪鱼:游动", - "subtitles.entity.squid.death": "八爪鱼:啊我死了", - "subtitles.entity.squid.hurt": "八爪鱼:哎哟!", - "subtitles.entity.squid.squirt": "八爪鱼:喷墨", - "subtitles.entity.stray.ambient": "流髑:咯咯声", - "subtitles.entity.stray.death": "流髑:啊我死了", - "subtitles.entity.stray.hurt": "流髑:哎哟!", + "subtitles.entity.spider.ambient": "失败的:嘶嘶", + "subtitles.entity.spider.death": "失败的:啊我死了", + "subtitles.entity.spider.hurt": "失败的:哎哟!", + "subtitles.entity.squid.ambient": "夺心魔:游动", + "subtitles.entity.squid.death": "夺心魔:啊我死了", + "subtitles.entity.squid.hurt": "夺心魔:哎哟!", + "subtitles.entity.squid.squirt": "夺心魔:喷墨", + "subtitles.entity.stray.ambient": "冷冻骷髅:咯咯声", + "subtitles.entity.stray.death": "冷冻骷髅:啊我死了", + "subtitles.entity.stray.hurt": "冷冻骷髅:哎哟!", "subtitles.entity.strider.death": "炫迈兽:啊我死了", - "subtitles.entity.strider.eat": "炫迈兽:进食", + "subtitles.entity.strider.eat": "炫迈兽:恰饭", "subtitles.entity.strider.happy": "炫迈兽:抖抖抖", "subtitles.entity.strider.hurt": "炫迈兽:哎哟!", "subtitles.entity.strider.idle": "炫迈兽:啾啾", "subtitles.entity.strider.retreat": "炫迈兽:溜了溜了", + "subtitles.entity.tadpole.death": "蝌蚪:啊我死了", + "subtitles.entity.tadpole.flop": "蝌蚪:扑腾", + "subtitles.entity.tadpole.grow_up": "蝌蚪:登dua郎", + "subtitles.entity.tadpole.hurt": "蝌蚪:疼!", "subtitles.entity.tnt.primed": "大伊万:嘶嘶作响", "subtitles.entity.tropical_fish.death": "小鱼君:啊我死了", "subtitles.entity.tropical_fish.flop": "小鱼君:拖鞋(?)", "subtitles.entity.tropical_fish.hurt": "小鱼君:哎哟!", - "subtitles.entity.turtle.ambient_land": "王八:啾啾", - "subtitles.entity.turtle.death": "王八:啊我死了", - "subtitles.entity.turtle.death_baby": "小王八:啊我死了", - "subtitles.entity.turtle.egg_break": "王八蛋:破裂", - "subtitles.entity.turtle.egg_crack": "王八蛋:裂开", - "subtitles.entity.turtle.egg_hatch": "王八蛋:孵化", - "subtitles.entity.turtle.hurt": "王八:哎哟!", - "subtitles.entity.turtle.hurt_baby": "小王八:哎哟!", - "subtitles.entity.turtle.lay_egg": "王八:产卵", - "subtitles.entity.turtle.shamble": "王八:爪巴", - "subtitles.entity.turtle.shamble_baby": "小王八:爪巴", - "subtitles.entity.turtle.swim": "王八:游动", + "subtitles.entity.turtle.ambient_land": "兲:啾啾", + "subtitles.entity.turtle.death": "兲:啊我死了", + "subtitles.entity.turtle.death_baby": "小兲:啊我死了", + "subtitles.entity.turtle.egg_break": "兲蛋:破裂", + "subtitles.entity.turtle.egg_crack": "兲蛋:裂开", + "subtitles.entity.turtle.egg_hatch": "兲蛋:孵化", + "subtitles.entity.turtle.hurt": "兲:哎哟!", + "subtitles.entity.turtle.hurt_baby": "小兲:哎哟!", + "subtitles.entity.turtle.lay_egg": "兲:产卵", + "subtitles.entity.turtle.shamble": "兲:爪巴", + "subtitles.entity.turtle.shamble_baby": "小兲:爪巴", + "subtitles.entity.turtle.swim": "兲:游动", "subtitles.entity.vex.ambient": "猥傀:猥琐地笑着", "subtitles.entity.vex.charge": "猥傀:尖叫", "subtitles.entity.vex.death": "猥傀:啊我死了", "subtitles.entity.vex.hurt": "猥傀:哎哟!", - "subtitles.entity.villager.ambient": "村民:哼哼!", - "subtitles.entity.villager.celebrate": "村民:芜湖!", - "subtitles.entity.villager.death": "小心铁憨憨", - "subtitles.entity.villager.hurt": "村民:有内鬼,终止交♂易!", - "subtitles.entity.villager.no": "村民:就这?", - "subtitles.entity.villager.trade": "村民:交♂易", + "subtitles.entity.villager.ambient": "奸商:哼哼!", + "subtitles.entity.villager.celebrate": "奸商:芜湖!", + "subtitles.entity.villager.death": "奸商:小心铁憨憨", + "subtitles.entity.villager.hurt": "奸商:有内鬼,终止交♂易!", + "subtitles.entity.villager.no": "奸商:就这?", + "subtitles.entity.villager.trade": "奸商:交♂易", "subtitles.entity.villager.work_armorer": "盔甲匠:工作", - "subtitles.entity.villager.work_butcher": "屠夫:工作", - "subtitles.entity.villager.work_cartographer": "制图师:工作", + "subtitles.entity.villager.work_butcher": "催逝员:杀只鸡,炖锅鸡汤", + "subtitles.entity.villager.work_cartographer": "制图机器人:工作", "subtitles.entity.villager.work_cleric": "神职人员:工作", "subtitles.entity.villager.work_farmer": "龙鸣:工作", "subtitles.entity.villager.work_fisherman": "武陵人:工作", "subtitles.entity.villager.work_fletcher": "箭人:工作", "subtitles.entity.villager.work_leatherworker": "黄鹤:工作", "subtitles.entity.villager.work_librarian": "茵蒂克丝:工作", - "subtitles.entity.villager.work_mason": "石匠:工作", + "subtitles.entity.villager.work_mason": "泥瓦匠:工作", "subtitles.entity.villager.work_shepherd": "放羊娃:工作", "subtitles.entity.villager.work_toolsmith": "工 具 人:工作", "subtitles.entity.villager.work_weaponsmith": "军火商:工作", - "subtitles.entity.villager.yes": "村民:我tm谢谢您!", - "subtitles.entity.vindicator.ambient": "卫道士:哼哼!", - "subtitles.entity.vindicator.celebrate": "卫道士:芜湖!", - "subtitles.entity.vindicator.death": "卫道士:啊我死了", - "subtitles.entity.vindicator.hurt": "卫道士:哎哟!", + "subtitles.entity.villager.yes": "奸商:我tm谢谢你!", + "subtitles.entity.vindicator.ambient": "辩护者:哼哼!", + "subtitles.entity.vindicator.celebrate": "辩护者:芜湖!", + "subtitles.entity.vindicator.death": "辩护者:啊我死了", + "subtitles.entity.vindicator.hurt": "辩护者:哎哟!", "subtitles.entity.wandering_trader.ambient": "流浪奸商:哼哼!", "subtitles.entity.wandering_trader.death": "流浪奸商:啊我死了", "subtitles.entity.wandering_trader.disappeared": "流浪奸商:成为透 明 人", - "subtitles.entity.wandering_trader.drink_milk": "流浪奸商:饮用桶装奶", + "subtitles.entity.wandering_trader.drink_milk": "流浪奸商:饮用Let's 牛乳dance!", "subtitles.entity.wandering_trader.drink_potion": "流浪奸商:饮用溶液", "subtitles.entity.wandering_trader.hurt": "流浪奸商:哎哟!", "subtitles.entity.wandering_trader.no": "流浪奸商:就这?", "subtitles.entity.wandering_trader.reappeared": "流浪奸商:现身", "subtitles.entity.wandering_trader.trade": "流浪奸商:交♂易", - "subtitles.entity.wandering_trader.yes": "流浪奸商:我tm谢谢您!", - "subtitles.entity.witch.ambient": "女巫:奸笑", - "subtitles.entity.witch.celebrate": "女巫:芜湖!", - "subtitles.entity.witch.death": "女巫:啊我死了", - "subtitles.entity.witch.drink": "女巫:吃buff", - "subtitles.entity.witch.hurt": "女巫:哎哟!", - "subtitles.entity.witch.throw": "女巫:给爷死", + "subtitles.entity.wandering_trader.yes": "流浪奸商:我tm谢谢你!", + "subtitles.entity.warden.agitated": "傻大个:哼哼", + "subtitles.entity.warden.ambient": "傻大个:呻吟", + "subtitles.entity.warden.angry": "傻大个:无能狂怒", + "subtitles.entity.warden.attack_impact": "傻大个:噫,好,中了!", + "subtitles.entity.warden.death": "傻大个:啊我死了", + "subtitles.entity.warden.dig": "傻大个:扬了!", + "subtitles.entity.warden.emerge": "傻大个:噔 噔 咚", + "subtitles.entity.warden.heartbeat": "傻大个:DOKI DOKI", + "subtitles.entity.warden.hurt": "傻大个:疼!", + "subtitles.entity.warden.listening": "傻大个:ん?", + "subtitles.entity.warden.listening_angry": "傻大个:ん!", + "subtitles.entity.warden.nearby_close": "傻大个:还 没 来", + "subtitles.entity.warden.nearby_closer": "傻大个:快 来 了", + "subtitles.entity.warden.nearby_closest": "傻大个:要 来 了", + "subtitles.entity.warden.roar": "傻大个:大 喊 大 叫", + "subtitles.entity.warden.sniff": "傻大个:嗅闻", + "subtitles.entity.warden.sonic_boom": "傻大个:低音炮攻击", + "subtitles.entity.warden.sonic_charge": "傻大个:大的要来了", + "subtitles.entity.warden.step": "傻大个:噔噔噔", + "subtitles.entity.warden.tendril_clicks": "傻大个:察觉", + "subtitles.entity.wind_charge.throw": "风弹:飞行", + "subtitles.entity.wind_charge.wind_burst": "风弹:爆裂", + "subtitles.entity.witch.ambient": "巫婆:奸笑", + "subtitles.entity.witch.celebrate": "巫婆:芜湖!", + "subtitles.entity.witch.death": "巫婆:啊我死了", + "subtitles.entity.witch.drink": "巫婆:吃buff", + "subtitles.entity.witch.hurt": "巫婆:哎哟!", + "subtitles.entity.witch.throw": "巫婆:给爷死", "subtitles.entity.wither.ambient": "凋零怪:愤怒", "subtitles.entity.wither.death": "凋零怪:啊我死了", "subtitles.entity.wither.hurt": "凋零怪:哎哟!", @@ -5051,21 +6647,24 @@ "subtitles.entity.zombie.break_wooden_door": "门:啊我烂了", "subtitles.entity.zombie.converted_to_drowned": "姜丝:我湿了", "subtitles.entity.zombie.death": "姜丝:啊我死了", - "subtitles.entity.zombie.destroy_egg": "海龟蛋:哎哟!", + "subtitles.entity.zombie.destroy_egg": "兲蛋:哎哟!", "subtitles.entity.zombie.hurt": "姜丝:哎哟!", "subtitles.entity.zombie.infect": "姜丝:感染", "subtitles.entity.zombie_horse.ambient": "姜丝马:嘶叫", "subtitles.entity.zombie_horse.death": "姜丝马:啊我死了", "subtitles.entity.zombie_horse.hurt": "姜丝马:哎哟!", - "subtitles.entity.zombie_villager.ambient": "姜丝村民:低吼", - "subtitles.entity.zombie_villager.converted": "姜丝村民:大 吼 大 叫", - "subtitles.entity.zombie_villager.cure": "姜丝村民:撕心裂肺", - "subtitles.entity.zombie_villager.death": "姜丝村民:啊我死了", - "subtitles.entity.zombie_villager.hurt": "姜丝村民:哎哟!", + "subtitles.entity.zombie_villager.ambient": "姜丝奸商:低吼", + "subtitles.entity.zombie_villager.converted": "姜丝奸商:大 吼 大 叫", + "subtitles.entity.zombie_villager.cure": "姜丝奸商:撕心裂肺", + "subtitles.entity.zombie_villager.death": "姜丝奸商:啊我死了", + "subtitles.entity.zombie_villager.hurt": "姜丝奸商:哎哟!", "subtitles.entity.zombified_piglin.ambient": "僵硬的猪刚鬣:哼哼!", "subtitles.entity.zombified_piglin.angry": "僵硬的猪刚鬣:急了急了", "subtitles.entity.zombified_piglin.death": "僵硬的猪刚鬣:啊我死了", "subtitles.entity.zombified_piglin.hurt": "僵硬的猪刚鬣:疼!", + "subtitles.event.mob_effect.bad_omen": "大的要来了", + "subtitles.event.mob_effect.raid_omen": "鬼子要来了", + "subtitles.event.mob_effect.trial_omen": "试用版凶兆要来了", "subtitles.event.raid.horn": "奸商聚集地保卫战,开始了", "subtitles.item.armor.equip": "盔甲:装备", "subtitles.item.armor.equip_chain": "蕾丝套:碰擦", @@ -5076,37 +6675,49 @@ "subtitles.item.armor.equip_leather": "皮革护甲:摩擦", "subtitles.item.armor.equip_netherite": "下界玄素盔甲:铿锵", "subtitles.item.armor.equip_turtle": "海龟壳:咕咚", - "subtitles.item.axe.strip": "斧:刮黑板", + "subtitles.item.armor.equip_wolf": "沃尔夫钢:装备", + "subtitles.item.armor.unequip_wolf": "沃尔夫钢:滑落", "subtitles.item.axe.scrape": "斧:刮黑板", + "subtitles.item.axe.strip": "斧:刮黑板", "subtitles.item.axe.wax_off": "把以镀膜的形式均匀地覆盖在表面上的蜡刮掉", + "subtitles.item.bone_meal.use": "骨灰:被扬", "subtitles.item.book.page_turn": "书页:沙沙作响", "subtitles.item.book.put": "书:放置", - "subtitles.item.bone_meal.use": "骨灰:被扬", - "subtitles.item.bottle.empty": "玻璃瓶:排空", - "subtitles.item.bottle.fill": "水瓶:装满", + "subtitles.item.bottle.empty": "安瓿瓶:排空", + "subtitles.item.bottle.fill": "氧烷:装满", + "subtitles.item.brush.brushing.generic": "鸡毛掸子:在刷了", + "subtitles.item.brush.brushing.gravel": "鸡毛掸子:在刷氵少石乐了", + "subtitles.item.brush.brushing.gravel.complete": "鸡毛掸子:氵少石乐刷完了", + "subtitles.item.brush.brushing.sand": "鸡毛掸子:在刷沙子子了", + "subtitles.item.brush.brushing.sand.complete": "鸡毛掸子:沙子子刷完了", "subtitles.item.bucket.empty": "铁桶:倒空", "subtitles.item.bucket.fill": "铁桶:装满", - "subtitles.item.bucket.fill_axolotl": "六角恐龙:我tm谢谢您!", - "subtitles.item.bucket.fill_fish": "鱼:我tm谢谢您!", + "subtitles.item.bucket.fill_axolotl": "六角恐龙:我tm谢谢你!", + "subtitles.item.bucket.fill_fish": "鱼:我tm谢谢你!", + "subtitles.item.bucket.fill_tadpole": "蝌蚪:我tm谢谢你!", "subtitles.item.bundle.drop_contents": "套娃用的袋子:吐光", "subtitles.item.bundle.insert": "物品:被喂给袋子", "subtitles.item.bundle.remove_one": "物品:被吐出袋子", "subtitles.item.chorus_fruit.teleport": "玩家:闪现", "subtitles.item.crop.plant": "作物:种植", - "subtitles.item.crossbow.charge": "弩:蓄力", + "subtitles.item.crossbow.charge": "诸葛连弩:蓄力", "subtitles.item.crossbow.hit": "箭:击中", - "subtitles.item.crossbow.load": "弩:装填", - "subtitles.item.crossbow.shoot": "弩:发射", - "subtitles.item.dye.use": "染料:瞎涂", + "subtitles.item.crossbow.load": "诸葛连弩:装填", + "subtitles.item.crossbow.shoot": "诸葛连弩:发射", + "subtitles.item.dye.use": "颜料:瞎涂", "subtitles.item.firecharge.use": "火焰弹:芜湖!", "subtitles.item.flintandsteel.use": "哪里不会点哪里", - "subtitles.item.glow_ink_sac.use": "荧光墨囊:瞎涂", - "subtitles.item.hoe.till": "锄头:犁地", + "subtitles.item.glow_ink_sac.use": "珊瑚感染夺心魔的袋袋:瞎涂", + "subtitles.item.goat_horn.play": "妙脆角:吹奏", + "subtitles.item.hoe.till": "锄禾日当午", "subtitles.item.honey_bottle.drink": "给你点甜头尝尝", "subtitles.item.honeycomb.wax_on": "以镀膜的形式将蜡均匀地覆盖在表面上", - "subtitles.item.ink_sac.use": "墨囊:瞎涂", - "subtitles.item.lodestone_compass.lock": "罗德(岛)石指针:绑定磁石", + "subtitles.item.ink_sac.use": "夺心魔的袋袋:瞎涂", + "subtitles.item.lodestone_compass.lock": "罗德(岛)石NullPointerException:绑定罗德(岛)石", + "subtitles.item.mace.smash_air": "咚咚锤:八十", + "subtitles.item.mace.smash_ground": "咚咚锤:八十", "subtitles.item.nether_wart.plant": "作物:种植", + "subtitles.item.ominous_bottle.dispose": "玻璃瓶:碎裂", "subtitles.item.shears.shear": "夹子:夹断", "subtitles.item.shield.block": "盾牌:格挡", "subtitles.item.shovel.flatten": "锨:压地", @@ -5119,36 +6730,132 @@ "subtitles.item.trident.riptide": "鱼叉:猪突猛进", "subtitles.item.trident.throw": "鱼叉:铿锵", "subtitles.item.trident.thunder": "鱼叉:霹雳一闪", - "subtitles.particle.soul_escape": "灵魂:飞了", - "subtitles.ui.cartography_table.take_result": "地图:瞎涂", + "subtitles.item.wolf_armor.break": "沃尔夫钢:损坏", + "subtitles.item.wolf_armor.crack": "沃尔夫钢:裂开", + "subtitles.item.wolf_armor.damage": "沃尔夫钢:受损", + "subtitles.item.wolf_armor.repair": "沃尔夫钢:被修复", + "subtitles.particle.soul_escape": "亡魂:飞了", + "subtitles.ui.cartography_table.take_result": "映射:瞎涂", "subtitles.ui.loom.take_result": "珍妮纺纱机:使用", "subtitles.ui.stonecutter.take_result": "石头刽子手:使用", "subtitles.weather.rain": "淅沥淅沥", + "symlink_warning.message": "从含有符号链接的文件夹中加载世界可能导致风险,尤其是在你不清楚链接目标内容时。请访问%s了解更多信息。", + "symlink_warning.message.pack": "继续操作前请知晓,加载含有符号链接的包可能会有风险。请访问%s了解更多信息。", + "symlink_warning.message.world": "继续操作前请知晓,从含有符号链接的文件夹中加载世界可能会有风险。请访问%s了解更多信息。", + "symlink_warning.more_info": "更多信息", + "symlink_warning.title": "世界文件夹包含符号链接", + "symlink_warning.title.pack": "添加的包中含有符号链接", + "symlink_warning.title.world": "世界文件夹中含有符号链接", "team.collision.always": "总是贴贴", "team.collision.never": "禁用贴贴", "team.collision.pushOtherTeams": "专业团队间贴贴", "team.collision.pushOwnTeam": "专业团队内贴贴", - "team.notFound": "未知的专业团队:'%s'", + "team.notFound": "未知的专业团队:“%s”", "team.visibility.always": "始终显示", - "team.visibility.hideForOtherTeams": "对别队隐藏", - "team.visibility.hideForOwnTeam": "对本队隐藏", + "team.visibility.hideForOtherTeams": "专业团队间不给看", + "team.visibility.hideForOwnTeam": "专业团队内不给看", "team.visibility.never": "始终隐藏", + "telemetry.event.advancement_made.description": "了解达成进步前后发生什么事了有助于我们更好了解及改进游戏流程", + "telemetry.event.advancement_made.title": "达成进步", + "telemetry.event.game_load_times.description": "此事件会测量游戏启动各个阶段的时长以帮助我们找到游戏启动的性能优化点", + "telemetry.event.game_load_times.title": "游戏加载时间", + "telemetry.event.optional": "%s(可选)", + "telemetry.event.optional.disabled": "%s(可选,已禁用)", + "telemetry.event.performance_metrics.description": "了解Minecraft的整体性能概况,可以帮助我们针对各种机型和操作系统调整与优化游戏。 \n游戏版本信息也包含在其中,以帮助我们比较Minecraft新版本的性能概况。", + "telemetry.event.performance_metrics.title": "性能指标", + "telemetry.event.required": "%s(必要)", + "telemetry.event.world_load_times.description": "对我们而言,了解加入世界所需的时长,以及这一时长随着时间推移会如何变化是很重要的。比如,当我们加入新功能或进行较大的技术更改时,我们需要知道这对加载时间有何影响。", + "telemetry.event.world_load_times.title": "世界加载时间", + "telemetry.event.world_loaded.description": "了解玩家玩Minecraft时的具体细节(例如游戏模式、客户端或服务端是否魔改,以及游戏版本)能够帮助我们专注于游戏更新以改进玩家最关心的部分。\n“加载世界”事件将同“卸载世界”事件一起用于计算游戏会话的持续时长。", + "telemetry.event.world_loaded.title": "世界加载", + "telemetry.event.world_unloaded.description": "此事件与世界加载事件用于计算世界会话的持续时间。\n持续时间(以秒和刻为单位)在世界会话结束时(退回到标题屏幕,或从服务器断开连接)测量。", + "telemetry.event.world_unloaded.title": "世界卸载", + "telemetry.property.advancement_game_time.title": "游戏时间(刻)", + "telemetry.property.advancement_id.title": "进步ID", + "telemetry.property.client_id.title": "客户端ID", + "telemetry.property.client_modded.title": "客户端是否魔改", + "telemetry.property.dedicated_memory_kb.title": "专用内存(kB)", + "telemetry.property.event_timestamp_utc.title": "事件时间戳(UTC)", + "telemetry.property.frame_rate_samples.title": "帧率样本(FPS)", + "telemetry.property.game_mode.title": "游戏模式", + "telemetry.property.game_version.title": "游戏版本", + "telemetry.property.launcher_name.title": "启动器名称", + "telemetry.property.load_time_bootstrap_ms.title": "启动引导时间(毫秒)", + "telemetry.property.load_time_loading_overlay_ms.title": "加载屏幕显示时间(毫秒)", + "telemetry.property.load_time_pre_window_ms.title": "窗口开启前时间(毫秒)", + "telemetry.property.load_time_total_time_ms.title": "总计加载时间(毫秒)", + "telemetry.property.minecraft_session_id.title": "Minecraft会话ID", + "telemetry.property.new_world.title": "新的世界", + "telemetry.property.number_of_samples.title": "样本数", + "telemetry.property.operating_system.title": "操作系统", + "telemetry.property.opt_in.title": "可选择加入", + "telemetry.property.platform.title": "平台", + "telemetry.property.realms_map_content.title": "领域地图内容(小游戏名称)", + "telemetry.property.render_distance.title": "渲染距离", + "telemetry.property.render_time_samples.title": "渲染用时样本", + "telemetry.property.seconds_since_load.title": "自加载后的时间(秒)", + "telemetry.property.server_modded.title": "服务端是否魔改", + "telemetry.property.server_type.title": "服务器类型", + "telemetry.property.ticks_since_load.title": "自加载后的时间(刻)", + "telemetry.property.used_memory_samples.title": "已使用的内存", + "telemetry.property.user_id.title": "用户ID", + "telemetry.property.world_load_time_ms.title": "世界加载时间(毫秒)", + "telemetry.property.world_session_id.title": "世界会话ID", + "telemetry_info.button.give_feedback": "提供反馈", + "telemetry_info.button.privacy_statement": "隐私声明", + "telemetry_info.button.show_data": "打开我的数据", + "telemetry_info.opt_in.description": "我同意发送可选的遥测数据", + "telemetry_info.property_title": "包含的数据", + "telemetry_info.screen.description": "收集这些数据可以让我们了解与玩家有关的实际情况,以便帮助我们改进Minecraft。\n你也可以发送其他反馈来帮助我们持续改进Minecraft。", + "telemetry_info.screen.title": "遥测数据收集", + "title.32bit.deprecation": "加钱上32位系统吧!Minecraft马上就要抛弃你了,赶紧换成64位系统吧!", + "title.32bit.deprecation.realms": "Minecraft马上就要抛弃你了,要么赶紧换成64位系统,要么就把你的领域服订阅全取消了吧!", + "title.32bit.deprecation.realms.check": "我知道了,不用你多说", + "title.32bit.deprecation.realms.header": "检测到了32位系统", + "title.credits": "© Mojang AB 请勿二次分发!", "title.multiplayer.disabled": "多人游戏已被禁用,请检查你的启动器或Macrohard账号设置。", + "title.multiplayer.disabled.banned.name": "你必须在进行在线游戏前更改名称", + "title.multiplayer.disabled.banned.permanent": "你的账户已被喂龙,无法进行多人游戏", + "title.multiplayer.disabled.banned.temporary": "你的账户已被暂时封禁,无法进行多人游戏", "title.multiplayer.lan": "多人游戏(菊域网) (末响应)", "title.multiplayer.other": "多人游戏(第三π对) (末响应)", "title.multiplayer.realms": "多人游戏(领域) (末响应)", - "title.oldgl.deprecation.line1": "请加钱上DGX A100!由于需要", - "title.oldgl.deprecation.line2": "OpenGL 3.2,这会在未来阻止您进行游戏。", - "title.oldgl.eol.line1": "检测到你的显卡不是Quadro RTX 8000!由于需要", - "title.oldgl.eol.line2": "OpenGL 2.0,这会阻止您在未来版本进行游戏。", "title.singleplayer": "单人游戏 (末响应)", - "translation.test.args": "%s%s", + "translation.test.args": "%s %s", "translation.test.complex": "%s%2$s%s%1$s%s%1$s%2$s%s%3$s!", "translation.test.escape": "%%s %%%s %%%%s %%%%%s", "translation.test.invalid": "% 你好", "translation.test.invalid2": "%s 你好", "translation.test.none": "学了这么久编程你就只会一句“Hello World!”?", "translation.test.world": "世界", + "trim_material.minecraft.amethyst": "紫水晶质", + "trim_material.minecraft.copper": "铜质", + "trim_material.minecraft.diamond": "祖安石质", + "trim_material.minecraft.emerald": "原谅石质", + "trim_material.minecraft.gold": "黄油质", + "trim_material.minecraft.iron": "老铁质", + "trim_material.minecraft.lapis": "蓝宝石质", + "trim_material.minecraft.netherite": "下界玄素质", + "trim_material.minecraft.quartz": "石英质", + "trim_material.minecraft.redstone": "雷石东质", + "trim_pattern.minecraft.bolt": "镶铆盔甲纹饰", + "trim_pattern.minecraft.coast": "海岸盔甲纹饰", + "trim_pattern.minecraft.dune": "沙子丘盔甲纹饰", + "trim_pattern.minecraft.eye": "眼睛盔甲纹饰", + "trim_pattern.minecraft.flow": "涡流盔甲纹饰", + "trim_pattern.minecraft.host": "主机盔甲纹饰", + "trim_pattern.minecraft.raiser": "养人盔甲纹饰", + "trim_pattern.minecraft.rib": "肋排盔甲纹饰", + "trim_pattern.minecraft.sentry": "烧饼盔甲纹饰", + "trim_pattern.minecraft.shaper": "塑形器盔甲纹饰", + "trim_pattern.minecraft.silence": "大 静 谧盔甲纹饰", + "trim_pattern.minecraft.snout": "插座盔甲纹饰", + "trim_pattern.minecraft.spire": "尖塔盔甲纹饰", + "trim_pattern.minecraft.tide": "潮汐盔甲纹饰", + "trim_pattern.minecraft.vex": "猥傀盔甲纹饰", + "trim_pattern.minecraft.ward": "傻大个盔甲纹饰", + "trim_pattern.minecraft.wayfinder": "找路的盔甲纹饰", + "trim_pattern.minecraft.wild": "狂野盔甲纹饰", "tutorial.bundleInsert.description": "使用套娃用的袋子", "tutorial.bundleInsert.title": "右击来套娃", "tutorial.craft_planks.description": "原谅色小本本能提供帮助", @@ -5157,12 +6864,344 @@ "tutorial.find_tree.title": "找到一棵树", "tutorial.look.description": "使用你的鼠标来转动", "tutorial.look.title": "观察四周", - "tutorial.move.description": "用%s来跳跃", + "tutorial.move.description": "用%s来跳跃,也许有隐藏砖", "tutorial.move.title": "用%s、%s、%s和%s来移动", "tutorial.open_inventory.description": "按下%s", - "tutorial.open_inventory.title": "打开你的物品栏", + "tutorial.open_inventory.title": "打开你的库存", "tutorial.punch_tree.description": "按住%s", "tutorial.punch_tree.title": "想致富,先撸树", "tutorial.socialInteractions.description": "按%s打开", - "tutorial.socialInteractions.title": "选择性失聪" -} + "tutorial.socialInteractions.title": "选择性失聪", + "upgrade.minecraft.netherite_upgrade": "下界玄素升级", + "argument.nbt.expected.compound": "应为复合标签", + "argument.resource_selector.not_found": "选择器“%s”和类型“%s”没有匹配项", + "attribute.modifier.equals.0": "%s %s", + "attribute.modifier.equals.1": "%s%% %s", + "attribute.modifier.equals.2": "%s%% %s", + "attribute.modifier.plus.0": "+%s %s", + "attribute.modifier.plus.1": "+%s%% %s", + "attribute.modifier.plus.2": "+%s%% %s", + "attribute.modifier.take.0": "-%s %s", + "attribute.modifier.take.1": "-%s%% %s", + "attribute.modifier.take.2": "-%s%% %s", + "attribute.name.armor": "盔甲", + "attribute.name.armor_toughness": "盔甲韧性", + "attribute.name.attack_damage": "攻击伤害", + "attribute.name.attack_knockback": "攻击鸡腿", + "attribute.name.attack_speed": "手速", + "attribute.name.block_interaction_range": "方块交互距离", + "attribute.name.burning_time": "着火时间", + "attribute.name.entity_interaction_range": "实体交互距离", + "attribute.name.explosion_knockback_resistance": "爆炸击退抗性", + "attribute.name.fall_damage_multiplier": "摔落伤害倍数", + "attribute.name.flying_speed": "飞行速度", + "attribute.name.follow_range": "暴徒跟随距离", + "attribute.name.gravity": "重力", + "attribute.name.jump_strength": "跳跃力度", + "attribute.name.knockback_resistance": "鸡腿抗性", + "attribute.name.luck": "欧气", + "attribute.name.max_absorption": "最大肉盾值", + "attribute.name.max_health": "最大生命值", + "attribute.name.movement_efficiency": "移动效率", + "attribute.name.movement_speed": "速度", + "attribute.name.oxygen_bonus": "最后一口气", + "attribute.name.safe_fall_distance": "安全摔落高度", + "attribute.name.scale": "身高", + "attribute.name.step_height": "最大行走高度", + "attribute.name.water_movement_efficiency": "水中移动效率", + "biome.minecraft.pale_garden": "苍白之园", + "block.minecraft.bush": "布什", + "block.minecraft.chiseled_resin_bricks": "雕纹树脂砖块", + "block.minecraft.closed_eyeblossom": "闭合的眼眸花", + "block.minecraft.creaking_heart": "树魔棍哥的❤", + "block.minecraft.firefly_bush": "火星布什", + "block.minecraft.leaf_litter": "枯叶", + "block.minecraft.open_eyeblossom": "张开的眼眸花", + "block.minecraft.pale_hanging_moss": "苍白垂须", + "block.minecraft.pale_moss_block": "苍白MOSS块", + "block.minecraft.pale_moss_carpet": "苍白MOSS地毯", + "block.minecraft.pale_oak_button": "苍白橡木抱枕", + "block.minecraft.pale_oak_door": "苍白橡木门", + "block.minecraft.pale_oak_fence": "苍白橡木栅栏", + "block.minecraft.pale_oak_fence_gate": "苍白橡木栅栏门", + "block.minecraft.pale_oak_hanging_sign": "上吊的苍白橡木搞事牌", + "block.minecraft.pale_oak_leaves": "苍白橡树树叶", + "block.minecraft.pale_oak_log": "苍白橡木日志", + "block.minecraft.pale_oak_planks": "苍白橡木木板", + "block.minecraft.pale_oak_pressure_plate": "苍白橡木阿姨压一压板", + "block.minecraft.pale_oak_sapling": "苍白橡树宝宝", + "block.minecraft.pale_oak_sign": "苍白橡木搞事牌", + "block.minecraft.pale_oak_slab": "苍白橡木半砖", + "block.minecraft.pale_oak_stairs": "苍白橡木楼梯", + "block.minecraft.pale_oak_trapdoor": "苍白橡木陷阱门", + "block.minecraft.pale_oak_wall_hanging_sign": "墙上的悬挂式苍白橡木告示牌", + "block.minecraft.pale_oak_wall_sign": "墙上的苍白橡木告示牌", + "block.minecraft.pale_oak_wood": "苍白橡树树皮", + "block.minecraft.potted_closed_eyeblossom": "闭合的眼眸花盆栽", + "block.minecraft.potted_open_eyeblossom": "张开的眼眸花盆栽", + "block.minecraft.potted_pale_oak_sapling": "苍白橡树树苗盆栽", + "block.minecraft.resin_block": "树脂块", + "block.minecraft.resin_brick_slab": "树脂砖半砖", + "block.minecraft.resin_brick_stairs": "树脂砖楼梯", + "block.minecraft.resin_brick_wall": "树脂砖墙", + "block.minecraft.resin_bricks": "树脂砖块", + "block.minecraft.resin_clump": "树脂团", + "block.minecraft.stripped_pale_oak_log": "去皮苍白橡木原木", + "block.minecraft.stripped_pale_oak_wood": "去皮苍白橡木", + "block.minecraft.test_block": "测测你的块", + "block.minecraft.test_instance_block": "测测你的实例方块", + "block.minecraft.wildflowers": "野花簇", + "commands.attribute.base_value.reset.success": "实体%2$s的属性%1$s的基值已重置为默认值%3$s", + "commands.drop.no_loot_table.block": "方块%s没有战利品表", + "commands.rotate.success": "已旋转%s", + "commands.schedule.macro": "无法计划宏", + "commands.setidletimeout.success.disabled": "玩家的闲置限时已禁用", + "commands.test.batch.starting": "正在启动环境%s批次%s", + "commands.test.clear.error.no_tests": "无法找到任何需要清除的测一测", + "commands.test.clear.success": "清除了%s个结构", + "commands.test.coordinates": "%s, %s, %s", + "commands.test.coordinates.copy": "单击复制到剪贴板", + "commands.test.create.success": "已为测一测%s创建测一测设置", + "commands.test.error.no_test_containing_pos": "找不到包含%s, %s, %s的测一测实例", + "commands.test.error.no_test_instances": "未找到测一测实例", + "commands.test.error.non_existant_test": "测一测实例%s不存在", + "commands.test.error.structure_not_found": "无法找到测一测结构%s", + "commands.test.error.test_instance_not_found": "无法找到测测你的实例方块实体", + "commands.test.error.test_instance_not_found.position": "无法在%s, %s, %s处找到测测你的实例方块实体", + "commands.test.error.too_large": "结构在每条轴上的尺寸必须小于%s个方块", + "commands.test.locate.done": "定位完成,找到%s个结构", + "commands.test.locate.found": "在以下位置找到结构:%s(距离:%s)", + "commands.test.locate.started": "已开始定位测一测结构,这可能需要一点时间…", + "commands.test.no_tests": "没有需要运行的测一测", + "commands.test.relative_position": "相对于%s的位置:%s", + "commands.test.reset.error.no_tests": "无法找到任何需要重置的测一测", + "commands.test.reset.success": "重置了%s个结构", + "commands.test.run.no_tests": "未找到测一测", + "commands.test.run.running": "正在运行%s个测一测…", + "commands.test.summary": "测一测完成!已运行%s个测一测", + "commands.test.summary.all_required_passed": "必要测一测均已通过 :)", + "commands.test.summary.failed": "%s个必要测一测失败 :(", + "commands.test.summary.optional_failed": "%s个可选测一测失败", + "container.beehive.bees": "蜂子:%s/%s", + "container.beehive.honey": "甜蜜蜜:%s/%s", + "dataPack.minecart_improvements.description": "改进了矿车的运动", + "dataPack.minecart_improvements.name": "矿车改进", + "dataPack.redstone_experiments.description": "实验性红石更改", + "dataPack.redstone_experiments.name": "红石实验性内容", + "dataPack.winter_drop.description": "冬天新挤出来的一点牙膏", + "dataPack.winter_drop.name": "冬天挤牙膏", + "death.attack.mace_smash": "%1$s被%2$s一锤毙命", + "death.attack.mace_smash.item": "%1$s被%2$s用%3$s一锤毙命", + "entity.minecraft.acacia_boat": "相思木方舟", + "entity.minecraft.acacia_chest_boat": "带胸部的相思木方舟", + "entity.minecraft.bamboo_chest_raft": "运输竹筏", + "entity.minecraft.bamboo_raft": "竹筏", + "entity.minecraft.birch_boat": "白桦方舟", + "entity.minecraft.birch_chest_boat": "带胸部的白桦方舟", + "entity.minecraft.cherry_boat": "撒库拉方舟", + "entity.minecraft.cherry_chest_boat": "带胸部的撒库拉方舟", + "entity.minecraft.creaking": "树魔棍哥(破解版)", + "entity.minecraft.creaking_transient": "树魔棍哥", + "entity.minecraft.dark_oak_boat": "巧克力方舟", + "entity.minecraft.dark_oak_chest_boat": "带胸部的深色橡木运输船", + "entity.minecraft.jungle_boat": "雨林木船", + "entity.minecraft.jungle_chest_boat": "丛林木运输船", + "entity.minecraft.lingering_potion": "洗地板用溶液", + "entity.minecraft.mangrove_boat": "红树木船", + "entity.minecraft.mangrove_chest_boat": "红树木运输船", + "entity.minecraft.oak_boat": "橡木船", + "entity.minecraft.oak_chest_boat": "橡木运输船", + "entity.minecraft.pale_oak_boat": "苍白橡木船", + "entity.minecraft.pale_oak_chest_boat": "苍白橡木运输船", + "entity.minecraft.splash_potion": "搞事情用溶液", + "entity.minecraft.spruce_boat": "云杉木船", + "entity.minecraft.spruce_chest_boat": "云杉木运输船", + "gamerule.disablePlayerMovementCheck": "禁用玩家移动检测", + "gamerule.minecartMaxSpeed": "矿车最大速度", + "gamerule.minecartMaxSpeed.description": "矿车在地面上移动的默认最大速度。", + "gui.abuseReport.name.comment_box_label": "请描述举报该名称的理由:", + "gui.abuseReport.reason.sexually_inappropriate": "性相关不当内容", + "gui.abuseReport.reason.sexually_inappropriate.description": "皮肤图案与性行为、性器官和性暴力相关。", + "item.minecraft.black_bundle": "黑色捆绑包", + "item.minecraft.blue_bundle": "蓝色捆绑包", + "item.minecraft.bolt_armor_trim_smithing_template.new": "博尔特盔甲纹饰", + "item.minecraft.bordure_indented_banner_pattern": "波纹边旗帜图案", + "item.minecraft.brown_bundle": "咖啡色捆绑包", + "item.minecraft.bundle.empty": "空", + "item.minecraft.bundle.empty.description": "可容纳一组混合的物品", + "item.minecraft.bundle.full": "满", + "item.minecraft.coast_armor_trim_smithing_template.new": "海岸盔甲纹饰", + "item.minecraft.creaking_spawn_egg": "树魔棍哥刷怪蛋", + "item.minecraft.creeper_banner_pattern.new": "苦力怕盾徽旗帜图案", + "item.minecraft.cyan_bundle": "蓝绿色捆绑包", + "item.minecraft.dune_armor_trim_smithing_template.new": "沙丘盔甲纹饰", + "item.minecraft.eye_armor_trim_smithing_template.new": "眼眸盔甲纹饰", + "item.minecraft.field_masoned_banner_pattern": "砖纹旗帜图案", + "item.minecraft.flow_armor_trim_smithing_template.new": "涡流盔甲纹饰", + "item.minecraft.flow_banner_pattern.new": "涡流旗帜图案", + "item.minecraft.flower_banner_pattern.new": "花朵盾徽旗帜图案", + "item.minecraft.globe_banner_pattern.new": "地球旗帜图案", + "item.minecraft.gray_bundle": "灰色捆绑包", + "item.minecraft.green_bundle": "绿色捆绑包", + "item.minecraft.guster_banner_pattern.new": "旋风旗帜图案", + "item.minecraft.host_armor_trim_smithing_template.new": "雇主盔甲纹饰", + "item.minecraft.light_blue_bundle": "淡蓝色捆绑包", + "item.minecraft.light_gray_bundle": "淡灰色捆绑包", + "item.minecraft.lime_bundle": "黄绿色捆绑包", + "item.minecraft.magenta_bundle": "品红色捆绑包", + "item.minecraft.mojang_banner_pattern.new": "Mojang徽标旗帜图案", + "item.minecraft.netherite_upgrade_smithing_template.new": "下界合金升级", + "item.minecraft.orange_bundle": "橙色捆绑包", + "item.minecraft.pale_oak_boat": "苍白橡木船", + "item.minecraft.pale_oak_chest_boat": "苍白橡木运输船", + "item.minecraft.piglin_banner_pattern.new": "猪鼻旗帜图案", + "item.minecraft.pink_bundle": "粉红色捆绑包", + "item.minecraft.purple_bundle": "紫色捆绑包", + "item.minecraft.raiser_armor_trim_smithing_template.new": "牧民盔甲纹饰", + "item.minecraft.red_bundle": "红色捆绑包", + "item.minecraft.resin_brick": "树脂砖", + "item.minecraft.resin_clump": "树脂团", + "item.minecraft.rib_armor_trim_smithing_template.new": "肋骨盔甲纹饰", + "item.minecraft.sentry_armor_trim_smithing_template.new": "哨兵盔甲纹饰", + "item.minecraft.shaper_armor_trim_smithing_template.new": "塑造盔甲纹饰", + "item.minecraft.silence_armor_trim_smithing_template.new": "幽静盔甲纹饰", + "item.minecraft.skull_banner_pattern.new": "头颅盾徽旗帜图案", + "item.minecraft.snout_armor_trim_smithing_template.new": "猪鼻盔甲纹饰", + "item.minecraft.spire_armor_trim_smithing_template.new": "尖塔盔甲纹饰", + "item.minecraft.tide_armor_trim_smithing_template.new": "潮汐盔甲纹饰", + "item.minecraft.vex_armor_trim_smithing_template.new": "恼鬼盔甲纹饰", + "item.minecraft.ward_armor_trim_smithing_template.new": "监守盔甲纹饰", + "item.minecraft.wayfinder_armor_trim_smithing_template.new": "向导盔甲纹饰", + "item.minecraft.white_bundle": "白色捆绑包", + "item.minecraft.wild_armor_trim_smithing_template.new": "荒野盔甲纹饰", + "item.minecraft.yellow_bundle": "黄色捆绑包", + "item.op_block_warning.line1": "警告:", + "item.op_block_warning.line2": "使用该物品可能会导致命令执行", + "item.op_block_warning.line3": "除非知道确切内容,否则请勿使用!", + "mco.create.world.failed": "创建世界失败!", + "mco.errorMessage.initialize.failed": "初始化Realm失败", + "mco.upload.failed.too_big.description": "选中的世界过大。最大允许大小为%s。", + "mco.upload.failed.too_big.title": "世界过大", + "optimizeWorld.confirm.proceed": "创建备份并优化", + "options.accessibility.high_contrast_block_outline": "高对比度方块轮廓", + "options.accessibility.high_contrast_block_outline.tooltip": "提高选中方块的轮廓对比度。", + "options.inactivityFpsLimit": "降低帧率", + "options.inactivityFpsLimit.afk": "无操作时", + "options.inactivityFpsLimit.afk.tooltip": "若超过1分钟无操作,帧率将被限制至30。9分钟后进一步降至10。", + "options.inactivityFpsLimit.minimized": "最小化时", + "options.inactivityFpsLimit.minimized.tooltip": "仅在游戏窗口最小化时限制帧率。", + "options.rotateWithMinecart": "同步矿车转动", + "options.rotateWithMinecart.tooltip": "是否在矿车转动时同步转动玩家视角。仅在开启“矿车改进”实验性设置的世界中可用。", + "resourcePack.runtime_failure": "检测到资源包错误", + "structure_block.strict": "严格放置:", + "subtitles.ambient.sound": "怪异的噪声", + "subtitles.block.creaking_heart.hurt": "树魔棍哥之心:咕哝", + "subtitles.block.creaking_heart.idle": "嘟嘟嘟", + "subtitles.block.creaking_heart.spawn": "树魔棍哥之心:苏醒", + "subtitles.block.deadbush.idle": "干枯声", + "subtitles.block.eyeblossom.close": "眼眸花:闭合", + "subtitles.block.eyeblossom.idle": "眼眸花:沙沙作响", + "subtitles.block.eyeblossom.open": "眼眸花:张开", + "subtitles.block.fall": "某物:摔落到方块上", + "subtitles.block.pale_hanging_moss.idle": "怪异的噪声", + "subtitles.block.sand.idle": "沙沙声", + "subtitles.block.sand.wind": "风声", + "subtitles.entity.creaking.activate": "树魔棍哥:注视", + "subtitles.entity.creaking.ambient": "树魔棍哥:嘎吱嘎吱", + "subtitles.entity.creaking.attack": "树魔棍哥:攻击", + "subtitles.entity.creaking.deactivate": "树魔棍哥:静息", + "subtitles.entity.creaking.death": "树魔棍哥:下播", + "subtitles.entity.creaking.freeze": "树魔棍哥:驻足", + "subtitles.entity.creaking.spawn": "树魔棍哥:开播", + "subtitles.entity.creaking.sway": "树魔棍哥:挨打", + "subtitles.entity.creaking.twitch": "树魔棍哥:抽搐", + "subtitles.entity.creaking.unfreeze": "树魔棍哥:冲刺", + "subtitles.entity.fish.swim": "溅起水花", + "subtitles.entity.minecart.inside": "矿车:哐啷哐啷", + "subtitles.entity.minecart.inside_underwater": "矿车:在水中哐啷哐啷", + "subtitles.entity.parrot.imitate.creaking": "咕咕:嘎吱嘎吱", + "subtitles.entity.skeleton_horse.jump_water": "骷髅马:跳跃", + "subtitles.item.bundle.insert_fail": "捆绑包:已满", + "subtitles.item.elytra.flying": "呼呼呼", + "subtitles.ui.hud.bubble_pop": "氧气值:减少", + "test.error.block_property_mismatch": "属性%s应为%s,实际为%s", + "test.error.block_property_missing": "缺少方块属性,属性%s应为%s", + "test.error.entity_property": "实体%s测一测失败:%s", + "test.error.entity_property_details": "实体%s测一测失败:%s,应为:%s,实际为:%s", + "test.error.expected_block": "方块应为%s,实际为%s", + "test.error.expected_block_tag": "方块应为#%s中之一,实际为%s", + "test.error.expected_container_contents": "容器应包含:%s", + "test.error.expected_container_contents_single": "容器应含有单个:%s", + "test.error.expected_empty_container": "容器应为空", + "test.error.expected_entity": "缺少%s", + "test.error.expected_entity_around": "%2$s, %3$s, %4$s周围应存在%1$s", + "test.error.expected_entity_count": "应有%s个类型为%s的实体,实际有%s个", + "test.error.expected_entity_data": "实体数据应为:%s,实际为:%s", + "test.error.expected_entity_data_predicate": "%s的实体数据不匹配", + "test.error.expected_entity_effect": "%s应有%s %s效果", + "test.error.expected_entity_having": "实体物品栏中应包含%s", + "test.error.expected_entity_holding": "实体应持有%s", + "test.error.expected_entity_in_test": "%s应存在于测一测中", + "test.error.expected_entity_not_touching": "%s不应接触%s, %s, %s(相对位置:%s, %s, %s)", + "test.error.expected_entity_touching": "%s应接触%s, %s, %s(相对位置:%s, %s, %s)", + "test.error.expected_item": "应为%s类型的物品", + "test.error.expected_items_count": "应为%s个%s类型的物品,实际为%s个", + "test.error.fail": "满足失败条件", + "test.error.invalid_block_type": "发现非预期的方块类型:%s", + "test.error.missing_block_entity": "缺少方块实体", + "test.error.position": "%1$s,位于%2$s, %3$s, %4$s(相对位置:%5$s, %6$s, %7$s),%8$s刻", + "test.error.sequence.condition_already_triggered": "条件已在%s刻时触发", + "test.error.sequence.condition_not_triggered": "条件未触发", + "test.error.sequence.invalid_tick": "成功于无效的刻:应为%s", + "test.error.sequence.not_completed": "测一测在序列完成前超时", + "test.error.set_biome": "设置测一测生物群系失败", + "test.error.spawn_failure": "创建实体%s失败", + "test.error.state_not_equal": "状态错误。应为%s,实际为%s", + "test.error.structure.failure": "为%s放置测一测结构失败", + "test.error.tick": "%s,时间为%s刻", + "test.error.ticking_without_structure": "尚未放置结构时执行了测一测", + "test.error.timeout.no_result": "未在%s刻内成功或失败", + "test.error.timeout.no_sequences_finished": "在%s刻内没有序列完成", + "test.error.too_many_entities": "%2$s, %3$s, %4$s周围应仅存在一个%1$s,实际为%5$s个", + "test.error.unexpected_block": "方块不应为%s", + "test.error.unexpected_entity": "%s不应存在", + "test.error.unexpected_item": "物品不应为类型%s", + "test.error.unknown": "未知的内部错误:%s", + "test.error.value_not_equal": "属性%s应为%s,实际为%s", + "test.error.wrong_block_entity": "错误的方块实体类型:%s", + "test_block.error.missing": "测一测结构缺少%s方块", + "test_block.error.too_many": "%s方块过多", + "test_block.invalid_timeout": "无效的时限(%s),刻数必须为正数", + "test_block.message": "消息:", + "test_block.mode.accept": "接受", + "test_block.mode.fail": "失败", + "test_block.mode.log": "日志输出", + "test_block.mode.start": "启动", + "test_block.mode_info.accept": "接受模式 - 接受(部分)测一测的成功", + "test_block.mode_info.fail": "失败模式 - 使测一测失败", + "test_block.mode_info.log": "日志输出模式 - 将消息输出到日志", + "test_block.mode_info.start": "启动模式 - 测一测的起点", + "test_instance.action.reset": "重置并加载", + "test_instance.action.run": "加载并运行", + "test_instance.action.save": "保存结构", + "test_instance.description.batch": "批次:%s", + "test_instance.description.failed": "失败:%s", + "test_instance.description.function": "函数:%s", + "test_instance.description.invalid_id": "无效的测一测ID", + "test_instance.description.no_test": "此测一测不存在", + "test_instance.description.structure": "结构:%s", + "test_instance.description.type": "类型:%s", + "test_instance.type.block_based": "基于方块的测一测", + "test_instance.type.function": "内置函数的测一测", + "test_instance_block.entities": "实体:", + "test_instance_block.error.no_test": "存在未定义的测一测,无法在%s, %s, %s处运行测一测实例", + "test_instance_block.error.no_test_structure": "没有测一测结构,无法在%s, %s, %s处运行测一测实例", + "test_instance_block.error.unable_to_save": "无法保存%s, %s, %s处测一测实例的测一测结构模板", + "test_instance_block.invalid": "[无效]", + "test_instance_block.reset_success": "测一测重置成功:%s", + "test_instance_block.rotation": "旋转角度:", + "test_instance_block.size": "测一测结构大小", + "test_instance_block.starting": "正在启动测一测%s", + "test_instance_block.test_id": "测一测实例ID", + "trim_material.minecraft.resin": "树脂质" +} \ No newline at end of file diff --git a/modules/meme_resourcepack/assets/minecraft/texts/credits.json b/modules/meme_resourcepack/assets/minecraft/texts/credits.json new file mode 100644 index 000000000..f165a8767 --- /dev/null +++ b/modules/meme_resourcepack/assets/minecraft/texts/credits.json @@ -0,0 +1,4241 @@ +[ + { + "section": "Memified Chinese Resource Pack", + "disciplines": [ + { + "discipline": "Teahouse Studios", + "titles": [ + { + "title": "Initiator", + "names": [ + "Lxazl5770" + ] + }, + { + "title": "Translator", + "names": [ + "Lakejason0", + "Lxazl5770", + "MysticNebula", + "一只火狐", + "IcyPhantom", + "SkyEye_FAST", + "电量量", + "DoroWolf", + "古镇天Gugle", + "Zh9c418", + "DrLee lihr", + "Neubulae", + "最亮的信标" + ] + }, + { + "title": "Resource Module Authors", + "names": [ + "Lakejason0", + "Light Beacon", + "siiftun1857", + "SkyEye_FAST", + "DoroWolf", + "古镇天Gugle", + "zh9c418", + "Neubulae", + "最亮的信标", + "电量量" + ] + }, + { + "title": "Honorary Author", + "names": [ + "ff98sha" + ] + }, + { + "title": "Memepack Builder Developer", + "names": [ + "Lakejason0", + "MysticNebula", + "wyapx", + "_LittleC_", + "电量量" + ] + }, + { + "title": "Model Authors", + "names": [ + "古镇天Gugle", + "Lakejason0" + ] + }, + { + "title": "Bedrock Edition Port Leader", + "names": [ + "SkyEye_FAST" + ] + }, + { + "title": "Other Members", + "names": [ + "timi137137", + "zyjking" + ] + } + ] + }, + { + "discipline": "Outside Contributors", + "titles": [ + { + "title": "Translators", + "names": [ + "Kakagou", + "Huerdada", + "Foxwesty", + "Minecreeper86", + "Determancer", + "飞翔之歌", + "Wishing-Qi", + "Nasouk075", + "WTP-016", + "45gfg9", + "CR-019", + "冷星轩", + "TripleCamera", + "低耐久的铁砧", + "Minecraftku_hei", + "pkstDev", + "theflysong" + ] + }, + { + "title": "Resource Module Authors", + "names": [ + "CR-019", + "Iron_noob_73", + "ZX夏夜之风", + "低耐久的铁砧", + "teddyxlandlee", + "Don_Trueno" + ] + }, + { + "title": "Other Contributor", + "names": [ + "Snow_dash" + ] + } + ] + }, + { + "discipline": "Special", + "titles": [ + { + "title": "MCLangCN Contributors", + "names": [ + "ff98sha", + "Jingji132", + "电量量" + ] + }, + { + "title": "Special Thanks", + "names": [ + "Blockbench", + "Addonscommandresource", + "邹陈云飞_ZCYF", + "金蛋工作室", + "LocusAzzurro" + ] + }, + { + "title": "Special Sponsers", + "names": [ + "SPGoding", + "是秋夕啊mua", + "Kakagou", + "WDLJT", + "苏打baka" + ] + } + ] + } + ] + }, + { + "section": "Mojang Studios", + "disciplines": [ + { + "discipline": "Mojang Studios Leadership", + "titles": [ + { + "title": "Studio Head of Mojang Studios", + "names": [ + "Helen Chiang" + ] + }, + { + "title": "Head of Stockholm Studio", + "names": [ + "Ulrika Höjgård" + ] + }, + { + "title": "Head of Growth Products & Partnerships", + "names": [ + "Ada Duan" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Amy Stillion" + ] + }, + { + "title": "Head of Franchise Player Ecosystem", + "names": [ + "Annie Chenn" + ] + }, + { + "title": "Head of Engineering", + "names": [ + "Åsa Bredin" + ] + }, + { + "title": "Chief Creative Officer", + "names": [ + "Jens Bergensten" + ] + }, + { + "title": "Head of Franchise Operations", + "names": [ + "Josh Bliggenstorfer" + ] + }, + { + "title": "Head of Franchise Development", + "names": [ + "Kayleen Walters" + ] + }, + { + "title": "Franchise Technical Director", + "names": [ + "Michael W Weilbacher" + ] + }, + { + "title": "Head of Games", + "names": [ + "Sara Jansson Bach" + ] + }, + { + "title": "Franchise Strategic Advisor", + "names": [ + "Scott Dell'Osso" + ] + }, + { + "title": "Executive Business Administrator", + "names": [ + "Theresa Chin" + ] + } + ] + }, + { + "discipline": "Design", + "titles": [ + { + "title": "Game Director, Minecraft", + "names": [ + "Agnes Larsson" + ] + }, + { + "title": "Game Director, Dungeons", + "names": [ + "Måns Olson" + ] + }, + { + "title": "Creative Director, Games", + "names": [ + "Magnus Nedfors" + ] + }, + { + "title": "Creative Director, Brand", + "names": [ + "Markus Toivonen" + ] + }, + { + "title": "Creative Director, Franchise", + "names": [ + "John Yamamoto" + ] + }, + { + "title": "Creative Director, Legends", + "names": [ + "Craig Leigh" + ] + }, + { + "title": "Creative Director, Original Content", + "names": [ + "Torfi Frans Ólafsson" + ] + }, + { + "title": "Creative Leads", + "names": [ + "Jesse Merriam", + "Louise Smith (Formosa)", + "Michael Harnisch" + ] + }, + { + "title": "Design Managers", + "names": [ + "Peter Diar Friman", + "Rabi Afram" + ] + }, + { + "title": "Lead Game Designers", + "names": [ + "Laura de Llorens Garcia", + "Rob Poerschke", + "Robin V Vincent" + ] + }, + { + "title": "Game Designers", + "names": [ + "Art Usher", + "Brandon Pearce", + "Christian Berg", + "Cole Phillips", + "Cory Scheviak", + "Dana Lee (Insight Global, Inc)", + "Daniel Brynolf", + "Guillaume Mroz", + "H Jones", + "Justice Mealer (Insight Global, Inc)", + "Katherine Durkin (Insight Global, Inc)", + "Kelsey Howard", + "Mark Anthony Esparagoza (Insight Global, Inc)", + "Matthew Gatland", + "Michael Söderqvist", + "Michael Stagnitta", + "Nickole Li", + "Nir Vaknin", + "Pontus Hammarberg", + "Steve Enos", + "Tate Sliwa (Insight Global, Inc)", + "Tod Pang", + "Uladzislau Charnaus" + ] + }, + { + "title": "Narrative Director", + "names": [ + "Kevin Grace" + ] + }, + { + "title": "Narrative Editor", + "names": [ + "Alex Wiltshire" + ] + }, + { + "title": "User Experience Design Director", + "names": [ + "Anna Wendelin" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Aksel Englund", + "Eric Alm", + "Hajar Harda", + "Imani Ricks", + "Josefine Lindqvist", + "Lucas Morales Sousa", + "Margot Laucournet", + "Sebastian Melchor Hedman", + "Timothy Lusk (Randstad)", + "Tom Keen", + "Unn Swanström" + ] + }, + { + "title": "User Experience Writer", + "names": [ + "Juan Buis" + ] + } + ] + }, + { + "discipline": "Programming", + "titles": [ + { + "title": "Technical Directors", + "names": [ + "Christopher Östlund", + "James S Yarrow", + "Michael J. Ott" + ] + }, + { + "title": "Engineering Director, Dungeons", + "names": [ + "Daniel Johansson" + ] + }, + { + "title": "Engineering Director, Growth Products", + "names": [ + "Lawrence M. Sanchez II" + ] + }, + { + "title": "Engineering Director, Bedrock Platform", + "names": [ + "Vince Curley" + ] + }, + { + "title": "Engineering Directors", + "names": [ + "Geoff Ebersol", + "Mathias Ericsson", + "Matthew Ng" + ] + }, + { + "title": "Engineering Manager, Franchise Services", + "names": [ + "Matt Hawley" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Elina Dettner", + "Ellenor Wiig", + "Erik Wallin", + "Fanny P Vadillo Herrera", + "Haronid Moncivais", + "Jeff McKune", + "Jonas Keating", + "Lie Fujita", + "Mikael Stenelund", + "Peter Olsson", + "Rose Higgins", + "Selma Hosni", + "Sue Loh" + ] + }, + { + "title": "Lead Software Engineers", + "names": [ + "Bill Carlson", + "Bryan Yeo", + "Chris BeHanna", + "Christian Diefenbach", + "Craig Steyn", + "Dan Posluns", + "David Carlton", + "Derrick Price", + "Gary McLaughlin", + "Hector M Arriaga Pineda", + "Jake Shirley", + "Jamie Fristrom", + "Jeff Ott", + "Joel Bergman", + "Kanita Rauniyar", + "Mason McCuskey", + "Maxime Bouchez", + "Mike Carlson", + "Nickolas Graczyk", + "Paul Crawford", + "Robert Goins", + "Tristan Schneider" + ] + }, + { + "title": "Technical Leads", + "names": [ + "Andrew Maher", + "Anton Nikolaienko", + "David Ekermann", + "Felix Jones", + "Henning Erlandsen", + "Jahmai O'Sullivan", + "Jakob Rydén", + "Jeffrey Kumley", + "Jifeng Zhang", + "Michael Kranz", + "Michael Stoyke", + "Mikael Hedberg", + "Oleg Kozitsyn", + "Patrick McGannon", + "Paulo Ragonha", + "Raphael Landaverde", + "Robert Sjödahl", + "Shane Pierce", + "Stefan Annell", + "Torbjörn Allard", + "Yash Shroff", + "Zhengwu Zhang" + ] + }, + { + "title": "Software Engineers", + "names": [ + "A.J. Fairfield", + "Abhinav Jain (Collabera, LLC)", + "Adam Ramberg", + "Adam Schoelz (Collabera, LLC)", + "Adrian Toncean", + "Aileen Hadsell", + "Alec Chan", + "Alejandro Rosales Martinez (Artech Consulting, LLC)", + "Alex Kofford (Insight Global, Inc)", + "Alex Troyer", + "Alex Wouters (Insight Global, Inc)", + "Alexander Torstling", + "Amy Bernhoft", + "Andrew Griffin", + "Anna Päärni", + "Anthony Sopkow (Ascendion, Inc)", + "Anthony Young (Insight Global, Inc)", + "Antonino Liconti", + "Apurva Raman", + "Arindam Goswami (Collabera, LLC)", + "Arman Vatandoust", + "Aron Nieminen", + "Arunkumar Jeganathan (Artech Consulting, LLC)", + "Ashish Sharma (Collabera, LLC)", + "Ashley Rentz (Insight Global, Inc)", + "Ayannah Rashida Oluwatoyin Adegeye", + "Bartosz Bok", + "Billy Sjöberg", + "Bjarni Ragnar Gudmundsson", + "Björn Larsson", + "Bo Ulf Jacob Bergdahl", + "Cameron Chancey (Insight Global, Inc)", + "Chad George", + "Chad Meyers", + "Chloe Basel", + "Christopher Miceli", + "Cody Tracy (Collabera, LLC)", + "Corey Goodman (Insight Global, Inc)", + "Dag Oldenburg", + "Dan Mauk", + "Dan Samhold", + "Dana Zhu", + "Daniel Lobo", + "Daniel Stevens", + "Dartangan Jackson (Ascendion, Inc)", + "Dat Trieu", + "David Cowan", + "David Reiley (Collabera, LLC)", + "David Westen", + "Declan Hopkins", + "Dylan Hansen", + "Dylan Ross (Insight Global, Inc)", + "Emily Yellen", + "Eric Grimsborn", + "Eric Johnston", + "Eric Rehmeyer", + "Eric Sjögren", + "Erik Broes", + "Erik M Schulz", + "Erik Söderberg", + "Evin Watson (Insight Global, Inc)", + "Fernando Via Canel", + "Francisco A Garcia Cebada", + "Fredrik Kiby Zetterman", + "Gage Way (Insight Global, Inc)", + "Garrett Allen", + "Garrett Robertson (Collabera, LLC)", + "Georgii \"Fry\" Gavrichev", + "Håkan Jonson", + "Håkan Wallin", + "Hannes Heijkenskjöld", + "Harald Johansson", + "Heather Mace", + "Hebert Pena Serna (Artech Consulting, LLC)", + "Hector Llanos III", + "Herbert Mocke (Collabera, LLC)", + "Isaac Dayton", + "Jaafer Sheriff", + "Jacek Wołkowicz", + "Jacob Presley (Insight Global, Inc)", + "Jaime Vargas Trujillo (Collabera Canada, Inc)", + "James Friedenberg (Insight Global, Inc)", + "James McNatton", + "James Nicholls", + "Jason Orion Burch", + "Javier Castro Landaverde (Artech Consulting, LLC)", + "Jeffery Yanick (Collabera, LLC)", + "Jessica Chen", + "Jillian Polsin", + "Jimmy Almkvist", + "Joakim Norberg", + "Joe Brockhaus", + "Johannes Busch", + "John Graf (Collabera, LLC)", + "John Wordsworth", + "John-Philip Johansson", + "Jon Maiga", + "Jonas Eriksson", + "Jonathan R Hoof", + "José Carlos Bellido", + "Joseph Kichline", + "Juliana Montes", + "Julio Novais Raffaine", + "Jun Fu (Collabera, LLC)", + "Justin Watkins", + "Kaylee Benoit (Randstad)", + "Khaleel Harper", + "Lina Juuso", + "Loïc Benet", + "Loren Merriman (Kalvi Consulting Services, Inc)", + "Lorenzo Vigano", + "Magnus Puig De La Bellacasa Cristiansson", + "Mangal Srinivasamurthy", + "Manoj Manoharan (Collabera, LLC)", + "Marco Ballabio", + "Marcus Olofsson", + "Markus Gustavsson", + "Markus Magnusson", + "Marlon Huber-Smith", + "Mårten Helander", + "Martin Hag", + "Martin Moe", + "Martin Nilsson", + "Matijas Matijevic", + "Matt Staubus", + "Matthew Phair", + "Mattias Selin", + "Maxime Lebrot", + "Maxxwell Plum (Insight Global, Inc)", + "Michael Davidson (Insight Global, Inc)", + "Michael Oliveira-Silva", + "Miguel Menindez Segura (Collabera, LLC)", + "Mike Swartz", + "Miles Mbo", + "Molly Flemming", + "Mona El-Falou (Collabera, LLC)", + "Nathan Adams", + "Nathan VanHouten (Virtuosity)", + "Nicholas Curtis", + "Nick Burlingame", + "Nico Suc", + "Niklas Ekman", + "Nilay Karaoglu", + "Oden Stark", + "Omar ElGaml", + "Oscar Åkesson", + "Oskar Pedersen", + "Oswaldo Leyva Barrientos", + "Pär Axelsson", + "Pär Berge", + "Patrick Tobin", + "Patrik Hillgren", + "Paul Schierman", + "Paula Roth", + "Pavel Grebnev", + "Petr Mrázek", + "Petter Gisslen", + "Petter Holmberg", + "Petter Lundgren", + "Poojitha Ponakala", + "Pouya Ashraf", + "Prashant Sharma (Collabera, LLC)", + "Quinn Beierle (Insight Global, Inc)", + "Rashad Murray (Insight Global, Inc)", + "Rasmus Källqvist", + "Rebecca Kullenius", + "Rebecca McFadden", + "Reece Sagun (Collabera, LLC)", + "Richard Meurling", + "Robert Di Battista (Insight Global, Inc)", + "Robert Hunt", + "Robert Sanchez", + "Robin Somers", + "Rodrick Edwards", + "Sam Smethurst (Collabera, LLC)", + "Samuel Schimmel (Insight Global, Inc)", + "Samuel Wortley Sage (Insight Global, Inc)", + "Sean Reilly", + "Shipra Behera", + "Simon Fagerholm", + "Sofie Niska", + "Srinivasa Rao Chatala (Ascendion, Inc)", + "Stauffer Taylor", + "Stefan Torstensson", + "Stephanie Huynh", + "Stephen Trigger (Insight Global, Inc)", + "Taylor Feddersen", + "Therese Andersson", + "Timur Nazarov", + "Viktor Bergehall", + "Wenfei Zhu", + "Wes Pesetti", + "Will Van Keulen", + "Zane Hintzman" + ] + } + ] + }, + { + "discipline": "Production", + "titles": [ + { + "title": "Director of Bedrock Platform", + "names": [ + "Michael McManus" + ] + }, + { + "title": "Director of Creator", + "names": [ + "Travis Howland" + ] + }, + { + "title": "Director of Ecosystem Experiences", + "names": [ + "Ryan B. Cooper" + ] + }, + { + "title": "Director of Games Expansion", + "names": [ + "John Thornton" + ] + }, + { + "title": "Director of Minecraft Online & Marketplace", + "names": [ + "Jessica Zahn" + ] + }, + { + "title": "Director of Websites", + "names": [ + "Saher Hirji" + ] + }, + { + "title": "Executive Producer, Minecraft Game", + "names": [ + "Ingela Garneij" + ] + }, + { + "title": "Executive Producer, Dungeons", + "names": [ + "David Nisshagen" + ] + }, + { + "title": "Executive Producer, Education", + "names": [ + "Allison Matthews" + ] + }, + { + "title": "Executive Producer, Legends", + "names": [ + "Dennis Ries" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Anita Sujarit", + "Chloe Bouxsein", + "Fredrik Telenius", + "Gama Aguilar-Gamez", + "Hai Shi", + "Kayla Kinnunen" + ] + }, + { + "title": "Production Directors", + "names": [ + "Alina Skripnik", + "Donald Brinkman", + "Eric Taylor", + "Klas Hammarström", + "Kristina M. Ashment", + "Molly Woodruff", + "Todd Stevens", + "Tyler Jeffers (Formosa)", + "Ulrika Silfverstolpe" + ] + }, + { + "title": "Principle Producer", + "names": [ + "Nathan Rose" + ] + }, + { + "title": "Production Managers", + "names": [ + "Justin Edwards", + "Melinda Knight" + ] + }, + { + "title": "Production Leads", + "names": [ + "Carrie Doring", + "Isabella Balk", + "Micah Myerscough", + "Milo Bengtsson", + "Mona Landh Gullberg", + "Sarah Carton", + "Shah Rahman", + "Sofie Lekkas" + ] + }, + { + "title": "Producers", + "names": [ + "Adrian Östergård", + "Allan Contreras (Insight Global, Inc)", + "Anjelika Zora Kosanic", + "Anna Lundgren", + "Annica Strand", + "Bryan G. Bonham", + "Carina Kovacs Lockhart", + "Carlos Naranjo", + "Charlotte Angantyr", + "Charlotte Backer", + "David Iooss (Randstad)", + "David Siegel", + "Dev Hazarika", + "Eliot Lee", + "Emily Steele (Formosa)", + "Gabrielle Riggir", + "Hillary Good (Aquent, LLC)", + "Hugo Lang", + "Jeffrey Carlo (Apex Systems, Inc.)", + "Jennifer Dotson (Insight Global, Inc)", + "Jillian Brown (TEKsystems, Inc)", + "Johan Grunden", + "Jonas Olaussen", + "Josefin Olsson", + "Kara Kono", + "Kat Siegert (Insight Global, Inc)", + "Katie Ellison", + "Kyle Lawton", + "Laylah Bulman", + "Lina Hagman", + "Linda Dalin", + "Lisa Kempe", + "Luis Qiang Liu", + "Marc Watson", + "Marcus Bodin", + "Marie Bustgaard Granlund", + "Marie Stålkrantz", + "Micael Sjölund", + "Negin Javanmardi", + "Nicolette Suraga", + "Nikoo Jorjani", + "Patrik Hamsten", + "Petter Denninger", + "Pontus Åselius", + "Rachel Ji", + "Riccardo Lenzi", + "Roger Duke (Insight Global, Inc)", + "Seo Hee Hong", + "Sofie Lundberg", + "Tess Kearney (Formosa)", + "Tia Dalupan-Wong", + "Tim Mardell", + "Tina Lin (Collabera, LLC)", + "Todd Baldwin" + ] + }, + { + "title": "Media Producer", + "names": [ + "Johan Kvarnemo" + ] + }, + { + "title": "Product Manager Leads", + "names": [ + "Candice Giffin", + "Justin Johnson", + "Mike Ammerlaan" + ] + }, + { + "title": "Product Managers", + "names": [ + "Andrea Lam-Flannery", + "Barbara Konchinski", + "Donyea Cooley-White", + "Kari C Whiteside", + "Madeline Psenka", + "Stephen A Scott", + "Su Liu" + ] + }, + { + "title": "Organizational Coaches", + "names": [ + "Jonas Ekstrand", + "Karin Hagren", + "Sasa Stamenkovic" + ] + }, + { + "title": "Release Management Lead", + "names": [ + "David Fries" + ] + }, + { + "title": "Release Managers", + "names": [ + "Andrew Pritchard", + "Beth Murphy (Kforce)", + "Joseph Panaccione (Apex Systems, Inc.)", + "Josh Mulanax", + "Joshua Bullard", + "Ricky White (Randstad)" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Jill Headen (Insight Global, Inc)", + "Jim Seaman (Insight Global, Inc)", + "Maxwell Moeller (Simplicity Consulting, Inc)" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "Andy Puntahachart", + "Aqsa Rauf (Apex Systems, Inc.)", + "Daniel Stewart", + "DJ Stiner", + "Dom Arcamone", + "Dylan Kesselring (Insight Global, Inc)", + "Eloise Espel", + "Heesung Koo", + "Lauren Henderson", + "Quinn Richter", + "Todd Agnello (TEKsystems, Inc)", + "Tori Tippin" + ] + }, + { + "title": "Localization", + "names": [ + "Amber Wu (Shanghai Wicresoft Co, Ltd.)" + ] + } + ] + }, + { + "discipline": "Visual Arts", + "titles": [ + { + "title": "Creative Leads", + "names": [ + "Antti Meriluoto", + "Erik Gestrelius", + "Johan Aronsson", + "Martin Johansson" + ] + }, + { + "title": "Art Directors", + "names": [ + "Amanda Ström", + "Filip Keatley Thoms", + "Jasper Boestra", + "Julian Kerr", + "Lynwood Montgomery (Formosa)", + "Ninni Landin", + "Seung Sung", + "Telemachus Stavropoulos", + "Viktor Blanke" + ] + }, + { + "title": "Art Manager", + "names": [ + "Samir Belarbi" + ] + }, + { + "title": "Artist Leads", + "names": [ + "Evelina Kolovou", + "Gustav Embretsen", + "Joule Garvin", + "Michael Apolis", + "Michael Ray Neumann" + ] + }, + { + "title": "Artists", + "names": [ + "Aleesa Tana (Formosa)", + "Andrea Sanchez Sepulveda (Formosa)", + "Brandon Korvas", + "Brendan 'Sully' Sullivan", + "Carlos Lidón", + "Celene Tolentino (Harvey Nash)", + "Chi Wong", + "Christian Nordgren", + "Christina-Antoinette Neofotistou", + "Claire Selvog (Formosa)", + "Cristina Bravo Amigueti", + "Dana Mack (Harvey Nash)", + "Erin Biafore (Formosa)", + "Florian Decupper", + "Jan Cariaga", + "Jei Ling (Formosa)", + "Jesse Munguia", + "Kailey Hara (Formosa)", + "Kirk Barnett", + "Lauren Bravo-Kohler", + "Linus Chan (Formosa)", + "Mariana Salimena", + "Mark Eash Hershberger (Formosa)", + "Mattis Grahm", + "Morten Rasmussen", + "Patrick Rodes (Formosa)", + "Peter Sheff", + "Richard Worley", + "Rudy Solidarios (Formosa)", + "Salinee Goldenberg (Formosa)", + "Sarah Boeving", + "Sarah Corean (Formosa)", + "Sarah Martino (Formosa)", + "Stephanie Nannariello (Harvey Nash)", + "William Thomas" + ] + }, + { + "title": "Technical Artist", + "names": [ + "Dan Sönne" + ] + }, + { + "title": "Product Design Leads", + "names": [ + "Connor Burtis", + "Ryan Sand", + "Will Krause" + ] + }, + { + "title": "Product Designers", + "names": [ + "Adrian Ward", + "Affe Piran", + "Débora Martins", + "Kelsey Ranallo", + "Sherin Kwan" + ] + }, + { + "title": "Graphic Designers", + "names": [ + "Adrian Leon (Formosa)", + "Javier Rodriguez (Formosa)", + "Liliia Chorna", + "Markus Karlsson Frost", + "Meagan Dumford", + "Yong-Namm Lee" + ] + } + ] + }, + { + "discipline": "Audio", + "titles": [ + { + "title": "Audio Director", + "names": [ + "Samuel Åberg" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Magnus Mikander", + "Peter Hont", + "Thareeq Roshan", + "Tom Koselnik Olovsson" + ] + } + ] + }, + { + "discipline": "Quality Assessment", + "titles": [ + { + "title": "Quality Assessment Specialists", + "names": [ + "Artur Foxander", + "Kajsa Sima Falck", + "Kristian Björk Grimberg", + "Matthew Dryden", + "Mimmi Boman-Börjesson", + "Olle Personne" + ] + } + ] + }, + { + "discipline": "User Research", + "titles": [ + { + "title": "User Research Lead", + "names": [ + "Deanne Adams" + ] + }, + { + "title": "User Researcher", + "names": [ + "Sarah Santiago" + ] + } + ] + }, + { + "discipline": "Operations", + "titles": [ + { + "title": "Player Operations Director", + "names": [ + "Deanna Hearns" + ] + }, + { + "title": "Operations Director, Franchise", + "names": [ + "Shanlenn B. Colby" + ] + }, + { + "title": "Operations Director", + "names": [ + "Yassal Sundman" + ] + }, + { + "title": "People Experience Director", + "names": [ + "Sheila Ho" + ] + }, + { + "title": "People Experience Managers", + "names": [ + "Adam Lemcio", + "Ani Grey", + "Åsa Skogström", + "Brittney Pettway", + "Catherine Hendrix", + "Georgia Marra", + "Ludwig Moberg Edenbäck", + "Maria Keisu Nolberg" + ] + }, + { + "title": "HR Directors", + "names": [ + "Darcy Harpel", + "Dave Hill", + "Maja Samuelsson", + "Nia Parker" + ] + }, + { + "title": "Human Resources", + "names": [ + "Aleksandra Ola Zajac", + "Emma Bergström", + "Kristian Idehaag", + "Linn Holmertz" + ] + }, + { + "title": "Talent Acquisition", + "names": [ + "Filip Hultin", + "Hanan Naamneh", + "Martin Kurtovic", + "Roza Kawa", + "Vidar Bjurström" + ] + }, + { + "title": "Office Manager", + "names": [ + "Joël Älveroth" + ] + }, + { + "title": "Office Coordinators", + "names": [ + "Even Hadeghe", + "Sandra Odmark" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Erin Decker", + "Lovisa Grindelius", + "Rachael Cox" + ] + }, + { + "title": "Front of House", + "names": [ + "Malin Strand" + ] + }, + { + "title": "IT Managers", + "names": [ + "Cesar Sima Falck", + "Jason Perry Minard" + ] + }, + { + "title": "IT", + "names": [ + "Adam MacDowall", + "Alexandre Pretto Nunes", + "Anton Wu", + "Dessie Andersson", + "John Klervad", + "Morris Kellokoski", + "Natalia Filapek", + "Ondrej Magath", + "Przemyslaw Elwart", + "Rene Astorga", + "Shoghi Cervantes Pueyo", + "Tim Foster (Warner Marketing, Inc)", + "Yaser Mosavi" + ] + }, + { + "title": "Operations Managers", + "names": [ + "Ellen Hahm", + "Mikaela Illanes", + "Renee Wikander", + "Sarah Grimmond", + "Stephanie Golden (Insight Global, Inc)" + ] + }, + { + "title": "Lead Automation Support", + "names": [ + "Matthew C. Moreno" + ] + }, + { + "title": "DevOps Engineers", + "names": [ + "Bill Erhard (Insight Global, Inc)", + "Chris Ilson (Collabera, LLC)" + ] + } + ] + }, + { + "discipline": "Player Care", + "titles": [ + { + "title": "Director of Player Care", + "names": [ + "Anne Quaranta" + ] + }, + { + "title": "Player Support Program Director", + "names": [ + "Carlos Figueiredo" + ] + }, + { + "title": "Player Support Program Lead", + "names": [ + "Jen Pedersen" + ] + }, + { + "title": "Player Support Operations Manager", + "names": [ + "Melissa Kiss" + ] + }, + { + "title": "Player Support", + "names": [ + "Dan Coronel (Apex Systems, Inc.)", + "Dominick Folletti (TEKsystems, Inc)", + "Justin Putnam (TEKsystems, Inc)", + "Samuel Gonzalez (TEKsystems, Inc)" + ] + } + ] + }, + { + "discipline": "Data Analytics", + "titles": [ + { + "title": "Player Analytics and Insights Director", + "names": [ + "Francisco Rius" + ] + }, + { + "title": "Data Science and Analytics Manager", + "names": [ + "Abby Gaddis" + ] + }, + { + "title": "Data Engineering Manager", + "names": [ + "Bill Chism" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Natalie Selin" + ] + }, + { + "title": "Analytics Environment Engineering", + "names": [ + "Nitesh Kulkarni (Manpower Services Canada Limit)", + "Sebastian Soffici (Insight Global, Inc)", + "Vini De Lima De Sousa (0965688 BC Ltd)" + ] + }, + { + "title": "Analytics Environment Manager", + "names": [ + "Troy Henke" + ] + }, + { + "title": "Data Science", + "names": [ + "Aaron Johnson", + "Alvaro Gil Moradillo", + "Bhrigu Shree", + "David Heller (Kelly Mitchell Group)", + "Emma Matilda Charlotte Kalzen", + "Erin Michet", + "Grant Jenkins", + "Julianne Toto (Kelly Management Services)", + "Krishan Deo (Insight Global, Inc)", + "Matthew Skirvin", + "Max Davidson", + "Miguel Fierro", + "Scott Graham", + "Simona Pirani", + "Swathi Sivadas", + "Xuan Ting Liu" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Bill Klees", + "Dhiraj Nilange", + "Olusola Timothy Olojede", + "Sachin Dekate", + "Smitha Menon" + ] + } + ] + }, + { + "discipline": "Business Management & Licensing", + "titles": [ + { + "title": "Strategy Director", + "names": [ + "Jonas Martensson" + ] + }, + { + "title": "Program Director, China Consumer & Global Partnerships", + "names": [ + "Jeremy Snook" + ] + }, + { + "title": "Program Director, Consumer Products", + "names": [ + "Federico San Martin" + ] + }, + { + "title": "Program Directors", + "names": [ + "Ava Volandes", + "Bob Brennecke", + "Eileen Lee", + "Gaylon Blank", + "Hanna Willis" + ] + }, + { + "title": "Business Director, Franchise", + "names": [ + "Anthony Murphy" + ] + }, + { + "title": "Business Director, Japan", + "names": [ + "Yutaka Noma" + ] + }, + { + "title": "Business Director, Minecraft Game", + "names": [ + "Jesper Altren" + ] + }, + { + "title": "Business Director, Operations", + "names": [ + "Bill Lindell" + ] + }, + { + "title": "Business Directors", + "names": [ + "Amy Zou", + "Michelle Hua", + "Patrick Geuder", + "Stephanie Louie Craig" + ] + }, + { + "title": "Business Development Managers", + "names": [ + "Christy Weckner", + "Inga Chamberlain", + "Jordan Comar (Digital Intelligence Systems, LLC)", + "Maru Zamora", + "Rebecca A Miller", + "Ryan Eng (Aerotek US)" + ] + }, + { + "title": "Program Managers", + "names": [ + "Aria Azizi", + "Bobby Ou (my3Twelve, LLC)", + "David Jho (my3Twelve, LLC)", + "Emily Carlson", + "Erfon Haubenstock (Insight Global, Inc)", + "Garbo Chan (my3Twelve, LLC)", + "Greg Walls (Insight Global, Inc)", + "Helene Aku Brown", + "John Mercil (Insight Global, Inc)", + "Jonathan Hartung-Jenkins (my3Twelve, LLC)", + "Josh Ayala (Insight Global, Inc)", + "Julie Olden", + "Kei Schafer", + "Lavi Sheppard-Moran (Simplicity Consulting, Inc)", + "Liz Leo", + "Mabel Chan (my3Twelve, LLC)", + "Mary Elizabeth Pearson (Apex Systems, Inc.)", + "May Qiang (my3Twelve, LLC)", + "Micky Yamaguchi", + "Monica Burba (Apex Systems, Inc.)", + "Morgan Farrar", + "Nedra Wilson", + "Stuart U (my3Twelve, LLC)", + "Susie Tinker", + "Wendy Gorton" + ] + }, + { + "title": "Business Managers", + "names": [ + "Audrey Searcy", + "Brandon Kim (Insight Global, Inc)", + "Dana Friesen (Insight Global, Inc)", + "David K Lau", + "Emily Clock", + "Eve Vashkus", + "Fredrika Wessman", + "Jennifer Cox (Aston Carter)", + "Kristin Grein", + "Matt Morgan", + "Matt Ortegon (Rylem)", + "Natalia Ellenson", + "Nichole Green", + "Shabnam Elmi", + "Stephanie Turl (JeffreyM Consulting, LLC)" + ] + } + ] + }, + { + "discipline": "Brand Management", + "titles": [ + { + "title": "Brand Director", + "names": [ + "Thomas Falkenstrom" + ] + }, + { + "title": "Brand Manager", + "names": [ + "Harry Elonen" + ] + } + ] + }, + { + "discipline": "Communications", + "titles": [ + { + "title": "Chief Storyteller", + "names": [ + "Lydia Winters" + ] + }, + { + "title": "Media Director", + "names": [ + "Vu Bui" + ] + }, + { + "title": "Director of Communications", + "names": [ + "Owen Jones", + "Regan O'Leary" + ] + }, + { + "title": "Communication Managers", + "names": [ + "Christopher de Haan (Simplicity Consulting, Inc)", + "Holly Amber Smith", + "Jane Billet", + "Rebecca Gordius" + ] + }, + { + "title": "Assembly Media, Inc", + "names": [ + "Adam Pannel", + "Jessica Xie", + "Michael Rougeau", + "Ramona Suris" + ] + }, + { + "title": "Creative Writers", + "names": [ + "Cristina Anderca", + "Per Landin", + "Sofia Dankis", + "Sophie Austin" + ] + }, + { + "title": "Director of Community", + "names": [ + "Nea Aime Rollan" + ] + }, + { + "title": "Social Media Lead", + "names": [ + "Sean Flanery" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Anthony Toczek (Apex Systems, Inc.)", + "Jeremy Chan (Aerotek US)", + "Morgan J. East (Randstad)", + "RJ Lesterio" + ] + }, + { + "title": "Community Management Lead", + "names": [ + "Joel Sasaki" + ] + }, + { + "title": "Community Managers", + "names": [ + "Cameron Thomas", + "Elias Arnehall", + "Jay Wells", + "Kristina Horner", + "Lindsey Schaal", + "Matt Gartzke", + "Michelle Archer Waterman" + ] + }, + { + "title": "Community & Social Operations", + "names": [ + "Mike Munschy (Apex Systems, Inc.)" + ] + }, + { + "title": "Content Manager", + "names": [ + "Oskar Thysell" + ] + }, + { + "title": "Publishing Editor", + "names": [ + "Jay Castello" + ] + } + ] + }, + { + "discipline": "Marketing", + "titles": [ + { + "title": "Head of Marketing", + "names": [ + "Jessica Freeman" + ] + }, + { + "title": "Marketing Directors", + "names": [ + "Fergus Lynch", + "Jeanie DuMont", + "Katie Penza" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Ankita Rao", + "Anton Maslennikov", + "Arkadiy Goldenshtern", + "Barrett Livingston", + "Bradley Cummings", + "Caitlin Willhoite", + "Egil Gloersen", + "Emily Orrson", + "Gaylord Escalona", + "Halley Chang", + "Jaime Limon", + "Janis Fein", + "Jeff Rivait", + "Jen Barry", + "Lauren Schuur", + "Melissa Jenkins", + "Nick Ketter", + "Sam Brody", + "Sara Cornish", + "Stephanie Gielarowski" + ] + }, + { + "title": "Web Content Manager", + "names": [ + "Joe Corrigan" + ] + }, + { + "title": "Project Manager", + "names": [ + "Julie Toomey" + ] + } + ] + }, + { + "discipline": "Legal", + "titles": [ + { + "title": "Head of Legal", + "names": [ + "Nick Morgan" + ] + }, + { + "title": "Senior Legal Counsel", + "names": [ + "Timothy Han" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Jyl Brown", + "Kari Annand (Snodgrass Annand)", + "Maya Yamazaki (Davis Wright Tremaine)" + ] + } + ] + }, + { + "discipline": "Finance", + "titles": [ + { + "title": "Finance Director", + "names": [ + "Marina Kostesic" + ] + }, + { + "title": "Finance Managers", + "names": [ + "Camilla Brantefelt", + "Robert Scheibeck" + ] + }, + { + "title": "Financial Accountants", + "names": [ + "Aleksandra Dragosavljevic", + "Josefina Axelsson", + "Kristina Ilic" + ] + } + ] + } + ] + }, + { + "section": "Studios Quality Team", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Quality Director", + "names": [ + "Tony Rado" + ] + }, + { + "title": "Quality Manager", + "names": [ + "Tyler Moeller" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Jennifer Monaco", + "Michael McCormack", + "Rich Levy", + "Salim Jarrouge" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Aidan Bower", + "Angela Ong", + "Archita Keni", + "Chelsi Hohnbaum", + "Chris Woelfel", + "Erik Davis", + "Joe Whitman", + "Lisa Porter", + "Mark McAllister", + "Melissa Moorehead", + "Mike Su", + "Mimi Holmstead", + "Ryan Mayes", + "Tom Brisbane" + ] + }, + { + "title": "Quality Analysts", + "names": [ + "Agata Monk", + "Alyssa Liu", + "Dalrek Davis", + "Tom French" + ] + }, + { + "title": "Program Managers", + "names": [ + "Justin Ice (Pivotal Consulting)", + "Misti Lommen" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Dustin Randall", + "Jay Baxter" + ] + }, + { + "title": "Test Managers", + "names": [ + "Łukasz Mikusek (Lionbridge)", + "Mateusz Kałuża (Lionbridge)" + ] + }, + { + "title": "Team Leads", + "names": [ + "Kamil Kostrzewa (Lionbridge)", + "Karim Zemirli (Lionbridge)", + "Piotr Jasiński (Lionbridge)", + "Zuzanna Gieszcz (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Adam Ronowski (Lionbridge)", + "Alan Aclon (Insight Global, Inc)", + "Beata Jastrzębska (Lionbridge)", + "Kamil Zakrzewski (Lionbridge)", + "Maria Berube (Experis)" + ] + }, + { + "title": "Test Automation Engineers", + "names": [ + "Łukasz Marek (Lionbridge)", + "Michał Nowak (Lionbridge)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Adam DuBois (Experis)", + "Adam Rączkowski (Lionbridge)", + "Aleksandra Traczyk (Lionbridge)", + "Bartłomiej Łobocki (Lionbridge)", + "Bartłomiej Mathea (Lionbridge)", + "Benjamin Sousa (Experis)", + "Błażej Rajewski (Lionbridge)", + "Cezary Romecki (Lionbridge)", + "Chris Youngs (Experis)", + "Daniel Kuchciński (Lionbridge)", + "David Deans (Experis)", + "Dawid Dudasz (Lionbridge)", + "Eric Izurieta (Experis)", + "Gabe Castro (Experis)", + "Iwona Cieśla (Lionbridge)", + "Jack Ellis (Experis)", + "Jakub Cymbalista (Lionbridge)", + "Jakub Opaliński (Lionbridge)", + "Jarosław Żebrowski (Lionbridge)", + "Jordan Heredia (Experis)", + "Joseph Cuen (Experis)", + "Julie Tucker (Experis)", + "Kamil Stopa (Lionbridge)", + "Kinga Izdebska (Lionbridge)", + "Konrad Czaplewski (Lionbridge)", + "Krzysztof Górski (Lionbridge)", + "Kyle Rennie (Experis)", + "Lee-Roy Dunn (Lionbridge)", + "Logan Marshall-Medlock (Experis)", + "Louise Magbunduku (Lionbridge)", + "Łukasz Jankowski (Lionbridge)", + "Łukasz Michalak (Lionbridge)", + "Magdalena Marek (Lionbridge)", + "Marcin Klimek (Lionbridge)", + "Marcin Krysiak (Lionbridge)", + "Marcin Rosłon (Lionbridge)", + "Mateusz Miksa (Lionbridge)", + "Michał Tomaszewski (Lionbridge)", + "Nick Dorsett (Lionbridge)", + "Paulina Pałdyna (Lionbridge)", + "Piotr Burkowski (Lionbridge)", + "Piotr Gruszczyński (Lionbridge)", + "Piotr Orłowski (Lionbridge)", + "Richard H. Jones (Lionbridge)", + "Richard Withrow (Experis)", + "Robert Bergeron (Experis)", + "Ryan Weant (Experis)", + "Sviatoslav Porubanskyi (Lionbridge)", + "Tevis Campbell (Experis)", + "Witold Januszewski-Skup (Lionbridge)", + "Witold Matejewski (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Czajkowski (Lionbridge)", + "Adam Sołtanowski (Lionbridge)", + "Adrian Jakóbczak (Lionbridge)", + "Adrian Makowski (Lionbridge)", + "Agata Kawalec (Lionbridge)", + "Agnieszka Sobieszuk (Lionbridge)", + "Alan Kotowski (Lionbridge)", + "Albert Wujkowski (Lionbridge)", + "Aleksander Aussenberg (Lionbridge)", + "Aleksander Borysiak (Lionbridge)", + "Aleksandra Jakubowska (Lionbridge)", + "Aleksandra Loch (Lionbridge)", + "Alexey Solopov (Lionbridge)", + "Amelia Rozborska (Lionbridge)", + "Andrzej Tkaczenko (Lionbridge)", + "Anna Gordon (Lionbridge)", + "Anna Zachara (Lionbridge)", + "Anthony Lopez (Lionbridge)", + "Antoni Gazecki (Lionbridge)", + "Arkadiusz Grzanka (Lionbridge)", + "Arkadiusz Grzesiński (Lionbridge)", + "Artem Matvieievskyi (Lionbridge)", + "Barbara Rutkowska (Lionbridge)", + "Bartłomiej Adamiec (Lionbridge)", + "Bartłomiej Krupiński (Lionbridge)", + "Bartłomiej Słodkowski (Lionbridge)", + "Bartosz Kacprzak (Lionbridge)", + "Bartosz Pikutin (Lionbridge)", + "Bartosz Sowiński (Lionbridge)", + "Bartosz Świderski (Lionbridge)", + "Bartosz Waleśkiewicz (Lionbridge)", + "Carson Letang (Insight Global, Inc.)", + "Cassan François (Lionbridge)", + "Damian Bartak (Lionbridge)", + "Damian Spysiński (Lionbridge)", + "Damian Sztyk (Lionbridge)", + "Daniel Niewiadomski (Lionbridge)", + "Daniel Posiadała (Lionbridge)", + "Dominik Gronostajski (Lionbridge)", + "Dominik Zwoliński (Lionbridge)", + "Emil Marczuk (Lionbridge)", + "Filip Biardzki (Lionbridge)", + "Filip Busłowicz (Lionbridge)", + "Gabriel Mróz (Lionbridge)", + "Gabriel Wiśniowski (Lionbridge)", + "Gracjan Baran (Lionbridge)", + "Grzegorz Włodarczak (Lionbridge)", + "Heorhii Lystopad (Lionbridge)", + "Ignacy Kukliński (Lionbridge)", + "Igor Bogusiewicz (Lionbridge)", + "Ilchenko Yelyzaveta (Lionbridge)", + "Inga Zalewska (Lionbridge)", + "Jacek Misztal (Lionbridge)", + "Jacob Childers (Experis)", + "Jakub Górnicki (Lionbridge)", + "Jakub Grzebisz (Lionbridge)", + "Jakub Istynowicz (Lionbridge)", + "Jakub Krasuski (Lionbridge)", + "Jakub Malinowski (Lionbridge)", + "Jakub Mierzejewski (Lionbridge)", + "Jakub Mihułka (Lionbridge)", + "Jakub Obstawski (Lionbridge)", + "Jakub Ołdak (Lionbridge)", + "Jakub Pastuszka (Lionbridge)", + "Jakub Rosłoński (Lionbridge)", + "Jakub Sierociński (Lionbridge)", + "Jakub Suchorab (Lionbridge)", + "Jakub Więch (Lionbridge)", + "Jakub Wiśniewski (Lionbridge)", + "Jakub Zdzieborski (Lionbridge)", + "Jakub Zgajewski (Lionbridge)", + "Jan Kamiński (Lionbridge)", + "Jan Łukawski (Lionbridge)", + "Jan Owczarczyk (Lionbridge)", + "Jan Tomaszewski (Lionbridge)", + "Joanna Jabłońska (Lionbridge)", + "Jonathan Garcia (Experis)", + "Jonathon Ervin (Experis)", + "Justyna Oleś (Lionbridge)", + "Kacper Gosławski (Lionbridge)", + "Kacper Senkowicz (Lionbridge)", + "Kacper Stalewski (Lionbridge)", + "Kajetan Szlachtycz (Lionbridge)", + "Kamil Szymański (Lionbridge)", + "Kamil Wiktorowski (Lionbridge)", + "Karol Samek (Lionbridge)", + "Kashif Arain (Lionbridge)", + "Katarzyna Pastor (Lionbridge)", + "Konrad Kruszyński (Lionbridge)", + "Konrad Pyrzanowski (Lionbridge)", + "Krzysztof Bajor (Lionbridge)", + "Krzysztof Wiśniewski (Lionbridge)", + "Kuba Angielczyk (Lionbridge)", + "Laura Androsiuk (Lionbridge)", + "Luisa Cordero-Polańska (Lionbridge)", + "Łukasz Sterna (Lionbridge)", + "Maciej Ginter (Lionbridge)", + "Maciej Piórnik (Lionbridge)", + "Maciej Waszczuk (Lionbridge)", + "Maciej Wnuk (Lionbridge)", + "Magdalena Wardak (Lionbridge)", + "Maja Piątek (Lionbridge)", + "Maksymilian Fabjańczuk-Niemirski (Lionbridge)", + "Maksymilian Kubiak (Lionbridge)", + "Maksymilian Szydlik (Lionbridge)", + "Małgorzata Ossowska (Lionbridge)", + "Marcin Cudny (Lionbridge)", + "Marcin Kubicki (Lionbridge)", + "Marcin Łukasik (Lionbridge)", + "Marcin Morel (Lionbridge)", + "Marcin Paszkiewicz (Lionbridge)", + "Marcin Słoniewski (Lionbridge)", + "Marek Gaik (Lionbridge)", + "Martyna Szczepańska (Lionbridge)", + "Mateusz Koriat (Lionbridge)", + "Mateusz Panek (Lionbridge)", + "Mateusz Radzyński (Lionbridge)", + "Mateusz Świecki (Lionbridge)", + "Max Stein (Experis)", + "Michał Kierzkowski (Lionbridge)", + "Michał Przystup (Lionbridge)", + "Mikołaj Błażejewski (Lionbridge)", + "Mikołaj Gruźliński (Lionbridge)", + "Natalia Niedziela (Lionbridge)", + "Olgierd Ruszkiewicz (Lionbridge)", + "Oskar Wiktorowicz (Lionbridge)", + "Oskar Żurawski (Lionbridge)", + "Patryk Karwowski (Lionbridge)", + "Paweł Broze (Lionbridge)", + "Paweł Kaleta (Lionbridge)", + "Paweł Wójcik (Lionbridge)", + "Paweł Zwoliński (Lionbridge)", + "Piotr Gałecki (Lionbridge)", + "Piotr Kompa (Lionbridge)", + "Piotr Szafran (Lionbridge)", + "Piotr Szafranowski (Lionbridge)", + "Piotr Szulc (Lionbridge)", + "Piotr Walasik (Lionbridge)", + "Przemysław Klonowski (Lionbridge)", + "Przemysław Wojtaszek (Lionbridge)", + "Radosław Czerniszewski (Lionbridge)", + "Rafał Adamski (Lionbridge)", + "Rafał Kulikowski (Lionbridge)", + "Rafał Owsa (Lionbridge)", + "Rafał Żulewski (Lionbridge)", + "Remigiusz Dolata (Lionbridge)", + "Robert Zabłocki (Lionbridge)", + "Robert Żulewski (Lionbridge)", + "Sebastian Biegaj (Lionbridge)", + "Sebastian Michalski (Lionbridge)", + "Stanisław Świderski (Lionbridge)", + "Stephanie Lara (Experis)", + "Szymon Pielacha (Lionbridge)", + "Tim Radoń-Dubiniecki (Lionbridge)", + "Tomasz Jabłoński (Lionbridge)", + "Tomasz Kuzio (Lionbridge)", + "Tomasz Pyszczek (Lionbridge)", + "Tyler Gladstone (Experis)", + "Weronika Szajnfeld (Lionbridge)", + "Wiktoria Książek (Lionbridge)", + "Wiktoria Mizio (Lionbridge)", + "Wojciech Olszewski (Lionbridge)", + "Wojciech Przewdziecki (Lionbridge)", + "Zofia Kossarzecka (Lionbridge)", + "Zofia Markiewicz (Lionbridge)" + ] + }, + { + "title": "Studios Quality Special Thanks", + "names": [ + "Adam Almaraz - Administrative Support (Experis)", + "Adam Barnette - IT (Experis)", + "Adrian Brown - Data Science Manager", + "Amanda Swalling - Center of Excellence (Experis)", + "Andrew Franklin - Outsourcing Manager", + "Ben Farley - Test Manager (Experis)", + "Benjamin Sunderland - Center of Excellence (Experis)", + "Casey Feasby - Center of Excellence (Experis)", + "Chris Nye - Center of Excellence (Experis)", + "Clint Baggett - Program Leadership (Experis)", + "Dante Carrasco - Business Manager", + "Darren Benskin - Client Account Director (Experis)", + "Dave Watkins - Program Leadership (Experis)", + "David Boker - Director XGS Business Operations", + "Ella Rowand - Center of Excellence (Experis)", + "Frank Criscione - IT (Experis)", + "Grzegorz Kohorewicz - Test Director, Lionbridge", + "Ian S. Nelson - Test Manager, (Experis)", + "James Fry - Quality Director, Studios Quality UK", + "James Pfeiffer - Program Leadership (Experis)", + "Jeffrey Guyton (Insight Global, Inc) - Account Manager", + "Jimmy Bischoff - Director of Quality, Studios Quality", + "Jon Doyle - Program Leadership (Experis)", + "Kenna Gillooly - Executive Business Administrator", + "Marcus King - Test Manager (Experis)", + "Maria Rodriguez - Administrative Support (Experis)", + "Matthew Call - Software Engineering Manager", + "Matthew O'Hern - Center of Excellence (Experis)", + "Michał Błoński - Senior Test Director, Lionbridge", + "Michelle Oliver - Center of Excellence (Experis)", + "Mitzi Woodmore - Administrative Support (Experis)", + "Paul Gradwohl - Administrative Support (Experis)", + "Ryan Burns - Software Engineering Lead", + "Santiago Quinio - Data Software Test Engineering Leadership (Experis)", + "Tanner Anderson - IT (Experis)", + "Tevin Crabdree - IT (Experis)", + "Tyler Lovemark - Test Manager (Experis)" + ] + } + ] + } + ] + }, + { + "section": "Special Thanks", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "", + "names": [ + "4J Studios", + "Albert Pastore, Director of Business Development, Music and Talent", + "Dan Roque, Creature Developer", + "Gideon Driver, Zen3 Infosolutions America, Inc", + "Jannis Petersen, Creator of Blockbench", + "John 'DrZhark' Olarte, Creature Developer", + "Julian Gough, Writer", + "Kent Christian Jense, Creature Developer", + "Michele \"skypjack\" Caini, Senior Software Engineer", + "Microsoft Magic Team", + "Reza Elghazi, Developer Account Manager", + "Stephanie Golden, Account Manager, Insight Global, Inc", + "The Community Sift Team", + "The PlayFab Team", + "The Xbox Live Team", + "Vishnu Nalagangula, Zen3 Infosolutions America, Inc", + "Xbox Games Studios" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Blackbird Interactive", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Technical Director", + "names": [ + "James Fairweather" + ] + }, + { + "title": "Programmer", + "names": [ + "Stevie Giovanni" + ] + }, + { + "title": "Associate Programmers", + "names": [ + "Jakob Trounce", + "Zehao Lu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - CSI Interfusion Inc", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Alfred Wang", + "Dowen Zhu", + "Fernly Li", + "Jeremy Robinson", + "Johnny Guo Xiao", + "Michael Braley", + "Neo Yu", + "Robert Wang", + "Robin Lu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Disbelief", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "President", + "names": [ + "Steve Ellmore" + ] + }, + { + "title": "CTO", + "names": [ + "Steve Anichini" + ] + }, + { + "title": "Technical Director", + "names": [ + "Kristofel Munson" + ] + }, + { + "title": "Lead Programmer", + "names": [ + "Tim Hagberg" + ] + }, + { + "title": "Programmers", + "names": [ + "Emmaline Kelly", + "Micah Johnston", + "Yuhan Wu", + "David Stout" + ] + }, + { + "title": "Producer", + "names": [ + "Stacey Gray" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Redlens", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "President", + "names": [ + "Jared Noftle" + ] + }, + { + "title": "GM & Development Director", + "names": [ + "Kyle Walsh" + ] + }, + { + "title": "Dev Lead", + "names": [ + "Stephen Chiavelli" + ] + }, + { + "title": "Producer", + "names": [ + "Hollie Brown" + ] + }, + { + "title": "Associate Tech Lead", + "names": [ + "Veasna Chhaysy-Park" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Grady Wright", + "Henry Lisowski III", + "Johnathan Liu", + "Jon Castro", + "Joshua Greene", + "Lily Leblanc", + "Minji Chhaysy-Park", + "Mitchell Lee" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - SiProgs", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Martin Kusnier", + "Milos Bazelides", + "Vladimir Sisolak" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Skybox", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Founders", + "names": [ + "Derek MacNeil", + "Shyang Kong", + "Steven Silvester" + ] + }, + { + "title": "Production", + "names": [ + "Casey White", + "Dayna Cassidy", + "Dee Rueter", + "Isaac Calon", + "Jai Kristjan", + "Jason Obertas", + "Jennifer Barron", + "Keegan Dillman", + "Madeeha Ahmad", + "Yaw Obiri-Yeboah" + ] + }, + { + "title": "Software Developers", + "names": [ + "Alex Denford", + "Alexandra Kabak", + "Amy Liu", + "Amy Zhao", + "Andrew Halabourda", + "Anthony Wong", + "Aidan Dearing", + "Baktash Abdollah-Shamshir-saz", + "Benny Wang", + "Carsten Hooker", + "Chris Spyropoulos", + "Cody Clattenburg", + "Cole Pollock", + "Colin Basnett", + "Cyro Paulino da Costa Jr", + "Dan Wesley", + "Daniel Shim", + "Derek Bell", + "Eser Kokturk", + "Eugene Kuznetsov", + "Fred Zhang", + "Glen Conolly", + "Gordon Tisher", + "Graham Park", + "Guillermo Trejo Torres", + "Gursaanj Singh Bajaj", + "Gustav Louw", + "Hao Tian", + "Hayden Hur", + "Jacob Jensen", + "Jaegar Sarauer", + "Jaidon van Herwaarden", + "Jake Roman-Barnes", + "Jeffrey Chou", + "Jiazhi Chang", + "John Ferguson", + "Jon Head", + "Jonathan Yim", + "Jordan Lacey", + "Jordan Millar", + "Joseph Cameron", + "Justin Tim", + "Kirill Bizin", + "Kyle Roblin", + "Leonardo Stark", + "Mauricio A. P. Burdelis", + "Max Fanning", + "Michael Di Spirito", + "Michel Morin", + "Mitch Filmer", + "Mitch Lockhart", + "Mukund Agarwal", + "Nathan Lacey", + "Richard Hawkes", + "Richard Walker", + "Rick Huang", + "Ronald Ariel Kamanga", + "Russell Gillette", + "Sean Siemens", + "Shreyas Babu", + "Supriya Singh", + "Thomas Le Gerroue-Drevillon", + "Todd Saharchuk", + "Ty Lauriente", + "Vassil Anguelov", + "William Sherif", + "Yang Zhao", + "Yen-Chun Wang", + "Younggi Kim", + "Zach Campbell" + ] + }, + { + "title": "Quality Assurance", + "names": [ + "Chuan Shi Yu", + "Faith Chow", + "Felipe Mauricio", + "Franka Mostert", + "Ivan Yemelianov", + "Leo Hewitt", + "Lera Kirka", + "Mark Ball", + "Vicky Huang", + "Jake Megrian" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Virtuosity", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Services Developers", + "names": [ + "Nathan VanHouten", + "Keerthana Hariharan", + "Malliga Muthuraj", + "Lenin Kumar", + "Tanmay Kamath", + "Srinivasan Kandhallu Gnanamoorthy" + ] + } + ] + } + ] + }, + { + "section": "Mojang Studios Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Original Creator of Minecraft", + "names": [ + "Markus Persson" + ] + }, + { + "title": "Chief Executive Officer", + "names": [ + "Carl Manneh" + ] + }, + { + "title": "Head of Minecraft", + "names": [ + "Matt Booty" + ] + }, + { + "title": "Chief Technology Officer", + "names": [ + "Rikard Herlitz" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Andrew J. Adamyk" + ] + }, + { + "title": "Chief Creative Officer", + "names": [ + "Saxs Persson" + ] + }, + { + "title": "Head of Games", + "names": [ + "Patrick Liu" + ] + }, + { + "title": "Game Director", + "names": [ + "Henrik Pettersson" + ] + }, + { + "title": "Creative Director", + "names": [ + "John Hendricks" + ] + }, + { + "title": "Game Designers", + "names": [ + "Brandon Franklin (Insight Global, Inc)", + "Colten Murphy (TEKsystems, Inc)", + "Henrik Kniberg", + "Jared Greiner", + "Jesse A Hibbs (TEKsystems, Inc)", + "Justin Van Oort", + "Lauren E. Careccia", + "Melissa Andrews (Insight Global, Inc)", + "Miko Charbonneau", + "Pradnesh Patil" + ] + }, + { + "title": "Narrative Designer", + "names": [ + "Max Herngren" + ] + }, + { + "title": "Head of Creator Platform Engineering", + "names": [ + "Jason Cahill" + ] + }, + { + "title": "Technical Directors", + "names": [ + "Jason Major", + "Kristoffer Jelbring" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Erik Rahm", + "Erika Renlund", + "Giulio 'Mac' Maistrelli", + "Martin Almgren", + "Michael Scott", + "Wenlan Yang" + ] + }, + { + "title": "Lead Software Engineers", + "names": [ + "Aaron Heysse", + "Adrian LaVallee", + "Henry Golding", + "John Copic", + "John Seghers", + "Mark D. Andersen", + "Mark Grinols", + "Michael D McGrath", + "Nathan Miller", + "Niklas Börestam", + "Piotr Kundu", + "Sebastian Hindefelt", + "Steve Robinson", + "Syrgak Turgumbaev", + "Timothy J Schutz", + "Tom Miles", + "Tyler Laing" + ] + }, + { + "title": "Additional Programming", + "names": [ + "Elliot 'Hippoplatimus' Segal", + "Paul Spooner", + "Ryan 'Scaevolus' Hitchman" + ] + }, + { + "title": "Architects", + "names": [ + "Dom Humphrey", + "Michael Seydl", + "Mike Frost", + "Tommaso Checchi" + ] + }, + { + "title": "Launcher", + "names": [ + "Anders Rosén", + "Carl Westin", + "David Zevallos" + ] + }, + { + "title": "Lead Architects", + "names": [ + "Greg Snook", + "Peter M. Wiest" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Woodward", + "Adrian T Orszulak", + "Afeez Olusegun K Bello", + "Albin Odervall", + "Alex Baird (Collabera, LLC) (Software Development)", + "Alex Wennström", + "Alex Wouters (Insight Global, Inc)", + "Alexander Johansson", + "Alexander Kandalaft (Insight Global, Inc)", + "Alexander Östman", + "Alexander Sandor", + "Alexander Wilkinson", + "Amir Moulavi", + "Anders Gärdenäs", + "Anders Martini", + "Andreas Von Gegerfelt", + "Andrew Chien (Insight Global, Inc)", + "Andrew Griffin (Insight Global, Inc)", + "Andrew Hewitson", + "Andy Hill", + "Anna Päärni", + "Anna Pearson (Insight Global, Inc)", + "Anthony Cloudy", + "Anton Arbring", + "Aravindan Aarumugam (Virtuosity)", + "Archana Singh (Collabera, LLC)", + "Arend Danielek (TEKsystems, Inc)", + "Arockia Stanly (Virtuosity)", + "Astrid Rehn", + "Austin Larkin (Insight Global, Inc)", + "Barani Dharan (Virtuosity)", + "Benjamin Arnold (Insight Global, Inc)", + "Benny Hellström", + "Brendan Lauck (Insight Global, Inc)", + "Campbell Tran", + "Cezary Tomczak", + "Chris Barrett (Apex Systems, Inc)", + "Christian Westman", + "Christoffer Hammarström", + "Clayton Vaught", + "Coseo Frerichs (Insight Global, Inc)", + "Cullen Waters", + "Curtis Michael Eichner", + "Daniel Feldt", + "Daniel Frisk", + "Daniel Wustenhoff", + "Danila Dergachev", + "Dario Vodopivec", + "Dartangan Jackson (Ascendion, Inc.)", + "Dave Stevens", + "David Dalström", + "David 'Lion' Kimbro (Insight Global, Inc)", + "David Marby", + "David Roberts (Insight Global, Inc)", + "Dimitri Kishmareishvili (CSI Interfusion, Inc)", + "Dodge Lafnitzegger (Insight Global, Inc)", + "Dolly Mackwan", + "Don S Frazier II", + "Drew Okenfuss", + "Elijah J Emerson", + "Emelie Sidesiö", + "Emil Hedemalm", + "Emily Black", + "Emily Mattlin", + "Emily Rizzo (Insight Global, Inc)", + "Erik Bylund", + "Esteban Richey (Insight Global, Inc)", + "Evelyn Collier (Insight Global)", + "Fenil Shah (Collabera, LLC)", + "Filip Hedenskog", + "Fredrik Bergstrand", + "Geof Sawaya (Collabera)", + "Guillaume Le Chenadec", + "Haley Eisenshtadt", + "Hampus Fristedt", + "Hazen Miller (Insight Global, Inc)", + "Henrik Barratt-Due", + "Irina Koulinitch", + "Isaac de la Vega", + "Jagannathan Mannu (Virtuosity)", + "Jakob Horndahl", + "Jakob Pogulis", + "James Klock (Collabera, LLC)", + "James Linden (Insight Global, Inc)", + "Jeff 'Dextor' Blazier", + "Jeffrey J Jou (Insight Global, Inc)", + "Jeison Salazar (Insight Global, Inc)", + "Joachim Larsson", + "Joakim Ejenstam", + "Johan Bernhardsson", + "Johannes Sundqvist", + "John Davis (Collabera, LLC)", + "John Estess (Randstad)", + "John Haynes", + "John Littlewood", + "Johnny Sjöö", + "Jonas Bergström", + "Jonas Eriksson", + "Jonathan M Ortiz", + "Jorge Antonio Jimenez (Design Laboratory, Inc)", + "Josh Letellier", + "Joshua B Davis", + "Joshua Letellier", + "Joshua Owens (Collabera)", + "Karim A Luccin", + "Kelly Keniston (Insight Global, Inc)", + "Kento Murawski (Insight Global, Inc)", + "Kirill Mikhel", + "Kristin A Siu", + "Kristoffer Kobosko", + "Larry Ukaoma", + "Leonard Gram", + "Levi Stoddard (Insight Global, Inc)", + "Lily Leblanc (Insight Global, Inc)", + "Linus Cumselius", + "Lisa Sturm", + "Lizaveta Rubinava (Collabera, LLC)", + "Louis A Castaneda (Insight Global, Inc)", + "Lucas Carpenter (Collabera)", + "Luis A Angel Mex", + "Magnus Bentling", + "Magnus Jäderberg", + "Maksim Ivanov", + "Marc Neander", + "Márcio de Oliveira da Silva", + "Maria Katsourani", + "Maria Lemón", + "Mark Rowland (Collabera)", + "Markus Arvidsson", + "Martin Hesselborn", + "Martin Odhelius", + "Martin Pola", + "Mats Henricson", + "Matthew Guze (WaferWire Cloud Technologies)", + "Maxwell Orth (Insight Global, Inc)", + "Michael Andersson", + "Michael Chambers (Insight Global, Inc)", + "Michael Klopfenstein (Insight Global, Inc)", + "Michael Malmqvist", + "Michael 'Mikaus' Whiteley", + "Michael Novén", + "Mikael Malmqvist", + "Mike Marven (Insight Global, Inc)", + "Mitchell Lee (Insight Global, Inc)", + "Mohamed Fouad Saga", + "Nathan Gilbert", + "Nathan Sosnovske", + "Nicholas Draper (Insight Global, Inc)", + "Niclas Unnervik", + "Norman Skinner (Insight Global, Inc)", + "Osama Balkasem (Collabera, LLC)", + "Oskar Carlbaum", + "Patrick O'Leary", + "Philip Vieira", + "Radha Kotamarti", + "Rakshith Murthy (Virtuosity)", + "Randy Gonzalez-Murillo (Collabera, LLC)", + "Richard Pihlcrantz", + "Rob Austin", + "Robert Di Battista (Insight Global, Inc)", + "Robert Thresher (Collabera)", + "Robyn R To", + "Roman Timurson (Insight Global, Inc)", + "Rui Ma", + "Rui Xie (Insight Global, Inc)", + "Ryan Holtz", + "Ryan Seaman (Collabera)", + "Ryan Tyler Rae", + "Scott Edsall (Collabera, LLC)", + "Sebasian Hindefeldt", + "Semih Energin", + "Sina Tamanna", + "Spencer Peterson (Insight Global, Inc)", + "Stacy J Chen", + "Steve Trigger (Insight Global, Inc)", + "Subramani Ramanathan (Virtuosity)", + "Sumith Kumar (Virtuosity)", + "Tanner Pearson (Insight Global, Inc)", + "Taylor M Riviera", + "Theodor Fleming", + "Thomas Guimbretiére", + "Thomas Järvstrand", + "Thomas Spalter (Insight Global, Inc)", + "Tim Lindeberg", + "Tobias Möllstam", + "Tomas Alaeus", + "Tomas Guimbretière", + "Tomer Braff (Collabera, LLC)", + "Travis Gates (Insight Global, Inc)", + "Uma Senthil Raj (Virtuosity)", + "Victor Connor", + "Vignesh Masilamani (Virtuosity)", + "Virgilio Jr Blones", + "Vitalii Sych", + "Vladimir Repcak (Collabera, LLC)", + "William Harmon (Insight Global, Inc)", + "Ying Guo (TEKsystems, Inc)", + "Zack Moxley (Insight Global, Inc)" + ] + }, + { + "title": "Chief Product Officer", + "names": [ + "Olof Carlson Sandvik" + ] + }, + { + "title": "Head of Minecraft Atlas", + "names": [ + "Deirdre Quarnstrom" + ] + }, + { + "title": "Production Director", + "names": [ + "Daniel Kaplan" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Erin Krell", + "Roger Carpenter" + ] + }, + { + "title": "Production Lead", + "names": [ + "Christine Platon" + ] + }, + { + "title": "Assistant Producer", + "names": [ + "Warren Loo" + ] + }, + { + "title": "Producers", + "names": [ + "Aaron Culbreth (Insight Global, Inc)", + "Adele Major", + "Alen Voljevica", + "Anna Holdosi-Simon", + "Anna Jensen", + "Anna Zakipour", + "Annie Desimone (Insight Global, Inc)", + "Ann-Kristin Adwent", + "Anthony Hanses (Insight Global, Inc)", + "Antonina Y Khazova", + "Åsa Skogström", + "Austin Maestre", + "Best Liang", + "Carina Pettersson", + "Caylin Kaunas (Randstad)", + "Chris Casanova", + "Chris Massena (Insight Global, Inc)", + "Damian Finn (Lionbridge)", + "Dani Flores (Insight Global, Inc)", + "Dayana Sharshukova (Aquent LLC)", + "Decker Geddes (Insight Global, Inc)", + "Dejan Dimic", + "Diana Lind (Insight Global, Inc)", + "Elizabeth Batson (Insight Global, Inc)", + "Ellen Karlsten", + "Emma Erixson", + "Ethan Koltz (Insight Global, Inc)", + "Foluso Akerele", + "Hampus Nilsson", + "Hedwig Laza", + "Isabella Arningsmark", + "Jason Rice", + "Jennifer Lee (Insight Global, Inc)", + "Jewel Chukwufumn, Ifeguni", + "Johannes Fridd", + "John Garcia (Collabera, LLC)", + "Juan Gril", + "Justin Woods", + "Justine Loong", + "Kasia Swica", + "Kelly Henckel", + "Kevin Katona (Design Laboratory, Inc)", + "Lisa Bryer", + "Loudon St Hill (Insight Global, Inc)", + "Marcus Rundström", + "Markus Waltré", + "Matt Rodgers (eXcell, a division of CompuCom)", + "Michael Welch (Insight Global, Inc)", + "Moira Ingeltun", + "Nathan Tompkins (Randstad)", + "Nick Severson", + "Nicole Alers", + "Robin Linder", + "Sara Lidberg", + "Sloane Delancer", + "Sofia Orrheim", + "Stephanie Chen (Collabera, LLC)", + "Thomas Feng", + "Tien-Hung Nguyen (TEKsystems, Inc)", + "Tilde Westrup", + "Trevor McCann (Yoh Services LLC)", + "William C Meyer (Pivotal Consulting LLC)", + "William Cooper", + "Yesenia Cisneros" + ] + }, + { + "title": "Product Manager", + "names": [ + "Halishia Chugani" + ] + }, + { + "title": "Organizational Coaches", + "names": [ + "Marie Stålkrantz", + "Martin Bloomstine", + "Rasmus Noah Hansen" + ] + }, + { + "title": "Release Managers", + "names": [ + "Brogan Irwin (Virtuosity)", + "Dustin Wood (Design Laboratory, Inc)", + "Kyle Rogers (Randstad)", + "Liam Allman (Aquent, LLC)", + "Robert Williamson (Apex Systems, Inc.)" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Bryce Bortree (Insight Global, Inc)", + "Jeff Kim (Insight Global, Inc)", + "Joshua Jones (Insight Global, Inc)", + "Nate Mackie (TEKsystems, Inc)" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "Emily Price", + "Holly Pollock", + "Ryan Seymour (TEKsystems, Inc)" + ] + }, + { + "title": "Art Directors", + "names": [ + "Alexis Holmqvist", + "Andy Zibits", + "Brad Shuber", + "Daniel Björkefors", + "Kim Petersen", + "Logan Lubera", + "Ola Lanteli", + "Wiktor Persson" + ] + }, + { + "title": "Artist Leads", + "names": [ + "Christine Gutierrez", + "Lisa Hazen", + "Sarah Kisor" + ] + }, + { + "title": "Artists", + "names": [ + "Aleesa Tana (Randstad)", + "Amanda Cook (Harvey Nash)", + "Andrea Sanchez Sepulveda (Randstad)", + "Bart Kaufman (Randstad)", + "Branden Brushett (Aquent LLC)", + "Claire Selvog (Randstad)", + "Dylan Piepenbrok", + "Dylan Sunkel (Collabera, LLC)", + "Elin Ölund Forsling", + "Erin Caswell (eXcell, a division of CompuCom)", + "Heath Night (Aquent, LLC)", + "Husein Kurbegovic", + "Jakob Gavelli", + "Jei G Ling (Allegis Group Services, Inc)", + "Jerica Harada (TEKsystems, Inc)", + "Jesper Hallin", + "Jonatan Pöljö", + "Jules Norcross (Aquent LLC)", + "Kailey Hara (Aquent LLC)", + "Kelly Greene (CompuCom Systems, Inc)", + "Kristen Malone (Randstad)", + "Kristoffer Zetterstrand", + "Lilei Yu (Collabera)", + "Linus Chan (TEKsystems, Inc)", + "Marco Vale", + "Mariana Graham Ramirez", + "Mark Hershberger (Apex Systems, Inc)", + "Michael R Fiedler (Insight Global, Inc)", + "Miki Bishop (Randstad)", + "Patrick A Rodes (Insight Global, Inc)", + "Poi Poi Chen", + "Sarah Martino (Insight Global, Inc)" + ] + }, + { + "title": "Product Designers", + "names": [ + "Jennifer Hammervald", + "Jonathan Gallina" + ] + }, + { + "title": "Graphic Designer", + "names": [ + "Dalila Copeland (Randstad)" + ] + }, + { + "title": "Motion Graphics Designer", + "names": [ + "Gabe Philbin (Randstad)" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Johan Pettersson", + "Kevin Martinez", + "Rostislav Trifonov", + "Shauny Jang (Insight Global, Inc)" + ] + }, + { + "title": "Technical Audio Developer", + "names": [ + "Jonatan Crafoord" + ] + }, + { + "title": "Quality Data Analysis & Engineering", + "names": [ + "Jeff MacDermot" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Akshata Trivedi", + "Paul Coada", + "Thommy Siverman", + "Yi Zhao (Kforce)", + "Zackarias Gustavsson" + ] + }, + { + "title": "Quality Lead", + "names": [ + "Tony Harlich" + ] + }, + { + "title": "Quality Manager", + "names": [ + "Rob Straavaldson" + ] + }, + { + "title": "Quality Assurance Specialists", + "names": [ + "Carl-Johan Tornberg", + "James Marchant", + "Jana Prihodko", + "Marcela Castaneda" + ] + }, + { + "title": "User Experience Design Directors", + "names": [ + "Stephen Whetstine", + "Tobias Ahlin" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Connor Tompsett (CompuCom Systems, Inc)", + "Gaby Salinas", + "Jin Shin", + "Jonathan Paton Gallina", + "Kailin Li (TEKsystems, Inc)", + "Lily Ekman", + "Melissa Kay (Prieto)", + "Oscar Nilsson", + "Sabrina Cuevas-Pagoaga (Randstad)", + "Sam Paye (Aquent, LLC)", + "Sandra Bornemark", + "William Hollowell" + ] + }, + { + "title": "User Experience Intern", + "names": [ + "Axel Grefberg" + ] + }, + { + "title": "User Research Lead", + "names": [ + "Jerome Hagen" + ] + }, + { + "title": "User Researchers", + "names": [ + "Melissa Boone", + "Olga Zielinska", + "Pablo Morales" + ] + }, + { + "title": "Head of Player Operations", + "names": [ + "Aubrey Norris" + ] + }, + { + "title": "People Experience Manager", + "names": [ + "Francine Jordan (Simplicity Consulting, Inc)" + ] + }, + { + "title": "Human Resources", + "names": [ + "Anna Lyth", + "Aron Glauser", + "Charlie Bjurström", + "Ida Utterström", + "Maria Sjöman", + "Petra Stenqvist", + "Simon Taylor", + "Ulrika Karlsson", + "Veronica Camaj Ericson", + "Viktoria Petersson" + ] + }, + { + "title": "Talent Acquisition", + "names": [ + "Aimée Narfström", + "Ida Utterström", + "Sofia Andersson", + "Sofia Lindquist", + "Tove Oldebäck" + ] + }, + { + "title": "Office Managers", + "names": [ + "Alex Andersson", + "Charlotte Wredesjö", + "Jill Curran", + "Linn Hultman", + "Mikaela Prim", + "Siri Hoel" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Cathy Wickersham", + "Darla J Barrett", + "Judith L. Wheeler", + "Katy Hanson", + "Lisa Liu" + ] + }, + { + "title": "Business Administrator", + "names": [ + "Shae M. Flanigan (C2S Technologies, Inc)" + ] + }, + { + "title": "Front of House", + "names": [ + "Adam Blänning", + "Chaimae Truving", + "Eliza Lancelot", + "Felicia Björn Nordling" + ] + }, + { + "title": "IT", + "names": [ + "Carl Johan Svärd", + "Daniel Miller (Insight Global, Inc)", + "Dolly Mackwan", + "Eetu Närhi", + "Evelina Rollfelt", + "Fabian Norlin", + "Henrik Lindgren", + "Shoaib Hosseini", + "Stephanie De Leeouv Markov" + ] + }, + { + "title": "Operations Managers", + "names": [ + "Anna Hamilton", + "Barbara Acevedo Visser (Lions and Tigers)", + "Carl Kyhlberg", + "Gustav Roth", + "Kaya Hatcher" + ] + }, + { + "title": "Automation Support", + "names": [ + "Corey Smith (Insight Global, Inc)", + "Gregory D Searing (WaferWire Cloud Technologies)", + "Johnny Cocks (Collabera)", + "Jordan Crockett (TEKsystems, Inc)", + "Matthew Gustaff (Digital Intelligence Systems, LLC)", + "Sean Connolly (Insight Global, Inc)" + ] + }, + { + "title": "Player Support Leads", + "names": [ + "Justin Putnam (TEKsystems, Inc)", + "Mattias Jacob Victorin", + "Mattias Victorin" + ] + }, + { + "title": "Player Support", + "names": [ + "Amelia Lindroth Henriksson", + "Ana Barata Martins", + "Andrea Jörgensen", + "Andreas Andersson", + "Andrew Lee (Apex Systems, Inc)", + "Angehlica Walling", + "Annika Tripke-Lund", + "Anton Albiin", + "Antonia Kousathana", + "Carl Johnsson", + "Cim Borg", + "Dante Stjernberg", + "David Carlsson", + "David Stuart Dahlgren", + "Elin Frykholm", + "Eliza Hearsum", + "Ellie Ashrafi", + "Erik Nordberg", + "Fredrik Henriksson", + "Fredrik Sandström", + "Freja Fors", + "Henrik Davallius", + "Henry Shi", + "Isabell Ahron", + "Jeffrey Riendeau", + "Joe Liu", + "Jonny Hair", + "Kevin Vesterlund", + "Kyle McMurtry (TEKsystems, Inc)", + "Mike Till", + "Nasim Derakhshan", + "Nicole Jansson", + "Nima Tolouifar", + "Patrik Södergren", + "Rabi Hadad", + "Robert Miskiewicz", + "Robin Cocks", + "Robin Thunström", + "Rui Ribero", + "Sarah Mårtensson", + "Theodor Colbing", + "Valérie Beaubien", + "Viktor Persson" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Addy Deodikar (Design Laboratory, Inc)", + "Patrick Worthey", + "Sachin Dekate (Design Laboratory, Inc)" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Warren Durrett" + ] + }, + { + "title": "Data Science", + "names": [ + "Abby Jaloway (National Business Innovations)", + "Anh Ying Lang (Design Laboratory, Inc)", + "Brynjólfur Erlingsson", + "Conor Maguire (KellyMitchell Group, Inc)", + "Cyrus Rustomji (Kelly Mitchell Group)", + "Daniel Camarena (KellyMitchell Group, Inc)", + "Darin LaSota (Design Laboratory, Inc)", + "Dusanka Poljak (Design Laboratory, Inc)", + "Ethan Batson (Design Laboratory, Inc)", + "Forrest Wheeler (Insight Global, Inc)", + "Gil Darves (Design Laboratory, Inc)", + "Jake Kelly", + "Jari Williams", + "Joseph Bushagour (Kelly Mitchell Group)", + "Megan Henry (Kelly Mitchell Group)", + "Melissa Alleyne", + "Michael Hernandez (Insight Global, Inc)", + "Murali Nagarajan (Design Laboratory, Inc)", + "Nick Martin (Design Laboratory, Inc)", + "Pawan Panaganti (Design Laboratory, Inc)", + "Srini Viswanatham (Design Laboratory, Inc)", + "Tejasvini Deshpande (Kelly Mitchell Group)", + "Tim Ross (Simplicity Consulting, Inc)", + "Tong Shen (KellyMitchell Group, Inc)", + "Yuvaraj Duraisamy (Design Laboratory, Inc)" + ] + }, + { + "title": "Head of Creator Marketplace", + "names": [ + "Aaron Buckley" + ] + }, + { + "title": "Directors of Business Development", + "names": [ + "Cherie D Lutz" + ] + }, + { + "title": "Directors of Business Management", + "names": [ + "Stephen McHugh" + ] + }, + { + "title": "Directors of Business Planning", + "names": [ + "Adam Tratt" + ] + }, + { + "title": "Project Director", + "names": [ + "Jakob Porsér" + ] + }, + { + "title": "Business Development Manager", + "names": [ + "Ellen Deng (JeffreyM Consulting, LLC)" + ] + }, + { + "title": "Program Managers", + "names": [ + "Amber Wu (Shang Hai Wei Chuang Ruan Jian)", + "Kaiwen Li (Populus Group, LLC)", + "Liz Butowicz (Bluehawk LLC)", + "Maria Olekheyko", + "Mark Fredo (Aerotek, Inc)", + "Meenoo Rami", + "Natalie Haggin (Simplicity Consulting, Inc)", + "Steven Hosey (Simplicity Consulting, Inc)", + "Timothy J Ross (Simplicity Consulting, Inc)", + "Vince-Davis Espino (Insight Global, Inc)" + ] + }, + { + "title": "Business Managers", + "names": [ + "Bill Wu", + "Claudine Ursino (Simplicity Consulting Inc)", + "Daniel Beasley", + "Dennis Laviolette", + "Fredrika Wessman (Design Laboratory, Inc)", + "Leslie Tullis", + "Vanessa Dagnino (Simplicity Consulting, Inc)" + ] + }, + { + "title": "Business Analysts", + "names": [ + "Alvin M Chin (Populus Group, LLC)", + "Keiko Ramer (Apex Systems, Inc)", + "Zheng Wang (Populus Group, LLC)" + ] + }, + { + "title": "Head of Creative Production", + "names": [ + "Katharina Hautz" + ] + }, + { + "title": "Brand Director", + "names": [ + "Jonathan Symington" + ] + }, + { + "title": "Intellectual Property Enforcement Agents", + "names": [ + "Johan Hedlund", + "Marcus Forss", + "Matilda Åkerman", + "Sylvia Chen" + ] + }, + { + "title": "Intellectual Property Enforcement Leads", + "names": [ + "Mathias Andersson", + "Teresa Lee Rodewald" + ] + }, + { + "title": "Lead Project Manager", + "names": [ + "Vera Mirchev" + ] + }, + { + "title": "Creative Production", + "names": [ + "Isabella Arningsmark" + ] + }, + { + "title": "Lead Producer - Brand Experience", + "names": [ + "Karim Walldén" + ] + }, + { + "title": "Media Director", + "names": [ + "Hans Abrahamsson" + ] + }, + { + "title": "Head of Creative Communications", + "names": [ + "Thomas Wiborgh" + ] + }, + { + "title": "Communication Managers", + "names": [ + "John Schork" + ] + }, + { + "title": "Assembly Media, Inc", + "names": [ + "Alli Cohen", + "Christian Delgado", + "Erin Dwyer", + "Jessie Steinberg", + "Richard Chen", + "Vanessa Mora", + "Wesley Gore" + ] + }, + { + "title": "Communications Editors", + "names": [ + "Marsh Davies", + "Tom Stone" + ] + }, + { + "title": "Content Coordinators", + "names": [ + "Adam Martinsson", + "Andreas Thomasson", + "Sara Lempiäinen" + ] + }, + { + "title": "Creative Writer", + "names": [ + "Emily Richardson" + ] + }, + { + "title": "Lead Web Developer", + "names": [ + "Mark Jawad" + ] + }, + { + "title": "Web Designer", + "names": [ + "Paul Madlon (Ten Gun Design, Inc)", + "Taylor Kasony (eXcell, a division of CompuCom)" + ] + }, + { + "title": "Social Media Leads", + "names": [ + "Alice Löfgren", + "Amelia Dale", + "Sara Reiner" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Aleksander Gilyadov (Aston Carter)", + "Alex Fleck (Adecco)", + "David Ramos (Collabera)", + "Natascha Cox", + "Ross Keatley" + ] + }, + { + "title": "Community Managers", + "names": [ + "Glory Robinson (Experis)", + "Helen Zbihlyj", + "Matt Martin", + "Nova Barlow (Experis)", + "Trella Rath (Corestaff)" + ] + }, + { + "title": "Content Manager", + "names": [ + "Niclas Fredriksson" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Ashley Davidson (Simplicity Consulting, Inc)", + "Bianca Ciotti", + "Danielle Ma", + "Delilah Liu", + "Didac Hormiga", + "Eva Stefanac", + "Gabi Ibarra (Simplicity Consulting, Inc)", + "Lindsay Auten (Simplicity Consulting, Inc)", + "Nathaniel Wipfler" + ] + }, + { + "title": "Head of Legal", + "names": [ + "Carl Brant", + "Christi Davisson" + ] + }, + { + "title": "Chief Finance Officer", + "names": [ + "Karin Severinson" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Tricia Geyer" + ] + }, + { + "title": "Finance Manager", + "names": [ + "Evan Dowdell", + "Katarina Norlander" + ] + }, + { + "title": "Financial Accountant", + "names": [ + "Jelena Pejic", + "Natalie Levinsson" + ] + }, + { + "title": "Financial Consultant", + "names": [ + "Stefan Lyrmark" + ] + } + ] + } + ] + }, + { + "section": "Studios Quality Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Quality Manager", + "names": [ + "Chris Henry" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Craig Marshall", + "Dan Pipinich", + "Hakim Ronaque", + "Tony Harlich" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Akshata Trivedi", + "Ben Weber", + "Fiona Belmont", + "Herve Iradukunda", + "Jeff MacDermot" + ] + }, + { + "title": "Quality Analysts", + "names": [ + "Michelle Hyde", + "Yi Zhao (Kforce)" + ] + }, + { + "title": "Program Manager", + "names": [ + "Norah Hogoboom (Insight Global, Inc)" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Amlag", + "Henry Golding", + "Moodie Ghaddar", + "Paula Yuan", + "Scott Lindberg" + ] + }, + { + "title": "Data Engineers", + "names": [ + "Christian Koguchi", + "Kai VanDrunen", + "Patrick Fraioli" + ] + }, + { + "title": "Team Leads", + "names": [ + "Anna Wróbel (Lionbridge)", + "Kamil Bazydło (Lionbridge)", + "Michał Sławek (Lionbridge)", + "Paweł Piekarski (Lionbridge)", + "Sebastian Polanica (Lionbridge)", + "Tomasz Bokotko (Lionbridge)", + "Wojciech Kujawa (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Barry Doyle (Insight Global, Inc)", + "Chris James (Insight Global, Inc)", + "Christopher Wilson (Experis)", + "Robert Green (Experis)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Agata Dzideczek (Lionbridge)", + "Antoine Brown (Experis)", + "Brendan McElroy (Insight Global, Inc)", + "Brian Lareau (Experis)", + "Brooke Chapman (Experis)", + "Cameron Harris (Experis)", + "Crystal Edwards (Insight Global, Inc)", + "Dan Parker (Insight Global, Inc)", + "Eric Saxon (Experis)", + "Eugeniusz Kosieradzki (Lionbridge)", + "Isaac Dudley (Insight Global, Inc)", + "Jakub Kwiatkowski (Lionbridge)", + "James Lawrence (Experis)", + "Jessica Armstrong (Experis)", + "John Ehresmann (Experis)", + "Kaitlyn Grace (Experis)", + "Katarzyna Moskalewicz (Lionbridge)", + "Kevin Gittens (Experis)", + "Leon Langston (Insight Global, Inc.)", + "Maciej Łajszczak (Lionbridge)", + "Marcin Słoniewski (Lionbridge)", + "Mariusz Gil (Lionbridge)", + "Mariusz Podgórski (Lionbridge)", + "Mateusz Janiszewski (Lionbridge)", + "Michał Cieślak (Lionbridge)", + "Michelle Elbert (Experis)", + "Miłosz Kahlan (Lionbridge)", + "Patryk Telus (Lionbridge)", + "Robert Cleveland (Experis)", + "Rochishni Kolli (Experis)", + "Samuel Tharp (Experis)", + "Sean Colbert (Experis)", + "Sean Dugan (Experis)", + "Tess E Krimchansky (Experis)", + "Traci Jenkins (Experis)", + "Zofia Lenarczyk (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Krasieńko (Lionbridge)", + "Adam Prażmo (Lionbridge)", + "Adrianna Zalewska (Lionbridge)", + "Agata Bidelska (Lionbridge)", + "Alaric Trevers (Experis)", + "Aleksander Skiba (Lionbridge)", + "Alex Richardson (Lionbride)", + "Andrzej Wojciechowski (Lionbridge)", + "Austin Keeling (Experis)", + "Bartłomiej Dziurżyński (Lionbridge)", + "Bartłomiej Figiel (Lionbridge)", + "Bartłomiej Mareczko (Lionbridge)", + "Bartosz Brzeziński (Lionbridge)", + "Bartosz Kuchta (Lionbridge)", + "Bartosz Szklarzyński (Lionbridge)", + "Bartosz Urbankowski (Lionbridge)", + "Brian Sears (Experis)", + "Casper Sparks (Insight Global, Inc.)", + "Cezary Kociński (Lionbridge)", + "Cezary Wojewoda (Lionbridge)", + "Damian Golik (Lionbridge)", + "Daniel Justyna (Lionbridge)", + "Daniel Wystyrk (Lionbridge)", + "Eliza Duda (Lionbridge)", + "Emmanuelle Rodrigues Nunes (Lionbridge)", + "Eryk Czerski (Lionbridge)", + "Eva Horvath (Lionbridge)", + "Filip Gwarda (Lionbridge)", + "Filip Muchin (Lionbridge)", + "Grzegorz Irek (Lionbridge)", + "Grzegorz Wilkołek (Lionbridge)", + "Jacek Petela (Lionbridge)", + "Jan Gąsiorowski (Lionbridge)", + "Jan Prejs (Lionbridge)", + "Jan Zozman (Lionbridge)", + "Jared Arbaugh (Experis)", + "Jocylyn Engstrom (Experis)", + "Jordan Leeper (Lionbridge)", + "Justin Jones (Lionbridge)", + "Justin Smick (Experis)", + "Kacper Bujakowski (Lionbridge)", + "Kacper Kobyliński (Lionbridge)", + "Kacper Krupa (Lionbridge)", + "Kamil Konarski (Lionbridge)", + "Kamil Marut (Lionbridge)", + "Kamil Owczarczyk (Lionbridge)", + "Karol Kotowicz (Lionbridge)", + "Karol Mikusek (Lionbridge)", + "Karol Sobotka (Lionbridge)", + "Karolina Otłowska (Lionbridge)", + "Katarzyna Jaworska (Lionbridge)", + "Katarzyna Smektalska (Lionbridge)", + "Konrad Meysztowicz-Wiśniewski (Lionbridge)", + "Krzysztof Jeżak (Lionbridge)", + "Krzysztof Połomski (Lionbridge)", + "Łukasz Gołąb (Lionbridge)", + "Łukasz Sajnóg (Lionbridge)", + "Łukasz Walczyński (Lionbridge)", + "Maciej Brzeziński (Lionbridge)", + "Maciej Kienig (Lionbridge)", + "Magdalena Ścisłowska (Lionbridge)", + "Magdalena Tomaszewska (Lionbridge)", + "Maksymilian Kałucki (Lionbridge)", + "Maksymilian Kowalski (Lionbridge)", + "Małgorzata Janiszewska (Lionbridge)", + "Marcin Papadopoulos-Gajda (Lionbridge)", + "Marcin Szałek (Lionbridge)", + "Marco Paparella (Lionbridge)", + "Marek Urbański (Lionbridge)", + "Maria Wypych (Lionbridge)", + "Marvin Melitante (Experis)", + "Mateusz Kaliszewski (Lionbridge)", + "Mateusz Majewski (Lionbridge)", + "Mateusz Miturski (Lionbridge)", + "Mateusz Tran Van (Lionbridge)", + "Melchior Lewandowski-Wołosz (Lionbridge)", + "Michał Antosiak (Lionbridge)", + "Michał Młynek (Lionbridge)", + "Michał Szewczyk (Lionbridge)", + "Michał Woś (Lionbridge)", + "Monika Elandt (Lionbridge)", + "Nijat Aghamali (Lionbridge)", + "Patrick Chigges (Experis)", + "Patryk Rosiński (Lionbridge)", + "Paweł Chruszczewski (Lionbridge)", + "Paweł Kumanowski (Lionbridge)", + "Paweł Neścior (Lionbridge)", + "Piotr Biernacki (Lionbridge)", + "Piotr Gryczan (Lionbridge)", + "Piotr Jurek (Lionbridge)", + "Piotr Kolendo (Lionbridge)", + "Piotr Łowin (Lionbridge)", + "Piotr Retel (Lionbridge)", + "Piotr Słomka (Lionbridge)", + "Piotr Zieliński (Lionbridge)", + "Przemysław Goch (Lionbridge)", + "Przemysław Malinowski (Lionbridge)", + "Przemysław Wróbel (Lionbridge)", + "Rafał Brzostowski (Lionbridge)", + "Rafał Pruszkowski (Lionbridge)", + "Rafał Sapała (Lionbridge)", + "Rajkumar Kulandaivelu (Lionbridge)", + "Robert Thomas (Experis)", + "Robert Wypasek (Lionbridge)", + "Ryan Atwater (Experis)", + "Ryszard Kowalczyk (Lionbridge)", + "Sandra Meister (Lionbridge)", + "Sedona Storks (Lionbridge)", + "Šimon Kravár (Lionbridge)", + "Stanisław Dmowski (Lionbridge)", + "Szymon Mazurek (Lionbridge)", + "Szymon Okoń (Lionbridge)", + "Taylor Branim (Experis)", + "Tomasz Mirkiewicz (Lionbridge)", + "Tomasz Orlecki (Lionbridge)", + "Tomasz Selwat (Lionbridge)", + "Tomasz Sporczyk (Lionbridge)", + "Tomasz Zdrzalik (Lionbridge)", + "Tori Gasca (Experis)", + "Tyler Riojas (Experis)", + "Weronika Smoleń (Lionbridge)", + "Wiktor Wrona (Lionbridge)", + "Wojciech Komada (Lionbridge)", + "Wojciech Nieckarz (Lionbridge)", + "Zuzanna Wielkopolan (Lionbridge)" + ] + }, + { + "title": "Studios Quality Special Thanks", + "names": [ + "Aaron Brindell (Experis)", + "Aaron Ingram (Experis)", + "Alex Luschen - Executive Business Administrator", + "Brian Canning (Experis) - Test Manager, Tempe", + "Carol Stearns (Experis)", + "Chad Rankin - Client Account Director (Experis)", + "Gavin Kennedy (Experis)", + "Julie Loucks (Experis)", + "Lucas Rathburn (Experis)", + "Zachary Bohnenkamp - Center of Excellence (Experis)" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Blackbird Interactive Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Associate Programmers", + "names": [ + "Jacky Cai", + "Dylan Reviczky" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - CSI Interfusion Inc Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Aidan Gao", + "Alan Fu", + "Albert Jin", + "Alex Chen", + "Alexey Qian", + "Arvin Zhang", + "Bob Wang", + "Eric Jia", + "Harris Zhou", + "Hong Chao Fang", + "Jana Rogers", + "Jason Zhang", + "Jeff Zhang", + "Kiren Li", + "Leon Wang", + "Martin Zhen" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Disbelief Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Senior Programmers", + "names": [ + "Torin Wiebelt", + "Andrew Durnford" + ] + }, + { + "title": "Programmers", + "names": [ + "Eric Nguyen", + "Kainin Tankersley", + "Tanner Willis", + "Luke Mayo" + ] + }, + { + "title": "Producers", + "names": [ + "Robin Billadeau", + "Grue Robinson" + ] + }, + { + "title": "Associate Producer", + "names": [ + "Andrew Sharp" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Redlens Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Production Director", + "names": [ + "Allie Murdock" + ] + }, + { + "title": "Dev Lead", + "names": [ + "Arend Danielek" + ] + }, + { + "title": "Producer", + "names": [ + "Nova Barlow" + ] + }, + { + "title": "Tech Leads", + "names": [ + "Nathan Carlson", + "Ryan Edgemon" + ] + }, + { + "title": "Associate Tech Leads", + "names": [ + "André Tremblay", + "Kelby Lawson" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Ward", + "Alan Nelson", + "Alex Green", + "Alex Gregory", + "Anna Semenets", + "Christopher Kohnert", + "Dane Curbow", + "Dylan Washburne", + "Elgin Ciani", + "Sapphira Riza", + "Grant Wynn", + "Joshua Claeys", + "Kyle Schwaneke", + "Lorenzo DeMaine", + "Ryan Davison", + "Ryota Dan", + "Skyler Powers", + "Tim Royal", + "Tyler Perry", + "Zach Bowman", + "Zeke Lasater" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - SiProgs Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineer", + "names": [ + "Anton Mateasik" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Frantisek Beke", + "Marianna Sunova" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Skybox Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "", + "names": [ + "Ace Cheung", + "Adam Bryant", + "Adrian Smith", + "Alex MacKay", + "Alfonso Muñoz", + "Alina Varela", + "Amandeep Malhi", + "Ashlyn Gadow", + "Arta Seify", + "Blair Hitchens", + "Bren Lynne", + "Chander Siddarth", + "Chris Klassen", + "Dave MacLean", + "David Getley", + "Diana Jutras", + "Gabriel J. Gonzalez", + "Gary Shaw", + "Gary Texmo", + "Ghafur Remtulla", + "Graham Laverty", + "Gursaanj Singh Bajaj", + "Hiren Amin", + "Ilya Solnyshkin", + "Jagger Nast", + "Jason Allen", + "Jeffrey Yamasaki", + "Jesse Taylor", + "Jessica Muniz", + "Joel Stack", + "Jorge Amengol", + "Jordan Pongracz", + "Josue Pacheco", + "Jun Luo", + "Justin Moon", + "Keven Nguyen", + "Kevin Hsu", + "Kris Morness", + "Kyra Yung", + "Marc Faulise", + "Marcel Brake", + "Matheus Depra Gudergues", + "Matt Klassen", + "Mitch Armstrong", + "Mitch Dawdy", + "Oliver Cannon", + "Olivia Chung", + "Orhun Erkilic", + "Oscar Yang", + "Paul Baker", + "Pedro Kauti", + "Peter Martin", + "Peter Zhang", + "Pope Kim", + "Piotr Wiacek", + "Prithiraj Ghosh", + "Rex Bai", + "Rey Brassard", + "Rohit Moni", + "Sam Martens", + "Serge Lansiquot", + "Shaun Foley", + "Shiva Gupta", + "Sim Sahin", + "Simon Gleizes", + "Stefan Sarnev", + "Steven Wong", + "Thiago Braga", + "Tim Bruecker", + "Tim Hinds", + "Tina Dhaliwal", + "Tom Baird", + "Trevin Wong", + "Tyler Da Costa", + "Vivian Ortenzi", + "Yuri Fomenko", + "Zach Chan", + "Zike Wu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Virtuosity Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Game Developers", + "names": [ + "Aishwarya Jayabal", + "Janani Senrayaperumal", + "Maha Srinivasan", + "Packiyanath Sivathanu", + "Prabhu Venkatraman Iyer", + "Shagun Sharma Tamta", + "Shanmugam Sanjay", + "Sheena Mathew", + "Sriram Sreenivasan", + "Sumit Kumar Suman", + "Vivek Kumar", + "Jagannathan Mannu", + "Subramani Ramanathan" + ] + }, + { + "title": "Services Developers", + "names": [ + "Ganesh Sethy", + "Nandha Arulanandam", + "Barani Dharan", + "Brogan Irwin", + "Shanthi Kanchibhotla", + "Vasanth Kumar", + "Jake Van Hyning", + "Mahesh Kumar Badam Venkata" + ] + }, + { + "title": "Web Developers", + "names": [ + "Nazia Nazia", + "Sripriya Gunasekaran", + "Aravindan Aarumugam", + "Rakshith Murthy", + "Sumith Kumar", + "Uma Senthil Raj", + "Vignesh Masilamani", + "Arockia Stanly" + ] + }, + { + "title": "Producers", + "names": [ + "Swati S Thakar", + "Chokkalingam Ramu Kuppaswamy" + ] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/modules/meme_resourcepack/module_manifest.json b/modules/meme_resourcepack/module_manifest.json new file mode 100644 index 000000000..2870a1e61 --- /dev/null +++ b/modules/meme_resourcepack/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "meme_resourcepack", + "type": "resource", + "description": "游戏被我们搞蜂辣!!!(资源包本体)", + "author": ["梗体中文内容组"] +} diff --git a/modules/meme_resourcepack/pack.mcmeta b/modules/meme_resourcepack/pack.mcmeta new file mode 100644 index 000000000..8f212bee5 --- /dev/null +++ b/modules/meme_resourcepack/pack.mcmeta @@ -0,0 +1,61 @@ +{ + "pack": { + "pack_format": 15, + "description": "§e梗体中文亮瞎眼包!!!\n§3Release v1.9.0" + }, + "language": { + "zh_meme": { + "name": "§e梗体中文§r", + "region": "§c天朝§r", + "bidirectional": false + } + }, + "author": [ + "Lakejason0", + "Lxazl5770", + "Dianliang233", + "MysticNebula70", + "SkyEye_FAST", + "Huerdada", + "Lightyzhh", + "IcyPhantom", + "Kakagou12341", + "Gugle", + "ZCYF", + "XxLittleCxX", + "Determancer", + "Minecreeper86", + "theflysong", + "Zh9c418", + "45gfg9", + "Drlee_lihr", + "WTP016-CN", + "Light Beacon", + "CR-019", + "coldstarxuan", + "MiemieMethod", + "Other Minecraft Wiki (ZH) editors" + ], + "special_thanks": { + "Addonscommandresource": [ + { + "minecraft:trident": "The model in BE" + } + ], + "Blockbench": [ + { + "minecraft:totem_of_undying": "Model" + }, + { + "minecraft:brewing_stand": "Model" + } + ], + "Golden_eggs": [ + { + "minecraft:gui/title/mojangstudios": "Fonts" + } + ] + }, + "home": "https://github.com/Teahouse-Studios/mcwzh-meme-resourcepack", + "copyright": "This is Memified Chinese Resource Pack, a Teahouse Studios' Production. You may use, share and remix the pack under Creative Commons Attribution-ShareAlike 4.0 license. For the license's text, see LICENSE file in the pack. For further information, visit github.com/Teahouse-Studios.\n这里是梗体中文资源包,由茶馆工作室出品。您可以在遵守知识共享 署名-相同方式分享 4.0 协议的前提下使用,分享和演绎该资源包。关于协议文本,详见本资源包根目录下的LICENSE文件。更多信息详见 github.com/Teahouse-Studios。Github的拼写是G-I-T-H-U-B,Teahouse的拼写是T-E-A-H-O-U-S-E,Studios的拼写是S-T-U-D-I-O-S。" +} diff --git a/meme_resourcepack/pack.png b/modules/meme_resourcepack/pack.png similarity index 100% rename from meme_resourcepack/pack.png rename to modules/meme_resourcepack/pack.png diff --git a/modules/meme_splashes/assets/minecraft/texts/splashes.txt b/modules/meme_splashes/assets/minecraft/texts/splashes.txt index b1e53b1f4..8436b5b4e 100644 --- a/modules/meme_splashes/assets/minecraft/texts/splashes.txt +++ b/modules/meme_splashes/assets/minecraft/texts/splashes.txt @@ -1,5 +1,4 @@ 梗体中文,茶馆工作室荣誉出品 -BugJump出品 MINECRAFT 2077 Mojang SB 啊?你在干嘛? @@ -16,7 +15,6 @@ SSSSSSSSssssssssssss... Work As Intended 请使用获得更好的游戏体验 我蜂了,你也蜂了 -一起蜂,更精彩 你怕是要被夹 你不崩谁崩 你电脑的键盘自己在按命令 @@ -41,7 +39,6 @@ Jason—————————— 当心玄素夹你人(小声bb Windows Update已可用 培训班上完了? -D R O P While True: print('人类的本质是?') 你说是,那就是,不狡辩 认真你就输了 @@ -77,7 +74,7 @@ DAISUKE 逮虾户! 大家就当无事发生过 10年老玩家不请自来 -我有20铁你怕不怕? +我有20铁你怕不怕 为什么我的世界没有声音? 林地府邸一根棒 按Q释放剑气 @@ -95,6 +92,7 @@ s2s, ss2s 要 素 过 多 关掉,关掉,一定要关掉 好!很有精神! +唱、跳、RAP、篮球 我大E了啊,没有闪 年轻人不讲武德 我们遇到什么困难,也不要怕,微笑着面对他 @@ -104,8 +102,8 @@ s2s, ss2s 我了解MC就好像创世神一样 害怕(MC限定) 在虚构的故事当中寻求真实感的人脑袋一定有问题 -NMD,为什么 -MD,绝了 +你妈的,为什么 +妈的,绝了 呐呐呐呐呐呐呐呐呐呐呐呐呐呐呐呐呐呐呐呐 丝滑顺畅 不是Bug是特性 @@ -120,7 +118,7 @@ MD,绝了 红石的时序如此疯狂! Minecraft Wiki! Look mum, I'm in a splash! -还是要从袁隆平说起 +还是吃的太饱了 N B T 突 变 暴徒产卵末地棒,导管炖肉直放站 你又好了? @@ -143,10 +141,6 @@ sqrt(-1) love you! 比 博 燃 别杀怪物,你这个海豚! 五千兆円欲しい! -上了证人席还想跑? -禁止在法庭上使用魔法 -異議あり! -GET CHINESE MEMIFIED LOL 打五把CSGO 两 只 老 虎 爱 跳 舞 ~ 基泥苔煤 @@ -170,7 +164,6 @@ Duang~ 蛋糕是个谎言 老千层饼了 我去年买了个表 -我,茶馆工作室,打钱 下次一定 此面向敌 毫无PS痕迹 @@ -187,16 +180,15 @@ CPU和处理器不是同一个东西吗 QQㄋㄟㄋㄟ好喝到咩噗茶 全 域 封 锁 Never gonna give you up +You know the rules and so do I ギリギリ愛~ キリキリ舞い~ Girigiri eye!!Kirikiri mind!! -本资源包由IndiHome paket Phoenix赞助 R U winning son? 你可真是个小天才 哪里不会点哪里 -你听听你这说的是人话吗 -汝聞,人言否? +你听听你这说的是人话吗? 力微,飯否? -打开了但是没完全打开 +打开了 但是没完全打开 异世相遇尽享美味 开玩笑,我超勇的好不好! 死了啦,都是你害的啦,拜托 @@ -207,6 +199,7 @@ R U winning son? 没有那种世俗的欲望 什么是快乐星球? LaTeX≠Latex +江南皮革厂倒闭了! 我从未见过有如此厚颜无耻之人 丞相何故发笑 扎心了老铁 @@ -215,9 +208,8 @@ LaTeX≠Latex 踢牙老奶奶 你是GG还是MM? 卜楆迷戀哥,哥隻肆箇伝裞 -你说的那个朋友是不是你 +你说的那个朋友是不是你自己 阁下何不随风起,扶摇直上三万里 -[§9§n来源请求§r] 锟斤拷锟斤拷锟斤拷 卑鄙的两格人 挖三填一 @@ -240,5 +232,196 @@ MicroComputer也是MC! 万物皆有灵,蚊子除外 人被杀就会死 君日本語本当上手 -我去,初音未来! +我去!初音未来! 在一起叫锰~分开了叫铜~ +可爱的羊巴鲁 +雷军!金凡! +MJ你又在水版本了 +铬,柠檬酸锂 +朝你大胯捏一把 +钝角 +去码头整点薯条 +啊,怎么会呢 +我将以高达形态出击 +阿姨停电了 +晒足180天 +青莲地心火 +人不行,别怪路不平 +这位更是重量级 +违背祖宗的决定 +太好听了⑧ +啊对对对 +我向往自由 我要谈恋爱 +这里的水很深,你把握不住 +吃个桃桃 +干净又卫生 +也试试《生草纹理包》吧 +有句老话说得好:咻咻咻 +哈哈!鸡汤来喽! +涙はお前にゃ似合わない! +刹车,并猛打方向 +虎 虎 马 虎马 +如虎 如虎 如虎添翼 +已加入XGP套餐 +不可发送单个标点符号 +Deep♂Dark实验快照 +一周上了23个课外班 +郊狼开到最大( +铜镍合金带点铅 +我们的游戏正在蒸蒸日上 +世界线收束 +我们都有光明的前途 +她逃 他追 他们都插翅难飞 +原作:石ノ森章太郎 +助力每一个梦想 +为菈妮,我变成狼人模样 +黄 金 坠 落 震 击 +前面需要巨人,但是洞穴 +菈妮!菈妮!菈妮! +死去的网络梗突然开始攻击我 +发生什么事了? +大的要来了 +这是可以说的吗 +†升天† +EMOTIONAL DAMAGE +瓣B变巨肚 +太棒了,我逐渐理解一切 +正确的,直接的,中肯的,客观的 +没活可以咬打火机 +没有梗可以不发 +住手!你们住手!不要再打了! +你没事吧 +我年纪轻轻工资就达到了3200一个月 +人类的悲欢并不相通 +防止小孩误食 +抛开事实不谈 +糟了我成替身了 +你能再表演一下那个吗? +为什么你这么熟练啊? +是洋葱!我加了洋葱! +那一刻,他变成了光 +哇!金色传说! +住在山里真不错 +妙啊 +阿珍爱上了阿强 +天空是蔚蓝色 窗外有千纸鹤 +星际不能免费 +其他人做得到吗 +你所热爱的,就是你的生活 +不要妨碍叔叔赚钱 +你搁这搁这呢 +属于是属于是了属于是 +我的低调不是你们装B的资本 +叁叁柒捌肆伍捌幺捌 +中小学生禁止饮用纯净水 +脸都不要了 +勇敢勇敢我的朋友 +我在大润发杀了十年的鱼 +拿来吧你 +敌羞吾去脱她衣 +一旦接受了这种设定 +建议拉去通渠 +罗老师别这样 +到二仙桥走成华大道 +我是学生 能送我吗 +我去,是吴奇隆 +我能吞下玻璃而不伤身体 +太美丽了理塘,哎呀这不丁真吗 +地狱绘图 +退!退!退! +怎么会是呢 +怎么不算呢 +被绑架了就眨眨眼睛 +幻塔,。 +快住手啊!这根本不是二创 +你去寒武纪抓条鱼说不定它都认识 +PHP是世界上最好的语言 +轻轻敲醒沉睡的心灵 +你了不起你清高 +小孩幼稚 大人刚好 +活整的挺好,下次不许再整了 +非常好工作,爱来自瓷器 +坐和放宽 +听君一席话,如听一席话 +Technoblade never dies +一核有难,八核围观 +rm -rf /* +神马都是浮云 +让子弹飞一会儿 +索尼罪大滔天,搞到百姓怨声载道 +水是剧毒的 +海記憶體知己 +对三 要不起 +原来你也玩〇神 +快闪开我按错了 +我们有强大的后勤系统 +该来的总会来的 +原始床上大战 +自古起床先灭黄,黄队不灭三队亡 +大炮做好了不在这放珍珠是什么意思 +这玩意比魔杖好用多了 +嘎嘣脆鸡肉味 +穿山甲到底说了什么 +半场开香槟 +英雄可以受委屈,但是你不能踩我的切尔西 +蓝色妖姬,红色风暴,黄色预警! +ǝuoqɹǝuuᴉp +梗體中文のに駆ける +BUG、襲来 +missingno +SUS +你说更新 我都觉得有些好笑 +1970-1-1 +按alt-f4 +你在玩一种很新的东西 +无所谓,我会出手 +疯狂星期四V我50 +单走一个6 +背后的原因让人三级烧伤 +你这燕国地图也太短了吧 +梭哈是一种智慧 +这个互联网上没有你在意的人了吗 +再晚去医院两分钟,这病就好了 +我没有惹你们任何人 +我知道你很急,但你先别急 +他一拳就打到我的上巴 +暴雪压塌养猪场 +4128小时! +足球反着买,别墅靠大海 +给你俩窝窝! +妈妈生的 +卧槽满屏幕片假名鬼看得懂啊 +历史总是惊人地相似 +听懂掌声 +拳打南山敬老院,脚踢北海幼儿园 +我还没出力,你就倒下了 +这个时候应该@梗体中文内容组 +看来你不懂生命的可贵 +没时间解释了,快上车! +你知道的太多了 +人在家中坐,锅从天上来 +有奇怪的东西混进去了 +遇事不决,量子力学 +小朋友,你是否有很多问号 +无敌是多么寂寞 +正道的光,照在了大地上 +乆 +四舍五入就是一个亿 +个个都是人才,说话又好听 +已经出现人传人现象 +他一拳就打到我的上巴 +一家人最重要的是整整齐齐 +说出你的故事 +不能同意更多 +你们对力量一无所知 +不好看,在电影院里睡了3个小时 +朱重八正在游玩:九族连连看 +高端的食材,往往只需要采用最朴素的烹饪方式 +Not VANILLA! +Too VANILLA! +《逃离出生点》今晚上映 +腐竹切生存啊 +如何评价? +我只能说,我能说的 +有没有一种可能? +你他娘的还真是个人才 diff --git a/modules/meme_splashes/module_manifest.json b/modules/meme_splashes/module_manifest.json index 366431c75..d93969bfe 100644 --- a/modules/meme_splashes/module_manifest.json +++ b/modules/meme_splashes/module_manifest.json @@ -2,10 +2,5 @@ "name": "meme_splashes", "type": "resource", "description": "闪烁标语", - "author": [ - "梗体中文内容组" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["梗体中文内容组"] +} diff --git a/modules/miku_bucket/add.json b/modules/miku_bucket/add.json new file mode 100644 index 000000000..33ea40e35 --- /dev/null +++ b/modules/miku_bucket/add.json @@ -0,0 +1,4 @@ +{ + "advancements.husbandry.tadpole_in_a_bucket.title": "我去,初音未来!", + "item.minecraft.tadpole_bucket": "初音未来铁桶" +} diff --git a/modules/miku_bucket/assets/minecraft/textures/item/tadpole_bucket.png b/modules/miku_bucket/assets/minecraft/textures/item/tadpole_bucket.png new file mode 100644 index 000000000..00cc02f12 Binary files /dev/null and b/modules/miku_bucket/assets/minecraft/textures/item/tadpole_bucket.png differ diff --git a/modules/miku_bucket/module_manifest.json b/modules/miku_bucket/module_manifest.json new file mode 100644 index 000000000..3f26a3d4f --- /dev/null +++ b/modules/miku_bucket/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "miku_bucket", + "type": "resource", + "description": "我去!桶装初音未来!", + "author": ["LSoda"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/minecart_helmet/module_manifest.json b/modules/minecart_helmet/module_manifest.json index 1d79fad41..bf23b69c0 100644 --- a/modules/minecart_helmet/module_manifest.json +++ b/modules/minecart_helmet/module_manifest.json @@ -2,11 +2,11 @@ "name": "minecart_helmet", "type": "resource", "description": "?你怎么把矿车倒过来了", - "author": [ - "Light Beacon" - ], - "classifier": [ - "modified_resource", - "modified_language" + "author": ["最亮的信标"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/default.json b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/default.json new file mode 100644 index 000000000..e1d567946 --- /dev/null +++ b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/default.json @@ -0,0 +1,3726 @@ +{ + "providers": [ + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9fd0.png", + "ascent": 7, + "chars": [ + "\u9fd0" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9fec.png", + "ascent": 7, + "chars": [ + "\u9fec" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9fed.png", + "ascent": 7, + "chars": [ + "\u9fed" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9ff2.png", + "ascent": 7, + "chars": [ + "\u9ff2" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9ff3.png", + "ascent": 7, + "chars": [ + "\u9ff3" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9ff7.png", + "ascent": 7, + "chars": [ + "\u9ff7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9ff8.png", + "ascent": 7, + "chars": [ + "\u9ff8" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9ffd.png", + "ascent": 7, + "chars": [ + "\u9ffd" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-supp-9ffe.png", + "ascent": 7, + "chars": [ + "\u9ffe" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30ede.png", + "ascent": 7, + "chars": [ + "\uD883\uDEDE" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30edd.png", + "ascent": 7, + "chars": [ + "\uD883\uDEDD" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-210bf.png", + "ascent": 7, + "chars": [ + "\uD844\uDCBF" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25e49.png", + "ascent": 7, + "chars": [ + "\uD857\uDE49" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c317.png", + "ascent": 7, + "chars": [ + "\uD870\uDF17" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29f7e.png", + "ascent": 7, + "chars": [ + "\uD867\uDF7E" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29f8c.png", + "ascent": 7, + "chars": [ + "\uD86C\uDF8C" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ba98.png", + "ascent": 7, + "chars": [ + "\uD86E\uDE98" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29dd5.png", + "ascent": 7, + "chars": [ + "\uD867\uDDD5" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a83d.png", + "ascent": 7, + "chars": [ + "\uD86A\uDC3D" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c58b.png", + "ascent": 7, + "chars": [ + "\uD871\uDD8B" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b4e7.png", + "ascent": 7, + "chars": [ + "\uD86D\uDCE7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b7f7.png", + "ascent": 7, + "chars": [ + "\uD86D\uDFF7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b7fc.png", + "ascent": 7, + "chars": [ + "\uD86D\uDFFC" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb2d.png", + "ascent": 7, + "chars": [ + "\uD872\uDF2D" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb3b.png", + "ascent": 7, + "chars": [ + "\uD872\uDF3B" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb4a.png", + "ascent": 7, + "chars": [ + "\uD872\uDF4A" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb5b.png", + "ascent": 7, + "chars": [ + "\uD872\uDF5B" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb73.png", + "ascent": 7, + "chars": [ + "\uD872\uDF73" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb76.png", + "ascent": 7, + "chars": [ + "\uD872\uDF76" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28a0f.png", + "ascent": 7, + "chars": [ + "\uD862\uDE0F" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28b4e.png", + "ascent": 7, + "chars": [ + "\uD862\uDF4E" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28b46.png", + "ascent": 7, + "chars": [ + "\uD862\uDF46" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-289c0.png", + "ascent": 7, + "chars": [ + "\uD862\uDDC0" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20087.png", + "ascent": 7, + "chars": [ + "\uD840\uDC87" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20089.png", + "ascent": 7, + "chars": [ + "\uD840\uDC89" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-200cc.png", + "ascent": 7, + "chars": [ + "\uD840\uDCCC" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20164.png", + "ascent": 7, + "chars": [ + "\uD840\uDD64" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20628.png", + "ascent": 7, + "chars": [ + "\uD841\uDE28" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20676.png", + "ascent": 7, + "chars": [ + "\uD841\uDE76" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20cd0.png", + "ascent": 7, + "chars": [ + "\uD843\uDCD0" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2139a.png", + "ascent": 7, + "chars": [ + "\uD844\uDF9A" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21413.png", + "ascent": 7, + "chars": [ + "\uD845\uDC13" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-215d7.png", + "ascent": 7, + "chars": [ + "\uD845\uDDD7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2298f.png", + "ascent": 7, + "chars": [ + "\uD84A\uDD8F" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-235cb.png", + "ascent": 7, + "chars": [ + "\uD84D\uDDCB" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23c97.png", + "ascent": 7, + "chars": [ + "\uD84F\uDC97" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23c98.png", + "ascent": 7, + "chars": [ + "\uD84F\uDC98" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23e23.png", + "ascent": 7, + "chars": [ + "\uD84F\uDE23" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-241fe.png", + "ascent": 7, + "chars": [ + "\uD850\uDDFE" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2420e.png", + "ascent": 7, + "chars": [ + "\uD850\uDE0E" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-248e9.png", + "ascent": 7, + "chars": [ + "\uD852\uDCE9" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-249db.png", + "ascent": 7, + "chars": [ + "\uD852\uDDDB" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24a01.png", + "ascent": 7, + "chars": [ + "\uD852\uDE01" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24a7d.png", + "ascent": 7, + "chars": [ + "\uD852\uDE7D" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24ac9.png", + "ascent": 7, + "chars": [ + "\uD852\uDEC9" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25532.png", + "ascent": 7, + "chars": [ + "\uD855\uDD32" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25562.png", + "ascent": 7, + "chars": [ + "\uD855\uDD62" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-255a8.png", + "ascent": 7, + "chars": [ + "\uD855\uDDA8" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25ad7.png", + "ascent": 7, + "chars": [ + "\uD856\uDED7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25ed7.png", + "ascent": 7, + "chars": [ + "\uD857\uDED7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26221.png", + "ascent": 7, + "chars": [ + "\uD858\uDE21" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2648d.png", + "ascent": 7, + "chars": [ + "\uD859\uDC8D" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26676.png", + "ascent": 7, + "chars": [ + "\uD859\uDE76" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2677c.png", + "ascent": 7, + "chars": [ + "\uD859\uDF7C" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26951.png", + "ascent": 7, + "chars": [ + "\uD85A\uDD51" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26b5c.png", + "ascent": 7, + "chars": [ + "\uD85A\uDF5C" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26c21.png", + "ascent": 7, + "chars": [ + "\uD85B\uDC21" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-278b2.png", + "ascent": 7, + "chars": [ + "\uD85E\uDCB2" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27eaf.png", + "ascent": 7, + "chars": [ + "\uD85F\uDEAF" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27fb7.png", + "ascent": 7, + "chars": [ + "\uD85F\uDFB7" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27ff9.png", + "ascent": 7, + "chars": [ + "\uD85F\uDFF9" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28408.png", + "ascent": 7, + "chars": [ + "\uD861\uDC08" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28678.png", + "ascent": 7, + "chars": [ + "\uD861\uDE78" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28695.png", + "ascent": 7, + "chars": [ + "\uD861\uDE95" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-287e0.png", + "ascent": 7, + "chars": [ + "\uD861\uDFE0" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28b49.png", + "ascent": 7, + "chars": [ + "\uD862\uDF49" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c47.png", + "ascent": 7, + "chars": [ + "\uD863\uDC47" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c4f.png", + "ascent": 7, + "chars": [ + "\uD863\uDC4F" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c51.png", + "ascent": 7, + "chars": [ + "\uD863\uDC51" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c54.png", + "ascent": 7, + "chars": [ + "\uD863\uDC54" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28e0f.png", + "ascent": 7, + "chars": [ + "\uD863\uDE0F" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28e99.png", + "ascent": 7, + "chars": [ + "\uD863\uDE99" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2967f.png", + "ascent": 7, + "chars": [ + "\uD865\uDE7F" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29810.png", + "ascent": 7, + "chars": [ + "\uD866\uDC10" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29f83.png", + "ascent": 7, + "chars": [ + "\uD867\uDF83" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2d544.png", + "ascent": 7, + "chars": ["\uD875\uDD44"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2f884.png", + "ascent": 7, + "chars": ["\uD87E\uDC84"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2f8b6.png", + "ascent": 7, + "chars": ["\uD87E\uDCB6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3106c.png", + "ascent": 7, + "chars": ["\uD884\uDC6C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b7a9.png", + "ascent": 7, + "chars": ["\uD86D\uDFA9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b7c5.png", + "ascent": 7, + "chars": ["\uD86D\uDFC5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b7e6.png", + "ascent": 7, + "chars": ["\uD86D\uDFE6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b7f9.png", + "ascent": 7, + "chars": ["\uD86D\uDFF9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b806.png", + "ascent": 7, + "chars": ["\uD86E\uDC06"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a7dd.png", + "ascent": 7, + "chars": ["\uD869\uDFDD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a8fb.png", + "ascent": 7, + "chars": ["\uD86A\uDCFB"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a917.png", + "ascent": 7, + "chars": ["\uD86A\uDD17"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2aa30.png", + "ascent": 7, + "chars": ["\uD86A\uDE30"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2aa36.png", + "ascent": 7, + "chars": ["\uD86A\uDE36"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2aa58.png", + "ascent": 7, + "chars": ["\uD86A\uDE58"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2afa2.png", + "ascent": 7, + "chars": ["\uD86B\uDFA2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b127.png", + "ascent": 7, + "chars": ["\uD86C\uDD27"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b128.png", + "ascent": 7, + "chars": ["\uD86C\uDD28"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b137.png", + "ascent": 7, + "chars": ["\uD86C\uDD37"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b138.png", + "ascent": 7, + "chars": ["\uD86C\uDD38"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b1ed.png", + "ascent": 7, + "chars": ["\uD86C\uDDED"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b300.png", + "ascent": 7, + "chars": ["\uD86C\uDF00"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b363.png", + "ascent": 7, + "chars": ["\uD86C\uDF63"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b36f.png", + "ascent": 7, + "chars": ["\uD86C\uDF6F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b372.png", + "ascent": 7, + "chars": ["\uD86C\uDF72"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b37d.png", + "ascent": 7, + "chars": ["\uD86C\uDF7D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b404.png", + "ascent": 7, + "chars": ["\uD86D\uDC04"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b410.png", + "ascent": 7, + "chars": ["\uD86D\uDC10"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b413.png", + "ascent": 7, + "chars": ["\uD86D\uDC13"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b461.png", + "ascent": 7, + "chars": ["\uD86D\uDC61"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b4ef.png", + "ascent": 7, + "chars": ["\uD86D\uDCEF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b4f6.png", + "ascent": 7, + "chars": ["\uD86D\uDCF6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b4f9.png", + "ascent": 7, + "chars": ["\uD86D\uDCF9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b50d.png", + "ascent": 7, + "chars": ["\uD86D\uDD0D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b50e.png", + "ascent": 7, + "chars": ["\uD86D\uDD0E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b536.png", + "ascent": 7, + "chars": ["\uD86D\uDD36"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5ae.png", + "ascent": 7, + "chars": ["\uD86D\uDDAE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5af.png", + "ascent": 7, + "chars": ["\uD86D\uDDAF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5b3.png", + "ascent": 7, + "chars": ["\uD86D\uDDB3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5e7.png", + "ascent": 7, + "chars": ["\uD86D\uDDE7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5f4.png", + "ascent": 7, + "chars": ["\uD86D\uDDF4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b61c.png", + "ascent": 7, + "chars": ["\uD86D\uDE1C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b61d.png", + "ascent": 7, + "chars": ["\uD86D\uDE1D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b626.png", + "ascent": 7, + "chars": ["\uD86D\uDE26"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b627.png", + "ascent": 7, + "chars": ["\uD86D\uDE27"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b628.png", + "ascent": 7, + "chars": ["\uD86D\uDE28"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b62a.png", + "ascent": 7, + "chars": ["\uD86D\uDE2A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b62c.png", + "ascent": 7, + "chars": ["\uD86D\uDE2C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b695.png", + "ascent": 7, + "chars": ["\uD86D\uDE95"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b696.png", + "ascent": 7, + "chars": ["\uD86D\uDE96"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b6ad.png", + "ascent": 7, + "chars": ["\uD86D\uDEAD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b6ed.png", + "ascent": 7, + "chars": ["\uD86D\uDEED"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2d382.png", + "ascent": 7, + "chars": ["\uD874\uDF82"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b8b8.png", + "ascent": 7, + "chars": ["\uD86E\uDCB8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bac7.png", + "ascent": 7, + "chars": ["\uD86E\uDEC7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bb5f.png", + "ascent": 7, + "chars": ["\uD86E\uDF5F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bb62.png", + "ascent": 7, + "chars": ["\uD86E\uDF62"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bb7c.png", + "ascent": 7, + "chars": ["\uD86E\uDF7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bb83.png", + "ascent": 7, + "chars": ["\uD86E\uDF83"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bc1b.png", + "ascent": 7, + "chars": ["\uD86F\uDC1B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bd77.png", + "ascent": 7, + "chars": ["\uD86F\uDD77"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bd87.png", + "ascent": 7, + "chars": ["\uD86F\uDD87"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bdf7.png", + "ascent": 7, + "chars": ["\uD86F\uDDF7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2be29.png", + "ascent": 7, + "chars": ["\uD86F\uDE29"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c029.png", + "ascent": 7, + "chars": ["\uD870\uDC29"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c02a.png", + "ascent": 7, + "chars": ["\uD870\uDC2A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c0a9.png", + "ascent": 7, + "chars": ["\uD870\uDCA9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c0ca.png", + "ascent": 7, + "chars": ["\uD870\uDCCA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c1d5.png", + "ascent": 7, + "chars": ["\uD870\uDDD5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c1d9.png", + "ascent": 7, + "chars": ["\uD870\uDDD9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c1f9.png", + "ascent": 7, + "chars": ["\uD870\uDDF9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c27c.png", + "ascent": 7, + "chars": ["\uD870\uDE7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c288.png", + "ascent": 7, + "chars": ["\uD870\uDE88"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c2a4.png", + "ascent": 7, + "chars": ["\uD870\uDEA4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c35b.png", + "ascent": 7, + "chars": ["\uD870\uDF5B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c361.png", + "ascent": 7, + "chars": ["\uD870\uDF61"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c364.png", + "ascent": 7, + "chars": ["\uD870\uDF64"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c488.png", + "ascent": 7, + "chars": ["\uD871\uDC88"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c494.png", + "ascent": 7, + "chars": ["\uD871\uDC94"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c497.png", + "ascent": 7, + "chars": ["\uD871\uDC97"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c542.png", + "ascent": 7, + "chars": ["\uD871\uDD42"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c613.png", + "ascent": 7, + "chars": ["\uD871\uDE13"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c618.png", + "ascent": 7, + "chars": ["\uD871\uDE18"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c621.png", + "ascent": 7, + "chars": ["\uD871\uDE21"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c629.png", + "ascent": 7, + "chars": ["\uD871\uDE29"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c62b.png", + "ascent": 7, + "chars": ["\uD871\uDE2B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c62c.png", + "ascent": 7, + "chars": ["\uD871\uDE2C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c62d.png", + "ascent": 7, + "chars": ["\uD871\uDE2D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c62f.png", + "ascent": 7, + "chars": ["\uD871\uDE2F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c642.png", + "ascent": 7, + "chars": ["\uD871\uDE42"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c64a.png", + "ascent": 7, + "chars": ["\uD871\uDE4A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c64b.png", + "ascent": 7, + "chars": ["\uD871\uDE4B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c72c.png", + "ascent": 7, + "chars": ["\uD871\uDF2C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c72f.png", + "ascent": 7, + "chars": ["\uD871\uDF2F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c79f.png", + "ascent": 7, + "chars": ["\uD871\uDF9F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c7c1.png", + "ascent": 7, + "chars": ["\uD871\uDFC1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c7fd.png", + "ascent": 7, + "chars": ["\uD871\uDFFD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c8d9.png", + "ascent": 7, + "chars": ["\uD872\uDCD9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c8de.png", + "ascent": 7, + "chars": ["\uD872\uDCDE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c8e1.png", + "ascent": 7, + "chars": ["\uD872\uDCE1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c8f3.png", + "ascent": 7, + "chars": ["\uD872\uDCF3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c907.png", + "ascent": 7, + "chars": ["\uD872\uDD07"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c90a.png", + "ascent": 7, + "chars": ["\uD872\uDD0A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c91d.png", + "ascent": 7, + "chars": ["\uD872\uDD1D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ca0e.png", + "ascent": 7, + "chars": ["\uD872\uDE0E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ca7d.png", + "ascent": 7, + "chars": ["\uD872\uDE7D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2caa9.png", + "ascent": 7, + "chars": ["\uD872\uDEA9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ca02.png", + "ascent": 7, + "chars": ["\uD872\uDE02"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb29.png", + "ascent": 7, + "chars": ["\uD872\uDF29"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb2e.png", + "ascent": 7, + "chars": ["\uD872\uDF2E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb31.png", + "ascent": 7, + "chars": ["\uD872\uDF31"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb38.png", + "ascent": 7, + "chars": ["\uD872\uDF38"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb39.png", + "ascent": 7, + "chars": ["\uD872\uDF39"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb3f.png", + "ascent": 7, + "chars": ["\uD872\uDF3F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb41.png", + "ascent": 7, + "chars": ["\uD872\uDF41"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb4e.png", + "ascent": 7, + "chars": ["\uD872\uDF4E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb5a.png", + "ascent": 7, + "chars": ["\uD872\uDF5A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb64.png", + "ascent": 7, + "chars": ["\uD872\uDF64"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb69.png", + "ascent": 7, + "chars": ["\uD872\uDF69"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb6c.png", + "ascent": 7, + "chars": ["\uD872\uDF6C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb6f.png", + "ascent": 7, + "chars": ["\uD872\uDF6F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb78.png", + "ascent": 7, + "chars": ["\uD872\uDF78"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb7c.png", + "ascent": 7, + "chars": ["\uD872\uDF7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cbb1.png", + "ascent": 7, + "chars": ["\uD872\uDFB1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cbbf.png", + "ascent": 7, + "chars": ["\uD872\uDFBF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cbc0.png", + "ascent": 7, + "chars": ["\uD872\uDFC0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cbce.png", + "ascent": 7, + "chars": ["\uD872\uDFCE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce7c.png", + "ascent": 7, + "chars": ["\uD873\uDE7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cc56.png", + "ascent": 7, + "chars": ["\uD873\uDC56"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cc5f.png", + "ascent": 7, + "chars": ["\uD873\uDC5F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccf5.png", + "ascent": 7, + "chars": ["\uD873\uDCF5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccf6.png", + "ascent": 7, + "chars": ["\uD873\uDCF6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccfd.png", + "ascent": 7, + "chars": ["\uD873\uDCFD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccff.png", + "ascent": 7, + "chars": ["\uD873\uDCFF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd02.png", + "ascent": 7, + "chars": ["\uD873\uDD02"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd03.png", + "ascent": 7, + "chars": ["\uD873\uDD03"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd0a.png", + "ascent": 7, + "chars": ["\uD873\uDD0A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd8b.png", + "ascent": 7, + "chars": ["\uD873\uDD8B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd8d.png", + "ascent": 7, + "chars": ["\uD873\uDD8D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd8f.png", + "ascent": 7, + "chars": ["\uD873\uDD8F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd90.png", + "ascent": 7, + "chars": ["\uD873\uDD90"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd9f.png", + "ascent": 7, + "chars": ["\uD873\uDD9F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cda0.png", + "ascent": 7, + "chars": ["\uD873\uDDA0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cda8.png", + "ascent": 7, + "chars": ["\uD873\uDDA8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cdad.png", + "ascent": 7, + "chars": ["\uD873\uDDAD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cdae.png", + "ascent": 7, + "chars": ["\uD873\uDDAE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cdd5.png", + "ascent": 7, + "chars": ["\uD873\uDDD5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce18.png", + "ascent": 7, + "chars": ["\uD873\uDE18"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce1a.png", + "ascent": 7, + "chars": ["\uD873\uDE1A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce23.png", + "ascent": 7, + "chars": ["\uD873\uDE23"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce26.png", + "ascent": 7, + "chars": ["\uD873\uDE26"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce2a.png", + "ascent": 7, + "chars": ["\uD873\uDE2A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce88.png", + "ascent": 7, + "chars": ["\uD873\uDE88"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce93.png", + "ascent": 7, + "chars": ["\uD873\uDE93"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b80a.png", + "ascent": 7, + "chars": ["\uD86E\uDC0A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b81c.png", + "ascent": 7, + "chars": ["\uD86E\uDC1C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21484.png", + "ascent": 7, + "chars": ["\uD845\uDC84"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-216df.png", + "ascent": 7, + "chars": ["\uD845\uDEDF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22650.png", + "ascent": 7, + "chars": ["\uD849\uDE50"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25128.png", + "ascent": 7, + "chars": ["\uD854\uDD28"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-263f4.png", + "ascent": 7, + "chars": ["\uD858\uDFF4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26a29.png", + "ascent": 7, + "chars": ["\uD85A\uDE29"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26abd.png", + "ascent": 7, + "chars": ["\uD85A\uDEBD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b362.png", + "ascent": 7, + "chars": ["\uD86C\uDF62"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b694.png", + "ascent": 7, + "chars": ["\uD86D\uDE94"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b6da.png", + "ascent": 7, + "chars": ["\uD86D\uDEDA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ba81.png", + "ascent": 7, + "chars": ["\uD86E\uDE81"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bd58.png", + "ascent": 7, + "chars": ["\uD86F\uDD58"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bf1d.png", + "ascent": 7, + "chars": ["\uD86F\uDF1D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c635.png", + "ascent": 7, + "chars": ["\uD871\uDE35"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccbd.png", + "ascent": 7, + "chars": ["\uD873\uDCBD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-307d8.png", + "ascent": 7, + "chars": ["\uD881\uDFD8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30bfc.png", + "ascent": 7, + "chars": ["\uD882\uDFFC"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-310ea.png", + "ascent": 7, + "chars": ["\uD884\uDCEA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-32217.png", + "ascent": 7, + "chars": ["\uD888\uDE17"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22489.png", + "ascent": 7, + "chars": ["\uD849\uDC89"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22acf.png", + "ascent": 7, + "chars": ["\uD84A\uDECF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26ed8.png", + "ascent": 7, + "chars": ["\uD85B\uDED8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-270f0.png", + "ascent": 7, + "chars": ["\uD85C\uDCF0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27741.png", + "ascent": 7, + "chars": ["\uD85D\uDF41"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b692.png", + "ascent": 7, + "chars": ["\uD86D\uDE92"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b6de.png", + "ascent": 7, + "chars": ["\uD86D\uDEDE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b6f6.png", + "ascent": 7, + "chars": ["\uD86D\uDEF6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bb37.png", + "ascent": 7, + "chars": ["\uD86E\uDF37"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bd7c.png", + "ascent": 7, + "chars": ["\uD86F\uDD7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2d25d.png", + "ascent": 7, + "chars": ["\uD874\uDE5D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e428.png", + "ascent": 7, + "chars": ["\uD879\uDC28"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e502.png", + "ascent": 7, + "chars": ["\uD879\uDD02"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e8f2.png", + "ascent": 7, + "chars": ["\uD87A\uDCF2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ebd9.png", + "ascent": 7, + "chars": ["\uD87A\uDFD9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31254.png", + "ascent": 7, + "chars": ["\uD884\uDE54"] + },{ + "type": "bitmap", + "file": "minecraft:font/character-23b72.png", + "ascent": 7, + "chars": ["\uD84E\uDF72"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-241a2.png", + "ascent": 7, + "chars": ["\uD850\uDDA2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25be8.png", + "ascent": 7, + "chars": ["\uD856\uDFE8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29f87.png", + "ascent": 7, + "chars": ["\uD867\uDF87"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a838.png", + "ascent": 7, + "chars": ["\uD86A\uDC38"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b624.png", + "ascent": 7, + "chars": ["\uD86D\uDE24"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c8c0.png", + "ascent": 7, + "chars": ["\uD872\uDCC0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e26c.png", + "ascent": 7, + "chars": ["\uD878\uDE6C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30858.png", + "ascent": 7, + "chars": ["\uD882\uDC58"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30abf.png", + "ascent": 7, + "chars": ["\uD882\uDEBF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30c72.png", + "ascent": 7, + "chars": ["\uD883\uDC72"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30d5e.png", + "ascent": 7, + "chars": ["\uD883\uDD5E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30fa0.png", + "ascent": 7, + "chars": ["\uD883\uDFA0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-310a9.png", + "ascent": 7, + "chars": ["\uD884\uDCA9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3132e.png", + "ascent": 7, + "chars": ["\uD884\uDF2E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-313bc.png", + "ascent": 7, + "chars": ["\uD884\uDFBC"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3158e.png", + "ascent": 7, + "chars": ["\uD885\uDD8E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3237f.png", + "ascent": 7, + "chars": ["\uD888\uDF7F"] + },{ + "type": "bitmap", + "file": "minecraft:font/character-20f90.png", + "ascent": 7, + "chars": ["\uD843\uDF90"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26393.png", + "ascent": 7, + "chars": ["\uD858\uDF93"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2925c.png", + "ascent": 7, + "chars": ["\uD864\uDE5C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b2bb.png", + "ascent": 7, + "chars": ["\uD86C\uDEBB"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b6e9.png", + "ascent": 7, + "chars": ["\uD86D\uDEE9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ba5b.png", + "ascent": 7, + "chars": ["\uD86E\uDE5B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c88a.png", + "ascent": 7, + "chars": ["\uD872\uDC8A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c9c0.png", + "ascent": 7, + "chars": ["\uD872\uDDC0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cba4.png", + "ascent": 7, + "chars": ["\uD872\uDFA4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e779.png", + "ascent": 7, + "chars": ["\uD879\uDF79"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30d7c.png", + "ascent": 7, + "chars": ["\uD883\uDD7C"] + },{ + "type": "bitmap", + "file": "minecraft:font/character-201ad.png", + "ascent": 7, + "chars": ["\uD840\uDDAD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20547.png", + "ascent": 7, + "chars": ["\uD841\uDD47"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-211a2.png", + "ascent": 7, + "chars": ["\uD844\uDDA2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21377.png", + "ascent": 7, + "chars": ["\uD844\uDF77"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-213cb.png", + "ascent": 7, + "chars": ["\uD844\uDFCB"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-216f0.png", + "ascent": 7, + "chars": ["\uD845\uDEF0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21e8e.png", + "ascent": 7, + "chars": ["\uD847\uDE8E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23e24.png", + "ascent": 7, + "chars": ["\uD84F\uDE24"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24be5.png", + "ascent": 7, + "chars": ["\uD852\uDFE5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25273.png", + "ascent": 7, + "chars": ["\uD854\uDE73"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26b4c.png", + "ascent": 7, + "chars": ["\uD85A\uDF4C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26e57.png", + "ascent": 7, + "chars": ["\uD85B\uDE57"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27285.png", + "ascent": 7, + "chars": ["\uD85C\uDE85"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-280c5.png", + "ascent": 7, + "chars": ["\uD860\uDCC5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29751.png", + "ascent": 7, + "chars": ["\uD865\uDF51"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a8ae.png", + "ascent": 7, + "chars": ["\uD86A\uDCAE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b0d1.png", + "ascent": 7, + "chars": ["\uD86C\uDCD1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5b9.png", + "ascent": 7, + "chars": ["\uD86D\uDDB9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b689.png", + "ascent": 7, + "chars": ["\uD86D\uDE89"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b728.png", + "ascent": 7, + "chars": ["\uD86D\uDF28"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bca6.png", + "ascent": 7, + "chars": ["\uD86F\uDCA6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb3a.png", + "ascent": 7, + "chars": ["\uD872\uDF3A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccb1.png", + "ascent": 7, + "chars": ["\uD873\uDCB1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ccc7.png", + "ascent": 7, + "chars": ["\uD873\uDCC7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce7a.png", + "ascent": 7, + "chars": ["\uD873\uDE7A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e505.png", + "ascent": 7, + "chars": ["\uD879\uDD05"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e932.png", + "ascent": 7, + "chars": ["\uD87A\uDD32"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ea3b.png", + "ascent": 7, + "chars": ["\uD87A\uDE3B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30f74.png", + "ascent": 7, + "chars": ["\uD883\uDF74"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31e07.png", + "ascent": 7, + "chars": ["\uD887\uDE07"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-322e4.png", + "ascent": 7, + "chars": ["\uD888\uDEE4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-fix-5829.png", + "ascent": 7, + "chars": ["\u5829"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-279a7.png", + "ascent": 7, + "chars": ["\uD85E\uDDA7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a970.png", + "ascent": 7, + "chars": ["\uD86A\uDD70"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b241.png", + "ascent": 7, + "chars": ["\uD86C\uDE41"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b35f.png", + "ascent": 7, + "chars": ["\uD86C\uDF5F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bc21.png", + "ascent": 7, + "chars": ["\uD86F\uDC21"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb2b.png", + "ascent": 7, + "chars": ["\uD872\uDF2B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e41a.png", + "ascent": 7, + "chars": ["\uD879\uDC1A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e8f3.png", + "ascent": 7, + "chars": ["\uD87A\uDCF3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30fab.png", + "ascent": 7, + "chars": ["\uD883\uDFAB"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31090.png", + "ascent": 7, + "chars": ["\uD884\uDC90"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-310fa.png", + "ascent": 7, + "chars": ["\uD884\uDCFA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-312c9.png", + "ascent": 7, + "chars": ["\uD884\uDEC9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-basic-fix-6ff9.png", + "ascent": 7, + "chars": ["\u6ff9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20086.png", + "ascent": 7, + "chars": ["\uD840\uDC86"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20350.png", + "ascent": 7, + "chars": ["\uD840\uDF50"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-206a4.png", + "ascent": 7, + "chars": ["\uD841\uDEA4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2980c.png", + "ascent": 7, + "chars": ["\uD866\uDC0C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a79d.png", + "ascent": 7, + "chars": ["\uD869\uDF9D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e5b1.png", + "ascent": 7, + "chars": ["\uD879\uDDB1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e64a.png", + "ascent": 7, + "chars": ["\uD879\uDE4A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-301e3.png", + "ascent": 7, + "chars": ["\uD880\uDDE3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-310b1.png", + "ascent": 7, + "chars": ["\uD884\uDCB1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-311f1.png", + "ascent": 7, + "chars": ["\uD884\uDDF1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25584.png", + "ascent": 7, + "chars": ["\uD855\uDD84"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b598.png", + "ascent": 7, + "chars": ["\uD86D\uDD98"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2eb68.png", + "ascent": 7, + "chars": ["\uD87A\uDF68"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30300.png", + "ascent": 7, + "chars": ["\uD880\uDF00"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-201d4.png", + "ascent": 7, + "chars": ["\uD840\uDDD4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-209da.png", + "ascent": 7, + "chars": ["\uD842\uDDDA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21da6.png", + "ascent": 7, + "chars": ["\uD847\uDDA6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23b20.png", + "ascent": 7, + "chars": ["\uD84E\uDF20"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23b36.png", + "ascent": 7, + "chars": ["\uD84E\uDF36"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-251a7.png", + "ascent": 7, + "chars": ["\uD854\uDDA7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2554d.png", + "ascent": 7, + "chars": ["\uD855\uDD4D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28468.png", + "ascent": 7, + "chars": ["\uD861\uDC68"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2894e.png", + "ascent": 7, + "chars": ["\uD862\uDD4E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c3e.png", + "ascent": 7, + "chars": ["\uD863\uDC3E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2980d.png", + "ascent": 7, + "chars": ["\uD866\uDC0D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2af94.png", + "ascent": 7, + "chars": ["\uD86B\uDF94"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b4e9.png", + "ascent": 7, + "chars": ["\uD86D\uDCE9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bc30.png", + "ascent": 7, + "chars": ["\uD86F\uDC30"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e774.png", + "ascent": 7, + "chars": ["\uD879\uDF74"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2eb21.png", + "ascent": 7, + "chars": ["\uD87A\uDF21"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30f5a.png", + "ascent": 7, + "chars": ["\uD883\uDF5A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3115b.png", + "ascent": 7, + "chars": ["\uD884\uDD5B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31d1f.png", + "ascent": 7, + "chars": ["\uD887\uDD1F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22f42.png", + "ascent": 7, + "chars": ["\uD84B\uDF42"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25977.png", + "ascent": 7, + "chars": ["\uD856\uDD77"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-25ef5.png", + "ascent": 7, + "chars": ["\uD857\uDEF5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-289a1.png", + "ascent": 7, + "chars": ["\uD862\uDDA1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c4d.png", + "ascent": 7, + "chars": ["\uD863\uDC4D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b8ca.png", + "ascent": 7, + "chars": ["\uD86E\uDCCA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c081.png", + "ascent": 7, + "chars": ["\uD870\uDC81"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c2b6.png", + "ascent": 7, + "chars": ["\uD870\uDEB6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c59e.png", + "ascent": 7, + "chars": ["\uD871\uDD9E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ca8d.png", + "ascent": 7, + "chars": ["\uD872\uDE8D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e014.png", + "ascent": 7, + "chars": ["\uD878\uDC14"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e26f.png", + "ascent": 7, + "chars": ["\uD878\uDE6F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30f7d.png", + "ascent": 7, + "chars": ["\uD883\uDF7D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31592.png", + "ascent": 7, + "chars": ["\uD885\uDD92"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22aec.png", + "ascent": 7, + "chars": ["\uD84A\uDEEC"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-247ef.png", + "ascent": 7, + "chars": ["\uD851\uDFEF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a38a.png", + "ascent": 7, + "chars": ["\uD868\uDF8A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b125.png", + "ascent": 7, + "chars": ["\uD86C\uDD25"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ea5d.png", + "ascent": 7, + "chars": ["\uD87A\uDE5D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30d5d.png", + "ascent": 7, + "chars": ["\uD883\uDD5D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31b92.png", + "ascent": 7, + "chars": ["\uD886\uDF92"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20c8e.png", + "ascent": 7, + "chars": ["\uD843\uDC8E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20c96.png", + "ascent": 7, + "chars": ["\uD843\uDC96"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20e01.png", + "ascent": 7, + "chars": ["\uD843\uDE01"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-216a6.png", + "ascent": 7, + "chars": ["\uD845\uDEA6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21757.png", + "ascent": 7, + "chars": ["\uD845\uDF57"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22016.png", + "ascent": 7, + "chars": ["\uD848\uDC16"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22c49.png", + "ascent": 7, + "chars": ["\uD84B\uDC49"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22f7e.png", + "ascent": 7, + "chars": ["\uD84B\uDF7E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-233e2.png", + "ascent": 7, + "chars": ["\uD84C\uDFE2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2343f.png", + "ascent": 7, + "chars": ["\uD84D\uDC3F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23c5d.png", + "ascent": 7, + "chars": ["\uD84F\uDC5D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23c7c.png", + "ascent": 7, + "chars": ["\uD84F\uDC7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23d66.png", + "ascent": 7, + "chars": ["\uD84F\uDD66"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24319.png", + "ascent": 7, + "chars": ["\uD850\uDF19"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-247b6.png", + "ascent": 7, + "chars": ["\uD851\uDFB6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24c59.png", + "ascent": 7, + "chars": ["\uD853\uDC59"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-251d2.png", + "ascent": 7, + "chars": ["\uD854\uDDD2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26d9f.png", + "ascent": 7, + "chars": ["\uD85B\uDD9F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-274bd.png", + "ascent": 7, + "chars": ["\uD85D\uDCBD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27baa.png", + "ascent": 7, + "chars": ["\uD85E\uDFAA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c4e.png", + "ascent": 7, + "chars": ["\uD863\uDC4E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28ee7.png", + "ascent": 7, + "chars": ["\uD863\uDEE7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29a02.png", + "ascent": 7, + "chars": ["\uD866\uDE02"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29f7c.png", + "ascent": 7, + "chars": ["\uD867\uDF7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b583.png", + "ascent": 7, + "chars": ["\uD86D\uDD83"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b594.png", + "ascent": 7, + "chars": ["\uD86D\uDD94"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5eb.png", + "ascent": 7, + "chars": ["\uD86D\uDDEB"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c386.png", + "ascent": 7, + "chars": ["\uD870\uDF86"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2dc4a.png", + "ascent": 7, + "chars": ["\uD877\uDC4A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e64b.png", + "ascent": 7, + "chars": ["\uD879\uDE4B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e9f5.png", + "ascent": 7, + "chars": ["\uD87A\uDDF5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ea5e.png", + "ascent": 7, + "chars": ["\uD87A\uDE5E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2eaa5.png", + "ascent": 7, + "chars": ["\uD87A\uDEA5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2eb1d.png", + "ascent": 7, + "chars": ["\uD87A\uDF1D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-302c0.png", + "ascent": 7, + "chars": ["\uD880\uDEC0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30302.png", + "ascent": 7, + "chars": ["\uD880\uDF02"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30d67.png", + "ascent": 7, + "chars": ["\uD883\uDD67"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30d74.png", + "ascent": 7, + "chars": ["\uD883\uDD74"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30d8a.png", + "ascent": 7, + "chars": ["\uD883\uDD8A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-311e3.png", + "ascent": 7, + "chars": ["\uD884\uDDE3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-313ff.png", + "ascent": 7, + "chars": ["\uD884\uDFFF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31d31.png", + "ascent": 7, + "chars": ["\uD887\uDD31"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31e4d.png", + "ascent": 7, + "chars": ["\uD887\uDE4D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20242.png", + "ascent": 7, + "chars": ["\uD840\uDE42"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2028e.png", + "ascent": 7, + "chars": ["\uD840\uDE8E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23965.png", + "ascent": 7, + "chars": ["\uD84E\uDD65"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23b02.png", + "ascent": 7, + "chars": ["\uD84E\uDF02"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-247a4.png", + "ascent": 7, + "chars": ["\uD851\uDFA4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-265d2.png", + "ascent": 7, + "chars": ["\uD859\uDDD2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-266e8.png", + "ascent": 7, + "chars": ["\uD859\uDEE8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26a2d.png", + "ascent": 7, + "chars": ["\uD85A\uDE2D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28c53.png", + "ascent": 7, + "chars": ["\uD863\uDC53"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a248.png", + "ascent": 7, + "chars": ["\uD868\uDE48"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a8dd.png", + "ascent": 7, + "chars": ["\uD86A\uDCDD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2afd6.png", + "ascent": 7, + "chars": ["\uD86B\uDFD6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b328.png", + "ascent": 7, + "chars": ["\uD86C\uDF28"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b37b.png", + "ascent": 7, + "chars": ["\uD86C\uDF7B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b5f0.png", + "ascent": 7, + "chars": ["\uD86D\uDDF0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2b9ef.png", + "ascent": 7, + "chars": ["\uD86E\uDDEF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2bb6a.png", + "ascent": 7, + "chars": ["\uD86E\uDF6A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c1de.png", + "ascent": 7, + "chars": ["\uD870\uDDDE"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cb63.png", + "ascent": 7, + "chars": ["\uD872\uDF63"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ce05.png", + "ascent": 7, + "chars": ["\uD873\uDE05"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30787.png", + "ascent": 7, + "chars": ["\uD881\uDF87"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30de5.png", + "ascent": 7, + "chars": ["\uD883\uDDE5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30f57.png", + "ascent": 7, + "chars": ["\uD883\uDF57"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-310f1.png", + "ascent": 7, + "chars": ["\uD884\uDCF1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-32003.png", + "ascent": 7, + "chars": ["\uD888\uDC03"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3235b.png", + "ascent": 7, + "chars": ["\uD888\uDF5B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3236d.png", + "ascent": 7, + "chars": ["\uD888\uDF6D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23a3c.png", + "ascent": 7, + "chars": ["\uD84E\uDE3C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24eca.png", + "ascent": 7, + "chars": ["\uD853\uDECA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27a3f.png", + "ascent": 7, + "chars": ["\uD85E\uDE3F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-300f7.png", + "ascent": 7, + "chars": ["\uD880\uDCF7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-30915.png", + "ascent": 7, + "chars": ["\uD882\uDD15"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3208e.png", + "ascent": 7, + "chars": ["\uD888\uDC8E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2aed0.png", + "ascent": 7, + "chars": ["\uD86B\uDED0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-3114b.png", + "ascent": 7, + "chars": ["\uD884\uDD4B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2070e.png", + "ascent": 7, + "chars": ["\uD841\uDF0E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20731.png", + "ascent": 7, + "chars": ["\uD841\uDF31"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20779.png", + "ascent": 7, + "chars": ["\uD841\uDF79"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20c53.png", + "ascent": 7, + "chars": ["\uD843\uDC53"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20c78.png", + "ascent": 7, + "chars": ["\uD843\uDC78"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20ccf.png", + "ascent": 7, + "chars": ["\uD843\uDCCF"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20cd5.png", + "ascent": 7, + "chars": ["\uD843\uDCD5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20d15.png", + "ascent": 7, + "chars": ["\uD843\uDD15"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20d7c.png", + "ascent": 7, + "chars": ["\uD843\uDD7C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20d7f.png", + "ascent": 7, + "chars": ["\uD843\uDD7F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20e0e.png", + "ascent": 7, + "chars": ["\uD843\uDE0E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20e0f.png", + "ascent": 7, + "chars": ["\uD843\uDE0F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20e77.png", + "ascent": 7, + "chars": ["\uD843\uDE77"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20e9d.png", + "ascent": 7, + "chars": ["\uD843\uDE9D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20ea2.png", + "ascent": 7, + "chars": ["\uD843\uDEA2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20ed7.png", + "ascent": 7, + "chars": ["\uD843\uDED7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20ef9.png", + "ascent": 7, + "chars": ["\uD843\uDEF9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20efa.png", + "ascent": 7, + "chars": ["\uD843\uDEFA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20f2d.png", + "ascent": 7, + "chars": ["\uD843\uDF2D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20f2e.png", + "ascent": 7, + "chars": ["\uD843\uDF2E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20f4c.png", + "ascent": 7, + "chars": ["\uD843\uDF4C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20fb4.png", + "ascent": 7, + "chars": ["\uD843\uDFB4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20fbc.png", + "ascent": 7, + "chars": ["\uD843\uDFBC"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-20fea.png", + "ascent": 7, + "chars": ["\uD843\uDFEA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2105c.png", + "ascent": 7, + "chars": ["\uD844\uDC5C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2106f.png", + "ascent": 7, + "chars": ["\uD844\uDC6F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21075.png", + "ascent": 7, + "chars": ["\uD844\uDC75"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21076.png", + "ascent": 7, + "chars": ["\uD844\uDC76"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2107b.png", + "ascent": 7, + "chars": ["\uD844\uDC7B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-210c1.png", + "ascent": 7, + "chars": ["\uD844\uDCC1"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-210c9.png", + "ascent": 7, + "chars": ["\uD844\uDCC9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-211d9.png", + "ascent": 7, + "chars": ["\uD844\uDDD9"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-21265.png", + "ascent": 7, + "chars": ["\uD844\uDE65"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2134c.png", + "ascent": 7, + "chars": ["\uD844\uDF4C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2144d.png", + "ascent": 7, + "chars": ["\uD845\uDC4D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-220c7.png", + "ascent": 7, + "chars": ["\uD848\uDCC7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-227b5.png", + "ascent": 7, + "chars": ["\uD849\uDFB5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22ad5.png", + "ascent": 7, + "chars": ["\uD84A\uDED5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22b43.png", + "ascent": 7, + "chars": ["\uD84A\uDF43"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22bca.png", + "ascent": 7, + "chars": ["\uD84A\uDFCA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22c51.png", + "ascent": 7, + "chars": ["\uD84B\uDC51"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22c55.png", + "ascent": 7, + "chars": ["\uD84B\uDC55"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22cc2.png", + "ascent": 7, + "chars": ["\uD84B\uDCC2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22d08.png", + "ascent": 7, + "chars": ["\uD84B\uDD08"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22d4c.png", + "ascent": 7, + "chars": ["\uD84B\uDD4C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22d67.png", + "ascent": 7, + "chars": ["\uD84B\uDD67"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-22eb3.png", + "ascent": 7, + "chars": ["\uD84B\uDEB3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23236.png", + "ascent": 7, + "chars": ["\uD84C\uDE36"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-23cb7.png", + "ascent": 7, + "chars": ["\uD84F\uDCB7"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-241b5.png", + "ascent": 7, + "chars": ["\uD850\uDDB5"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-244d3.png", + "ascent": 7, + "chars": ["\uD851\uDCD3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24b62.png", + "ascent": 7, + "chars": ["\uD852\uDF62"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24db8.png", + "ascent": 7, + "chars": ["\uD853\uDDB8"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-24dea.png", + "ascent": 7, + "chars": ["\uD853\uDDEA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2512b.png", + "ascent": 7, + "chars": ["\uD854\uDD2B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-255fd.png", + "ascent": 7, + "chars": ["\uD855\uDDFD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-26258.png", + "ascent": 7, + "chars": ["\uD858\uDE58"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-267cc.png", + "ascent": 7, + "chars": ["\uD859\uDFCC"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2683f.png", + "ascent": 7, + "chars": ["\uD85A\uDC3F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-269f2.png", + "ascent": 7, + "chars": ["\uD85A\uDDF2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-269fa.png", + "ascent": 7, + "chars": ["\uD85A\uDDFA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-27a3e.png", + "ascent": 7, + "chars": ["\uD85E\uDE3E"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2815d.png", + "ascent": 7, + "chars": ["\uD860\uDD5D"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28207.png", + "ascent": 7, + "chars": ["\uD860\uDE07"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-282e2.png", + "ascent": 7, + "chars": ["\uD860\uDEE2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-287aa.png", + "ascent": 7, + "chars": ["\uD861\uDFAA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28948.png", + "ascent": 7, + "chars": ["\uD862\uDD48"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28cca.png", + "ascent": 7, + "chars": ["\uD863\uDCCA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28ccd.png", + "ascent": 7, + "chars": ["\uD863\uDCCD"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28cd2.png", + "ascent": 7, + "chars": ["\uD863\uDCD2"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-28ef6.png", + "ascent": 7, + "chars": ["\uD863\uDEF6"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-294ba.png", + "ascent": 7, + "chars": ["\uD865\uDCBA"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-29d98.png", + "ascent": 7, + "chars": ["\uD867\uDD98"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2a04f.png", + "ascent": 7, + "chars": ["\uD868\uDC4F"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2aa07.png", + "ascent": 7, + "chars": ["\uD86A\uDE07"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2aa0a.png", + "ascent": 7, + "chars": ["\uD86A\uDE0A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ab62.png", + "ascent": 7, + "chars": ["\uD86A\uDF62"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2abb3.png", + "ascent": 7, + "chars": ["\uD86A\uDFB3"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2ba73.png", + "ascent": 7, + "chars": ["\uD86E\uDE73"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c0c0.png", + "ascent": 7, + "chars": ["\uD870\uDCC0"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c29c.png", + "ascent": 7, + "chars": ["\uD870\uDE9C"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c457.png", + "ascent": 7, + "chars": ["\uD871\uDC57"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2c622.png", + "ascent": 7, + "chars": ["\uD871\uDE22"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cbb4.png", + "ascent": 7, + "chars": ["\uD872\uDFB4"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2cd10.png", + "ascent": 7, + "chars": ["\uD873\uDD10"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2dd0a.png", + "ascent": 7, + "chars": ["\uD877\uDD0A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e26b.png", + "ascent": 7, + "chars": ["\uD878\uDE6B"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e50a.png", + "ascent": 7, + "chars": ["\uD879\uDD0A"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2e775.png", + "ascent": 7, + "chars": ["\uD879\uDF75"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-2eb66.png", + "ascent": 7, + "chars": ["\uD87A\uDF66"] + }, + { + "type": "bitmap", + "file": "minecraft:font/character-31b9c.png", + "ascent": 7, + "chars": ["\uD886\uDF9C"] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/extb-first-32", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension B, First 32" + ], + "from": "\ud840\udc00", + "to": "\ud840\udc1f", + "left": 0, + "right": 15 + } + ] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/extb-supp", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension B, Last 9" + ], + "from": "\ud869\uded7", + "to": "\ud869\udedf", + "left": 0, + "right": 15 + } + ] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/extc-supp", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension C, Last 5" + ], + "from": "\ud86d\udf35", + "to": "\ud86d\udc39", + "left": 0, + "right": 15 + } + ] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/ext-d", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension D" + ], + "from": "\ud86d\udf40", + "to": "\ud86e\udc1f", + "left": 0, + "right": 15 + } + ] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/extb-to-extf", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension B" + ], + "from": "\ud840\udc00", + "to": "\ud869\udedf", + "left": 0, + "right": 15 + }, + { + "__ranges": [ + "CJK Unified Ideographs Extension C", + "CJK Unified Ideographs Extension D", + "CJK Unified Ideographs Extension E", + "CJK Unified Ideographs Extension F" + ], + "from": "\ud869\udf00", + "to": "\ud87a\udfef", + "left": 0, + "right": 15 + } + ] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/extg-first-384", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension G, First 384" + ], + "from": "\ud880\udc00", + "to": "\ud880\udd7f", + "left": 0, + "right": 15 + } + ] + }, + { + "type": "unihex", + "hex_file": "minecraft:font/ext-i", + "size_overrides": [ + { + "__ranges": [ + "CJK Unified Ideographs Extension I" + ], + "from": "\ud87a\udff0", + "to": "\ud87b\ude5d", + "left": 0, + "right": 15 + } + ] + } + ] +} diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/ext-d b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/ext-d new file mode 100644 index 000000000..a33dab6b6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/ext-d differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/ext-i b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/ext-i new file mode 100644 index 000000000..b149191cf Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/ext-i differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-first-32 b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-first-32 new file mode 100644 index 000000000..baca1f643 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-first-32 differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-supp b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-supp new file mode 100644 index 000000000..b947b849e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-supp differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-to-extf b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-to-extf new file mode 100644 index 000000000..f1f008371 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extb-to-extf differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extc-supp b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extc-supp new file mode 100644 index 000000000..c69c64c4c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extc-supp differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extg-first-384 b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extg-first-384 new file mode 100644 index 000000000..95b48a1b5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/extg-first-384 differ diff --git a/modules/glyph_sizes_fix/assets/minecraft/font/glyph_sizes.bin b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/glyph_sizes.bin similarity index 99% rename from modules/glyph_sizes_fix/assets/minecraft/font/glyph_sizes.bin rename to modules/minecraft_cjk_character_supplement/assets/minecraft/font/glyph_sizes.bin index f2dea2fa4..66cb60297 100644 Binary files a/modules/glyph_sizes_fix/assets/minecraft/font/glyph_sizes.bin and b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/glyph_sizes.bin differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/font/unicode_ext_a_15_1_pending_correct1.hex b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/unicode_ext_a_15_1_pending_correct1.hex new file mode 100644 index 000000000..a76e41bc2 --- /dev/null +++ b/modules/minecraft_cjk_character_supplement/assets/minecraft/font/unicode_ext_a_15_1_pending_correct1.hex @@ -0,0 +1,20 @@ +357E:0100010009200910110821044104000000203E20223C22E0222022223E22221E +358B:0100028004401830E44E0440044004400840100000407C7845C044407C44443C +358C:0880088013F03090509090921112120E140000003E20223C22E022203E22221E +358D:0040044002401240084009FC7E400040004000003E20223C22E022203E22221E +358E:00407C7845C0444044447C3C0100028004401830E44E04400440044008401040 +3599:100010007E7C124412441244227C4A44840000003E20223C22E022203E22221E +359A:0810081017FE30105210911011101050102000003E20223C22E022203E22221E +359B:010001007FFC010001001FF0101010101FF000003E20223C22E022203E22221E +359C:02000100FFFE00001FF0101010101FF0000000003E20223C22E022203E22221E +359D:010001003FF801000100FFFE09203118C10600003E20223C22E022203E22221E +35AF:3FF820082FE8200827C8244827C82028201000003E20223C22E022203E22221E +35B0:00407C7845C0444044447C3C00003FF820082FE8200827C8244827C820282010 +35B2:10001000FE7C2244444434440844147C2244C0003E20223C22E022203E22221E +35B3:1080088047FC21100A1011A070601090130800003E20223C22E022203E22221E +35DF:2080104087FC4040104023F8E040204027FC200000407C7845C044407C44443C +35E0:084008407E8413FE220214FC0884148462FC00003E20223C22E022203E22221E +35E1:0440FFFE0440100027F86110A13C21042214240800407C7845C044407C44443C +35EF:01081FD001207FFC02000FF03810CFF008100FF000407C7845C044407C44443C +360F:211017FE108003F8F20813F8120813F8120813F8280047FE00403EF022443E7C +3612:0C3871E0102013FEFD2431FC392455FC502093FE10007C40447845C07C44443C diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20086.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20086.png new file mode 100644 index 000000000..c67236cce Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20086.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20087.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20087.png new file mode 100644 index 000000000..418bf4fa2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20087.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20089.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20089.png new file mode 100644 index 000000000..556d05896 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20089.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-200cc.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-200cc.png new file mode 100644 index 000000000..d2c6dbda1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-200cc.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20164.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20164.png new file mode 100644 index 000000000..399c43ae8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20164.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-201ad.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-201ad.png new file mode 100644 index 000000000..a20c5c3b0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-201ad.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-201d4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-201d4.png new file mode 100644 index 000000000..1fed7b2a4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-201d4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20242.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20242.png new file mode 100644 index 000000000..6a547978b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20242.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2028e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2028e.png new file mode 100644 index 000000000..9ba92dcbb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2028e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20350.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20350.png new file mode 100644 index 000000000..b395f0d8a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20350.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20547.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20547.png new file mode 100644 index 000000000..7b72f1ce8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20547.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20628.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20628.png new file mode 100644 index 000000000..aeb896b78 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20628.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20676.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20676.png new file mode 100644 index 000000000..564b38ea4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20676.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-206a4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-206a4.png new file mode 100644 index 000000000..2047036f4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-206a4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2070e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2070e.png new file mode 100644 index 000000000..b8b9300e9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2070e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20731.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20731.png new file mode 100644 index 000000000..be87ad875 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20731.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20779.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20779.png new file mode 100644 index 000000000..2fd1b6471 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20779.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-209da.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-209da.png new file mode 100644 index 000000000..cbe85d02f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-209da.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c53.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c53.png new file mode 100644 index 000000000..b0d5027c9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c53.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c78.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c78.png new file mode 100644 index 000000000..107a19dd8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c78.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c8e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c8e.png new file mode 100644 index 000000000..8623b0fe8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c8e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c96.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c96.png new file mode 100644 index 000000000..6f0e7091e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20c96.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ccf.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ccf.png new file mode 100644 index 000000000..2decc3573 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ccf.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20cd0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20cd0.png new file mode 100644 index 000000000..3fa6ba5b9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20cd0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20cd5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20cd5.png new file mode 100644 index 000000000..d6597529f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20cd5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d15.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d15.png new file mode 100644 index 000000000..6a8286d90 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d15.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d7c.png new file mode 100644 index 000000000..6ec52f5d8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d7f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d7f.png new file mode 100644 index 000000000..b2a682877 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20d7f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e01.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e01.png new file mode 100644 index 000000000..4c36eaf58 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e01.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e0e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e0e.png new file mode 100644 index 000000000..1e95fa973 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e0e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e0f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e0f.png new file mode 100644 index 000000000..1ebe4890c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e0f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e77.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e77.png new file mode 100644 index 000000000..8f9358101 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e77.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e9d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e9d.png new file mode 100644 index 000000000..594d990e6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20e9d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ea2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ea2.png new file mode 100644 index 000000000..6ee15f208 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ea2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ed7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ed7.png new file mode 100644 index 000000000..181d99061 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ed7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ef9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ef9.png new file mode 100644 index 000000000..8020fd42a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20ef9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20efa.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20efa.png new file mode 100644 index 000000000..593a038ce Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20efa.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f2d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f2d.png new file mode 100644 index 000000000..2ed8aef48 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f2d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f2e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f2e.png new file mode 100644 index 000000000..18733c887 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f2e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f4c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f4c.png new file mode 100644 index 000000000..f317e5581 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f4c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f90.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f90.png new file mode 100644 index 000000000..377439ed0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20f90.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fb4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fb4.png new file mode 100644 index 000000000..38ecd8d87 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fb4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fbc.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fbc.png new file mode 100644 index 000000000..86934e031 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fbc.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fea.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fea.png new file mode 100644 index 000000000..315a68215 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-20fea.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2105c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2105c.png new file mode 100644 index 000000000..631913028 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2105c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2106f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2106f.png new file mode 100644 index 000000000..7be865381 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2106f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21075.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21075.png new file mode 100644 index 000000000..977c91408 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21075.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21076.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21076.png new file mode 100644 index 000000000..10c9d5412 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21076.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2107b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2107b.png new file mode 100644 index 000000000..5842c469c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2107b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210bf.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210bf.png new file mode 100644 index 000000000..ba1d9650b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210bf.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210c1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210c1.png new file mode 100644 index 000000000..14e88e85b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210c1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210c9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210c9.png new file mode 100644 index 000000000..28d81ad11 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-210c9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-211a2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-211a2.png new file mode 100644 index 000000000..696809135 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-211a2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-211d9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-211d9.png new file mode 100644 index 000000000..80e93b8ba Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-211d9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21265.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21265.png new file mode 100644 index 000000000..8f9ed1283 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21265.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2134c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2134c.png new file mode 100644 index 000000000..ae042d7e3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2134c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21377.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21377.png new file mode 100644 index 000000000..608e4518b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21377.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2139a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2139a.png new file mode 100644 index 000000000..99516a0b1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2139a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-213cb.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-213cb.png new file mode 100644 index 000000000..5e17b07dc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-213cb.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21413.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21413.png new file mode 100644 index 000000000..22968987f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21413.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2144d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2144d.png new file mode 100644 index 000000000..bd003b3c6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2144d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21484.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21484.png new file mode 100644 index 000000000..6f5bf40a4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21484.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-215d7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-215d7.png new file mode 100644 index 000000000..be98ccac8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-215d7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216a6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216a6.png new file mode 100644 index 000000000..8dce6ac54 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216a6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216df.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216df.png new file mode 100644 index 000000000..92a92ea06 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216df.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216f0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216f0.png new file mode 100644 index 000000000..1f8abfd68 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-216f0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21757.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21757.png new file mode 100644 index 000000000..6f8a35337 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21757.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21da6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21da6.png new file mode 100644 index 000000000..1b84f95f3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21da6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21e8e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21e8e.png new file mode 100644 index 000000000..2e070f8f7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-21e8e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22016.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22016.png new file mode 100644 index 000000000..655188926 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22016.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-220c7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-220c7.png new file mode 100644 index 000000000..9b0939f7f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-220c7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22489.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22489.png new file mode 100644 index 000000000..25d154065 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22489.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22650.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22650.png new file mode 100644 index 000000000..5294996b9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22650.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-227b5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-227b5.png new file mode 100644 index 000000000..fa3736972 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-227b5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2298f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2298f.png new file mode 100644 index 000000000..4325243d6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2298f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22acf.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22acf.png new file mode 100644 index 000000000..248bc92f6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22acf.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22ad5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22ad5.png new file mode 100644 index 000000000..e28ddfddc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22ad5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22aec.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22aec.png new file mode 100644 index 000000000..113c5b449 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22aec.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22b43.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22b43.png new file mode 100644 index 000000000..0e09e49b3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22b43.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22bca.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22bca.png new file mode 100644 index 000000000..b90027296 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22bca.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c49.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c49.png new file mode 100644 index 000000000..534bbb88d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c49.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c51.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c51.png new file mode 100644 index 000000000..9b0f76496 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c51.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c55.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c55.png new file mode 100644 index 000000000..b0372dd92 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22c55.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22cc2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22cc2.png new file mode 100644 index 000000000..2ff169f64 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22cc2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d08.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d08.png new file mode 100644 index 000000000..43077bdfe Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d08.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d4c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d4c.png new file mode 100644 index 000000000..8d96599b0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d4c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d67.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d67.png new file mode 100644 index 000000000..d59619122 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22d67.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22eb3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22eb3.png new file mode 100644 index 000000000..1484de5b6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22eb3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22f42.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22f42.png new file mode 100644 index 000000000..172bc9819 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22f42.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22f7e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22f7e.png new file mode 100644 index 000000000..231ac1688 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-22f7e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23236.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23236.png new file mode 100644 index 000000000..4fadcc4c2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23236.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-233e2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-233e2.png new file mode 100644 index 000000000..32fa1be07 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-233e2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2343f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2343f.png new file mode 100644 index 000000000..a62a21134 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2343f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-235cb.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-235cb.png new file mode 100644 index 000000000..ea9ba7c08 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-235cb.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23965.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23965.png new file mode 100644 index 000000000..cbd66d09e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23965.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23a3c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23a3c.png new file mode 100644 index 000000000..ca6c32037 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23a3c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b02.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b02.png new file mode 100644 index 000000000..8d2927668 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b02.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b20.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b20.png new file mode 100644 index 000000000..c8c5fd25b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b20.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b36.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b36.png new file mode 100644 index 000000000..dada33b8d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b36.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b72.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b72.png new file mode 100644 index 000000000..6575c9895 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23b72.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c5d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c5d.png new file mode 100644 index 000000000..d9d48e5aa Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c5d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c7c.png new file mode 100644 index 000000000..ce7b97d90 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c97.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c97.png new file mode 100644 index 000000000..5258f99b6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c97.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c98.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c98.png new file mode 100644 index 000000000..d118ad39b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23c98.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23cb7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23cb7.png new file mode 100644 index 000000000..3da7c1655 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23cb7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23d66.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23d66.png new file mode 100644 index 000000000..79f2cdbbb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23d66.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23e23.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23e23.png new file mode 100644 index 000000000..9cf1200d7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23e23.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23e24.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23e24.png new file mode 100644 index 000000000..ffe024612 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-23e24.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241a2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241a2.png new file mode 100644 index 000000000..b396c153a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241a2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241b5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241b5.png new file mode 100644 index 000000000..ffc7f633d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241b5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241fe.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241fe.png new file mode 100644 index 000000000..7fab51dee Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-241fe.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2420e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2420e.png new file mode 100644 index 000000000..bcef36d77 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2420e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24319.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24319.png new file mode 100644 index 000000000..379cafb20 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24319.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-244d3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-244d3.png new file mode 100644 index 000000000..16b170d53 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-244d3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247a4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247a4.png new file mode 100644 index 000000000..a23b7ca61 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247a4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247b6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247b6.png new file mode 100644 index 000000000..3f8f65046 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247b6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247ef.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247ef.png new file mode 100644 index 000000000..6c6ca9e5c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-247ef.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-248e9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-248e9.png new file mode 100644 index 000000000..57e7f7f31 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-248e9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-249db.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-249db.png new file mode 100644 index 000000000..c4e96b914 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-249db.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24a01.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24a01.png new file mode 100644 index 000000000..f2b3b68b7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24a01.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24a7d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24a7d.png new file mode 100644 index 000000000..39d7086b2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24a7d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24ac9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24ac9.png new file mode 100644 index 000000000..a0a281d29 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24ac9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24b62.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24b62.png new file mode 100644 index 000000000..2d93d61aa Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24b62.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24be5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24be5.png new file mode 100644 index 000000000..58b7ca934 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24be5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24c59.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24c59.png new file mode 100644 index 000000000..cba79628b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24c59.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24db8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24db8.png new file mode 100644 index 000000000..1e72aab66 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24db8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24dea.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24dea.png new file mode 100644 index 000000000..364033a42 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24dea.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24eca.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24eca.png new file mode 100644 index 000000000..ee3a7871b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-24eca.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25128.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25128.png new file mode 100644 index 000000000..8add48d34 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25128.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2512b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2512b.png new file mode 100644 index 000000000..a8075caf8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2512b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-251a7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-251a7.png new file mode 100644 index 000000000..cda007f47 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-251a7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-251d2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-251d2.png new file mode 100644 index 000000000..4a8dd9c67 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-251d2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25273.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25273.png new file mode 100644 index 000000000..88f3c87cd Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25273.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25532.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25532.png new file mode 100644 index 000000000..e622631ea Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25532.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2554d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2554d.png new file mode 100644 index 000000000..ea5e3a4c7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2554d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25562.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25562.png new file mode 100644 index 000000000..4a912d249 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25562.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25584.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25584.png new file mode 100644 index 000000000..8d7cccdc3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25584.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-255a8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-255a8.png new file mode 100644 index 000000000..347a94ec0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-255a8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-255fd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-255fd.png new file mode 100644 index 000000000..c044cb5cd Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-255fd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25977.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25977.png new file mode 100644 index 000000000..bc9ddfd07 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25977.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ad7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ad7.png new file mode 100644 index 000000000..6d4931c49 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ad7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25be8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25be8.png new file mode 100644 index 000000000..0eb8beed9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25be8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25e49.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25e49.png new file mode 100644 index 000000000..0241be5bb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25e49.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ed7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ed7.png new file mode 100644 index 000000000..7b1be4df9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ed7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ef5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ef5.png new file mode 100644 index 000000000..2bb207b8c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-25ef5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26221.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26221.png new file mode 100644 index 000000000..b4eaf6c91 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26221.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26258.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26258.png new file mode 100644 index 000000000..415a172a3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26258.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26393.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26393.png new file mode 100644 index 000000000..f9ba44283 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26393.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-263f4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-263f4.png new file mode 100644 index 000000000..86b79524f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-263f4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2648d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2648d.png new file mode 100644 index 000000000..459a19e15 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2648d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-265d2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-265d2.png new file mode 100644 index 000000000..efae7ea1e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-265d2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26676.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26676.png new file mode 100644 index 000000000..a454d237a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26676.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-266e8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-266e8.png new file mode 100644 index 000000000..efa7df8b8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-266e8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2677c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2677c.png new file mode 100644 index 000000000..f1eba5d9c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2677c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-267cc.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-267cc.png new file mode 100644 index 000000000..aeebe32e4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-267cc.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2683f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2683f.png new file mode 100644 index 000000000..6f1daae69 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2683f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26951.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26951.png new file mode 100644 index 000000000..a623e2714 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26951.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-269f2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-269f2.png new file mode 100644 index 000000000..270bf4bb6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-269f2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-269fa.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-269fa.png new file mode 100644 index 000000000..9ed4ea222 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-269fa.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26a29.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26a29.png new file mode 100644 index 000000000..20d326788 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26a29.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26a2d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26a2d.png new file mode 100644 index 000000000..2dd3ccc73 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26a2d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26abd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26abd.png new file mode 100644 index 000000000..72b3bdf5d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26abd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26b4c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26b4c.png new file mode 100644 index 000000000..c8490d5ed Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26b4c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26b5c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26b5c.png new file mode 100644 index 000000000..6d9526b94 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26b5c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26c21.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26c21.png new file mode 100644 index 000000000..fb790a530 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26c21.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26d9f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26d9f.png new file mode 100644 index 000000000..69f5add12 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26d9f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26e57.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26e57.png new file mode 100644 index 000000000..57f1040ca Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26e57.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26ed8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26ed8.png new file mode 100644 index 000000000..d8bbda214 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-26ed8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-270f0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-270f0.png new file mode 100644 index 000000000..fea9956ad Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-270f0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27285.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27285.png new file mode 100644 index 000000000..74b07afd7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27285.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-274bd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-274bd.png new file mode 100644 index 000000000..ce82d5150 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-274bd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27741.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27741.png new file mode 100644 index 000000000..d00fe2cd6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27741.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-278b2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-278b2.png new file mode 100644 index 000000000..fde1a938f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-278b2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-279a7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-279a7.png new file mode 100644 index 000000000..7e5056ce5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-279a7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27a3e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27a3e.png new file mode 100644 index 000000000..10696e1cd Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27a3e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27a3f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27a3f.png new file mode 100644 index 000000000..3ff0b9783 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27a3f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27baa.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27baa.png new file mode 100644 index 000000000..ca1413b18 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27baa.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27eaf.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27eaf.png new file mode 100644 index 000000000..f9803aa26 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27eaf.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27fb7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27fb7.png new file mode 100644 index 000000000..72c01d5e4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27fb7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27ff9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27ff9.png new file mode 100644 index 000000000..c4e3dea43 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-27ff9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-280c5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-280c5.png new file mode 100644 index 000000000..c570ef9b6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-280c5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2815d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2815d.png new file mode 100644 index 000000000..571da65d6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2815d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28207.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28207.png new file mode 100644 index 000000000..904ce2123 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28207.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-282e2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-282e2.png new file mode 100644 index 000000000..9aeca60bc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-282e2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28408.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28408.png new file mode 100644 index 000000000..b56bca0d2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28408.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28468.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28468.png new file mode 100644 index 000000000..f4d6d70ea Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28468.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28678.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28678.png new file mode 100644 index 000000000..d5075a022 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28678.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28695.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28695.png new file mode 100644 index 000000000..cef5532e3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28695.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-287aa.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-287aa.png new file mode 100644 index 000000000..1f60659e6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-287aa.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-287e0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-287e0.png new file mode 100644 index 000000000..f36f7a0db Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-287e0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28948.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28948.png new file mode 100644 index 000000000..18542a600 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28948.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2894e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2894e.png new file mode 100644 index 000000000..d3703bdfe Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2894e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-289a1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-289a1.png new file mode 100644 index 000000000..4f54e9278 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-289a1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-289c0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-289c0.png new file mode 100644 index 000000000..9fa2ee06d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-289c0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28a0f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28a0f.png new file mode 100644 index 000000000..c3ca98587 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28a0f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b46.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b46.png new file mode 100644 index 000000000..030e395f8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b46.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b49.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b49.png new file mode 100644 index 000000000..72144da55 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b49.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b4e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b4e.png new file mode 100644 index 000000000..fd1109fbf Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28b4e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c3e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c3e.png new file mode 100644 index 000000000..37c96274e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c3e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c47.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c47.png new file mode 100644 index 000000000..0f99e6c05 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c47.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4d.png new file mode 100644 index 000000000..ca0b691d5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4e.png new file mode 100644 index 000000000..3f6d3dcb7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4f.png new file mode 100644 index 000000000..2f8c8f5ac Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c4f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c51.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c51.png new file mode 100644 index 000000000..b939cffe1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c51.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c53.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c53.png new file mode 100644 index 000000000..b87d887a5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c53.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c54.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c54.png new file mode 100644 index 000000000..a4b7e8e63 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28c54.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28cca.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28cca.png new file mode 100644 index 000000000..efcff44ff Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28cca.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ccd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ccd.png new file mode 100644 index 000000000..ecfca6182 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ccd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28cd2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28cd2.png new file mode 100644 index 000000000..f79e8eb96 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28cd2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28e0f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28e0f.png new file mode 100644 index 000000000..46bfb5d3e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28e0f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28e99.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28e99.png new file mode 100644 index 000000000..4baf4ba9b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28e99.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ee7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ee7.png new file mode 100644 index 000000000..95afe8bf9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ee7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ef6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ef6.png new file mode 100644 index 000000000..b4e2e43b4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-28ef6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2925c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2925c.png new file mode 100644 index 000000000..b79778c41 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2925c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-294ba.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-294ba.png new file mode 100644 index 000000000..b5c0bffa0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-294ba.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2967f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2967f.png new file mode 100644 index 000000000..367323c3a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2967f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29751.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29751.png new file mode 100644 index 000000000..cc253b43b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29751.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2980c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2980c.png new file mode 100644 index 000000000..2352337a0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2980c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2980d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2980d.png new file mode 100644 index 000000000..77379e64b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2980d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29810.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29810.png new file mode 100644 index 000000000..e934e883a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29810.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29a02.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29a02.png new file mode 100644 index 000000000..dbf1b0451 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29a02.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29d98.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29d98.png new file mode 100644 index 000000000..c85e51918 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29d98.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29dd5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29dd5.png new file mode 100644 index 000000000..19c0adb77 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29dd5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f7c.png new file mode 100644 index 000000000..fe67c36be Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f7e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f7e.png new file mode 100644 index 000000000..d8eecb060 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f7e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f83.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f83.png new file mode 100644 index 000000000..8e0e81023 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f83.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f87.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f87.png new file mode 100644 index 000000000..e6f388ba1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f87.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f8c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f8c.png new file mode 100644 index 000000000..e8218a995 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-29f8c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a04f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a04f.png new file mode 100644 index 000000000..fdc150b29 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a04f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a248.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a248.png new file mode 100644 index 000000000..346bf2d91 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a248.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a38a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a38a.png new file mode 100644 index 000000000..760ed0545 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a38a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a79d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a79d.png new file mode 100644 index 000000000..cce8266c1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a79d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a7dd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a7dd.png new file mode 100644 index 000000000..1343678a4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a7dd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a838.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a838.png new file mode 100644 index 000000000..b3cf7dd5a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a838.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a83d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a83d.png new file mode 100644 index 000000000..cc9c951da Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a83d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8ae.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8ae.png new file mode 100644 index 000000000..5c6792f8e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8ae.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8dd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8dd.png new file mode 100644 index 000000000..3c17d5e4f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8dd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8fb.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8fb.png new file mode 100644 index 000000000..8382616f5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a8fb.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a917.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a917.png new file mode 100644 index 000000000..121b31fa1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a917.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a970.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a970.png new file mode 100644 index 000000000..074aa5dd4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2a970.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa07.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa07.png new file mode 100644 index 000000000..03985f0df Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa07.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa0a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa0a.png new file mode 100644 index 000000000..fc75648ae Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa0a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa30.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa30.png new file mode 100644 index 000000000..e7cf603a8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa30.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa36.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa36.png new file mode 100644 index 000000000..bc5d3599e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa36.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa58.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa58.png new file mode 100644 index 000000000..8d199cdf6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aa58.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ab62.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ab62.png new file mode 100644 index 000000000..893a32129 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ab62.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2abb3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2abb3.png new file mode 100644 index 000000000..bfe4aad18 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2abb3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aed0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aed0.png new file mode 100644 index 000000000..f27ea5262 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2aed0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2af94.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2af94.png new file mode 100644 index 000000000..8e4837483 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2af94.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2afa2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2afa2.png new file mode 100644 index 000000000..345848a71 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2afa2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2afd6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2afd6.png new file mode 100644 index 000000000..3a6a32605 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2afd6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b0d1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b0d1.png new file mode 100644 index 000000000..fe48dcd7a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b0d1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b125.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b125.png new file mode 100644 index 000000000..e336fdc06 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b125.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b127.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b127.png new file mode 100644 index 000000000..19b6e5bb3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b127.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b128.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b128.png new file mode 100644 index 000000000..0793a2ca6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b128.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b137.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b137.png new file mode 100644 index 000000000..5732d1cfe Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b137.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b138.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b138.png new file mode 100644 index 000000000..07680b837 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b138.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b1ed.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b1ed.png new file mode 100644 index 000000000..b5fa92c53 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b1ed.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b241.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b241.png new file mode 100644 index 000000000..c00995f5c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b241.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b2bb.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b2bb.png new file mode 100644 index 000000000..c965ff1f2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b2bb.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b300.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b300.png new file mode 100644 index 000000000..9deb60372 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b300.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b328.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b328.png new file mode 100644 index 000000000..f958ca8bc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b328.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b35f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b35f.png new file mode 100644 index 000000000..143a0f845 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b35f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b362.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b362.png new file mode 100644 index 000000000..eb0db5b03 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b362.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b363.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b363.png new file mode 100644 index 000000000..2d0677a8d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b363.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b36f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b36f.png new file mode 100644 index 000000000..70761fa9e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b36f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b372.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b372.png new file mode 100644 index 000000000..c0068bee5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b372.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b37b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b37b.png new file mode 100644 index 000000000..33674b5b6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b37b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b37d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b37d.png new file mode 100644 index 000000000..9b5f82228 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b37d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b404.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b404.png new file mode 100644 index 000000000..5eb9d0b18 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b404.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b410.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b410.png new file mode 100644 index 000000000..241cece94 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b410.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b413.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b413.png new file mode 100644 index 000000000..661ae243a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b413.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b461.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b461.png new file mode 100644 index 000000000..97a6cee62 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b461.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4e7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4e7.png new file mode 100644 index 000000000..095d70aa8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4e7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4e9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4e9.png new file mode 100644 index 000000000..720650438 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4e9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4ef.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4ef.png new file mode 100644 index 000000000..c3752db8e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4ef.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4f6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4f6.png new file mode 100644 index 000000000..beaace306 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4f6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4f9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4f9.png new file mode 100644 index 000000000..887637e6c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b4f9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b50d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b50d.png new file mode 100644 index 000000000..4a17d3bc1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b50d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b50e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b50e.png new file mode 100644 index 000000000..7ec58ce20 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b50e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b536.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b536.png new file mode 100644 index 000000000..895b1ad46 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b536.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b583.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b583.png new file mode 100644 index 000000000..8518d0efe Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b583.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b594.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b594.png new file mode 100644 index 000000000..dddae1678 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b594.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b598.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b598.png new file mode 100644 index 000000000..dd2c61c37 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b598.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5ae.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5ae.png new file mode 100644 index 000000000..000b9c7ae Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5ae.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5af.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5af.png new file mode 100644 index 000000000..73d33e5a2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5af.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5b3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5b3.png new file mode 100644 index 000000000..4122b8bdc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5b3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5b9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5b9.png new file mode 100644 index 000000000..a5c6bb6f9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5b9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5e7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5e7.png new file mode 100644 index 000000000..a59ae859f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5e7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5eb.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5eb.png new file mode 100644 index 000000000..bf07d03e8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5eb.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5f0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5f0.png new file mode 100644 index 000000000..1df5b7add Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5f0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5f4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5f4.png new file mode 100644 index 000000000..6651dab5b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b5f4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b61c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b61c.png new file mode 100644 index 000000000..8737f2853 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b61c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b61d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b61d.png new file mode 100644 index 000000000..43752a429 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b61d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b624.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b624.png new file mode 100644 index 000000000..47fd2380e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b624.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b626.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b626.png new file mode 100644 index 000000000..b37729e17 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b626.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b627.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b627.png new file mode 100644 index 000000000..928157959 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b627.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b628.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b628.png new file mode 100644 index 000000000..7db953e54 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b628.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b62a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b62a.png new file mode 100644 index 000000000..7dbc5c7c2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b62a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b62c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b62c.png new file mode 100644 index 000000000..65dca825e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b62c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b689.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b689.png new file mode 100644 index 000000000..f0583a4fa Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b689.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b692.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b692.png new file mode 100644 index 000000000..9a77b9cf6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b692.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b694.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b694.png new file mode 100644 index 000000000..61a635232 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b694.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b695.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b695.png new file mode 100644 index 000000000..53bc2cca9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b695.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b696.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b696.png new file mode 100644 index 000000000..edad7d78b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b696.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6ad.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6ad.png new file mode 100644 index 000000000..8215338dc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6ad.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6da.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6da.png new file mode 100644 index 000000000..c258e93e3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6da.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6de.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6de.png new file mode 100644 index 000000000..b5c937cd8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6de.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6e9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6e9.png new file mode 100644 index 000000000..961285d37 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6e9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6ed.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6ed.png new file mode 100644 index 000000000..e5457b759 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6ed.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6f6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6f6.png new file mode 100644 index 000000000..8d80a72ae Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b6f6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b728.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b728.png new file mode 100644 index 000000000..7f9bd759c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b728.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7a9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7a9.png new file mode 100644 index 000000000..42f44b353 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7a9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7c5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7c5.png new file mode 100644 index 000000000..781eee250 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7c5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7e6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7e6.png new file mode 100644 index 000000000..04c563c8b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7e6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7f7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7f7.png new file mode 100644 index 000000000..90f4344d1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7f7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7f9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7f9.png new file mode 100644 index 000000000..74fda0710 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7f9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7fc.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7fc.png new file mode 100644 index 000000000..1512d0b51 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b7fc.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b806.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b806.png new file mode 100644 index 000000000..621249318 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b806.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b80a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b80a.png new file mode 100644 index 000000000..47a4fa719 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b80a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b81c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b81c.png new file mode 100644 index 000000000..4a8018c6a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b81c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b8b8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b8b8.png new file mode 100644 index 000000000..94dc7d51f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b8b8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b8ca.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b8ca.png new file mode 100644 index 000000000..716370a92 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b8ca.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b9ef.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b9ef.png new file mode 100644 index 000000000..d9c3f6497 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2b9ef.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba5b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba5b.png new file mode 100644 index 000000000..f4a0d9391 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba5b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba73.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba73.png new file mode 100644 index 000000000..76ec44800 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba73.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba81.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba81.png new file mode 100644 index 000000000..1f334d128 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba81.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba98.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba98.png new file mode 100644 index 000000000..00e998bf7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ba98.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bac7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bac7.png new file mode 100644 index 000000000..53b9d8bb0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bac7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb37.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb37.png new file mode 100644 index 000000000..27a32b75f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb37.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb5f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb5f.png new file mode 100644 index 000000000..a4bcaa4b7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb5f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb62.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb62.png new file mode 100644 index 000000000..e18c8f99b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb62.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb6a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb6a.png new file mode 100644 index 000000000..7d943fab9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb6a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb7c.png new file mode 100644 index 000000000..8a23d206b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb83.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb83.png new file mode 100644 index 000000000..4826908a0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bb83.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc1b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc1b.png new file mode 100644 index 000000000..79cdcf3ff Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc1b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc21.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc21.png new file mode 100644 index 000000000..e8f2cec92 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc21.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc30.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc30.png new file mode 100644 index 000000000..6d86a7d20 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bc30.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bca6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bca6.png new file mode 100644 index 000000000..6eb2e0ccc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bca6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd58.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd58.png new file mode 100644 index 000000000..57c7e66ca Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd58.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd77.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd77.png new file mode 100644 index 000000000..a7121052b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd77.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd7c.png new file mode 100644 index 000000000..c7420591c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd87.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd87.png new file mode 100644 index 000000000..e6388ea5c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bd87.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bdf7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bdf7.png new file mode 100644 index 000000000..1a960aa80 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bdf7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2be29.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2be29.png new file mode 100644 index 000000000..597fba56a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2be29.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bf1d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bf1d.png new file mode 100644 index 000000000..d349524c7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2bf1d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c029.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c029.png new file mode 100644 index 000000000..c007eca24 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c029.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c02a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c02a.png new file mode 100644 index 000000000..fd35c3064 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c02a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c081.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c081.png new file mode 100644 index 000000000..0b4cb639f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c081.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0a9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0a9.png new file mode 100644 index 000000000..8fa3393fe Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0a9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0c0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0c0.png new file mode 100644 index 000000000..e8c06acf0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0c0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0ca.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0ca.png new file mode 100644 index 000000000..67c038038 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c0ca.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1d5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1d5.png new file mode 100644 index 000000000..7a7c878ba Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1d5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1d9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1d9.png new file mode 100644 index 000000000..831862671 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1d9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1de.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1de.png new file mode 100644 index 000000000..0c15fb82d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1de.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1f9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1f9.png new file mode 100644 index 000000000..39702244c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c1f9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c27c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c27c.png new file mode 100644 index 000000000..69deab35f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c27c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c288.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c288.png new file mode 100644 index 000000000..578717df2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c288.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c29c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c29c.png new file mode 100644 index 000000000..c7f268349 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c29c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c2a4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c2a4.png new file mode 100644 index 000000000..5279dd26d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c2a4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c2b6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c2b6.png new file mode 100644 index 000000000..6b05941c6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c2b6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c317.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c317.png new file mode 100644 index 000000000..7e4afb278 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c317.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c35b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c35b.png new file mode 100644 index 000000000..5bcf067bb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c35b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c361.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c361.png new file mode 100644 index 000000000..5540f1394 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c361.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c364.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c364.png new file mode 100644 index 000000000..12f6ca2ff Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c364.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c386.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c386.png new file mode 100644 index 000000000..19b4d6825 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c386.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c457.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c457.png new file mode 100644 index 000000000..3880d3501 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c457.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c488.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c488.png new file mode 100644 index 000000000..54810027b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c488.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c494.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c494.png new file mode 100644 index 000000000..869d753d5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c494.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c497.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c497.png new file mode 100644 index 000000000..e2365b6e0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c497.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c542.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c542.png new file mode 100644 index 000000000..023864f31 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c542.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c58b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c58b.png new file mode 100644 index 000000000..081b9041b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c58b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c59e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c59e.png new file mode 100644 index 000000000..328f5f40e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c59e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c613.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c613.png new file mode 100644 index 000000000..1c6afd9f8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c613.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c618.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c618.png new file mode 100644 index 000000000..1ee7f947c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c618.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c621.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c621.png new file mode 100644 index 000000000..55ba0523f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c621.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c622.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c622.png new file mode 100644 index 000000000..a6f3df01c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c622.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c629.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c629.png new file mode 100644 index 000000000..c6cf3e4b1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c629.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62b.png new file mode 100644 index 000000000..6be45ac93 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62c.png new file mode 100644 index 000000000..3454f99cb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62d.png new file mode 100644 index 000000000..b9173f138 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62f.png new file mode 100644 index 000000000..c7d44e18f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c62f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c635.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c635.png new file mode 100644 index 000000000..c2704542d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c635.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c642.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c642.png new file mode 100644 index 000000000..ff22e8002 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c642.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c64a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c64a.png new file mode 100644 index 000000000..c96bfae67 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c64a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c64b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c64b.png new file mode 100644 index 000000000..a17011de0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c64b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c72c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c72c.png new file mode 100644 index 000000000..f12799cca Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c72c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c72f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c72f.png new file mode 100644 index 000000000..a390b454c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c72f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c79f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c79f.png new file mode 100644 index 000000000..62d7e7417 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c79f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c7c1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c7c1.png new file mode 100644 index 000000000..9425ca175 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c7c1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c7fd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c7fd.png new file mode 100644 index 000000000..10da8ee36 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c7fd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c88a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c88a.png new file mode 100644 index 000000000..56ac5fd8f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c88a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8c0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8c0.png new file mode 100644 index 000000000..7d7bd8d93 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8c0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8d9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8d9.png new file mode 100644 index 000000000..55e3177d8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8d9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8de.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8de.png new file mode 100644 index 000000000..5b84a656a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8de.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8e1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8e1.png new file mode 100644 index 000000000..513b3c45c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8e1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8f3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8f3.png new file mode 100644 index 000000000..32c415d1e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c8f3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c907.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c907.png new file mode 100644 index 000000000..0585d2141 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c907.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c90a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c90a.png new file mode 100644 index 000000000..18fe0f035 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c90a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c91d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c91d.png new file mode 100644 index 000000000..025cfee04 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c91d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c9c0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c9c0.png new file mode 100644 index 000000000..584c332c1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2c9c0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca02.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca02.png new file mode 100644 index 000000000..5e0496588 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca02.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca0e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca0e.png new file mode 100644 index 000000000..79e4102fc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca0e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca7d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca7d.png new file mode 100644 index 000000000..7b09547d4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca7d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca8d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca8d.png new file mode 100644 index 000000000..79cb1e31e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ca8d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2caa9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2caa9.png new file mode 100644 index 000000000..d1f55a2c1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2caa9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb29.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb29.png new file mode 100644 index 000000000..1046a93fc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb29.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2b.png new file mode 100644 index 000000000..4bf6b82f4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2d.png new file mode 100644 index 000000000..b64c7a740 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2e.png new file mode 100644 index 000000000..c72074c32 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb2e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb31.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb31.png new file mode 100644 index 000000000..cc5d17592 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb31.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb38.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb38.png new file mode 100644 index 000000000..f4bb6ef19 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb38.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb39.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb39.png new file mode 100644 index 000000000..d8880020c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb39.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3a.png new file mode 100644 index 000000000..1a88364fc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3b.png new file mode 100644 index 000000000..3f524c643 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3f.png new file mode 100644 index 000000000..e4eb3120b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb3f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb41.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb41.png new file mode 100644 index 000000000..43a7fe0bd Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb41.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb4a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb4a.png new file mode 100644 index 000000000..4f7f9bff1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb4a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb4e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb4e.png new file mode 100644 index 000000000..33424d6c4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb4e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb5a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb5a.png new file mode 100644 index 000000000..7a59fdec7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb5a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb5b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb5b.png new file mode 100644 index 000000000..3ae2cec14 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb5b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb63.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb63.png new file mode 100644 index 000000000..16211f297 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb63.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb64.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb64.png new file mode 100644 index 000000000..c0b4c5a8f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb64.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb69.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb69.png new file mode 100644 index 000000000..acb3f273c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb69.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb6c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb6c.png new file mode 100644 index 000000000..496b1170a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb6c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb6f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb6f.png new file mode 100644 index 000000000..55f619130 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb6f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb73.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb73.png new file mode 100644 index 000000000..aa3e0c5c4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb73.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb76.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb76.png new file mode 100644 index 000000000..2d2381cd3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb76.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb78.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb78.png new file mode 100644 index 000000000..ca381a4da Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb78.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb7c.png new file mode 100644 index 000000000..b350867cb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cb7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cba4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cba4.png new file mode 100644 index 000000000..591ecd210 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cba4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbb1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbb1.png new file mode 100644 index 000000000..9dc4e7650 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbb1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbb4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbb4.png new file mode 100644 index 000000000..a0bdb08af Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbb4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbbf.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbbf.png new file mode 100644 index 000000000..2d731a62f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbbf.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbc0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbc0.png new file mode 100644 index 000000000..bb7d9c616 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbc0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbce.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbce.png new file mode 100644 index 000000000..174073cd4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cbce.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cc56.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cc56.png new file mode 100644 index 000000000..2321ccea8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cc56.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cc5f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cc5f.png new file mode 100644 index 000000000..24931eeda Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cc5f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccb1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccb1.png new file mode 100644 index 000000000..f14593f14 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccb1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccbd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccbd.png new file mode 100644 index 000000000..588ae5814 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccbd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccc7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccc7.png new file mode 100644 index 000000000..788545f8d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccc7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccf5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccf5.png new file mode 100644 index 000000000..c177648a0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccf5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccf6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccf6.png new file mode 100644 index 000000000..e453aec35 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccf6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccfd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccfd.png new file mode 100644 index 000000000..aefb5f9bd Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccfd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccff.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccff.png new file mode 100644 index 000000000..717ca52bb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ccff.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd02.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd02.png new file mode 100644 index 000000000..585e49d07 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd02.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd03.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd03.png new file mode 100644 index 000000000..aa10265f0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd03.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd0a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd0a.png new file mode 100644 index 000000000..2ad90298a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd0a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd10.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd10.png new file mode 100644 index 000000000..08fec880b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd10.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8b.png new file mode 100644 index 000000000..92a3ed105 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8d.png new file mode 100644 index 000000000..3cf914780 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8f.png new file mode 100644 index 000000000..80beaa3f8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd8f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd90.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd90.png new file mode 100644 index 000000000..780061c25 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd90.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd9f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd9f.png new file mode 100644 index 000000000..168971543 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cd9f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cda0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cda0.png new file mode 100644 index 000000000..94afce668 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cda0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cda8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cda8.png new file mode 100644 index 000000000..95573e5bb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cda8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdad.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdad.png new file mode 100644 index 000000000..056d75fcc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdad.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdae.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdae.png new file mode 100644 index 000000000..f0eef2226 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdae.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdd5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdd5.png new file mode 100644 index 000000000..572765c83 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2cdd5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce05.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce05.png new file mode 100644 index 000000000..354c09f15 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce05.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce18.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce18.png new file mode 100644 index 000000000..ea91172e9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce18.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce1a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce1a.png new file mode 100644 index 000000000..97152553f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce1a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce23.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce23.png new file mode 100644 index 000000000..ddcd30d73 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce23.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce26.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce26.png new file mode 100644 index 000000000..a9568bd1c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce26.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce2a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce2a.png new file mode 100644 index 000000000..2a1ce5c46 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce2a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce7a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce7a.png new file mode 100644 index 000000000..ed9309ab2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce7a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce7c.png new file mode 100644 index 000000000..413cfcc23 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce88.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce88.png new file mode 100644 index 000000000..01a802567 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce88.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce93.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce93.png new file mode 100644 index 000000000..f6bc48fa8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ce93.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d25d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d25d.png new file mode 100644 index 000000000..e22b4fb0d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d25d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d382.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d382.png new file mode 100644 index 000000000..e6254ca63 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d382.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d544.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d544.png new file mode 100644 index 000000000..398d659c7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2d544.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2dc4a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2dc4a.png new file mode 100644 index 000000000..d122b2ca8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2dc4a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2dd0a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2dd0a.png new file mode 100644 index 000000000..3a089f931 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2dd0a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e014.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e014.png new file mode 100644 index 000000000..88a0a9a15 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e014.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26b.png new file mode 100644 index 000000000..da1ee2c4d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26c.png new file mode 100644 index 000000000..9d569cef2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26f.png new file mode 100644 index 000000000..9e2de88aa Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e26f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e41a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e41a.png new file mode 100644 index 000000000..b8feadb47 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e41a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e428.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e428.png new file mode 100644 index 000000000..c7fa7e2eb Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e428.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e502.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e502.png new file mode 100644 index 000000000..2cd57dd8d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e502.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e505.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e505.png new file mode 100644 index 000000000..4d1d16e17 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e505.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e50a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e50a.png new file mode 100644 index 000000000..d3978e0d2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e50a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e5b1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e5b1.png new file mode 100644 index 000000000..8f4f8a7e3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e5b1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e64a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e64a.png new file mode 100644 index 000000000..6dfe7dcdc Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e64a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e64b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e64b.png new file mode 100644 index 000000000..7c3a91a99 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e64b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e774.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e774.png new file mode 100644 index 000000000..025014156 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e774.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e775.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e775.png new file mode 100644 index 000000000..e0cebb3e6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e775.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e779.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e779.png new file mode 100644 index 000000000..55207b26f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e779.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e8f2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e8f2.png new file mode 100644 index 000000000..2d1473900 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e8f2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e8f3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e8f3.png new file mode 100644 index 000000000..0dbed89f9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e8f3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e932.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e932.png new file mode 100644 index 000000000..1ff472cd0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e932.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e9f5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e9f5.png new file mode 100644 index 000000000..627cb1aab Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2e9f5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea3b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea3b.png new file mode 100644 index 000000000..637012df6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea3b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea5d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea5d.png new file mode 100644 index 000000000..9617106ee Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea5d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea5e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea5e.png new file mode 100644 index 000000000..8c4d00df4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ea5e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eaa5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eaa5.png new file mode 100644 index 000000000..21a36ed38 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eaa5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb1d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb1d.png new file mode 100644 index 000000000..d195e6220 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb1d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb21.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb21.png new file mode 100644 index 000000000..e954bead1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb21.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb66.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb66.png new file mode 100644 index 000000000..515156f78 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb66.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb68.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb68.png new file mode 100644 index 000000000..e1367c49b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2eb68.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ebd9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ebd9.png new file mode 100644 index 000000000..6169c8e2f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2ebd9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2f884.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2f884.png new file mode 100644 index 000000000..c2dddf9a2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2f884.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2f8b6.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2f8b6.png new file mode 100644 index 000000000..80947b6ab Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-2f8b6.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-300f7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-300f7.png new file mode 100644 index 000000000..d7a2f79a6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-300f7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-301e3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-301e3.png new file mode 100644 index 000000000..f7297c6df Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-301e3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-302c0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-302c0.png new file mode 100644 index 000000000..b245946d9 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-302c0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30300.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30300.png new file mode 100644 index 000000000..596fb51d5 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30300.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30302.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30302.png new file mode 100644 index 000000000..35fc7b059 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30302.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30787.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30787.png new file mode 100644 index 000000000..6b9d5dee0 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30787.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-307d8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-307d8.png new file mode 100644 index 000000000..5ceb30576 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-307d8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30858.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30858.png new file mode 100644 index 000000000..cb2fc3321 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30858.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30915.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30915.png new file mode 100644 index 000000000..f3d5f8a8a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30915.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30abf.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30abf.png new file mode 100644 index 000000000..f5346207b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30abf.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30bfc.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30bfc.png new file mode 100644 index 000000000..d46b1600c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30bfc.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30c72.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30c72.png new file mode 100644 index 000000000..d18359255 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30c72.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d5d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d5d.png new file mode 100644 index 000000000..9119a1352 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d5d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d5e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d5e.png new file mode 100644 index 000000000..2e8b8ec91 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d5e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d67.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d67.png new file mode 100644 index 000000000..0d670a800 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d67.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d74.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d74.png new file mode 100644 index 000000000..ed6197e92 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d74.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d7c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d7c.png new file mode 100644 index 000000000..c3ad3976c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d7c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d8a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d8a.png new file mode 100644 index 000000000..7d2131735 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30d8a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30de5.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30de5.png new file mode 100644 index 000000000..791a07ad8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30de5.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30edd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30edd.png new file mode 100644 index 000000000..5a1ffd69c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30edd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30ede.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30ede.png new file mode 100644 index 000000000..5a1ffd69c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30ede.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f57.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f57.png new file mode 100644 index 000000000..bae3ed7b7 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f57.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f5a.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f5a.png new file mode 100644 index 000000000..42ad0b526 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f5a.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f74.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f74.png new file mode 100644 index 000000000..4b7f274f6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f74.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f7d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f7d.png new file mode 100644 index 000000000..1f7a5d94d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30f7d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30fa0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30fa0.png new file mode 100644 index 000000000..f6112b1ad Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30fa0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30fab.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30fab.png new file mode 100644 index 000000000..a03e3734b Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-30fab.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3106c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3106c.png new file mode 100644 index 000000000..3463e3f48 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3106c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31090.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31090.png new file mode 100644 index 000000000..c7d92c9d8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31090.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310a9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310a9.png new file mode 100644 index 000000000..cce92cf1c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310a9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310b1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310b1.png new file mode 100644 index 000000000..462d14e16 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310b1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310ea.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310ea.png new file mode 100644 index 000000000..b87769d50 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310ea.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310f1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310f1.png new file mode 100644 index 000000000..51a7f6c54 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310f1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310fa.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310fa.png new file mode 100644 index 000000000..74dc84601 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-310fa.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3114b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3114b.png new file mode 100644 index 000000000..a7b7ae9c4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3114b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3115b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3115b.png new file mode 100644 index 000000000..9613b367a Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3115b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-311e3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-311e3.png new file mode 100644 index 000000000..e392ff497 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-311e3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-311f1.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-311f1.png new file mode 100644 index 000000000..d6a26f295 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-311f1.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31254.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31254.png new file mode 100644 index 000000000..e02bc19df Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31254.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-312c9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-312c9.png new file mode 100644 index 000000000..167cf0a7e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-312c9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3132e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3132e.png new file mode 100644 index 000000000..0f363d60d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3132e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-313bc.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-313bc.png new file mode 100644 index 000000000..68c2287c8 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-313bc.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-313ff.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-313ff.png new file mode 100644 index 000000000..5c27e6917 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-313ff.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3158e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3158e.png new file mode 100644 index 000000000..ae3709d7c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3158e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31592.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31592.png new file mode 100644 index 000000000..ec38c3fe3 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31592.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31b92.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31b92.png new file mode 100644 index 000000000..41cf32860 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31b92.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31b9c.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31b9c.png new file mode 100644 index 000000000..ce57115d1 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31b9c.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31d1f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31d1f.png new file mode 100644 index 000000000..8dbef9e8d Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31d1f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31d31.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31d31.png new file mode 100644 index 000000000..4b89ac864 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31d31.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31e07.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31e07.png new file mode 100644 index 000000000..e3066bc69 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31e07.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31e4d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31e4d.png new file mode 100644 index 000000000..9d9c05a70 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-31e4d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-32003.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-32003.png new file mode 100644 index 000000000..7c90ce37c Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-32003.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3208e.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3208e.png new file mode 100644 index 000000000..ad1bfcae2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3208e.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-32217.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-32217.png new file mode 100644 index 000000000..8c4861178 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-32217.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-322e4.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-322e4.png new file mode 100644 index 000000000..60c106a45 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-322e4.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3235b.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3235b.png new file mode 100644 index 000000000..24ebbbdb6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3235b.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3236d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3236d.png new file mode 100644 index 000000000..b6586ddf4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3236d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3237f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3237f.png new file mode 100644 index 000000000..9579771a6 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-3237f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-fix-5829.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-fix-5829.png new file mode 100644 index 000000000..15f2f5243 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-fix-5829.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-fix-6ff9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-fix-6ff9.png new file mode 100644 index 000000000..a061c2b66 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-fix-6ff9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fd0.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fd0.png new file mode 100644 index 000000000..64380a7a4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fd0.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fec.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fec.png new file mode 100644 index 000000000..b07c08953 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fec.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fed.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fed.png new file mode 100644 index 000000000..c7ed8a477 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9fed.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff2.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff2.png new file mode 100644 index 000000000..61a689d8e Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff2.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff3.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff3.png new file mode 100644 index 000000000..5d368cdc4 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff3.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff7.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff7.png new file mode 100644 index 000000000..8e0028f80 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff7.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff8.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff8.png new file mode 100644 index 000000000..992a3ff02 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ff8.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ffd.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ffd.png new file mode 100644 index 000000000..e8f63fca2 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ffd.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ffe.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ffe.png new file mode 100644 index 000000000..9c14406be Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/character-basic-supp-9ffe.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_4d.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_4d.png new file mode 100644 index 000000000..8b973199f Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_4d.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_9f.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_9f.png new file mode 100644 index 000000000..b18c37139 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_9f.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_f9.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_f9.png new file mode 100644 index 000000000..ddc7fbb28 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_f9.png differ diff --git a/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_fa.png b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_fa.png new file mode 100644 index 000000000..e15f17f55 Binary files /dev/null and b/modules/minecraft_cjk_character_supplement/assets/minecraft/textures/font/unicode_page_fa.png differ diff --git a/modules/minecraft_cjk_character_supplement/module_manifest.json b/modules/minecraft_cjk_character_supplement/module_manifest.json new file mode 100644 index 000000000..7299352d5 --- /dev/null +++ b/modules/minecraft_cjk_character_supplement/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "minecraft_cjk_character_supplement", + "type": "resource", + "description": "为Minecraft补充部分中日韩越统一表意文字的字形,并调整标点宽度", + "author": ["Nickid2018", "Lakejason0", "yzy32767"] +} diff --git a/modules/mooncake/add.json b/modules/mooncake/add.json index 42ade1a73..95dc239af 100644 --- a/modules/mooncake/add.json +++ b/modules/mooncake/add.json @@ -18,5 +18,5 @@ "block.minecraft.white_candle_cake": "插上白色鞭炮的§m蛋糕§r月饼", "block.minecraft.yellow_candle_cake": "插上黄色鞭炮的§m蛋糕§r月饼", "stat.minecraft.eat_cake_slice": "吃掉的§m蛋糕§r月饼片数", - "subtitles.block.cake.add_candle": "§m蛋糕§r月饼:疼死了!" + "subtitles.block.cake.add_candle": "§m蛋糕§r月饼:噗叽啪" } diff --git a/modules/mooncake/module_manifest.json b/modules/mooncake/module_manifest.json index 777465894..788c7302d 100644 --- a/modules/mooncake/module_manifest.json +++ b/modules/mooncake/module_manifest.json @@ -2,12 +2,12 @@ "name": "mooncake", "type": "resource", "description": "恰月饼!", - "author": [ - "IcyPhantom", - "电量量" - ], - "classifier": [ - "modified_resource", - "modified_language" + "author": ["IcyPhantom", "电量量"], + "incompatible_with": ["reverse_cake_texture"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/mopemope/add.json b/modules/mopemope/add.json new file mode 100644 index 000000000..7e4ca8b3c --- /dev/null +++ b/modules/mopemope/add.json @@ -0,0 +1,4 @@ +{ + "biome.minecraft.sunflower_plains": "mope平原", + "block.minecraft.sunflower": "小破花" +} diff --git a/modules/mopemope/module_manifest.json b/modules/mopemope/module_manifest.json index 2eb8d9f31..98d79216c 100644 --- a/modules/mopemope/module_manifest.json +++ b/modules/mopemope/module_manifest.json @@ -2,11 +2,11 @@ "name": "mopemope", "type": "resource", "description": "儿 童 金 曲", - "author": [ - "DoroWolf", - "Zh9c418" - ], - "classifier": [ - "modified_resource" + "author": ["DoroWolf", "Zh9c418"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] } diff --git a/modules/observer_think/add.json b/modules/observer_think/add.json new file mode 100644 index 000000000..bff1c942a --- /dev/null +++ b/modules/observer_think/add.json @@ -0,0 +1,3 @@ +{ + "block.minecraft.observer": "思辨者.png" +} diff --git a/modules/observer_think/assets/minecraft/models/block/observer_on.json b/modules/observer_think/assets/minecraft/models/block/observer_on.json index 5607da96a..9d923dffb 100644 --- a/modules/observer_think/assets/minecraft/models/block/observer_on.json +++ b/modules/observer_think/assets/minecraft/models/block/observer_on.json @@ -1,7 +1,7 @@ { "parent": "block/observer", "textures": { - "front": "block/observer_front2", + "front": "block/observer_front_on", "bottom": "block/observer_back_on" } -} \ No newline at end of file +} diff --git a/modules/observer_think/assets/minecraft/textures/block/observer_front2.png b/modules/observer_think/assets/minecraft/textures/block/observer_front_on.png similarity index 100% rename from modules/observer_think/assets/minecraft/textures/block/observer_front2.png rename to modules/observer_think/assets/minecraft/textures/block/observer_front_on.png diff --git a/modules/observer_think/module_manifest.json b/modules/observer_think/module_manifest.json index b260faeba..b5079eb53 100644 --- a/modules/observer_think/module_manifest.json +++ b/modules/observer_think/module_manifest.json @@ -2,11 +2,11 @@ "name": "observer_think", "type": "resource", "description": "思辩者.jpg", - "author": [ - "ZCYF", - "Lakejason0" - ], - "classifier": [ - "modified_resource" + "author": ["ZCYF", "Lakejason0"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } ] -} \ No newline at end of file +} diff --git a/modules/open_close_sound/module_manifest.json b/modules/open_close_sound/module_manifest.json index a2d446ec0..98edea2eb 100644 --- a/modules/open_close_sound/module_manifest.json +++ b/modules/open_close_sound/module_manifest.json @@ -2,10 +2,5 @@ "name": "open_close_sound", "type": "resource", "description": "关掉,关掉,一定要关掉...", - "author": [ - "DoroWolf" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["DoroWolf"] +} diff --git a/modules/priority.txt b/modules/priority.txt new file mode 100644 index 000000000..6ec96e6f0 --- /dev/null +++ b/modules/priority.txt @@ -0,0 +1,95 @@ +# READ THIS BEFORE MAKING CHANGES! +# Hash (#) marks a comment which will be ignored. +# Empty lines are ignored. +# Spaces are trimmed from the start and end of the line. +# The list applies from top to bottom. +# Modules not specified in this list will be applied last. +meme_resourcepack + +a_letter # conflict with a_piece_of_seriousness +a_piece_of_seriousness # conflict with a_letter +grass_enchanted # conflict with real_grass +real_grass # conflict with grass_enchanted +anniversary # conflict with reverse_cake_model +reverse_cake_model # conflict with anniversary, reverse_cake_texture +mooncake # conflict with reverse_cake_texture +reverse_cake_texture # conflict with mooncake, reverse_cake_model +famous_scene # conflict with linus_minecraft_craps +linus_minecraft_craps # conflict with famous_scene +enable_compliancies # conflict with too_much_compliancies +too_much_compliancies # conflict with enable_compliancies + +bagify # incompatible with fursuit, jinkela +bee_pickaxe # incompatible with bee_pickaxe, fake_multitool +chicken_soup # incompatible with sus_stuff +locusazzurro # incompatible with fake_multitool, locusazzurro +fake_multitool # incompatible with bee_pickaxe, locusazzurro +sus_stuff # incompatible with chicken_soup +questioning_totem # incompatible with totem_model +totem_model # incompatible with questioning_totem + +baguette +block_animation_reverse +brewing_stand_model +disco_ball +dorowolf_texture +map_override +miku_bucket +minecart_helmet +minecraft_cjk_character_supplement +mopemope +observer_think +rainbow_enchanting +sacabambaspis_dropper +strange_meme_background +vulpes_ferrilata + +author_zombies +bugjump +red_leaf_valley + +annoying_sounds +beautiful_chicken +bell_sound +firework_sound +goat_horn_sound +open_close_sound +sculk_sound + +enchantment_level_extend +mcbbs +meme_splashes + +lang_april_fools_snapshots +lang_combat_test_6 +lang_extra_strings +lang_old_realms_strings +lang_old_strings +lang_achievements_1.11-1.11.2 +lang_commands_1.11-1.12.2 +lang_attributes_1.12.2-1.15.2 +lang_nether_biome_1.12.2-1.15.2 +lang_serious_dedication_1.12.2-1.15.2 +lang_trapdoor_1.12.2-1.15.2 +lang_spawnpoint_1.12.2-1.15.2 +lang_selectworld_gui_1.12.2-1.16.1 +lang_spawnpoint_1.16-1.16.1 +lang_multiplayer_1.12.2-1.16.3 +lang_backupworld_1.12.2-1.16.5 +lang_grass_path_1.12.2-1.16.5 +lang_replaceitem_1.12.2-1.16.5 +lang_sleep_impossible_1.12.2-1.16.5 +lang_worldborder_1.12.2-1.16.5 +lang_selectworld_gui_1.16.2-1.16.5 +lang_old_biomes_1.12.2-1.17.1 +lang_world_generation_1.12.2-1.18.2 +lang_itemgroup_1.12.2-1.19.2 +lang_chat_preview_1.19.2 + +lang_sfw +lang_sfc +lang_netease + +fursuit # incompatible with bagify, jinkela +jinkela # incompatible with bagify, fursuit +latiao \ No newline at end of file diff --git a/modules/questioning_totem/module_manifest.json b/modules/questioning_totem/module_manifest.json index ac9b318d5..633123bc4 100644 --- a/modules/questioning_totem/module_manifest.json +++ b/modules/questioning_totem/module_manifest.json @@ -2,13 +2,5 @@ "name": "questioning_totem", "type": "resource", "description": "在?您怎么又死了?", - "author": [ - "DoroWolf" - ], - "incompatible_with": [ - "totem_model" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["DoroWolf"] +} diff --git a/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_glint_entity.png b/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_glint_entity.png new file mode 100644 index 000000000..43832d29c Binary files /dev/null and b/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_glint_entity.png differ diff --git a/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_glint_item.png b/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_glint_item.png new file mode 100644 index 000000000..7b094ce05 Binary files /dev/null and b/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_glint_item.png differ diff --git a/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_item_glint.png b/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_item_glint.png index 06cfe3e98..041c51047 100644 Binary files a/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_item_glint.png and b/modules/rainbow_enchanting/assets/minecraft/textures/misc/enchanted_item_glint.png differ diff --git a/modules/rainbow_enchanting/module_manifest.json b/modules/rainbow_enchanting/module_manifest.json index 6dde90d7e..2d8c970b6 100644 --- a/modules/rainbow_enchanting/module_manifest.json +++ b/modules/rainbow_enchanting/module_manifest.json @@ -2,10 +2,5 @@ "name": "rainbow_enchanting", "type": "resource", "description": "彩虹附魔", - "author": [ - "Iron_noob_73" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Iron_noob_73"] +} diff --git a/modules/reAL_GrAsS/assets/minecraft/textures/block/grass.png b/modules/reAL_GrAsS/assets/minecraft/textures/block/grass.png deleted file mode 100644 index 5dd1decc6..000000000 Binary files a/modules/reAL_GrAsS/assets/minecraft/textures/block/grass.png and /dev/null differ diff --git a/modules/reAL_GrAsS/assets/minecraft/textures/block/tall_grass_bottom.png b/modules/reAL_GrAsS/assets/minecraft/textures/block/tall_grass_bottom.png deleted file mode 100644 index 3823f00ce..000000000 Binary files a/modules/reAL_GrAsS/assets/minecraft/textures/block/tall_grass_bottom.png and /dev/null differ diff --git a/modules/reAL_GrAsS/assets/minecraft/textures/block/tall_grass_top.png b/modules/reAL_GrAsS/assets/minecraft/textures/block/tall_grass_top.png deleted file mode 100644 index 85cdeb0ce..000000000 Binary files a/modules/reAL_GrAsS/assets/minecraft/textures/block/tall_grass_top.png and /dev/null differ diff --git a/modules/reAL_GrAsS/module_manifest.json b/modules/reAL_GrAsS/module_manifest.json deleted file mode 100644 index ca2184e20..000000000 --- a/modules/reAL_GrAsS/module_manifest.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "real_grass", - "type": "resource", - "description": "大草", - "author": [ - "Zh9c418" - ], - "incompatible_with": [ - "grass_enchanted" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file diff --git a/modules/real_grass/assets/minecraft/textures/block/grass.png b/modules/real_grass/assets/minecraft/textures/block/grass.png new file mode 100644 index 000000000..4d2199d53 Binary files /dev/null and b/modules/real_grass/assets/minecraft/textures/block/grass.png differ diff --git a/modules/real_grass/assets/minecraft/textures/block/short_grass.png b/modules/real_grass/assets/minecraft/textures/block/short_grass.png new file mode 100644 index 000000000..4d2199d53 Binary files /dev/null and b/modules/real_grass/assets/minecraft/textures/block/short_grass.png differ diff --git a/modules/real_grass/assets/minecraft/textures/block/tall_grass_bottom.png b/modules/real_grass/assets/minecraft/textures/block/tall_grass_bottom.png new file mode 100644 index 000000000..a9cea0e14 Binary files /dev/null and b/modules/real_grass/assets/minecraft/textures/block/tall_grass_bottom.png differ diff --git a/modules/real_grass/assets/minecraft/textures/block/tall_grass_top.png b/modules/real_grass/assets/minecraft/textures/block/tall_grass_top.png new file mode 100644 index 000000000..cd25573d8 Binary files /dev/null and b/modules/real_grass/assets/minecraft/textures/block/tall_grass_top.png differ diff --git a/modules/real_grass/module_manifest.json b/modules/real_grass/module_manifest.json new file mode 100644 index 000000000..967bef117 --- /dev/null +++ b/modules/real_grass/module_manifest.json @@ -0,0 +1,7 @@ +{ + "name": "real_grass", + "type": "resource", + "description": "大草", + "author": ["Zh9c418"], + "incompatible_with": ["grass_enchanted"] +} diff --git a/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch.png b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch.png deleted file mode 100644 index e82a70abd..000000000 Binary files a/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch.png and /dev/null differ diff --git a/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch_foliage.png b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch_foliage.png new file mode 100644 index 000000000..0ce907039 Binary files /dev/null and b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch_foliage.png differ diff --git a/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch.properties b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch_foliage.properties similarity index 100% rename from modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch.properties rename to modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/birch_foliage.properties diff --git a/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/spruce_foliage.png b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/spruce_foliage.png new file mode 100644 index 000000000..dc4f6ef86 Binary files /dev/null and b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/spruce_foliage.png differ diff --git a/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/spruce_foliage.properties b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/spruce_foliage.properties new file mode 100644 index 000000000..cd372cc69 --- /dev/null +++ b/modules/red_leaf_valley/assets/minecraft/optifine/colormap/blocks/spruce_foliage.properties @@ -0,0 +1 @@ +blocks=spruce_leaves \ No newline at end of file diff --git a/modules/red_leaf_valley/assets/minecraft/textures/block/birch_sapling.png b/modules/red_leaf_valley/assets/minecraft/textures/block/birch_sapling.png new file mode 100644 index 000000000..2004e6ed1 Binary files /dev/null and b/modules/red_leaf_valley/assets/minecraft/textures/block/birch_sapling.png differ diff --git a/modules/red_leaf_valley/assets/minecraft/textures/colormap/foliage.png b/modules/red_leaf_valley/assets/minecraft/textures/colormap/foliage.png index cc754f448..7d8eb1639 100644 Binary files a/modules/red_leaf_valley/assets/minecraft/textures/colormap/foliage.png and b/modules/red_leaf_valley/assets/minecraft/textures/colormap/foliage.png differ diff --git a/modules/red_leaf_valley/assets/minecraft/textures/colormap/grass.png b/modules/red_leaf_valley/assets/minecraft/textures/colormap/grass.png index 9bca7f99c..b930b2e92 100644 Binary files a/modules/red_leaf_valley/assets/minecraft/textures/colormap/grass.png and b/modules/red_leaf_valley/assets/minecraft/textures/colormap/grass.png differ diff --git a/modules/red_leaf_valley/module_manifest.json b/modules/red_leaf_valley/module_manifest.json index 13bcbcf5a..a3a5d7a5b 100644 --- a/modules/red_leaf_valley/module_manifest.json +++ b/modules/red_leaf_valley/module_manifest.json @@ -2,10 +2,5 @@ "name": "red_leaf_valley", "type": "resource", "description": "红叶谷,让白桦变为红枫(需要OptiFine)", - "author": [ - "Gu_ZT" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Gugle"] +} diff --git a/modules/ekac/add.json b/modules/reverse_cake_model/add.json similarity index 87% rename from modules/ekac/add.json rename to modules/reverse_cake_model/add.json index f9d228c3d..1b19b2e8b 100644 --- a/modules/ekac/add.json +++ b/modules/reverse_cake_model/add.json @@ -1,5 +1,6 @@ { "achievement.bakeCake": "糕蛋是个谎言", + "advancements.husbandry.allay_deliver_cake_to_noteblock.description": "让小安粒向笔记方块投掷一块糕蛋", "block.minecraft.black_candle_cake": "黑色鞭炮糕蛋", "block.minecraft.blue_candle_cake": "蓝色鞭炮糕蛋", "block.minecraft.brown_candle_cake": "棕色鞭炮糕蛋", @@ -20,5 +21,5 @@ "block.minecraft.yellow_candle_cake": "黄色鞭炮糕蛋", "item.minecraft.cake": "糕蛋", "stat.minecraft.eat_cake_slice": "吃掉的糕蛋片数", - "subtitles.block.cake.add_candle": "糕蛋:疼死了!" -} \ No newline at end of file + "subtitles.block.cake.add_candle": "糕蛋:噗叽啪" +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake.json new file mode 100644 index 000000000..1400fdde4 --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake.json @@ -0,0 +1,27 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side" + }, + "elements": [ + { + "from": [1, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "up": { "uv": [1, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [1, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice1.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice1.json new file mode 100644 index 000000000..a6cf016ef --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice1.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { + "from": [3, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 3, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [13, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#inside" }, + "up": { "uv": [3, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [3, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice2.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice2.json new file mode 100644 index 000000000..efa9ae67e --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice2.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { + "from": [5, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 5, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [11, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#inside" }, + "up": { "uv": [5, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [5, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice3.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice3.json new file mode 100644 index 000000000..0136b08eb --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice3.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { + "from": [7, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 7, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [9, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#inside" }, + "up": { "uv": [7, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [7, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice4.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice4.json new file mode 100644 index 000000000..3fda2d29e --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice4.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { + "from": [9, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 9, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [7, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#inside" }, + "up": { "uv": [9, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [9, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice5.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice5.json new file mode 100644 index 000000000..7efe7850b --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice5.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { + "from": [11, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 11, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [5, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#inside" }, + "up": { "uv": [11, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [11, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice6.json b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice6.json new file mode 100644 index 000000000..226432910 --- /dev/null +++ b/modules/reverse_cake_model/assets/minecraft/models/block/cake_slice6.json @@ -0,0 +1,28 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "particle": "block/cake_side", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { + "from": [13, 0, 1], + "to": [15, 8, 15], + "faces": { + "north": { "uv": [15, 16, 13, 8], "texture": "#side" }, + "east": { "uv": [15, 16, 1, 8], "texture": "#side" }, + "south": { "uv": [3, 16, 1, 8], "texture": "#side" }, + "west": { "uv": [15, 16, 1, 8], "texture": "#inside" }, + "up": { "uv": [13, 1, 15, 15], "texture": "#bottom" }, + "down": { + "uv": [13, 1, 15, 15], + "texture": "#top", + "cullface": "down" + } + } + } + ] +} diff --git a/modules/ekac/assets/minecraft/textures/item/cake.png b/modules/reverse_cake_model/assets/minecraft/textures/item/cake.png similarity index 100% rename from modules/ekac/assets/minecraft/textures/item/cake.png rename to modules/reverse_cake_model/assets/minecraft/textures/item/cake.png diff --git a/modules/reverse_cake_model/module_manifest.json b/modules/reverse_cake_model/module_manifest.json new file mode 100644 index 000000000..f8c51dba0 --- /dev/null +++ b/modules/reverse_cake_model/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "reverse_cake_model", + "type": "resource", + "description": "上面放三个小麦,下面放三个牛奶...(模型适配版)", + "author": ["DoroWolf"], + "incompatible_with": ["anniversary", "reverse_cake_texture"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/reverse_cake_texture/add.json b/modules/reverse_cake_texture/add.json new file mode 100644 index 000000000..1b19b2e8b --- /dev/null +++ b/modules/reverse_cake_texture/add.json @@ -0,0 +1,25 @@ +{ + "achievement.bakeCake": "糕蛋是个谎言", + "advancements.husbandry.allay_deliver_cake_to_noteblock.description": "让小安粒向笔记方块投掷一块糕蛋", + "block.minecraft.black_candle_cake": "黑色鞭炮糕蛋", + "block.minecraft.blue_candle_cake": "蓝色鞭炮糕蛋", + "block.minecraft.brown_candle_cake": "棕色鞭炮糕蛋", + "block.minecraft.cake": "糕蛋", + "block.minecraft.candle_cake": "鞭炮糕蛋(消歧义)", + "block.minecraft.cyan_candle_cake": "青色鞭炮糕蛋", + "block.minecraft.gray_candle_cake": "灰色鞭炮糕蛋", + "block.minecraft.green_candle_cake": "原谅色鞭炮糕蛋", + "block.minecraft.light_blue_candle_cake": "亮蓝色鞭炮糕蛋", + "block.minecraft.light_gray_candle_cake": "亮灰色鞭炮糕蛋", + "block.minecraft.lime_candle_cake": "黄绿色鞭炮糕蛋", + "block.minecraft.magenta_candle_cake": "品红色鞭炮糕蛋", + "block.minecraft.orange_candle_cake": "橙色鞭炮糕蛋", + "block.minecraft.pink_candle_cake": "粉红色鞭炮糕蛋", + "block.minecraft.purple_candle_cake": "紫色鞭炮糕蛋", + "block.minecraft.red_candle_cake": "红色鞭炮糕蛋", + "block.minecraft.white_candle_cake": "白色鞭炮糕蛋", + "block.minecraft.yellow_candle_cake": "黄色鞭炮糕蛋", + "item.minecraft.cake": "糕蛋", + "stat.minecraft.eat_cake_slice": "吃掉的糕蛋片数", + "subtitles.block.cake.add_candle": "糕蛋:噗叽啪" +} diff --git a/modules/ekac/assets/minecraft/textures/block/cake_bottom.png b/modules/reverse_cake_texture/assets/minecraft/textures/block/cake_bottom.png similarity index 100% rename from modules/ekac/assets/minecraft/textures/block/cake_bottom.png rename to modules/reverse_cake_texture/assets/minecraft/textures/block/cake_bottom.png diff --git a/modules/ekac/assets/minecraft/textures/block/cake_inner.png b/modules/reverse_cake_texture/assets/minecraft/textures/block/cake_inner.png similarity index 100% rename from modules/ekac/assets/minecraft/textures/block/cake_inner.png rename to modules/reverse_cake_texture/assets/minecraft/textures/block/cake_inner.png diff --git a/modules/ekac/assets/minecraft/textures/block/cake_side.png b/modules/reverse_cake_texture/assets/minecraft/textures/block/cake_side.png similarity index 100% rename from modules/ekac/assets/minecraft/textures/block/cake_side.png rename to modules/reverse_cake_texture/assets/minecraft/textures/block/cake_side.png diff --git a/modules/ekac/assets/minecraft/textures/block/cake_top.png b/modules/reverse_cake_texture/assets/minecraft/textures/block/cake_top.png similarity index 100% rename from modules/ekac/assets/minecraft/textures/block/cake_top.png rename to modules/reverse_cake_texture/assets/minecraft/textures/block/cake_top.png diff --git a/modules/reverse_cake_texture/assets/minecraft/textures/item/cake.png b/modules/reverse_cake_texture/assets/minecraft/textures/item/cake.png new file mode 100755 index 000000000..ca5ae8a46 Binary files /dev/null and b/modules/reverse_cake_texture/assets/minecraft/textures/item/cake.png differ diff --git a/modules/reverse_cake_texture/module_manifest.json b/modules/reverse_cake_texture/module_manifest.json new file mode 100644 index 000000000..6f430e6c4 --- /dev/null +++ b/modules/reverse_cake_texture/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "reverse_cake_texture", + "type": "resource", + "description": "上面放三个小麦,下面放三个牛奶...(纹理适配版)", + "author": ["DoroWolf"], + "incompatible_with": ["mooncake", "reverse_cake_model"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/sacabambaspis_dropper/assets/minecraft/textures/block/dropper_front.png b/modules/sacabambaspis_dropper/assets/minecraft/textures/block/dropper_front.png new file mode 100644 index 000000000..598c39ddf Binary files /dev/null and b/modules/sacabambaspis_dropper/assets/minecraft/textures/block/dropper_front.png differ diff --git a/modules/sacabambaspis_dropper/module_manifest.json b/modules/sacabambaspis_dropper/module_manifest.json new file mode 100644 index 000000000..90dc9bac7 --- /dev/null +++ b/modules/sacabambaspis_dropper/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "sacabambaspis_dropper", + "type": "resource", + "description": "不太聪明的萨卡班投掷器", + "author": ["DoroWolf"] +} diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking1.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking1.ogg new file mode 100644 index 000000000..1ac6c9ee1 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking1.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking2.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking2.ogg new file mode 100644 index 000000000..1ac6c9ee1 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking2.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking3.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking3.ogg new file mode 100644 index 000000000..1ac6c9ee1 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking3.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking4.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking4.ogg new file mode 100644 index 000000000..1ac6c9ee1 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking4.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking5.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking5.ogg new file mode 100644 index 000000000..1ac6c9ee1 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking5.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking6.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking6.ogg new file mode 100644 index 000000000..1ac6c9ee1 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_sensor/sculk_clicking6.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek1.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek1.ogg new file mode 100644 index 000000000..72b005090 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek1.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek2.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek2.ogg new file mode 100644 index 000000000..72b005090 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek2.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek3.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek3.ogg new file mode 100644 index 000000000..72b005090 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek3.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek4.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek4.ogg new file mode 100644 index 000000000..72b005090 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek4.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek5.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek5.ogg new file mode 100644 index 000000000..72b005090 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek5.ogg differ diff --git a/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek6.ogg b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek6.ogg new file mode 100644 index 000000000..72b005090 Binary files /dev/null and b/modules/sculk_sound/assets/minecraft/sounds/block/sculk_shrieker/shriek6.ogg differ diff --git a/modules/sculk_sound/module_manifest.json b/modules/sculk_sound/module_manifest.json new file mode 100644 index 000000000..544d3e56b --- /dev/null +++ b/modules/sculk_sound/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "sculk_sound", + "type": "resource", + "description": "带有奇怪音效的幽匿系列方块", + "author": ["DoroWolf"] +} diff --git a/modules/sounds_modules/module_manifest.json b/modules/sounds_modules/module_manifest.json index f99cb93c0..b85979f72 100644 --- a/modules/sounds_modules/module_manifest.json +++ b/modules/sounds_modules/module_manifest.json @@ -2,12 +2,13 @@ "name": "sounds_modules", "type": "collection", "description": "奇怪声音模块集合", - "author": [ - "DoroWolf" - ], + "author": ["DoroWolf"], "contains": [ "annoying_sounds", "bell_sound", - "open_close_sound" + "firework_sound", + "goat_horn_sound", + "open_close_sound", + "sculk_sound" ] -} \ No newline at end of file +} diff --git a/modules/strange_item_modules/module_manifest.json b/modules/strange_item_modules/module_manifest.json index faf7cb5ae..204a34b08 100644 --- a/modules/strange_item_modules/module_manifest.json +++ b/modules/strange_item_modules/module_manifest.json @@ -2,14 +2,16 @@ "name": "strange_item_modules", "type": "collection", "description": "奇怪物品模块集合", - "author": [ - "DoroWolf" - ], + "author": ["DoroWolf"], "contains": [ "baguette", - "ekac", + "bee_pickaxe", + "chicken_soup", + "disco_ball", + "reverse_cake_texture", "jinkela", "latiao", + "miku_bucket", "minecart_helmet" ] -} \ No newline at end of file +} diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_0.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_0.png deleted file mode 100644 index 55afd2cec..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_0.png and /dev/null differ diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_1.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_1.png deleted file mode 100644 index 77768a10f..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_1.png and /dev/null differ diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_2.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_2.png deleted file mode 100644 index 389ce95bd..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_2.png and /dev/null differ diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_3.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_3.png deleted file mode 100644 index e93dde19f..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_3.png and /dev/null differ diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_4.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_4.png deleted file mode 100644 index 568109201..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_4.png and /dev/null differ diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_5.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_5.png deleted file mode 100644 index faaa2359a..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_5.png and /dev/null differ diff --git a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_overlay.png b/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_overlay.png deleted file mode 100644 index c63ffa35a..000000000 Binary files a/modules/strange_meme_background/assets/minecraft/textures/gui/title/background/panorama_overlay.png and /dev/null differ diff --git a/modules/strange_meme_background/module_manifest.json b/modules/strange_meme_background/module_manifest.json deleted file mode 100644 index c73a51f29..000000000 --- a/modules/strange_meme_background/module_manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "strange_meme_background", - "type": "resource", - "description": "这菜单背景真的怪", - "author": [ - "ZH9c418" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp.png b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp.png new file mode 100644 index 000000000..4c6056a0a Binary files /dev/null and b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp.png differ diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp.png.mcmeta b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp_plant.png b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp_plant.png new file mode 100644 index 000000000..d85553275 Binary files /dev/null and b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp_plant.png differ diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp_plant.png.mcmeta b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp_plant.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/modules/super_spicy_seaweed/assets/minecraft/textures/block/kelp_plant.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/seagrass.png b/modules/super_spicy_seaweed/assets/minecraft/textures/block/seagrass.png new file mode 100644 index 000000000..5c28c4097 Binary files /dev/null and b/modules/super_spicy_seaweed/assets/minecraft/textures/block/seagrass.png differ diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/seagrass.png.mcmeta b/modules/super_spicy_seaweed/assets/minecraft/textures/block/seagrass.png.mcmeta new file mode 100644 index 000000000..d1cd0799b --- /dev/null +++ b/modules/super_spicy_seaweed/assets/minecraft/textures/block/seagrass.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_bottom.png b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_bottom.png new file mode 100644 index 000000000..6e2dd7ee5 Binary files /dev/null and b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_bottom.png differ diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_bottom.png.mcmeta b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_bottom.png.mcmeta new file mode 100644 index 000000000..d1cd0799b --- /dev/null +++ b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_bottom.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_top.png b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_top.png new file mode 100644 index 000000000..644cc9859 Binary files /dev/null and b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_top.png differ diff --git a/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_top.png.mcmeta b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_top.png.mcmeta new file mode 100644 index 000000000..d1cd0799b --- /dev/null +++ b/modules/super_spicy_seaweed/assets/minecraft/textures/block/tall_seagrass_top.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/modules/super_spicy_seaweed/module_manifest.json b/modules/super_spicy_seaweed/module_manifest.json new file mode 100644 index 000000000..3c04af5b5 --- /dev/null +++ b/modules/super_spicy_seaweed/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "super_spicy_seaweed", + "type": "resource", + "description": "特 辣 的 海 草", + "author": ["Don_Trueno"] +} diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/blindness.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/blindness.png new file mode 100644 index 000000000..1f78aef6f Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/blindness.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/blindness.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/blindness.properties new file mode 100644 index 000000000..a577b28eb --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/blindness.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=15 +texture=blindness \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/fire_resistance.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/fire_resistance.png new file mode 100644 index 000000000..3f088e46f Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/fire_resistance.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/fire_resistance.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/fire_resistance.properties new file mode 100644 index 000000000..f7e22664a --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/fire_resistance.properties @@ -0,0 +1,3 @@ +items=suspicious_stew +nbt.Effects.0.EffectId=12 +texture=fire_resistance \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/jump_boost.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/jump_boost.png new file mode 100644 index 000000000..5c0c97b70 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/jump_boost.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/jump_boost.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/jump_boost.properties new file mode 100644 index 000000000..0620e6018 --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/jump_boost.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=8 +texture=jump_boost \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/night_vision.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/night_vision.png new file mode 100644 index 000000000..d110ab020 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/night_vision.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/night_vision.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/night_vision.properties new file mode 100644 index 000000000..d7d0be669 --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/night_vision.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=16 +texture=night_vision \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/poison.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/poison.png new file mode 100644 index 000000000..09a1b984f Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/poison.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/poison.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/poison.properties new file mode 100644 index 000000000..88a5ab990 --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/poison.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=19 +texture=poison \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/regeneration.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/regeneration.png new file mode 100644 index 000000000..0b67ecd49 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/regeneration.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/regeneration.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/regeneration.properties new file mode 100644 index 000000000..7707bd0d5 --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/regeneration.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=10 +texture=regeneration \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/saturation.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/saturation.png new file mode 100644 index 000000000..d1df7aeee Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/saturation.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/saturation.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/saturation.properties new file mode 100644 index 000000000..3aa37423e --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/saturation.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=23 +texture=saturation \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/weakness.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/weakness.png new file mode 100644 index 000000000..7d59e46d0 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/weakness.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/weakness.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/weakness.properties new file mode 100644 index 000000000..5b494326c --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/weakness.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=18 +texture=weakness \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/wither.png b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/wither.png new file mode 100644 index 000000000..a04aafa79 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/wither.png differ diff --git a/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/wither.properties b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/wither.properties new file mode 100644 index 000000000..30cf894e9 --- /dev/null +++ b/modules/sus_stuff/assets/minecraft/optifine/cit/suspicious_stew/wither.properties @@ -0,0 +1,3 @@ +items=minecraft:suspicious_stew +nbt.Effects.0.EffectId=20 +texture=wither \ No newline at end of file diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_0.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_0.png new file mode 100644 index 000000000..7b5cccf96 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_0.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_1.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_1.png new file mode 100644 index 000000000..a398d1933 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_1.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_2.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_2.png new file mode 100644 index 000000000..22934b2d6 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_2.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_3.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_3.png new file mode 100644 index 000000000..21ac84aa8 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_gravel_3.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_0.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_0.png new file mode 100644 index 000000000..d8343d24d Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_0.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_1.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_1.png new file mode 100644 index 000000000..ad5d4cce0 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_1.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_2.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_2.png new file mode 100644 index 000000000..279ca0042 Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_2.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_3.png b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_3.png new file mode 100644 index 000000000..41e4d969a Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/block/suspicious_sand_3.png differ diff --git a/modules/sus_stuff/assets/minecraft/textures/item/suspicious_stew.png b/modules/sus_stuff/assets/minecraft/textures/item/suspicious_stew.png new file mode 100644 index 000000000..0501afa1d Binary files /dev/null and b/modules/sus_stuff/assets/minecraft/textures/item/suspicious_stew.png differ diff --git a/modules/sus_stuff/module_manifest.json b/modules/sus_stuff/module_manifest.json new file mode 100644 index 000000000..b01b153b8 --- /dev/null +++ b/modules/sus_stuff/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "sus_stuff", + "type": "resource", + "description": "更SUS的炖菜/沙子", + "author": ["Don_Trueno","DoroWolf"] +} diff --git a/modules/text_ancient_credits/assets/minecraft/texts/credits.txt b/modules/text_ancient_credits/assets/minecraft/texts/credits.txt new file mode 100644 index 000000000..b9440b6a4 --- /dev/null +++ b/modules/text_ancient_credits/assets/minecraft/texts/credits.txt @@ -0,0 +1,608 @@ +[C]§f============ +[C]§eTeahouse Studios +[C]§f============ + + +§7Initiator +§f Lxazl5770 + + +§7Translator +§f Lakejason0 +§f Lxazl5770 +§f MysticNebula +§f 一只火狐 +§f IcyPhantom +§f SkyEye_FAST +§f 电量量 +§f DoroWolf +§f 古镇天Gugle +§f Zh9c418 +§f DrLee lihr +§f Neubulae +§f 最亮的信标 + + +§7Resource Module Authors +§f Lakejason0 +§f Light Beacon +§f siiftun1857 +§f SkyEye_FAST +§f DoroWolf +§f 古镇天Gugle +§f zh9c418 +§f Neubulae +§f 最亮的信标 +§f 电量量 + + +§7Honorary Author +§f ff98sha + + +§7Memepack Builder Developer +§f Lakejason0 +§f MysticNebula +§f wyapx +§f _LittleC_ +§f 电量量 + + +§7Model Authors +§f 古镇天Gugle +§f Lakejason0 + + +§7Bedrock Edition Port Leader +§f SkyEye_FAST + + +§7Other Members +§f timi137137" +§f zyjking + + +[C]§f============ +[C]§eOutside Contributors +[C]§f============ + + +§7Translators +§f Kakagou +§f Huerdada +§f Foxwesty +§f Minecreeper86 +§f Determancer +§f 飞翔之歌 +§f Wishing-Qi +§f Nasouk075 +§f WTP-016 +§f 45gfg9 +§f CR-019 +§f 冷星轩 +§f TripleCamera +§f 低耐久的铁砧 +§f Minecraftku_hei +§f pkstDev +§f theflysong + + +§7Resource Module Authors +§f CR-019 +§f Iron_noob_73 +§f ZX夏夜之风 +§f 低耐久的铁砧 +§f teddyxlandlee +§f Don_Trueno + + +§7Other Contributor +§f Snow_dash + +[C]§f============ +[C]§eSpecial +[C]§f============ + + +§7MCLangCN Contributors +§f ff98sha" +§f Jingji132" +§f 电量量 + + +§7Special Thanks +§f Blockbench +§f Addonscommandresource +§f 邹陈云飞_ZCYF +§f 金蛋工作室 +§f LocusAzzurro + + +§7Special Sponsers +§f SPGoding +§f 是秋夕啊mua +§f Kakagou +§f WDLJT +§f 苏打baka + + +[C]§f============ +[C]§eMinecraft Team +[C]§f============ + +§7Original Creator +§f Markus Persson + +§7Chief Creative Officer +§f Jens Bergensten + +§7Executive Producer +§f Sara Jansson Bach + +§7Producers +§f Adrian Östergård +§f Dejan Dimic +§f Isabella Arningsmark +§f Marcus Bodin +§f Marie Stålkrantz + +§7Associate Producers +§f Anna Lundgren +§f Sara Lidberg + +§7Technical Director +§f Nathan Adams + +§7Tech Leads +§f Mikael Hedberg +§f Sebastian Hindefelt + +§7Game Developers +§f Agnes Larsson +§f Alexander Sandor +§f Alexander Torstling +§f Alexander Östman +§f Bartosz Bok +§f Billy Sjöberg +§f Bjarni Gudmundsson +§f Brandon Pearce +§f Cory Scheviak +§f David Dalström +§f Erik Broes +§f Felix Jones +§f Georgii Gavrichev +§f Henning Erlandsen +§f Henrik Kniberg +§f Joachim Larsson +§f Johannes Busch +§f Josh Letellier +§f Kristoffer Kobosko +§f Maria Lemón +§f Matthew Gatland +§f Michael Stoyke +§f Niclas Unnervik +§f Nilay Karaoglu +§f Nir Vaknin +§f Pouya Ashraf +§f Sina Tamanna +§f Thomas Guimbretière + +§7Quality Assurance +§f Paul Coada +§f Thommy Siverman Mörk +§f Zackarias Gustavsson + +§7Launcher Tech Lead +§f Márcio Oliveira + +§7Launcher Developers +§f Linus Cumselius +§f Marc Neander +§f Mikael Malmqvist +§f Petr Mrázek + +§7Launcher User Experience Designer +§f Lucas Morales + +§7Realms Senior Product Manager +§f Fredrik Telenius + +§7Realms Product Manager +§f Kevin Katona + +§7Realms Tech Lead +§f Lawrence Sanchez + +§7Realms Developers +§f Brian Threvathan +§f Cullen Waters +§f Lawrence Sanchez +§f Nathan Sosnovske +§f Nicolas Suc + +§7Minecraft Content Lead +§f Matthew Dryden + +§7Minecraft Content Coordinator +§f Adam Martinsson +§f Oskar Thysell +§f Sara Lempiäinen + +§7Art Directors +§f Johan Aronsson +§f Markus Toivonen +§f Martin Johansson +§f Ninni Landin + +§7Graphics Artists +§f Chi Wong +§f Jasper Boerstra +§f Mattis Grahm + +§7User Experience Design +§f Josefine Lindqvist +§f Lily Ekman +§f Oscar Nilsson + +§7Lead User Experience Developers +§f Paulo Ragonha + +§7User Experience Developers +§f Albin Odervall +§f Anna Päärni +§f Dario Vodopivec +§f Emelie Sidesiö +§f Emil Hedemalm +§f Kirill Mikhel +§f Marlon Huber-Smith +§f Michael Novén +§f Oleg Kozitsyn +§f Oskar Carlbaum +§f Oskar Pedersen +§f Richard Pihlcrantz + +§7Sound Director +§f Samuel Åberg + +§7Sound Design +§f Daniel Rosenfeld +§f Kevin Martinez +§f Peter Hont + +§7Music composed by +§f Daniel Rosenfeld +§f Lena Raine + +§7Writing +§f Julian Gough + +§7Developers of Mo’ Creatures +§f Dan Roque +§f John Olarte (DrZhark) +§f Kent Christian Jensen + +[C]§f======== +[C]§eMojang +[C]§f======== + +§7Chief Executive Officer +§f Jonas Mårtensson + +§7Chief Operations Officer +§f Ulrika Höjgård + +§7Chief Technology Officer +§f Mike Carlson + +§7Chief Brand Officer +§f Lydia Winters + +§7Chief Content Officer +§f Vu Bui + +§7Human Resources +§f Maja Samuelsson +§f Viktoria Petersson + +§7Director of Finance +§f Marina Kostesic + +§7Director of New Games +§f Patrick Liu + +§7Game Director +§f Måns Olson + +§7Game Designers +§f Christian Berg +§f Max Herngren + +§7Lead Game Developers +§f Kristoffer Jelbring +§f Niklas Börestam + +§7Game Developers +§f Adrian Toncean +§f Anton Arbring +§f Aron Nieminen +§f Christan Berg +§f Daniel Wustenhoff +§f Jakob Rydén +§f Jon Maiga +§f Mårten Helander +§f Tomas Alaeus + +§7Art Leads +§f Daniel Björkefors +§f Telemachus Stavropoulos + +§7Graphic Designers +§f Wiktor Persson +§f Markus Karlsson + +§73D/VFX +§f Christian Nordgren +§f Jakob Gavelli + +§7Lead System Engineers +§f Jifeng Zhang +§f Robert Sjödahl +§f Torbjörn Allard + +§7System Developers +§f Alexandre Pretto Nunes +§f Anders Martini +§f Maksim Ivanov +§f Maria Katsourani +§f Mikael Malmqvist +§f Joakim Ejenstam +§f Jonas Bergström +§f Petter Gisslen +§f Pär Axelsson +§f Stefan Torstensson +§f Wenlan Yang + +§7Experience Design +§f Daniel Feldt + +§7Director of Business Development +§f Patrick Geuder + +§7Production Director +§f Olof Carlson Sandvik + +§7Head of Creative Production +§f Sheila Ho + +§7Production Manager +§f Klas Hammarström + +§7Producers +§f Adele Major +§f David Nisshagen +§f Hampus Nilsson +§f Johannes Fridd +§f Kaya Hatcher +§f Lisa Kempe +§f Moira Ingeltun +§f Nicolette Suraga +§f Sarah Carton +§f Sebastian Falk +§f Åsa Skogström + +§7Associate Producers +§f Marc Watson + +§7Project Managers +§f Isabella Balk + +§7Director of Creative Communications +§f Owen Jones + +§7Head of Marketing Communications +§f Thomas Wiborgh + +§7Creative Communications Assistant +§f Per Landin +§f Tom Stone + +§7Head of Community Relations +§f Karim Walldén + +§7Community Relations Coordinator +§f Josefin Olsson + +§7Head of Social Media +§f Alice Löfgren + +§7Customer Support Team Lead +§f Mattias Victorin + +§7Customer Support +§f Andreas Thomasson +§f Antonia Kousathana +§f Cecilia Flumé +§f Cim Borg +§f David Stuart Dahlgren +§f Ellie Ashrafi +§f Fredrik Sandström +§f Freja Fors +§f Jonny Hair +§f Nasim Derakhshan +§f Nima Tolouifar +§f Patrik Södergren +§f Rui Ribeiro +§f Sarah Mårtensson + +§7Office Manager +§f Siri Hoel Andersson + +§7Office Coordinators +§f Aleksandra Zajac +§f Joël Älveroth + +§7Reception Manager +§f Chaimae Truving + +§7Financial Accountant +§f Josefina Axelsson + +§7IT Wizards +§f Cesar Sima Falck +§f Shoghi Cervantes + +§7Product Designer Team Lead +§f Amanda Ström + +§7Product Designers +§f Filip Thoms +§f Jennifer Hammervald +§f Sherin Kwan + +§7Motion Graphics Designer +§f Kim Petersen + +§7Intellectual Property Enforcement Team Lead +§f Olle Personne + +§7Intellectual Property Enforcement Agents +§f Mathias Andersson +§f Matilda Åkerman +§f Marcus Forss +§f Sylvia Chen +§f Johan Hedlund + +[C]§f=========== +[C]§eMojang Alumni +[C]§f=========== + +§7Chief Executive Officers +§f Carl Manneh + +§7Chief Finance Officer +§f Karin Severinson + +§7Chief Technology Officer +§f Rikard Herlitz + +§7Project Directors +§f Jakob Porsér + +§7Production Director +§f Daniel Kaplan + +§7Game Director +§f Henrik Pettersson + +§7Assistant Producers +§f Warren Loo + +§7Game Developers +§f Christian Westman +§f Daniel Frisk +§f Isaac de la Vega +§f Jakob Pogulis +§f Johan Bernhardsson +§f Magnus Bentling +§f Markus Arvidsson +§f Nathan Gilbert +§f Ryan Holtz +§f Tobias Möllstam + +§73D/VFX +§f Elin Ölund Forsling + +§7User Experience Design Director +§f Tobias Ahlin + +§7Additional Programming +§f Elliot 'Hippoplatimus' Segal +§f Paul Spooner +§f Ryan 'Scaevolus' Hitchman + +§7Lead System Engineers +§f Tom Miles +§f Tomas Sommar + +§7System Developers +§f Christoffer Hammarström +§f Leonard Gram +§f Martin Odhelius + +§7Realms Developers +§f Amir Moulavi +§f David Marby +§f Erik Bylund +§f Johnny Sjöö +§f Magnus Jäderberg +§f Mats Henricson +§f Philip Vieira + +§7Graphics Artists +§f Kristoffer Zetterstrand +§f Poi Poi Chen + +§7Head of Social Media +§f Amelia Dale + +§7Merchandise Art Director +§f Alexis Holmqvist + +§7Additional Graphics +§f Jonatan Pöljö +§f Mariana Graham Ramirez + +§7Creative Communications Manager +§f Martin Davies + +§7Creative Communications Assistant +§f Emily Richardson + +§7Business Intelligence +§f Brynjólfur Erlingsson + +§7Customer Support +§f Amelia Lindroth Henriksson +§f Ana Barata Martins +§f Andreas Andersson +§f Andreas Jörgensen +§f Angehlica Walling +§f Annika Tripke-Lund +§f Anton Albiin +§f Carl Johnsson +§f Dante Stjernberg +§f David Carlsson +§f Elin Frykholm +§f Eliza Hearsum +§f Erik Nordberg +§f Fredrik Henriksson +§f Henrik Davallius +§f Henry Shi +§f Joe Liu +§f Kevin Vesterlund +§f Mike Till +§f Nicole Jansson +§f Rabi Hadad +§f Robert Miskiewicz +§f Robin Cocks +§f Robin Thunström +§f Theodor Colbing + +§7Office Managers +§f Alex Andersson +§f Charlotte Wredesjö +§f Jill Curran +§f Linn Hultman +§f Mikaela Prim + +[C]§f============ +[C]§eSpecial Thanks +[C]§f============ +§f Daniel Brynolf +§f Pontus Hammarberg + + + + + +§f"Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover." §7- Unknown diff --git a/modules/text_ancient_credits/module_manifest.json b/modules/text_ancient_credits/module_manifest.json new file mode 100644 index 000000000..56b53888c --- /dev/null +++ b/modules/text_ancient_credits/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "text_ancient_credits", + "type": "resource", + "description": "上古版本(1.12.2-1.17)的鸣谢名单", + "author": ["梗体中文内容组"] +} diff --git a/modules/text_elder_credits/assets/minecraft/texts/credits.json b/modules/text_elder_credits/assets/minecraft/texts/credits.json new file mode 100644 index 000000000..46f28a805 --- /dev/null +++ b/modules/text_elder_credits/assets/minecraft/texts/credits.json @@ -0,0 +1,3484 @@ +[ + { + "section": "Teahouse Studios", + "titles": [ + { + "title": "Initiator", + "names": [ + "Lxazl5770" + ] + }, + { + "title": "Translator", + "names": [ + "Lakejason0", + "Lxazl5770", + "MysticNebula", + "一只火狐", + "IcyPhantom", + "SkyEye_FAST", + "电量量", + "DoroWolf", + "古镇天Gugle", + "Zh9c418", + "DrLee lihr", + "Neubulae", + "最亮的信标" + ] + }, + { + "title": "Resource Module Authors", + "names": [ + "Lakejason0", + "Light Beacon", + "siiftun1857", + "SkyEye_FAST", + "DoroWolf", + "古镇天Gugle", + "zh9c418", + "Neubulae", + "最亮的信标", + "电量量" + ] + }, + { + "title": "Honorary Author", + "names": [ + "ff98sha" + ] + }, + { + "title": "Memepack Builder Developer", + "names": [ + "Lakejason0", + "MysticNebula", + "wyapx", + "_LittleC_", + "电量量" + ] + }, + { + "title": "Model Authors", + "names": [ + "古镇天Gugle", + "Lakejason0" + ] + }, + { + "title": "Bedrock Edition Port Leader", + "names": [ + "SkyEye_FAST" + ] + }, + { + "title": "Other Members", + "names": [ + "timi137137", + "zyjking" + ] + } + ] + }, + { + "section": "Outside Contributors", + "titles": [ + { + "title": "Translators", + "names": [ + "Kakagou", + "Huerdada", + "Foxwesty", + "Minecreeper86", + "Determancer", + "飞翔之歌", + "Wishing-Qi", + "Nasouk075", + "WTP-016", + "45gfg9", + "CR-019", + "冷星轩", + "TripleCamera", + "低耐久的铁砧", + "Minecraftku_hei", + "pkstDev", + "theflysong" + ] + }, + { + "title": "Resource Module Authors", + "names": [ + "CR-019", + "Iron_noob_73", + "ZX夏夜之风", + "低耐久的铁砧", + "teddyxlandlee", + "Don_Trueno" + ] + }, + { + "title": "Other Contributor", + "names": [ + "Snow_dash" + ] + } + ] + }, + { + "section": "Special", + "titles": [ + { + "title": "MCLangCN Contributors", + "names": [ + "ff98sha", + "Jingji132", + "电量量" + ] + }, + { + "title": "Special Thanks", + "names": [ + "Blockbench", + "Addonscommandresource", + "邹陈云飞_ZCYF", + "金蛋工作室", + "LocusAzzurro" + ] + }, + { + "title": "Special Sponsers", + "names": [ + "SPGoding", + "是秋夕啊mua", + "Kakagou", + "WDLJT", + "苏打baka" + ] + } + ] + }, + { + "section": "Minecraft", + "titles": [ + { + "title": "Head of Minecraft", + "names": [ + "Helen Chiang" + ] + }, + { + "title": "Head of Stockholm Studio", + "names": [ + "Ulrika Höjgård" + ] + } + ] + }, + { + "section": "Design", + "titles": [ + { + "title": "Chief Creative Officers", + "names": [ + "Jens Bergensten", + "Saxs Persson" + ] + }, + { + "title": "Game Directors", + "names": [ + "Agnes Larsson", + "Måns Olson" + ] + }, + { + "title": "Creative Director", + "names": [ + "Jesse Merriam", + "Magnus Nedfors", + "Torfi Frans Olafsson" + ] + }, + { + "title": "Principal Design Director", + "names": [ + "Craig Leigh" + ] + }, + { + "title": "Principal Design Manager", + "names": [ + "Michael Harnisch" + ] + }, + { + "title": "Lead Game Designers", + "names": [ + "Rob Poerschke", + "Robin V Vincent" + ] + }, + { + "title": "Game Designers", + "names": [ + "Art Usher", + "Brandon Pearce", + "Christian Berg", + "Cole Phillips", + "Cory Scheviak", + "Henrik Kniberg", + "Laura de Llorens Garcia", + "Matthew Gatland", + "Michael Stagnitta", + "Nir Vaknin", + "Steve Enos", + "Tod Pang" + ] + }, + { + "title": "Narrative Director", + "names": [ + "Kevin Grace" + ] + }, + { + "title": "Narrative Designer", + "names": [ + "Kelsey Howard" + ] + }, + { + "title": "Design Manager", + "names": [ + "Rabi Afram" + ] + } + ] + }, + { + "section": "Programming", + "titles": [ + { + "title": "Chief Technology Officer", + "names": [ + "Michael W Weilbacher", + "Mike Carlson" + ] + }, + { + "title": "Head of Services and Ops Engineering", + "names": [ + "Vince Curley" + ] + }, + { + "title": "Head of Game Engineering", + "names": [ + "Åsa Bredin" + ] + }, + { + "title": "Head of Creator Platform Engineering", + "names": [ + "Jason Cahill" + ] + }, + { + "title": "Director of Franchise Quality", + "names": [ + "Matthew Ng" + ] + }, + { + "title": "Technical Director", + "names": [ + "Christopher Östlund", + "Daniel Johansson", + "Jeff McKune", + "Jifeng Zhang", + "Lawrence M. Sanchez II", + "Michael J. Ott", + "Nathan Adams" + ] + }, + { + "title": "Lead Game Developers", + "names": [ + "Andrew Maher", + "Gary McLaughlin", + "Geoff Ebersol", + "Henning Erlandsen", + "Jakob Ryden", + "James S Yarrow", + "Mason McCuskey", + "Matt Hawley", + "Michael Scott", + "Mikael Hedberg", + "Torbjörn Allard" + ] + }, + { + "title": "Game Developers", + "names": [ + "Alex Couch (Insight Global, Inc)", + "Adrian Toncean", + "Alex Green (Red Lens Games, Inc)", + "Alexander Östman", + "Alexander Sandor", + "Alexander Torstling", + "Aron Nieminen", + "Bartosz Bok", + "Benny Hellström", + "Billy Sjöberg", + "Bjarni Gudmundsson", + "Brian Threvathan", + "Chad George", + "Cody Centers (Insight Global, Inc)", + "Daniel Brynolf", + "Daniel Lobo", + "David Dalström", + "Erik Broes", + "Ethan A Hall (Collabera)", + "Felix Jones", + "Fredrik Bergstrand", + "Georgii Gavrichev", + "Harald Johansson", + "Isaac Dayton", + "Jacek Wołkowicz", + "James Vanderheiden (Insight Global, Inc)", + "Jimmy Almkvist", + "Johannes Busch", + "Johannes Sundqvist", + "John-Philip Johansson", + "Jon Maiga", + "José Carlos Bellido", + "Joshua Owens (Collabera)", + "Juliana Montes", + "Kristoffer Kobosko", + "Lily Leblanc (Insight Global, Inc)", + "Márcio de Oliveira da Silva", + "Marco Ballabio", + "Mårten Helander", + "Michael Stoyke", + "Nhi Vo", + "Niclas Unnervik", + "Nilay Karaoglu", + "Oscar Åkesson", + "Pavel Grebnev", + "Petr Mrázek", + "Pontus Hammarberg", + "Pouya Ashraf", + "Sean Reilly", + "Stefan Annell", + "Timur Nazarov", + "Virgilio Jr Blones", + "William Harmon (Insight Global, Inc)" + ] + }, + { + "title": "Lead UI Developers", + "names": [ + "Eric Grimsborn", + "Oleg Kozitsyn", + "Paulo Ragonha" + ] + }, + { + "title": "UI Developers", + "names": [ + "Danila Dergachev", + "Fernando Vía Canel", + "Marlon Huber-Smith", + "Oskar Pedersen", + "Rasmus Källqvist", + "Richard Pihlcrantz", + "Vitalii Sych", + "Tim Lindeberg", + "Wenfei Zhu" + ] + }, + { + "title": "Launcher Developers", + "names": [ + "Matthew Phair", + "Patrick Tobin", + "Andrew Hewitson" + ] + }, + { + "title": "Lead Architects", + "names": [ + "Greg Snook", + "Peter M. Wiest" + ] + }, + { + "title": "Architects", + "names": [ + "Dom Humphrey", + "Robert Sanchez" + ] + }, + { + "title": "Lead Bedrock Software Developers", + "names": [ + "Bill Carlson", + "Bryan Yeo", + "Chad C Meyers", + "Craig Steyn", + "Dan Posluns", + "Fanny P Vadillo Herrera", + "Haronid Moncivais", + "Henry Golding", + "Jamie Fristrom", + "John Copic", + "John Seghers", + "Jonas Keating", + "Mark D. Andersen", + "Mark Grinols", + "Maxime Bouchez", + "Michael D McGrath", + "Nathan Miller", + "Nickolas Graczyk", + "Shane Pierce", + "Steve Robinson", + "Tyler Laing" + ] + }, + { + "title": "Bedrock Software Developers", + "names": [ + "A.J. Fairfield", + "Aaron Woodward", + "Adrian T Orszulak", + "Afeez Olusegun K Bello", + "Alec Chan", + "Alex Troyer", + "Alexander Wilkinson", + "Amy Bernhoft", + "Andrew Chien (Insight Global, Inc)", + "Andy Hill", + "Anna Pearson (Insight Global, Inc)", + "Anthony Cloudy", + "Anthony Young (Insight Global, Inc)", + "Austin Larkin (Insight Global, Inc)", + "Ayannah R Adegeye", + "Chris BeHanna", + "Curtis Michael Eichner", + "Dan Gonyea", + "Dana Zhu", + "Daniel Stevens", + "David Carlton", + "David Cowan", + "David Roberts (Insight Global, Inc)", + "David Westen", + "Declan Hopkins", + "Dimitri Kishmareishvili (CSI Interfusion, Inc)", + "Drew Okenfuss", + "Dylan Ross (Insight Global, Inc)", + "Emily Koykka", + "Eric Johnston", + "Eric Rehmeyer", + "Evelyn Collier (Insight Global, Inc)", + "Garrett Allen", + "Hector Llanos III", + "Hector M Arriaga Pineda", + "Jaafer Sheriff", + "Jake Shirley", + "Jason Orion Burch", + "Jeff Ott", + "Jeison Salazar (Insight Global, Inc)", + "John Countouriotis (Populus Group, LLC)", + "Jonathan R Hoof", + "Joseph Kichline (Insight Global, Inc)", + "Kari C Whiteside", + "Kento Murawski (Insight Global, Inc)", + "Kirby Duncan (Insight Global, Inc)", + "Kristin A Siu", + "Larry Ukaoma", + "Li Yang (Insight Global, Inc)", + "Loren J. Merriman (Kalvi Consulting Service)", + "Lucas Carpenter (Collabera)", + "Lucy Lauzon (Collabera)", + "Matt Staubus", + "Michael Davidson (Insight Global, Inc)", + "Mitchell Lee (Insight Global, Inc)", + "Molly Flemming", + "Nicholas Curtis", + "Paul Schierman", + "Radha Kotamarti", + "Robert Hunt", + "Ryan Seaman (Collabera)", + "Ryan Tyler Rae", + "Taylor A Feddersen", + "Tristan H Schneider", + "Wes Pesetti", + "Will Van Keulen", + "Yash Shroff", + "Ying Guo (TEKsystems, Inc)", + "Zane Hintzman" + ] + }, + { + "title": "Lead Web Developers", + "names": [ + "Joel Bergman", + "Mark Jawad" + ] + }, + { + "title": "Realms Software Engineers", + "names": [ + "Nicholas John Curtis", + "Roman Timurson (Insight Global, Inc)" + ] + }, + { + "title": "Lead System Engineers", + "names": [ + "Robert Sjödahl", + "Pär Axelsson", + "Syrgak Turgumbaev", + "Zhengwu Zhang" + ] + }, + { + "title": "Service Software Engineers", + "names": [ + "Alexandre Pretto Nunes", + "Anders Gärdenäs", + "Astrid Rehn", + "Austin Shaythong (Insight Global, Inc)", + "Corey Goodman (Insight Global, Inc)", + "Dan Mauk", + "Emily Black", + "Eric Sjögren", + "Hampus Fristedt", + "Henrik Barratt-Due", + "Jahmai OSullivan", + "John Littlewood", + "Jonas Bergström", + "Kanita Rauniyar", + "Khaleel Harper", + "Maksim Ivanov", + "Mangal Srinivasamurthy", + "Maria Katsourani", + "Martin Pola", + "Matt Shore (Insight Global, Inc)", + "Michael Kranz", + "Mike Swartz", + "Nicholas Burlingame (Insight Global, Inc)", + "Nico Suc", + "Patrick McGannon", + "Petter Gisslen", + "Rick Payne (Insight Global, Inc)", + "Simon Fagerholm", + "Stefan Torstensson", + "Theodor Fleming" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Erik Rahm", + "Erika Renlund", + "Giulio 'Mac' Maistrelli", + "Lie Fujita", + "Martin Almgren" + ] + } + ] + }, + { + "section": "Audio", + "titles": [ + { + "title": "Audio Director", + "names": [ + "Samuel Åberg" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Daniel Rosenfeld", + "Johan Pettersson", + "Kevin Martinez", + "Peter Hont", + "Rostislav Trifonov" + ] + }, + { + "title": "Music composed by", + "names": [ + "Daniel Rosenfeld", + "Kumi Tanioka", + "Lena Raine" + ] + } + ] + }, + { + "section": "Visual Arts", + "titles": [ + { + "title": "Art Directors", + "names": [ + "Andy Zibits", + "Daniel Björkefors", + "Kim Petersen", + "Telemachus Stavropoulos", + "Viktor Blanke" + ] + }, + { + "title": "Lead Artists", + "names": [ + "Jasper Boerstra", + "Joel Garvin", + "Michael Apolis", + "Michael Ray Neumann", + "Ryan Sand" + ] + }, + { + "title": "Artists", + "names": [ + "Aleesa Tana (Randstad)", + "Andrea Sanchez Sepulveda (Randstad)", + "Chi Wong", + "Claire Selvog (Randstad)", + "Dylan Sunkel (Collabera)", + "Erin Caswell (Randstad)", + "Florian Decupper", + "Jacob Lee (Aquent LLC)", + "Jan Cariaga", + "Jei G Ling (Allegis Group Services, Inc)", + "Kailey Hara (Aquent LLC)", + "Kirk Barnett", + "Linus Chan (TEKsystems, Inc)", + "Mariana Salimena", + "Mark Hershberger (Apex Systems, Inc)", + "Patrick A Rodes (Randstad)", + "Peter Sheff", + "Richard Worley", + "Sarah Martino (Insight Global, Inc)" + ] + }, + { + "title": "3D Artists", + "names": [ + "Brendan Sullivan", + "Christian Nordgren" + ] + }, + { + "title": "Graphic Artists", + "names": [ + "Mattis Grahm" + ] + }, + { + "title": "Graphic Designers", + "names": [ + "Adrian Leon (TEKsystems, Inc)", + "Dalila Copeland (Randstad)", + "Javier Rodriguez (Insight Global, Inc)" + ] + }, + { + "title": "Motion Graphics Designers", + "names": [ + "Brandon Korvas (Ten Gun Design, Inc)", + "Lauren Kohler (TEKsystems, Inc)", + "Rudy Solidarios (Randstad)" + ] + }, + { + "title": "Animator", + "names": [ + "Patrick Rodes (Randstad)" + ] + }, + { + "title": "Art Manager", + "names": [ + "Samir Belarbi" + ] + } + ] + }, + { + "section": "Production", + "titles": [ + { + "title": "Head of Creator Platform", + "names": [ + "Deanna Hearns" + ] + }, + { + "title": "Head of Game Production", + "names": [ + "John Thornton" + ] + }, + { + "title": "Head of Minecraft China", + "names": [ + "Travis Howland" + ] + }, + { + "title": "Head of Business Engineering", + "names": [ + "Ryan B Cooper" + ] + }, + { + "title": "Head of Games", + "names": [ + "Sara Jansson Bach" + ] + }, + { + "title": "Head of Creator Marketplace", + "names": [ + "Aaron J Buckley" + ] + }, + { + "title": "Head of Minecraft Education", + "names": [ + "Allison Matthews" + ] + }, + { + "title": "Director of Minecraft.net", + "names": [ + "Saher M Hirji" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Anita Sujarit", + "David Nisshagen", + "Dennis Ries", + "Fredrik Telenius", + "Ingela Garneij", + "Jessica Zahn", + "Kayla Kinnunen", + "Mike Ammerlaan", + "Roger Carpenter" + ] + }, + { + "title": "Production Managers", + "names": [ + "Gama Aguilar-Gamez", + "Klas Hammarström", + "Kyle Lawton", + "Melinda Knight", + "Michael McManus" + ] + }, + { + "title": "Producers", + "names": [ + "Aaron Culbreth (Insight Global, Inc)", + "Adrian Östergård", + "Andrea Lam", + "Anna Lundgren", + "Anna Zakipour", + "Annica Strand", + "Ann-Kristin Adwent", + "Best Liang", + "Carlos Naranjo", + "Carrie Doring", + "Caylin Kaunas (Randstad)", + "Chris Massena (Insight Global, Inc)", + "Damian Finn (Lionbridge)", + "Daniel Stewart", + "David Siegel", + "Diana Lind (Insight Global, Inc)", + "DJ Stiner", + "Dom Arcamone", + "Graham Logan (Randstad)", + "Hai Shi", + "Halishia Chugani", + "Hedwig Andra Laza", + "Jewel Chukwufumn, Ifeguni", + "John Garcia (Collabera)", + "Kara Kono", + "Kasia Swica", + "Katie Ellison", + "Kelly Henckel", + "Kristina M. Ashment", + "Lisa Bryer", + "Luis Qiang Liu", + "Madeline E Psenka", + "Marc Watson", + "Marcus Bodin", + "Markus Waltré", + "Micah Myerscough", + "Micky Yamaguchi", + "Nathan K Rose", + "Nicole Alers", + "Nikoo Jorjani", + "Riccardo Lenzi", + "Riley Manns Insight Global, Inc)", + "Sebastian Falk", + "Stephen A Scott", + "Tia Marie Dalupan-Wong", + "Todd Baldwin", + "William Cooper" + ] + }, + { + "title": "Organizational Coaches", + "names": [ + "Martin Bloomstine", + "Rasmus Noah Hansen", + "Shah Rahman", + "Yassal Sundman" + ] + }, + { + "title": "Release Management Lead", + "names": [ + "David Fries" + ] + }, + { + "title": "Release Managers", + "names": [ + "Andrew Pritchard", + "Josh Mulanax", + "Joshua Bullard" + ] + }, + { + "title": "Quality Assurance", + "names": [ + "Kristian Grimberg", + "Matthew Dryden", + "Olle Personne", + "Paul Coada", + "Thommy Siverman", + "Zackarias Gustavsson" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Joshua Jones (Insight Global, Inc)" + ] + } + ] + }, + { + "section": "Brand Creative", + "titles": [ + { + "title": "Creative Director", + "names": [ + "Markus Toivonen" + ] + }, + { + "title": "Head of Creative Production", + "names": [ + "Isabella Arningsmark" + ] + }, + { + "title": "Lead Producers", + "names": [ + "Christine Platon", + "Milo Bengtsson", + "Sarah Carton" + ] + }, + { + "title": "Producers", + "names": [ + "Adele Major", + "Charlotte Angantyr", + "Ellen Karlsten", + "Hampus Nilsson", + "Isabella Balk", + "Johan Kvarnemo", + "Josefin Olsson", + "Lisa Kempe", + "Nicolette Suraga", + "Renee Wikander", + "Sloane Delancer", + "Tilde Westrup", + "Tim Mardell" + ] + }, + { + "title": "Creative Leads", + "names": [ + "Martin Johansson", + "Antti Meriluoto" + ] + }, + { + "title": "Art Directors", + "names": [ + "Johan Aronsson", + "Julian Kerr", + "Ninni Landin", + "Seung Sung" + ] + }, + { + "title": "Art Lead", + "names": [ + "Amanda Ström" + ] + }, + { + "title": "Artists", + "names": [ + "Morten Rasmussen", + "Markus Frost" + ] + }, + { + "title": "Graphic Designer", + "names": [ + "Afshin 'Affe' Piran" + ] + }, + { + "title": "3D Artist / Motion Graphic Designer", + "names": [ + "Jesper Hallin" + ] + }, + { + "title": "Gameplay Capture Artist", + "names": [ + "Husein Kurbegovic" + ] + }, + { + "title": "Product Designers", + "names": [ + "Adrian Ward", + "Débora Martins", + "Filip Thoms", + "Sherin Kwan" + ] + }, + { + "title": "Publishing Editor", + "names": [ + "Alex Wiltshire" + ] + }, + { + "title": "Director of Creative Communications", + "names": [ + "Owen Jones" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Julian Tunru", + "Ross Keatley" + ] + }, + { + "title": "Creative Writers", + "names": [ + "Cristina Anderca", + "Per Landin", + "Sofia Dankis", + "Sophie Austin" + ] + } + ] + }, + { + "section": "Communications", + "titles": [ + { + "title": "Chief Storyteller", + "names": [ + "Lydia Winters" + ] + }, + { + "title": "Senior Media Producers", + "names": [ + "Carina Petersson" + ] + }, + { + "title": "Producers", + "names": [ + "Sofia Orrheim" + ] + }, + { + "title": "Director of Communications", + "names": [ + "Regan O'Leary" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Alex Fleck (Adecco)", + "David Ramos (Collabera)" + ] + }, + { + "title": "Communication Managers", + "names": [ + "Holly Amber Smith", + "Rebecca Gordius" + ] + }, + { + "title": "Assembly Media, Inc", + "names": [ + "Adam Pannel", + "Erin Dwyer", + "Tory Edelman", + "Vanessa Mora", + "Wesley Gore" + ] + }, + { + "title": "Sr. Social Media Lead", + "names": [ + "Sara Reiner" + ] + }, + { + "title": "Web Design", + "names": [ + "Paul Madlon (Ten Gun Design, Inc)" + ] + }, + { + "title": "Web Content Manager", + "names": [ + "Joe Corrigan (Ten Gun Design, Inc)" + ] + } + ] + }, + { + "section": "User Experience", + "titles": [ + { + "title": "User Experience Design Director", + "names": [ + "Anna Wendelin" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Jin Shin", + "Jonathan Paton Gallina", + "Josefine Lindqvist", + "Lucas Morales Sousa", + "Tom Keen (TEKsystems, Inc)", + "Unn Swanström", + "William Hollowell" + ] + }, + { + "title": "User Experience Writer", + "names": [ + "Juan Buis" + ] + } + ] + }, + { + "section": "Operations", + "titles": [ + { + "title": "Franchise Chief Operations Officer", + "names": [ + "Annie Chenn" + ] + }, + { + "title": "Head of Stockholm Operations", + "names": [ + "Sheila Ho" + ] + }, + { + "title": "Executive Strategic Advisor", + "names": [ + "Jonas Mårtensson" + ] + }, + { + "title": "Head of Franchise Operations", + "names": [ + "Josh Bliggenstorffer" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Amy Stillion" + ] + }, + { + "title": "HR Directors", + "names": [ + "David Hill", + "Maja Samuelsson" + ] + }, + { + "title": "Sr HR Business Partners", + "names": [ + "Maja Samuelsson", + "Nia Parker" + ] + }, + { + "title": "Human Resources", + "names": [ + "Aleksandra Zajac", + "Aron Glauser", + "David Hill", + "Hanan Naamneh", + "Ida Utterström", + "Jenny Ahnell", + "Ludwig Moberg Edenbäck", + "Maria Sjöman", + "Simon Taylor", + "Sofia Andersson", + "Ulrika Karlsson", + "Veronica Camaj Ericson" + ] + }, + { + "title": "Office Manager", + "names": [ + "Siri Hoel" + ] + }, + { + "title": "Office Coordinators", + "names": [ + "Joël Älveroth" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Erin Decker", + "Lisa Liu", + "Rachel Cox", + "Theresa Chin" + ] + }, + { + "title": "Front of House", + "names": [ + "Eliza Lancelot", + "Felicia Björn Nordling" + ] + }, + { + "title": "IT Managers", + "names": [ + "Cesar Sima Falck", + "Jason Perry Minard" + ] + }, + { + "title": "IT", + "names": [ + "Adam MacDowall", + "Anton \"Mr\" Wu", + "Elin Törnefall", + "Evelina Rollfelt", + "Shoaib Hosseini", + "Shoghi Cervantes Pueyo", + "Yaser Mosavi" + ] + }, + { + "title": "Operations Manager", + "names": [ + "Kaya Hatcher" + ] + }, + { + "title": "Internal Communications Manager", + "names": [ + "Matt Martin" + ] + }, + { + "title": "Lead Automation Support", + "names": [ + "Matthew C. Moreno" + ] + }, + { + "title": "Automation Support", + "names": [ + "Chris Ilson (Collabera)", + "Corey Smith (Insight Global, Inc)", + "Gregory D Searing (WaferWire Cloud Technologies)", + "Johnny Cocks (Collabera)", + "Jordan Crockett (TEKsystems, Inc)" + ] + } + ] + }, + { + "section": "Data and Analytics", + "titles": [ + { + "title": "Head of Data Science and Analytics", + "names": [ + "Francisco Rius" + ] + }, + { + "title": "Data Science Lead", + "names": [ + "Abby Gaddis" + ] + }, + { + "title": "Data Engineering Lead", + "names": [ + "Bill Chism" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Natalie Selin" + ] + }, + { + "title": "Analytics Environment Manager", + "names": [ + "Troy Henke" + ] + }, + { + "title": "Data Science", + "names": [ + "Aaron Johnson", + "Bhrigu Shree", + "Conor Maguire (KellyMitchell Group, Inc)", + "Daniel Camarena (KellyMitchell Group, Inc)", + "Dusanka Poljak (Design Laboratory, Inc)", + "Grant Jenkins", + "Jake Kelly", + "Jonathan Lau (KellyMitchell Group, Inc)", + "Matthew Skirvin", + "Max Davidson", + "Swathi Sivadas", + "Tong Shen (KellyMitchell Group, Inc)", + "Zach Golkhou (KellyMitchell Group, Inc)" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Addy Deodikar (Design Laboratory, Inc)", + "Bill Klees", + "Dhiraj Nilange", + "Patrick Worthey", + "Sachin Dekate (Design Laboratory, Inc)", + "Smitha Menon", + "Timothy Olojede" + ] + } + ] + }, + { + "section": "User Research", + "titles": [ + { + "title": "User Research Studio Lead", + "names": [ + "Jerome Hagen" + ] + }, + { + "title": "User Researcher", + "names": [ + "Melissa Boone", + "Olga Zielinska", + "Pablo Morales" + ] + } + ] + }, + { + "section": "Business & Licensing", + "titles": [ + { + "title": "Head of Franchise Business & Growth", + "names": [ + "Scott Dell'Osso" + ] + }, + { + "title": "Head of Franchise Development", + "names": [ + "Kayleen Walters" + ] + }, + { + "title": "Head of Social Impact & Partnerships", + "names": [ + "Ada Duan" + ] + }, + { + "title": "Chief Media Officer", + "names": [ + "Vu Bui" + ] + }, + { + "title": "Directors of Business Development", + "names": [ + "Bob Brennecke", + "Federico San Martin", + "Jeremy Snook", + "Justin Edwards", + "Patrick Geuder" + ] + }, + { + "title": "Directors of Business Management", + "names": [ + "Amy Zou", + "Michelle Hua" + ] + }, + { + "title": "Business Managers", + "names": [ + "Adam Lemcio", + "Alina Skripnik", + "Ani Grey", + "Bill Lindell", + "Catherine Hendrix", + "Daniel Beasley", + "David K Lau", + "Dev Hazarika", + "Ellen Hahm", + "Eric Taylor", + "Eve Vashkus", + "Julie Olden", + "Laylah Stanley Si Bulman", + "Leslie Tullis", + "Maru Zamora", + "Morgan Farrar (Apex Systems, Inc)", + "Nedra Wilson", + "Nichole Green", + "Stephanie Louie", + "Tess N Opincarne (Amaxra)", + "Wendy Gorton" + ] + }, + { + "title": "Business Development Managers", + "names": [ + "Christy Weckner", + "Eileen Lee", + "Inga Chamberlain", + "Rebecca A Miller" + ] + }, + { + "title": "Brand Assurance Managers", + "names": [ + "Celene Tolentino (Harvey Nash)", + "Dana Mack (Harvey Nash)", + "Stephanie Nannariello (Harvey Nash)" + ] + }, + { + "title": "Business Analyst", + "names": [ + "Keiko Ramer (Apex Systems, Inc)", + "Kristin Grein" + ] + }, + { + "title": "Japan Country Manager", + "names": [ + "Yutaka Noma" + ] + }, + { + "title": "Director of Partner Management", + "names": [ + "Todd Stevens" + ] + }, + { + "title": "Partner Program Manager", + "names": [ + "Quinn Richter" + ] + }, + { + "title": "Content Coordinator", + "names": [ + "Oskar Thysell", + "Niclas Fredriksson" + ] + }, + { + "title": "Program Managers", + "names": [ + "Bryan G. Bonham", + "Christopher Dauchot (Insight Global, Inc)", + "Emily Carlson", + "Georgia Marra", + "Gregory Walls (Excell)", + "Helene Brown", + "John C. Mercil (CompuCom Systems, Inc)", + "Joshua Ayala (Insight Global, Inc)", + "Kaiwen Li (Populus Group, LLC)", + "Liz Leo", + "Morgan Farrar (Apex Systems, Inc)", + "Natalie Haggin (Simplicity Consulting, Inc)", + "Steven Hosey (Simplicity Consulting, Inc)", + "Susie Tinker", + "Vince-Davis Espino (Insight Global, Inc)" + ] + }, + { + "title": "Studio Compliance Lead", + "names": [ + "Eric Odell-Hein" + ] + }, + { + "title": "Studio Compliance Analyst", + "names": [ + "Justin Ray (Design Laboratory, Inc)" + ] + }, + { + "title": "Intellectual Property Enforcement Lead", + "names": [ + "Gaylon Blank" + ] + }, + { + "title": "Category Managers", + "names": [ + "Audrey Searcy", + "Emily Clock", + "Hanna Willis", + "Shabnam Elmi" + ] + } + ] + }, + { + "section": "Player Operations", + "titles": [ + { + "title": "Director of Player Support", + "names": [ + "Anne Quaranta" + ] + }, + { + "title": "Director of Community", + "names": [ + "Nea Aime Rollan" + ] + }, + { + "title": "Community Managers", + "names": [ + "Cameron Thomas", + "Jay Wells", + "Joel Sasaki", + "Kristina Horner", + "Lindsey Schaal (Apex Systems, Inc)", + "Matt Gartzke", + "Trella Rath (Corestaff)" + ] + }, + { + "title": "Customer Support Program Manager", + "names": [ + "Jon-Eric L. Swigart (Collabera)" + ] + }, + { + "title": "Customer Support Lead", + "names": [ + "Jen Pedersen", + "Justin Putnam (TEKsystems, Inc)" + ] + }, + { + "title": "Customer Support", + "names": [ + "Andrew Lee (Apex Systems, Inc)" + ] + } + ] + }, + { + "section": "Marketing", + "titles": [ + { + "title": "Head of Marketing", + "names": [ + "Jessica Freeman" + ] + }, + { + "title": "Marketing Directors", + "names": [ + "Fergus Lynch", + "Jeanie DuMont" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Anton Maslennikov", + "Ashley Davidson (Simplicity Consulting, Inc)", + "Egil G. Gloersen", + "Gabi Ibarra (Simplicity Consulting, Inc)", + "Gaylord Escalona", + "Jaime Limon", + "Jeff Rivait", + "Katie Penza", + "Lindsay Auten (Simplicity Consulting, Inc)", + "Melissa Jenkins (Ten Gun Design, Inc)", + "Nathaniel Wipfler", + "Nick Ketter", + "Sara Cornish" + ] + } + ] + }, + { + "section": "Legal", + "titles": [ + { + "title": "Head of Legal", + "names": [ + "Nick Morgan" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Kari Annand (Snodgrass Annand)", + "Maya Yamazaki (Davis Wright Tremaine)", + "Tim Han", + "Tricia Geyer" + ] + } + ] + }, + { + "section": "Finance", + "titles": [ + { + "title": "Finance Director", + "names": [ + "Marina Kostesic" + ] + }, + { + "title": "Finance Manager", + "names": [ + "Evan Dowdell", + "Katarina Norlander" + ] + }, + { + "title": "Senior Financial Accountant", + "names": [ + "Josefina Axelsson" + ] + }, + { + "title": "Financial Accountant", + "names": [ + "Jelena Pejic" + ] + }, + { + "title": "Financial Consultant", + "names": [ + "Stefan Lyrmark" + ] + } + ] + }, + { + "section": "Studios Quality Team - Microsoft", + "titles": [ + { + "title": "Director of Quality", + "names": [ + "Jimmy Bischoff" + ] + }, + { + "title": "Studios Quality Manager", + "names": [ + "Tyler Moeller" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Craig Marshall", + "Dan Pipinich", + "Hakim Ronaque", + "Michael McCormack", + "Rich Levy" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Herve Iradukunda", + "Joe Whitman", + "Mark McAllister", + "Mimi Guarino", + "Ryan Mayes" + ] + }, + { + "title": "Quality Data Analysis & Engineering", + "names": [ + "Chelsi Hohnbaum", + "Christian Koguchi", + "Lisa Porter" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Jay Baxter", + "Aaron Amlag", + "Moodie Ghaddar", + "Scott Lindberg" + ] + }, + { + "title": "Quality Analysts", + "names": [ + "Agata Marciniak", + "Aidan Bower", + "Dalrek Davis", + "Erik Davis", + "Melissa Moorehead", + "Mike Su", + "Tom Brisbane", + "Tom French" + ] + }, + { + "title": "Special Thanks", + "names": [ + "Alex Luschen – Executive Business Administrator", + "Allen Horton – Technology and Infrastructure", + "Andrew Franklin – Outsourcing Manager", + "Dante Carrasco – Business Manager", + "David Boker – Director XGS Business Operations", + "James Fry – Quality Manager, Studios Quality UK", + "Jonny Stacey – Data Engineering, Studios Quality UK", + "Kenna Gillooly – Executive Business Administrator", + "Zoe Harrop – Senior Business Coordinator, Studios Quality UK" + ] + } + ] + }, + { + "section": "Studios Quality Team - US Teams", + "titles": [ + { + "title": "Test Manager", + "names": [ + "Tom Dieterich (Experis) - Test Manager, Tempe" + ] + }, + { + "title": "Software Test Engineering Leads", + "names": [ + "Barry Doyle (Insight Global, Inc)", + "Maria Berube (Experis)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Antoine Brown (Experis)", + "Adam DuBois (Experis)", + "Benjamin Sousa (Experis)", + "Brian Lareau (Experis)", + "Brooke Chapman (Experis)", + "Eric Saxon (Experis)", + "James Lawrence (Experis)", + "Jessica Armstrong (Experis)", + "Kaitlyn Grace (Experis)", + "Kevin Gittens (Experis)", + "Michelle Elbert (Experis)", + "Norah Hogoboom (Insight Global, Inc)", + "Robert Bergeron (Experis)", + "Robert Cleveland (Experis)", + "Traci Jenkins (Experis)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Austin Keeling (Experis)", + "Chris Youngs (Experis)", + "Jacob Childers (Experis)", + "Jared Arbaugh (Experis)", + "Jocylyn Engstrom (Experis)", + "Jonathon Ervin (Experis)", + "Justin Smick (Experis)", + "Marvin Melitante (Experis)", + "Ryan Atwater (Experis)", + "Ryan Weant (Experis)", + "Tori Gasca (Experis)" + ] + }, + { + "title": "Special Thanks", + "names": [ + "Aaron Brindell (Experis)", + "Aaron Ingram (Experis)", + "Ben Farley (Experis) – Test Manager, Tempe", + "Brian Canning (Experis) – Test Manager, Tempe", + "Carol Stearns (Experis)", + "Erica Davis (Experis)", + "Frank Criscione (Experis)", + "Gavin Kennedy (Experis)", + "Jay Piette (Experis) – Test Manager, Tempe", + "Jeffrey Guyton (Insight Global, Inc) – Account Manager", + "Julie Loucks (Experis)", + "Lucas Rathburn (Experis)", + "Mark Medlock (Experis)", + "Paul Gradwohl (Experis)", + "Theresa Pudenz (Experis)", + "Thomas Hanson (Experis)", + "Zachary Bohnenkamp (Experis) – Program Manager" + ] + } + ] + }, + { + "section": "Special Thanks", + "titles": [ + { + "title": "", + "names": [ + "4J Studios", + "Albert Pastore - Director of Business Development, Music and Talent", + "Dan Roque – Creature Developer", + "Gideon Driver (Zen3 Infosolutions America, Inc)", + "John 'DrZhark' Olarte - Creature Developer", + "Julian Gough - Writer", + "Kent Christian Jensen – Creature Developer", + "Reza Elghazi - Developer Account Manager", + "Stephanie Golden (Insight Global, Inc) – Account Manager", + "The PlayFab Team", + "The Xbox Live Team", + "Vishnu Nalagangula (Zen3 Infosolutions America, Inc)" + ] + } + ] + }, + { + "section": "Development Partner: Lionbridge Quality - Poland Team", + "titles": [ + { + "title": "Test Director", + "names": [ + "Michał Błoński (Lionbridge)" + ] + }, + { + "title": "Senior Global Test Manager", + "names": [ + "Grzegorz Kohorewicz (Lionbridge)" + ] + }, + { + "title": "Senior Test Manager", + "names": [ + "Mateusz Kałuża (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Beata Jastrzębska (Lionbridge)" + ] + }, + { + "title": "Team Leads", + "names": [ + "Kamil Kostrzewa (Lionbridge)", + "Michał Sławek (Lionbridge)", + "Sebastian Polanica (Lionbridge)", + "Wojciech Kujawa (Lionbridge)", + "Tomasz Bokotko (Lionbridge)" + ] + }, + { + "title": "Compliance Leads", + "names": [ + "Łukasz Mikusek (Lionbridge)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Adam Rączkowski (Lionbridge)", + "Iwona Cieśla (Lionbridge)", + "Jakub Kwiatkowski (Lionbridge)", + "Jarosław Żebrowski (Lionbridge)", + "Karim Zemirli (Lionbridge)", + "Katarzyna Moskalewicz (Lionbridge)", + "Kinga Izdebska (Lionbridge)", + "Łukasz Jankowski (Lionbridge)", + "Maciej Łajszczak (Lionbridge)", + "Marcin Rosłon (Lionbridge)", + "Marcin Słoniewski (Lionbridge)", + "Mariusz Gil (Lionbridge)", + "Mariusz Podgórski (Lionbridge)", + "Mateusz Janiszewski (Lionbridge)", + "Michał Cieślak (Lionbridge)", + "Patryk Telus (Lionbridge)", + "Paulina Pałdyna (Lionbrige)", + "Piotr Gruszczyński (Lionbridge)", + "Piotr Jasiński (Lionbridge)", + "Zofia Lenarczyk (Lionbridge)" + ] + }, + { + "title": "Compliance Software Test Engineers", + "names": [ + "Adam Ronowski (Lionbridge)", + "Maciej Rodak (Lionbridge)", + "Piotr Orłowski (Lionbridge)", + "Szymon Okoń (Lionbridge)", + "Witold Januszewski-Skup (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Krasieńko (Lionbridge)", + "Adam Sołtanowski (Lionbridge)", + "Adam Zawadzki (Lionbridge)", + "Adrian Jakóbczak (Lionbridge)", + "Agnieszka Sobieszuk (Lionbridge)", + "Albert Wujkowski (Lionbridge)", + "Aleksander Aussenberg (Lionbridge)", + "Aleksandra Traczyk (Lionbridge)", + "Anna Kacprzak (Lionbridge)", + "Antoni Gazecki (Lionbridge)", + "Antoni Wiatrowski (Lionbridge)", + "Arek Czarnecki (Lionbridge)", + "Arkadiusz Grzanka (Lionbridge)", + "Bartłomiej Kowalik (Lionbridge)", + "Bartłomiej Krupiński (Lionbridge)", + "Bartłomiej Łobocki (Lionbridge)", + "Bartłomiej Słodkowski (Lionbridge)", + "Bartłomiej Żukowski (Lionbridge)", + "Bartosz Bińka (Lionbridge)", + "Bartosz Jamroziński (Lionbridge)", + "Bartosz Kuchta (Lionbridge)", + "Bartosz Waleśkiewicz (Lionbridge)", + "Błażej Rajewski (Lionbridge)", + "Cezary Chobot (Lionbridge)", + "Daniel Bojar (Lionbridge)", + "Daniel Kuchciński (Lionbridge)", + "Daniel Moczydłowski (Lionbridge)", + "Daniel Niewiadomski (Lionbridge)", + "Daria Gajowniczek (Lionbridge)", + "Dawid Dudasz (Lionbridge)", + "Dominik Wiśniowski (Lionbridge)", + "Eliza Duda (Lionbridge)", + "Eugeniusz Kosieradzki (Lionbridge)", + "Filip Sobczak (Lionbridge)", + "Gabriel Gałuszka (Lionbridge)", + "Grzegorz Irek (Lionbridge)", + "Grzegorz Wilkołek (Lionbridge)", + "Grzegorz Ziółek (Lionbridge)", + "Ignacy Kukliński (Lionbridge)", + "Jakub Cymbalista (Lionbridge)", + "Jakub Czerwiński (Lionbridge)", + "Jakub Górnicki (Lionbridge)", + "Jakub Ołdak (Lionbridge)", + "Jakub Opalinski (Lionbridge)", + "Jakub Rosłoński (Lionbridge)", + "Jakub Suchorab (Lionbridge)", + "Jakub Zdzieborski (Lionbridge)", + "Jakub Zgajewski (Lionbridge)", + "Jan Tworkowski (Lionbridge)", + "Joanna Jabłonska (Lionbridge)", + "Justyna Gorzkowska (Lionbridge)", + "Kacper Bujakowski (Lionbridge)", + "Kacper Kobyliński (Lionbridge)", + "Kacper Senkowicz (Lionbridge)", + "Kamil Konarski (Lionbridge)", + "Kamil Stopa (Lionbridge)", + "Karol Frączek (Lionbridge)", + "Karol Mikusek (Lionbridge)", + "Karol Samek (Lionbridge)", + "Katarzyna Smektalska (Lionbridge)", + "Konrad Czaplewski (Lionbridge)", + "Konrad Jówko (Lionbridge", + "Krzysztof Górski (Lionbridge)", + "Krzysztof Jeżak (Lionbridge)", + "Krzysztof Uściłowski (Lionbridge)", + "Krzysztof Wiśniewski (Lionbridge)", + "Luisa Cordero-Polańska", + "Łukasz Marek (Lionbridge)", + "Łukasz Mętrak (Lionbridge)", + "Łukasz Michalak (Lionbridge)", + "Maciej Piórnik (Lionbridge)", + "Maciej Ryznar (Lionbridge)", + "Maciej Siemieniec (Lionbridge)", + "Magdalena Marek (Lionbridge)", + "Magdalena Wardak (Lionbridge)", + "Maksymilian Wolf (Lionbridge)", + "Malwina Zacharek (Lionbridge)", + "Marcin Cudny (Lionbridge)", + "Marcin Klimek (Lionbridge)", + "Marcin Krysiak (Lionbridge)", + "Marcin Kusznieruk (Lionbridge)", + "Marcin Morel (Lionbridge)", + "Marcin Mycka (Lionbridge)", + "Marcin Szałek (Lionbridge)", + "Marcin Szydło (Lionbridge)", + "Mateusz Miksa (Lionbridge)", + "Mateusz Świecki (Lionbridge)", + "Melchior Lewandowski-Wołosz (Lionbridge)", + "Michał Juszczyk (Lionbridge)", + "Michał Nowak (Lionbridge)", + "Mikołaj Gruźliński (Lionbridge)", + "Miłosz Kahlan (Lionbridge)", + "Natalia Niedziela (Lionbridge)", + "Patryk-Piotr Rosiński (Lionbridge)", + "Paulina Siewierska (Lionbridge)", + "Paweł Białczak (Lionbridge)", + "Paweł Gos (Lionbridge)", + "Paweł Kaleta (Lionbridge)", + "Piotr Burkowski (Lionbridge)", + "Piotr Gałecki (Lionbridge)", + "Piotr Gruszczyński (Lionbridge)", + "Piotr Łatyński (Lionbridge)", + "Piotr Szafran (Lionbridge)", + "Piotr Walasik (Lionbridge)", + "Piotr Witkowski (Lionbridge)", + "Rafał Brzostowski (Lionbridge)", + "Rafał Pruszkowski (Lionbridge)", + "Robert Jordanek (Lionbridge)", + "Robert Szadkowski (Lionbridge)", + "Robert Wypasek (Lionbridge)", + "Roman Zając (Lionbridge)", + "Szymon Późniak (Lionbridge)", + "Tolly Kulczycki (Lionbridge)", + "Tomasz Selwat (Lionbridge)", + "Weronika Szajnfeld (Lionbridge)", + "Wojciech Olszewski (Lionbridge)", + "Wojciech Żukowski (Lionbridge)", + "Zuzanna Gieszcz (Lionbridge)" + ] + }, + { + "title": "Compliance Test Associates", + "names": [ + "Adam Czajkowski (Lionbridge)", + "Arkadiusz Grzesiński (Lionbridge)", + "Barbara Rutkowska (Lionbridge)", + "Cezary Romecki (Lionbridge)", + "Jakub Malinowski (Lionbridge)", + "Kaja Faber (Lionbridge)", + "Maciej Ginter (Lionbridge)", + "Marcin Kubicki (Lionbridge)", + "Marcin Paszkiewicz (Lionbridge)", + "Michał Tomaszewski (Lionbridge)", + "Oskar Żurawski (Lionbridge)", + "Sebastian Michalski (Lionbridge)", + "Stanisław Świderski (Lionbridge)", + "Sviatoslav Porubanskyi (Lionbridge)" + ] + }, + { + "title": "Special Thanks", + "names": [ + "Dariusz Sokołowski (Lionbridge)", + "Evan Wright (Lionbridge)", + "Matt Whiting (Lionbridge)", + "Michael Friend (Lionbridge)", + "Szymon Walicki (Lionbridge)", + "Tomasz Pucyk (Lionbridge)", + "Tugdual Delisle (Lionbridge)" + ] + } + ] + }, + { + "section": "Quality - UK Team", + "titles": [ + { + "title": "Test Manager", + "names": [ + "Richard H. Jones (Lionbridge)" + ] + }, + { + "title": "Compliance Test Engineer", + "names": [ + "Lee-Roy Dunn (Lionbridge)", + "Nick Dorsett (Lionbridge)" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Patrick Fraioli" + ] + } + ] + }, + { + "section": "Development Partner: BBI", + "titles": [ + { + "title": "Programmer", + "names": [ + "Curtis Hodgins", + "Devon Plourde", + "Michelle Rocha", + "Stevie Giovanni" + ] + }, + { + "title": "Associate Programmer", + "names": [ + "Jacky Cai" + ] + }, + { + "title": "UI Artist", + "names": [ + "Richelle Brunt" + ] + }, + { + "title": "UX Designer", + "names": [ + "Sam Flores" + ] + }, + { + "title": "QA Analyst", + "names": [ + "Jamie Cheung", + "Paul Pera" + ] + } + ] + }, + { + "section": "Development Partner: Disbelief", + "titles": [ + { + "title": "President", + "names": [ + "Steve Ellmore" + ] + }, + { + "title": "CTO", + "names": [ + "Steve Anichini" + ] + }, + { + "title": "Senior Programmer", + "names": [ + "Tim Hagberg" + ] + }, + { + "title": "Programmer", + "names": [ + "Eric Nguyen" + ] + }, + { + "title": "Producer", + "names": [ + "Grue Robinson" + ] + } + ] + }, + { + "section": "Development Partner: Skybox", + "titles": [ + { + "title": "", + "names": [ + "Adrian Smith", + "Alexandra Kabak", + "Amy Zhao", + "Anthony Wong", + "Benny Wang", + "Carsten Hooker", + "Casey White", + "Chander Siddarth", + "Cody Clattenburg", + "Colin Basnett", + "Cyro Paulino da Costa", + "Daniel Shim", + "David Getley", + "Derek MacNeil", + "Dylan Rueter", + "Eser Kokturk", + "Evgeny Kuznetsov", + "Faith Chow", + "Franka Mostert", + "Gary Texmo", + "Glen Conolly", + "Gustav Louw", + "Hayden Hur", + "Ian Wang", + "Ilya Solnyshkin", + "Isaac Calon", + "Ivan Yemelianov", + "Jacob Jensen", + "Jaegar Sarauer", + "Jagger Nast", + "Jai Kristjan", + "Jake Roman-Barnes", + "Jason Allen", + "Jeffrey Chou", + "Jeffrey Yamasaki", + "Jennifer Barron", + "Jessica Muniz", + "Jiazhi Chang", + "John Ferguson", + "Jon Head", + "Jonathan Yim", + "Jordan Lacey", + "Joseph Cameron", + "Josue Pacheco", + "Justin Tim", + "Kyle Roblin", + "Leo Hewitt", + "Leonardo Stark", + "Madeeha Ahmed", + "Matheus Depra Gudergues", + "Max Fanning", + "Michel Morin", + "Mingzhuo Zhang", + "Mitch Filmer", + "Nathan Lacey", + "Oliver Cannon", + "Orhun Erkilic", + "Pedro Kauati", + "Reynald Brassard", + "Richard Hawkes", + "Richard Walker", + "Rick Huang", + "Shaun Foley", + "Shreyas Babu", + "Shyang Kong", + "Sim Sahin", + "Stefan Sarnev", + "Steven Silvester", + "Thiago Braga", + "Thomas Le Gerroue-Drevillon", + "Tim Bruecker", + "Todd Saharchuk", + "Ty Lauriente", + "Tyler Da Costa", + "Vassil Anguelov", + "Vicky Huang", + "William Sherif", + "Yaw Obiri-Yeboah", + "Younggi Kim", + "Zachary Campbell" + ] + } + ] + }, + { + "section": "Development Partner: Red Lens Games", + "titles": [ + { + "title": "President", + "names": [ + "Jared Noftle" + ] + }, + { + "title": "Producer", + "names": [ + "Nova Barlow" + ] + }, + { + "title": "Engineering Director", + "names": [ + "Kyle Walsh" + ] + }, + { + "title": "Lead Project Manager", + "names": [ + "Allie Murdock" + ] + }, + { + "title": "Dev Lead", + "names": [ + "Arend Danielek", + "Steve Chiavelli" + ] + }, + { + "title": "Tech Lead", + "names": [ + "Nathan Carlson", + "Ryan Edgemon" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Alan Nelson", + "Alex Green", + "Andre Tremblay", + "Dane Curbow", + "Grant Wynn", + "Jonathan Liu", + "Kelby Lawson", + "Tim Royal", + "Tyler Perry", + "Zach Bowman", + "Zeke Lasater" + ] + } + ] + }, + { + "section": "Development Partner: Virtuosity", + "titles": [ + { + "title": "Game Developers", + "names": [ + "Aishwarya Jayabal (Virtuosity)", + "Ganesh Sethy (Virtuosity)", + "Janani Senrayaperumal (Virtuosity)", + "Maha Srinivasan (Virtuosity)", + "Nandha Arulanandam (Virtuosity)", + "Nazia Nazia (Virtuosity)", + "Packiyanath Sivathanu (Virtuosity)", + "Prabhu Venkatraman Iyer (Virtuosity)", + "Shagun Sharma Tamta (Virtuosity)", + "Shanmugam Sanjay (Virtuosity)", + "Sheena Mathew (Virtuosity)", + "Sripriya Gunasekaran (Virtuosity)", + "Sriram Sreenivasan (Virtuosity)", + "Sumit Kumar Suman (Virtuosity)", + "Swati S Thakar (Virtuosity)", + "Vivek Kumar (Virtuosity)" + ] + }, + { + "title": "Producers", + "names": [ + "Chokkalingam Ramu Kuppaswamy (Virtuosity)" + ] + } + ] + }, + { + "section": "Mojang Alumni", + "titles": [ + { + "title": "Original Creator of Minecraft", + "names": [ + "Markus Persson" + ] + }, + { + "title": "Head of Minecraft", + "names": [ + "Matt Booty" + ] + }, + { + "title": "Head of Minecraft Atlas", + "names": [ + "Deirdre Quarnstrom" + ] + }, + { + "title": "Chief Executive Officer", + "names": [ + "Carl Manneh" + ] + }, + { + "title": "Chief Finance Officer", + "names": [ + "Karin Severinson" + ] + }, + { + "title": "Chief Product Officer", + "names": [ + "Olof Carlson Sandvik" + ] + }, + { + "title": "Project Director", + "names": [ + "Jakob Porsér" + ] + }, + { + "title": "Production Director", + "names": [ + "Daniel Kaplan" + ] + }, + { + "title": "Head of Games", + "names": [ + "Patrick Liu" + ] + }, + { + "title": "Game Director", + "names": [ + "Henrik Pettersson" + ] + }, + { + "title": "Narrative Design", + "names": [ + "Max Herngren" + ] + }, + { + "title": "Chief Technology Officer", + "names": [ + "Rikard Herlitz" + ] + }, + { + "title": "Technical Director Games", + "names": [ + "Jason Major", + "Kristoffer Jelbring" + ] + }, + { + "title": "Game Designers", + "names": [ + "Miko Charbonneau", + "Brandon Franklin (Insigt Global, Inc)", + "Colten Murphy (TEKsystems, Inc)", + "Jared Greiner", + "Jesse A Hibbs (TEKsystems, Inc)", + "Lauren E. Careccia", + "Melissa Andrews (Insight Global, Inc)", + "Pradnesh Patil" + ] + }, + { + "title": "Lead Game Developers", + "names": [ + "Niklas Börestam", + "Piotr Kundu" + ] + }, + { + "title": "Game Developers", + "names": [ + "Alexander Kandalaft (Insight Global, Inc)", + "Andrew Griffin (Insight Global, Inc)", + "Anton Arbring", + "Aravindan Aarumugam (Virtuosity)", + "Benjamin Arnold (Insight Global, Inc)", + "Campbell Tran", + "Cezary Tomczak", + "Chris Barrett (Apex Systems, Inc)", + "Christian Westman", + "Clayton Vaught", + "Cullen Waters", + "Daniel Feldt", + "Daniel Frisk", + "Daniel Wustenhoff", + "Emily Rizzo (Insight Global, Inc)", + "Irina Koulinitch", + "Isaac de la Vega", + "Jagannathan Mannu (Virtuosity)", + "Jakob Horndahl", + "Jakob Pogulis", + "Jeff 'Dextor' Blazier", + "Jeffrey Kumley (Insight Global, Inc)", + "Joachim Larsson", + "Johan Bernhardsson", + "John Haynes", + "Jonas Bergström", + "Jonas Eriksson", + "Josh Letellier", + "Joshua B Davis", + "Joshua Letellier", + "Luis A Angel Mex", + "Magnus Bentling", + "Maria Lemón", + "Markus Arvidsson", + "Michael Klopfenstein (Insight Global, Inc)", + "Michael 'Mikaus' Whiteley", + "Nathan Gilbert", + "Patrick O'Leary", + "Rakshith Murthy (Virtuosity)", + "Rui Ma", + "Rui Xie (Insight Global, Inc)", + "Ryan Holtz", + "Sandra Bornemark", + "Sina Tamanna", + "Spencer Peterson (Insight Global, Inc)", + "Subramani Ramanathan (Virtuosity)", + "Sumith Kumar (Virtuosity)", + "Thomas Guimbretiére", + "Tobias Möllstam", + "Tomas Alaeus", + "Tomas Guimbretière", + "Uma Senthil Raj (Virtuosity)", + "Vignesh Masilamani (Virtuosity)" + ] + }, + { + "title": "Lead UI Developers", + "names": [ + "Sebasian Hindefeldt" + ] + }, + { + "title": "UI Developers", + "names": [ + "Albin Odervall", + "Anna Päärni", + "Dario Vodopivec", + "Emelie Sidesiö", + "Emil Hedemalm", + "Kirill Mikhel", + "Michael Novén", + "Mohamed Fouad Saga" + ] + }, + { + "title": "Additional Programming", + "names": [ + "Elliot 'Hippoplatimus' Segal", + "Paul Spooner", + "Ryan 'Scaevolus' Hitchman" + ] + }, + { + "title": "Launcher", + "names": [ + "Anders Rosén", + "Carl Westin", + "David Zevallos" + ] + }, + { + "title": "Architects", + "names": [ + "Michael Seydl", + "Mike Frost", + "Tommaso Checchi" + ] + }, + { + "title": "Lead Bedrock Software Developers", + "names": [ + "Aaron Heysse", + "Adrian LaVallee", + "Sebastian Hindefelt", + "Timothy J Schutz" + ] + }, + { + "title": "Software Developers", + "names": [ + "Alex Wouters (Insight Global, Inc)", + "Arend Danielek (TEKsystems, Inc)", + "Coseo Frerichs (Insight Global, Inc)", + "Dave Stevens", + "David 'Lion' Kimbro (Insight Global, Inc)", + "Elijah J Emerson", + "Jeffrey J Jou (Insight Global, Inc)", + "John Estess (Randstad)", + "Jonathan M Ortiz", + "Jorge Antonio Jimenez (Design Laboratory, Inc)", + "Karim A Luccin", + "Lisa Sturm", + "Mark Rowland (Collabera)", + "Matthew Guze (WaferWire Cloud Technologies)", + "Maxwell Orth (Insight Global, Inc)", + "Oskar Carlbaum", + "Rob Austin", + "Robert Di Battista (Insight Global, Inc)", + "Semih Energin", + "Steve Trigger (Insight Global, Inc)", + "Tanner Pearson (Insight Global, Inc)", + "Taylor M Riviera", + "Zack Moxley (Insight Global, Inc)" + ] + }, + { + "title": "Realms Developers", + "names": [ + "Alexander Johansson", + "Amir Moulavi", + "Arockia Stanly (Virtuosity)", + "Barani Dharan (Virtuosity)", + "David Marby", + "Erik Bylund", + "Johnny Sjöö", + "Magnus Jäderberg", + "Mats Henricson", + "Philip Vieira" + ] + }, + { + "title": "Launcher Developers", + "names": [ + "Andrew Hewitson", + "Linus Cumselius", + "Marc Neander", + "Martin Hesselborn", + "Michael Malmqvist", + "Mikael Malmqvist" + ] + }, + { + "title": "Lead System Engineers", + "names": [ + "Tom Miles" + ] + }, + { + "title": "System Engineers", + "names": [ + "Hazen Miller (Insight Global, Inc)", + "Louis A Castaneda (Insight Global, Inc)", + "Geof Sawaya (Collabera)" + ] + }, + { + "title": "Service Software Engineers", + "names": [ + "Anders Martini", + "Don S Frazier II", + "Filip Hedenskog", + "Guillaume Le Chenadec", + "Haley Eisenshtadt", + "Joakim Ejenstam", + "Nathan Sosnovske", + "Norman Skinner (Insight Global, Inc)", + "Stacy J Chen" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Evelyn Collier (Insight Global)", + "Michael Andersson", + "Robyn R To" + ] + }, + { + "title": "Engineering Manager", + "names": [ + "Wenlan Yang" + ] + }, + { + "title": "System Engineers", + "names": [ + "Robert Thresher (Collabera)" + ] + }, + { + "title": "System Developers", + "names": [ + "Christoffer Hammarström", + "Dodge Lafnitzegger (Insight Global, Inc)", + "Leonard Gram", + "Martin Odhelius" + ] + }, + { + "title": "Art Directors", + "names": [ + "Brad Shuber", + "Logan Lubera", + "Ola Lanteli", + "Wiktor Persson" + ] + }, + { + "title": "Art Lead", + "names": [ + "Sarah Kisor" + ] + }, + { + "title": "Artists", + "names": [ + "Erin Caswell (eXcell, a division of CompuCom)", + "Lilei Yu (Collabera)" + ] + }, + { + "title": "3D/VFX", + "names": [ + "Elin Ölund Forsling", + "Jakob Gavelli", + "Marco Vale" + ] + }, + { + "title": "Lead Technical Artist", + "names": [ + "Lisa Hazen" + ] + }, + { + "title": "Technical Artist", + "names": [ + "Dylan Piepenbrok" + ] + }, + { + "title": "Artists", + "names": [ + "Amanda Cook (Harvey Nash)", + "Bart Kaufman (Randstad)", + "Branden Brushett (Aquent LLC)", + "Jules Norcross (Aquent LLC)", + "Kelly Greene (CompuCom Systems, Inc)", + "Kristen Malone (Randstad)", + "Michael R Fiedler (Insight Global, Inc)", + "Miki Bishop (Randstad)", + "Patrick A Rodes (Insight Global, Inc)" + ] + }, + { + "title": "Graphic Artists", + "names": [ + "Jerica Harada (TEKsystems, Inc)", + "Kristoffer Zetterstrand", + "Poi Poi Chen" + ] + }, + { + "title": "Lead Graphic Designers", + "names": [ + "Christine Gutierrez" + ] + }, + { + "title": "Additional Graphics", + "names": [ + "Jonatan Pöljö", + "Mariana Graham Ramirez" + ] + }, + { + "title": "Motion Graphics Designer", + "names": [ + "Gabe Philbin (Randstad)" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Kevin Martinez", + "Shauny Jang (Insight Global, Inc)" + ] + }, + { + "title": "Executive Producer", + "names": [ + "Erin Krell" + ] + }, + { + "title": "Producers", + "names": [ + "Alen Voljevica", + "Anna Holdosi-Simon", + "Anthony Hanses (Insight Global, Inc)", + "Antonina Y Khazova", + "Åsa Skogström", + "Austin Maestre", + "Carina Pettersson", + "Chris Casanova", + "Dani Flores (Insight Global, Inc)", + "Dayana Sharshukova (Aquent LLC)", + "Decker Geddes (Insight Global, Inc)", + "Dejan Dimic", + "Elizabeth Batson (Insight Global, Inc)", + "Emma Erixson", + "Jason Rice", + "Jennifer Lee (Insight Global, Inc)", + "Johannes Fridd", + "Juan Gril", + "Justin Woods", + "Justine Loong", + "Loudon St Hill (Insight Global, Inc)", + "Marcus Rundström", + "Matt Rodgers (eXcell, a division of CompuCom)", + "Michael Welch (Insight Global, Inc)", + "Moira Ingeltun", + "Nick Severson", + "Robin Linder", + "Sara Lidberg", + "Sofia Orrheim", + "Thomas Feng", + "Trevor McCann (Yoh Services LLC)", + "William C Meyer (Pivotal Consulting LLC)", + "Yesernia Cisneros" + ] + }, + { + "title": "Crganizational Coaches", + "names": [ + "Marie Stålkrantz" + ] + }, + { + "title": "Assistant Producer", + "names": [ + "Warren Loo" + ] + }, + { + "title": "Release Manager", + "names": [ + "Brogan Irwin (Virtuosity)", + "Dustin Wood (Design Laboratory, Inc)", + "Kyle Rogers (Randstad)" + ] + }, + { + "title": "Merchandise Art Director", + "names": [ + "Alexis Holmqvist" + ] + }, + { + "title": "Technical Writer", + "names": [ + "Jeff Kim (Insight Global, Inc)", + "Nate Mackie (TEKsystems, Inc)" + ] + }, + { + "title": "Product Designer", + "names": [ + "Jennifer Hammervald" + ] + }, + { + "title": "Head of Creative Communications", + "names": [ + "Thomas Wiborgh" + ] + }, + { + "title": "Director of Brand", + "names": [ + "Jonathan Symington" + ] + }, + { + "title": "Head of Creative Production", + "names": [ + "Katharina Hautz" + ] + }, + { + "title": "User Experience Design Director", + "names": [ + "Stephen Whetstine", + "Tobias Ahlin" + ] + }, + { + "title": "User Experience Designer", + "names": [ + "Connor Tompsett (CompuCom Systems, Inc)", + "Lily Ekman", + "Oscar Nilsson" + ] + }, + { + "title": "Automation Support", + "names": [ + "Sean Connolly (Insight Global, Inc)", + "Matthew Gustaff (Digital Intelligence Systems, LLC)" + ] + }, + { + "title": "IT", + "names": [ + "Daniel Miller (Insight Global, Inc)", + "Carl Johan Svärd", + "Dolly MacKwan", + "Fabian Norlin" + ] + }, + { + "title": "Directors of Business Management", + "names": [ + "Stephen McHugh" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Andrew J. Adamyk" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Cathy Wickersham", + "Darla J Barrett", + "Judith L. Wheeler", + "Katy Hanson" + ] + }, + { + "title": "Business Administrators", + "names": [ + "Shae M. Flanigan (C2S Technologies, Inc)" + ] + }, + { + "title": "Office Managers", + "names": [ + "Alex Andersson", + "Charlotte Wredesjö", + "Jill Curran", + "Linn Hultman", + "Mikaela Prim" + ] + }, + { + "title": "Reception", + "names": [ + "Chaimae Truving" + ] + }, + { + "title": "Data Science & Analytics Lead", + "names": [ + "Warren Durrett" + ] + }, + { + "title": "Data Science & Analytics", + "names": [ + "Abby Jaloway (National Business Innovations)", + "Brynjólfur Erlingsson", + "Darin LaSota (Design Laboratory, Inc)", + "Ethan Batson (Design Laboratory, Inc)", + "Gil Darves (Design Laboratory, Inc)", + "Jari Williams", + "Murali Nagarajan (Design Laboratory, Inc)", + "Nick Martin (Design Laboratory, Inc)", + "Pawan Panaganti (Design Laboratory, Inc)", + "Srini Viswanatham (Design Laboratory, Inc)", + "Tim Ross (Simplicity Consulting, Inc)", + "Yuvaraj Duraisamy (Design Laboratory, Inc)", + "Forrest Wheeler (Insight Global, Inc)" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Sachin Dekate (Design Laboratory, Inc)" + ] + }, + { + "title": "Directors of Business Development", + "names": [ + "Cherie D Lutz" + ] + }, + { + "title": "Directors of Business Planning", + "names": [ + "Adam Tratt" + ] + }, + { + "title": "Business Managers", + "names": [ + "Bill Wu", + "Claudine Ursino (Simplicity Consulting Inc)", + "Dennis Laviolette", + "Vanessa Dagnino (Simplicity Consulting, Inc)" + ] + }, + { + "title": "Business Analysts", + "names": [ + "Alvin M Chin (Populus Group, LLC)", + "Zheng Wang (Populus Group, LLC)" + ] + }, + { + "title": "Minecraft Content Coordinators", + "names": [ + "Adam Martinsson", + "Andreas Thomasson", + "Sara Lempiäinen" + ] + }, + { + "title": "Program Manager", + "names": [ + "Amber Wu (Shang Hai Wei Chuang Ruan Jian)", + "Gregory Walls (CompuCom Systems, Inc)", + "Liz Butowicz (Bluehawk LLC)", + "Maria Olekheyko", + "Mark Fredo (Aerotek, Inc)", + "Meenoo Rami", + "Timothy J Ross (Simplicity Consulting, Inc)" + ] + }, + { + "title": "Creative Director", + "names": [ + "John Hendricks" + ] + }, + { + "title": "Media Director", + "names": [ + "Hans Abrahamsson" + ] + }, + { + "title": "Creative Communications Assistant", + "names": [ + "Emily Richardson" + ] + }, + { + "title": "Head of Social Media", + "names": [ + "Amelia Dale", + "Alice Löfgren" + ] + }, + { + "title": "Head of Player Operations", + "names": [ + "Aubrey Norris" + ] + }, + { + "title": "Community Manager", + "names": [ + "Glory Robinson (Experis)", + "Helen Zbihlyj", + "Nova Barlow (Experis)" + ] + }, + { + "title": "Customer Support Lead", + "names": [ + "Mattias Victorin" + ] + }, + { + "title": "Customer Support", + "names": [ + "Amelia Lindroth Henriksson", + "Ana Barata Martins", + "Andrea Jörgensen", + "Andreas Andersson", + "Angehlica Walling", + "Annika Tripke-Lund", + "Anton Albiin", + "Antonia Kousathana", + "Carl Johnsson", + "Cim Borg", + "Dante Stjernberg", + "David Carlsson", + "David Stuart Dahlgren", + "Elin Frykholm", + "Eliza Hearsum", + "Ellie Ashrafi", + "Erik Nordberg", + "Fredrik Henriksson", + "Fredrik Sandström", + "Freja Fors", + "Henrik Davallius", + "Henry Shi", + "Isabell Ahron", + "Jeffrey Riendeau", + "Joe Liu", + "Jonny Hair", + "Kevin Vesterlund", + "Kyle McMurtry (TEKsystems, Inc)", + "Mike Till", + "Nasim Derakhshan", + "Nicole Jansson", + "Nima Tolouifar", + "Patrik Södergren", + "Rabi Hadad", + "Robert Miskiewicz", + "Robin Cocks", + "Robin Thunström", + "Rui Ribero", + "Sarah Mårtensson", + "Theodor Colbing", + "Valérie Beaubien", + "Viktor Persson" + ] + }, + { + "title": "Marketing Manager", + "names": [ + "Bianca Ciotti", + "Delilah Liu", + "Didac Hormiga", + "Eva Stefanac", + "Gabi Ibarra (Simplicity Consulting, Inc)" + ] + }, + { + "title": "Legal", + "names": [ + "Christi Davisson" + ] + }, + { + "title": "Intellectual Property Enforcement Lead", + "names": [ + "Mathias Andersson", + "Teresa Lee Rodewald" + ] + }, + { + "title": "Intellectual Property Enforcement Agents", + "names": [ + "Johan Hedlund", + "Marcus Forss", + "Matilda Åkerman", + "Sylvia Chen" + ] + }, + { + "title": "Lead Producer - Brand Experience", + "names": [ + "Karim Walldén" + ] + }, + { + "title": "Communication Manager", + "names": [ + "John Schork" + ] + }, + { + "title": "Assembly Media Inc.", + "names": [ + "Alli Cohen", + "Christian Delgado", + "Jessie Steinberg", + "Richard Chen" + ] + }, + { + "title": "HR Administrator", + "names": [ + "Charlie Bjurström", + "Petra Stenqvist" + ] + }, + { + "title": "HR Advisor", + "names": [ + "Viktoria Petersson" + ] + }, + { + "title": "Sourcer", + "names": [ + "Sofia Andersson" + ] + }, + { + "title": "Senior Recruiter", + "names": [ + "Tove Oldebäck" + ] + }, + { + "title": "Recruiters", + "names": [ + "Aimée Narfström", + "Ida Utterström" + ] + }, + { + "title": "Creative Communications Editor", + "names": [ + "Marsh Davies", + "Tom Stone" + ] + }, + { + "title": "Cloud Computing Engineer", + "names": [ + "Dolly Mackwan" + ] + }, + { + "title": "Support Team Lead", + "names": [ + "Mattias Jacob Victorin" + ] + }, + { + "title": "Consumer Products Designer", + "names": [ + "Kelsey Ranallo" + ] + }, + { + "title": "Lead Project Manager", + "names": [ + "Vera Mirchev" + ] + }, + { + "title": "Web Design", + "names": [ + "Taylor Kasony (eXcell, a division of CompuCom)" + ] + }, + { + "title": "Quality Manager", + "names": [ + "Rob Straavaldson" + ] + }, + { + "title": "Development Partner: Skybox", + "names": [ + "Ace Cheung", + "Alex MacKay", + "Alfonso Muñoz", + "Alina Varela", + "Amandeep Malhi", + "Arta Seify", + "Ashlyn Gadow", + "Blair Hitchens", + "Bren Lynne", + "Chris Klassen", + "Cole Pollock", + "Dave MacLean", + "Diana Jutras", + "Gabriel J. Gonzalez", + "Gary Shaw", + "Ghafur Remtulla", + "Graham Laverty", + "Jesse Taylor", + "Joel Stack", + "Jordan Pongracz", + "Jun Luo", + "Justin Moon", + "Keven Nguyen", + "Kevin Hsu", + "Kris Morness", + "Marc Faulise", + "Marcel Brake", + "Matt Klassen", + "Mitch Armstrong", + "Olivia Chung", + "Oscar Yang", + "Paul Baker", + "Peter Martin", + "Pope Kim", + "Prithiraj Ghosh", + "Rohit Moni", + "Sam Martens", + "Serge Lansiquot", + "Shiva Gupta", + "Simon Gleizes", + "Steven Wong", + "Tim Hinds", + "Tina Dhaliwal", + "Trevin Wong", + "Vivian Ortenzi", + "Yuri Fomenko", + "Zach Chan", + "Zike Wu" + ] + }, + { + "title": "Development Partner: BBI", + "names": [ + "Alex Sharp - Assistant Producer", + "Andrew Yuennan - Programmer", + "Anish Shenwai - Co-Op Programmer", + "Bhavesh Gupta - Associate Programmer", + "Branko Bajcetic - Co-Op Programmer", + "Christina Oh - Co-Op Programmer", + "Christopher Whitman - Programmer", + "David McKay - Associate Producer", + "Duarte Maia - Programmer", + "Elizabeth Pieters - Co-Op Programmer", + "Eric Dahl - Co-Op Programmer", + "Erick Tavares - Programmer", + "Gupta Bhavesh", + "Hugo Burd - Co-Op Programmer", + "James Fairweather", + "Kelsey Primar - Producer", + "Kevin Yu - Co-Op Programmer", + "Koki Pan - Co-Op Programmer", + "Riley Godard - Associate Programmer", + "Ryan LeMesurier - Lead QA Analyst", + "Thomas Paterson - Programmer", + "Tyler Nilsson", + "Vidhi Shah - Designer", + "Wes Trevor - Senior QA", + "Youhan Guan - Programmer" + ] + }, + { + "title": "Development Partner: Red Lens", + "names": [ + "Christopher Kohnert", + "Joshua Claeys", + "Ryan Davison" + ] + }, + { + "title": "Development Partner: Virtuosity", + "names": [ + "Shanthi Kanchibhotla (Virtuosity)" + ] + }, + { + "title": "Front of House", + "names": [ + "Adam Blänning" + ] + }, + { + "title": "Product Owner", + "names": [ + "Johannes Söderberg" + ] + }, + { + "title": "Technical Audio Developer", + "names": [ + "Jonatan Crafoord" + ] + }, + { + "title": "Senior Financial Accountant", + "names": [ + "Natalie Levinsson" + ] + }, + { + "title": "Social Media Manager", + "names": [ + "Natascha Cox" + ] + } + ] + }, + { + "section": "Studios Quality Alumni", + "titles": [ + { + "title": "Quality Leads", + "names": [ + "Tony Harlich" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Akshata Trivedi" + ] + }, + { + "title": "Quality Data Analysis & Engineering", + "names": [ + "Jeff MacDermot" + ] + }, + { + "title": "Quality Analysts", + "names": [ + "Yi Zhao (Kforce)" + ] + }, + { + "title": "Poland - Team Leads", + "names": [ + "Anna Wróbel (Lionbridge)", + "Kamil Bazydło (Lionbridge)", + "Paweł Piekarski (Lionbridge)" + ] + }, + { + "title": "US Team - Software Test Engineering Leads", + "names": [ + "Chris James (Insight Global, Inc)" + ] + }, + { + "title": "US Team - Software Test Engineers", + "names": [ + "Brendan McElroy (Insight Global, Inc)", + "Crystal Edwards (Insight Global, Inc)", + "Dan Parker (Insight Global, Inc)", + "Isaac Dudley (Insight Global, Inc)", + "John Ehresmann (Experis)", + "Sean Colbert (Experis)" + ] + }, + { + "title": "US Team - Test Associates", + "names": [ + "Brian Sears (Experis)" + ] + }, + { + "title": "Lionbridge", + "names": [ + "Adam Prażmo (Lionbridge)", + "Adam Ronowski (Lionbridge)", + "Adrianna Zalewska (Lionbridge)", + "Agata Bidelska (Lionbridge)", + "Andrzej Wojciechowski (Lionbridge)", + "Bartłomiej Dziurżyński (Lionbridge)", + "Bartłomiej Mareczko (Lionbridge)", + "Bartosz Szklarzyński (Lionbridge)", + "Cezary Kociński (Lionbridge)", + "Damian Golik (Lionbridge)", + "Daniel Wystyrk (Lionbridge)", + "Emmanuelle Rodrigues Nunes (Lionbridge)", + "Eva Horvath (Lionbridge)", + "Filip Gwarda (Lionbridge)", + "Filip Muchin (Lionbridge)", + "Jacek Petela (Lionbridge)", + "Jan Gąsiorowski (Lionbridge)", + "Jan Prejs (Lionbridge)", + "Jan Zozman (Lionbridge)", + "Kacper Krupa (Lionbridge)", + "Kamil Zakrzewski (Lionbridge)", + "Karol Kotowicz (Lionbridge)", + "Karol Sobotka (Lionbridge)", + "Karolina Otłowska (Lionbridge)", + "Katarzyna Jaworska (Lionbridge)", + "Krzysztof Połomski (Lionbridge)", + "Łukasz Sajnóg (Lionbridge)", + "Łukasz Walczyński (Lionbridge)", + "Maciej Brzeziński (Lionbridge)", + "Maciej Kienig (Lionbridge)", + "Maksymilian Kałucki (Lionbridge)", + "Małgorzata Janiszewska (Lionbridge)", + "Marcin Papadopoulos-Gajda (Lionbridge)", + "Marco Paparella (Lionbridge)", + "Marek Urbański (Lionbridge)", + "Maria Wypych (Lionbridge)", + "Mateusz Kaliszewski (Lionbridge)", + "Mateusz Majewski (Lionbridge)", + "Mateusz Miturski (Lionbridge)", + "Mateusz Tran Van (Lionbridge)", + "Michał Antosiak (Lionbridge)", + "Michał Młynek (Lionbridge)", + "Michał Woś (Lionbridge)", + "Monika Elandt (Lionbridge)", + "Nijat Aghamali (Lionbridge)", + "Paweł Chruszczewski (Lionbridge)", + "Paweł Kumanowski (Lionbridge)", + "Paweł Neścior (Lionbridge)", + "Piotr Biernacki (Lionbridge)", + "Piotr Gryczan (Lionbridge)", + "Piotr Kolendo (Lionbridge)", + "Piotr Łowin (Lionbridge)", + "Piotr Słomka (Lionbridge)", + "Piotr Zieliński (Lionbridge)", + "Przemysław Goch (Lionbridge)", + "Przemysław Malinowski (Lionbridge)", + "Przemysław Wróbel (Lionbridge)", + "Rafal Pruszkowski (Lionbridge)", + "Rajkumar Kulandaivelu (Lionbridge)", + "Ryszard Kowalczyk (Lionbridge)", + "Sandra Meister (Lionbridge)", + "Šimon Kravár (Lionbridge)", + "Stanisław Dmowski (Lionbridge)", + "Stanisław Grabowsk (Lionbridge)", + "Stanisław Grabowski (Lionbridge)", + "Szymon Mazurek (Lionbridge)", + "Szymon Okoń (Lionbridge)", + "Tomasz Mirkiewicz (Lionbridge)", + "Tomasz Orlecki (Lionbridge)", + "Tomasz Sporczyk (Lionbridge)", + "Tomasz Zdrzalik (Lionbridge)", + "Wojciech Komada (Lionbridge)", + "Wojciech Nieckarz (Lionbridge)" + ] + } + ] + } +] \ No newline at end of file diff --git a/modules/text_elder_credits/module_manifest.json b/modules/text_elder_credits/module_manifest.json new file mode 100644 index 000000000..07547ee0c --- /dev/null +++ b/modules/text_elder_credits/module_manifest.json @@ -0,0 +1,6 @@ +{ + "name": "text_elder_credits", + "type": "resource", + "description": "远古版本(1.17-1.19.4)的鸣谢名单", + "author": ["梗体中文内容组"] +} diff --git a/modules/tnt_bamboo_block/add.json b/modules/tnt_bamboo_block/add.json new file mode 100644 index 000000000..a2abe57eb --- /dev/null +++ b/modules/tnt_bamboo_block/add.json @@ -0,0 +1,4 @@ +{ + "block.minecraft.bamboo_block": "爆竹", + "block.minecraft.stripped_bamboo_block": "去皮爆竹" +} \ No newline at end of file diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block.json new file mode 100644 index 000000000..225305dfa --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_bottom_top", + "textures": { + "top": "block/bamboo_block_tnt_top", + "bottom": "block/bamboo_block_tnt_bottom", + "side": "block/bamboo_block_tnt_side" + } +} \ No newline at end of file diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_x.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_x.json new file mode 100644 index 000000000..e0b05d420 --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_x.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#side", "rotation": 90, "cullface": "down" }, + "up": { "texture": "#side", "rotation": 90, "cullface": "up" }, + "north": { "texture": "#side", "rotation": 270, "cullface": "north" }, + "south": { "texture": "#side", "rotation": 90, "cullface": "south" }, + "west": { "texture": "#bottom", "cullface": "west" }, + "east": { "texture": "#top", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "side": "block/bamboo_block_tnt_side", + "bottom": "block/bamboo_block_tnt_bottom", + "top": "block/bamboo_block_tnt_top" + } +} diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_y.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_y.json new file mode 100644 index 000000000..304005a63 --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_y.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "side": "block/bamboo_block_tnt_side", + "bottom": "block/bamboo_block_tnt_bottom", + "top": "block/bamboo_block_tnt_top" + } +} diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_z.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_z.json new file mode 100644 index 000000000..c3802f622 --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/bamboo_block_z.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#side", "rotation": 180, "cullface": "down" }, + "up": { "texture": "#side", "cullface": "up" }, + "north": { "texture": "#top", "cullface": "north" }, + "south": { "texture": "#bottom", "cullface": "south" }, + "west": { "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "texture": "#side", "rotation": 90, "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "side": "block/bamboo_block_tnt_side", + "bottom": "block/bamboo_block_tnt_bottom", + "top": "block/bamboo_block_tnt_top" + } +} diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block.json new file mode 100644 index 000000000..cfd490e84 --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_bottom_top", + "textures": { + "top": "block/stripped_bamboo_block_tnt_top", + "bottom": "block/stripped_bamboo_block_tnt_bottom", + "side": "block/stripped_bamboo_block_tnt_side" + } +} \ No newline at end of file diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_x.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_x.json new file mode 100644 index 000000000..73259b17a --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_x.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#side", "rotation": 90, "cullface": "down" }, + "up": { "texture": "#side", "rotation": 90, "cullface": "up" }, + "north": { "texture": "#side", "rotation": 270, "cullface": "north" }, + "south": { "texture": "#side", "rotation": 90, "cullface": "south" }, + "west": { "texture": "#bottom", "cullface": "west" }, + "east": { "texture": "#top", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "side": "block/stripped_bamboo_block_tnt_side", + "bottom": "block/stripped_bamboo_block_tnt_bottom", + "top": "block/stripped_bamboo_block_tnt_top" + } +} diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_y.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_y.json new file mode 100644 index 000000000..7ea67018b --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_y.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "side": "block/stripped_bamboo_block_tnt_side", + "bottom": "block/stripped_bamboo_block_tnt_bottom", + "top": "block/stripped_bamboo_block_tnt_top" + } +} diff --git a/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_z.json b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_z.json new file mode 100644 index 000000000..dfea24a35 --- /dev/null +++ b/modules/tnt_bamboo_block/assets/minecraft/models/block/stripped_bamboo_block_z.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#side", "rotation": 180, "cullface": "down" }, + "up": { "texture": "#side", "cullface": "up" }, + "north": { "texture": "#top", "cullface": "north" }, + "south": { "texture": "#bottom", "cullface": "south" }, + "west": { "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "texture": "#side", "rotation": 90, "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "side": "block/stripped_bamboo_block_tnt_side", + "bottom": "block/stripped_bamboo_block_tnt_bottom", + "top": "block/stripped_bamboo_block_tnt_top" + } +} diff --git a/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_bottom.png b/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_bottom.png new file mode 100644 index 000000000..fbf4d8844 Binary files /dev/null and b/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_bottom.png differ diff --git a/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_side.png b/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_side.png new file mode 100644 index 000000000..819a0839b Binary files /dev/null and b/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_side.png differ diff --git a/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_top.png b/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_top.png new file mode 100644 index 000000000..99f54bf6a Binary files /dev/null and b/modules/tnt_bamboo_block/assets/minecraft/textures/block/bamboo_block_tnt_top.png differ diff --git a/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_bottom.png b/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_bottom.png new file mode 100644 index 000000000..cbe159daf Binary files /dev/null and b/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_bottom.png differ diff --git a/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_side.png b/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_side.png new file mode 100644 index 000000000..cb8474c0b Binary files /dev/null and b/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_side.png differ diff --git a/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_top.png b/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_top.png new file mode 100644 index 000000000..d3adb6925 Binary files /dev/null and b/modules/tnt_bamboo_block/assets/minecraft/textures/block/stripped_bamboo_block_tnt_top.png differ diff --git a/modules/tnt_bamboo_block/module_manifest.json b/modules/tnt_bamboo_block/module_manifest.json new file mode 100644 index 000000000..a75e66810 --- /dev/null +++ b/modules/tnt_bamboo_block/module_manifest.json @@ -0,0 +1,12 @@ +{ + "name": "tnt_bamboo_block", + "type": "resource", + "description": "爆竹(字面含义)", + "author": ["Sheep-realms"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} \ No newline at end of file diff --git a/modules/too_much_compliancies/add.json b/modules/too_much_compliancies/add.json new file mode 100644 index 000000000..532e0f7a8 --- /dev/null +++ b/modules/too_much_compliancies/add.json @@ -0,0 +1,6 @@ +{ + "compliance.playtime.greaterThan24Hours": "你都玩了超过24小时了", + "compliance.playtime.message": "MC虽好,可不要贪玩哦", + "compliance.playtime.hours": "你都玩了%s小时了", + "compliance.playtime.minutes": "你都玩了%s分钟了" +} diff --git a/modules/too_much_compliancies/assets/minecraft/regional_compliancies.json b/modules/too_much_compliancies/assets/minecraft/regional_compliancies.json new file mode 100644 index 000000000..e25a4328b --- /dev/null +++ b/modules/too_much_compliancies/assets/minecraft/regional_compliancies.json @@ -0,0 +1,146 @@ +{ + "CHN": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "USA": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "KOR": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "HKG": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "TWN": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "JPN": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "MAC": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ], + "GBR": [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + }, + { + "period": 1, + "title": "compliance.playtime.minutes", + "message": "compliance.playtime.message" + } + ] +} diff --git a/modules/too_much_compliancies/module_manifest.json b/modules/too_much_compliancies/module_manifest.json new file mode 100644 index 000000000..38f4fdb1b --- /dev/null +++ b/modules/too_much_compliancies/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "too_much_compliancies", + "type": "resource", + "description": "超级防沉迷。", + "author": ["Dianliang233"], + "incompatible_with": ["enable_compliancies"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/alex.json b/modules/totem_model/assets/mcwzhmeme/models/author/alex.json deleted file mode 100644 index f24958b15..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/alex.json +++ /dev/null @@ -1,231 +0,0 @@ -{ - "credit": "Made with Blockbench by LakeJason", - "textures": { - "0": "block/smooth_stone", - "1": "entity/alex", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 9]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6, 7], - "to": [9, 8, 9], - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.375, 7.5], - "to": [9, 6.375, 8.5], - "faces": { - "north": {"uv": [5, 5, 7, 8], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 8], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9, 3.375, 7.5], - "to": [9.75, 6.375, 8.5], - "faces": { - "north": {"uv": [11, 5, 11.75, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [12.75, 5, 13.5, 8], "texture": "#1"}, - "west": {"uv": [11.75, 5, 12.75, 8], "texture": "#1"}, - "up": {"uv": [11.75, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [12.5, 4, 11.75, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [6.25, 3.375, 7.5], - "to": [7, 6.375, 8.5], - "faces": { - "north": {"uv": [9, 13, 9.75, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [10.75, 13, 11.5, 16], "texture": "#1"}, - "west": {"uv": [9.75, 13, 10.75, 16], "texture": "#1"}, - "up": {"uv": [9.75, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [10.5, 12, 9.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [7, 0.375, 7.5], - "to": [8, 3.375, 8.5], - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [8, 0.375, 7.5], - "to": [9, 3.375, 8.5], - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.875, 5.75, 6.875], - "to": [9.125, 8, 9.125], - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [7, 3.255, 7.3725], - "to": [9, 6.5075, 8.6225], - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [8.875, 3.25, 7.375], - "to": [9.875, 6.5, 8.625], - "faces": { - "north": {"uv": [10.75, 9, 11.5, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [12.75, 9, 13.5, 12], "texture": "#1"}, - "west": {"uv": [11.75, 9, 12.75, 12], "texture": "#1"}, - "up": {"uv": [11.75, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [12.5, 8, 11.75, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [6.125, 3.25, 7.375], - "to": [7.125, 6.5, 8.625], - "faces": { - "north": {"uv": [13, 13, 13.75, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [14.75, 13, 15.5, 16], "texture": "#1"}, - "west": {"uv": [13.75, 13, 14.75, 16], "texture": "#1"}, - "up": {"uv": [13.75, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [14.5, 12, 13.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.875, 0.25, 7.375], - "to": [9.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.875, 0.25, 7.375], - "to": [8.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 13, 1, 12], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 19.25, 0], - "scale": [1.6, 1.6, 1.6] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "alex", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/dianliang.json b/modules/totem_model/assets/mcwzhmeme/models/author/dianliang.json deleted file mode 100644 index e4ef34a9a..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/dianliang.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/dianliang", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/gu_zt.json b/modules/totem_model/assets/mcwzhmeme/models/author/gu_zt.json deleted file mode 100644 index 4303baca3..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/gu_zt.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/gu_zt", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/lake.json b/modules/totem_model/assets/mcwzhmeme/models/author/lake.json deleted file mode 100644 index 535193137..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/lake.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/lakejason", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/littlec.json b/modules/totem_model/assets/mcwzhmeme/models/author/littlec.json deleted file mode 100644 index 92692a9f5..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/littlec.json +++ /dev/null @@ -1,231 +0,0 @@ -{ - "credit": "Made with Blockbench by LakeJason", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/littlec", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 9]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6, 7], - "to": [9, 8, 9], - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.375, 7.5], - "to": [9, 6.375, 8.5], - "faces": { - "north": {"uv": [5, 5, 7, 8], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 8], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9, 3.375, 7.5], - "to": [9.75, 6.375, 8.5], - "faces": { - "north": {"uv": [11, 5, 11.75, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [12.75, 5, 13.5, 8], "texture": "#1"}, - "west": {"uv": [11.75, 5, 12.75, 8], "texture": "#1"}, - "up": {"uv": [11.75, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [12.5, 4, 11.75, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [6.25, 3.375, 7.5], - "to": [7, 6.375, 8.5], - "faces": { - "north": {"uv": [9, 13, 9.75, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [10.75, 13, 11.5, 16], "texture": "#1"}, - "west": {"uv": [9.75, 13, 10.75, 16], "texture": "#1"}, - "up": {"uv": [9.75, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [10.5, 12, 9.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [7, 0.375, 7.5], - "to": [8, 3.375, 8.5], - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [8, 0.375, 7.5], - "to": [9, 3.375, 8.5], - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.875, 5.75, 6.875], - "to": [9.125, 8, 9.125], - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [7, 3.255, 7.3725], - "to": [9, 6.5075, 8.6225], - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [8.875, 3.25, 7.375], - "to": [9.875, 6.5, 8.625], - "faces": { - "north": {"uv": [10.75, 9, 11.5, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [12.75, 9, 13.5, 12], "texture": "#1"}, - "west": {"uv": [11.75, 9, 12.75, 12], "texture": "#1"}, - "up": {"uv": [11.75, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [12.5, 8, 11.75, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [6.125, 3.25, 7.375], - "to": [7.125, 6.5, 8.625], - "faces": { - "north": {"uv": [13, 13, 13.75, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [14.75, 13, 15.5, 16], "texture": "#1"}, - "west": {"uv": [13.75, 13, 14.75, 16], "texture": "#1"}, - "up": {"uv": [13.75, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [14.5, 12, 13.75, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.875, 0.25, 7.375], - "to": [9.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.875, 0.25, 7.375], - "to": [8.125, 3.5, 8.625], - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 13, 1, 12], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 19.25, 0], - "scale": [1.6, 1.6, 1.6] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "alex", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/lxazl5770.json b/modules/totem_model/assets/mcwzhmeme/models/author/lxazl5770.json deleted file mode 100644 index c48cf2476..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/lxazl5770.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/lxazl5770", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/mysticnebula70.json b/modules/totem_model/assets/mcwzhmeme/models/author/mysticnebula70.json deleted file mode 100644 index 0a94fef77..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/mysticnebula70.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "texture_size": [64, 64], - "textures": { - "0": "mcwzhmeme:entity/mysticnebula70", - "1": "block/smooth_stone", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "head_main", - "from": [7, 4, 0.5], - "to": [9.5, 6, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [1.25, 1.25, 2.5, 2.25], "texture": "#0"}, - "east": {"uv": [0, 1.25, 1.25, 2.25], "texture": "#0"}, - "south": {"uv": [3.75, 1.25, 5, 2.25], "texture": "#0"}, - "west": {"uv": [2.5, 1.25, 3.75, 2.25], "texture": "#0"}, - "up": {"uv": [1.25, 0, 2.5, 1.25], "texture": "#0"}, - "down": {"uv": [2.5, 0, 3.75, 1.25], "texture": "#0"} - } - }, - { - "name": "head_nose", - "from": [7.5, 4, 0], - "to": [9, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [0.5, 6.5, 1.25, 7], "texture": "#0"}, - "east": {"uv": [0, 6.5, 0.5, 7], "texture": "#0"}, - "west": {"uv": [1.25, 6.5, 1.75, 7], "texture": "#0"}, - "up": {"uv": [0.5, 6, 1.25, 6.5], "texture": "#0"}, - "down": {"uv": [1.25, 6, 2, 6.5], "texture": "#0"} - } - }, - { - "name": "head_ear_1", - "from": [8.75, 6, 1.5], - "to": [9.25, 6.5, 2.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [0.5, 3, 0.75, 3.25], "texture": "#0"}, - "east": {"uv": [0, 3, 0.5, 3.25], "texture": "#0"}, - "south": {"uv": [1.5, 3, 1.75, 3.25], "texture": "#0"}, - "west": {"uv": [1, 3, 1.5, 3.25], "texture": "#0"}, - "up": {"uv": [0.5, 2.5, 0.75, 3], "texture": "#0"}, - "down": {"uv": [0.75, 2.5, 1, 3], "texture": "#0"} - } - }, - { - "name": "head_ear_1", - "from": [7.25, 6, 1.5], - "to": [7.75, 6.5, 2.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 2.5, 3.5]}, - "faces": { - "north": {"uv": [2, 3, 2.25, 3.25], "texture": "#0"}, - "east": {"uv": [1.5, 3, 2, 3.25], "texture": "#0"}, - "south": {"uv": [3, 3, 3.25, 3.25], "texture": "#0"}, - "west": {"uv": [2.5, 3, 3, 3.25], "texture": "#0"}, - "up": {"uv": [2, 2.5, 2.25, 3], "texture": "#0"}, - "down": {"uv": [2.25, 2.5, 2.5, 3], "texture": "#0"} - } - }, - { - "name": "body", - "from": [7.25, 2.5, 3], - "to": [9.25, 5.5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [6.5, 0, 7.5, 1.5], "texture": "#0"}, - "east": {"uv": [5, 1.5, 6.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 0, 8.5, 1.5], "texture": "#0"}, - "west": {"uv": [7.5, 1.5, 9, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 1.5, 10, 5.5], "texture": "#0"}, - "down": {"uv": [6.5, 1.5, 7.5, 5.5], "texture": "#0"} - } - }, - { - "name": "left", - "from": [7, 0.5, 4], - "to": [8, 5.5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "east": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "south": {"uv": [11.5, 0.5, 12, 3], "texture": "#0"}, - "west": {"uv": [11, 0.5, 11.5, 3], "texture": "#0"}, - "up": {"uv": [10.5, 0, 11, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [11, 0, 11.5, 0.5], "texture": "#0"} - } - }, - { - "name": "right", - "from": [8.5, 0.5, 4], - "to": [9.5, 5.5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "east": {"uv": [10.5, 0.5, 11, 3], "texture": "#0"}, - "south": {"uv": [11.5, 0.5, 12, 3], "texture": "#0"}, - "west": {"uv": [11, 0.5, 11.5, 3], "texture": "#0"}, - "up": {"uv": [10.5, 0, 11, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [11, 0, 11.5, 0.5], "texture": "#0"} - } - }, - { - "name": "left", - "from": [7, 0.5, 9.5], - "to": [8, 3.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [2.5, 3.5, 3, 5], "texture": "#0"}, - "east": {"uv": [2, 3.75, 2.5, 5.25], "texture": "#0"}, - "south": {"uv": [3.5, 3.75, 4, 5.25], "texture": "#0"}, - "west": {"uv": [3, 3.75, 3.5, 5.25], "texture": "#0"}, - "up": {"uv": [2.5, 3.25, 3, 3.75], "texture": "#0"}, - "down": {"uv": [3, 3.25, 3.5, 3.75], "texture": "#0"} - } - }, - { - "name": "right", - "from": [8.5, 0.5, 9.5], - "to": [9.5, 3.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 6]}, - "faces": { - "north": {"uv": [2.5, 3.5, 3, 5], "texture": "#0"}, - "east": {"uv": [2, 3.75, 2.5, 5.25], "texture": "#0"}, - "south": {"uv": [3.5, 3.75, 4, 5.25], "texture": "#0"}, - "west": {"uv": [3, 3.75, 3.5, 5.25], "texture": "#0"}, - "up": {"uv": [2.5, 3.25, 3, 3.75], "texture": "#0"}, - "down": {"uv": [3, 3.25, 3.5, 3.75], "texture": "#0"} - } - }, - { - "name": "tail", - "from": [8, 4.88268, 10.92388], - "to": [8.5, 5.38268, 14.92388], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4.5, 10]}, - "faces": { - "north": {"uv": [0.25, 3.75, 0.5, 4], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 4, 0.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 3.75, 0.75, 4], "texture": "#0"}, - "west": {"uv": [0.5, 4, 0.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 4, 1, 6], "texture": "#0"}, - "down": {"uv": [0.25, 4, 0.5, 6], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "tail_end", - "from": [8, 2.61732, 14.92388], - "to": [8.5, 3.11732, 18.92388], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 3, 14]}, - "faces": { - "north": {"uv": [1.25, 3.75, 1.5, 4], "rotation": 180, "texture": "#0"}, - "east": {"uv": [1, 4, 1.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 3.75, 1.75, 4], "texture": "#0"}, - "west": {"uv": [1.5, 4, 1.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 4, 2, 6], "texture": "#0"}, - "down": {"uv": [1.25, 4, 1.5, 6], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "plate", - "from": [4, 0, 3.5], - "to": [12, 0.5, 11.5], - "faces": { - "north": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4, 2], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 4, 2], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [1, 0, 0], - "translation": [0, 3, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [1, 0, 0], - "translation": [0, 3, 0], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 4, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "translation": [0, -6.25, -15.5], - "scale": [1.2, 1.2, 1.2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "head", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3] - }, - { - "name": "body", - "origin": [8, 8, 8], - "children": [4] - }, - { - "name": "leg", - "origin": [8, 8, 8], - "children": [ - { - "name": "front", - "origin": [8, 8, 8], - "children": [5, 6] - }, - { - "name": "back", - "origin": [8, 8, 8], - "children": [7, 8] - } - ] - }, - { - "name": "tail", - "origin": [8, 8, 8], - "children": [9, 10] - } - ] - }, - { - "name": "plate", - "origin": [8, 8, 8], - "children": [11] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/skyeyefast.json b/modules/totem_model/assets/mcwzhmeme/models/author/skyeyefast.json deleted file mode 100644 index 2f440a564..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/skyeyefast.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/skyeyefast", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/steve.json b/modules/totem_model/assets/mcwzhmeme/models/author/steve.json deleted file mode 100644 index 0ef19d3b4..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/steve.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made By Gu_ZT", - "textures": { - "0": "block/smooth_stone", - "1": "entity/steve", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [6, 0, 6], - "to": [10, 0.25, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [7, 6.25, 7], - "to": [9, 8.25, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [7, 3.2, 7.5], - "to": [9, 6.2, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [9.5, 1.38, 7.5], - "to": [10.5, 4.38, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [5, 4, 7.5], - "to": [6, 7, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, 0.26, 7.5], - "to": [9, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [7, 0.26, 7.5], - "to": [8, 3.26, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [6.95, 6.255, 6.95], - "to": [9.05, 8.355, 9.05], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6.95, 3.2, 7.45], - "to": [9.05, 6.3, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [9.45, 1.375, 7.45], - "to": [10.55, 4.475, 8.55], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [4.95, 3.95, 7.45], - "to": [6.05, 7.05, 8.55], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.95, 0.26, 7.45], - "to": [9.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [6.95, 0.26, 7.45], - "to": [8.05, 3.36, 8.55], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "thirdperson_lefthand": { - "rotation": [60, 0, 0], - "translation": [0, 1.9, 3.75] - }, - "firstperson_righthand": { - "translation": [4, 5, 0] - }, - "firstperson_lefthand": { - "translation": [4, 5, 0] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 5, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 16, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/author/wolf.json b/modules/totem_model/assets/mcwzhmeme/models/author/wolf.json deleted file mode 100644 index 4fd0fb337..000000000 --- a/modules/totem_model/assets/mcwzhmeme/models/author/wolf.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "credit": "Made with Blockbench by LakeJason", - "texture_size": [64, 32], - "textures": { - "0": "entity/wolf/wolf", - "1": "block/smooth_stone", - "particle": "block/smooth_stone" - }, - "elements": [ - { - "name": "head", - "from": [6.5, 4.5, 3.25], - "to": [9.5, 7.5, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 4]}, - "faces": { - "north": {"uv": [1, 2, 2.5, 5], "texture": "#0"}, - "east": {"uv": [0, 2, 1, 5], "texture": "#0"}, - "south": {"uv": [3.5, 2, 5, 5], "texture": "#0"}, - "west": {"uv": [2.5, 2, 3.5, 5], "texture": "#0"}, - "up": {"uv": [1, 0, 2.5, 2], "texture": "#0"}, - "down": {"uv": [2.5, 0, 4, 2], "texture": "#0"} - } - }, - { - "name": "nose", - "from": [7.25, 4.5, 1.75], - "to": [8.75, 6, 3.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.25, 2.75]}, - "faces": { - "north": {"uv": [1, 7, 1.75, 8.5], "texture": "#0"}, - "east": {"uv": [0, 7, 0.75, 8.5], "texture": "#0"}, - "south": {"uv": [3, 7, 3.75, 8.5], "rotation": 270, "texture": "#0"}, - "west": {"uv": [1.75, 7, 2.5, 8.5], "texture": "#0"}, - "up": {"uv": [1, 5, 1.75, 7], "rotation": 180, "texture": "#0"}, - "down": {"uv": [1.75, 5, 2.5, 7], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "left_ear", - "from": [6.5, 7.5, 4.25], - "to": [7.5, 8.5, 4.75], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 8, 4.5]}, - "faces": { - "north": {"uv": [4.25, 7.5, 4.75, 8.5], "texture": "#0"}, - "east": {"uv": [4, 7.5, 4.25, 8.5], "texture": "#0"}, - "south": {"uv": [5, 7.5, 5.5, 8.5], "texture": "#0"}, - "west": {"uv": [4.75, 7.5, 5, 8.5], "texture": "#0"}, - "up": {"uv": [4.25, 7, 4.75, 7.5], "texture": "#0"}, - "down": {"uv": [4.75, 7, 5.25, 7.5], "texture": "#0"} - } - }, - { - "name": "right_ear", - "from": [8.5, 7.5, 4.25], - "to": [9.5, 8.5, 4.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8.75, 7.75, 5.25]}, - "faces": { - "north": {"uv": [4.25, 7.5, 4.75, 8.5], "texture": "#0"}, - "east": {"uv": [4, 7.5, 4.25, 8.5], "texture": "#0"}, - "south": {"uv": [5, 7.5, 5.5, 8.5], "texture": "#0"}, - "west": {"uv": [4.75, 7.5, 5, 8.5], "texture": "#0"}, - "up": {"uv": [4.25, 7, 4.75, 7.5], "texture": "#0"}, - "down": {"uv": [4.75, 7, 5.25, 7.5], "texture": "#0"} - } - }, - { - "name": "neck", - "from": [6, 3.1765, 4.8832], - "to": [10, 6.6765, 7.8832], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4.9265, 6.3832]}, - "faces": { - "north": {"uv": [7, 0, 9, 3.5], "texture": "#0"}, - "east": {"uv": [5.25, 3.5, 7, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 0, 11, 3.5], "texture": "#0"}, - "west": {"uv": [9, 3.5, 10.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 3.5, 12.75, 6.5], "texture": "#0"}, - "down": {"uv": [7, 3.5, 9, 6.5], "texture": "#0"} - } - }, - { - "name": "body", - "from": [6.5, 1.5, 6.5], - "to": [9.5, 4.5, 11], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 3, 8.75]}, - "faces": { - "north": {"uv": [6, 7, 7.5, 10], "texture": "#0"}, - "east": {"uv": [4.5, 10, 6, 14.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7, 7.5, 10], "texture": "#0"}, - "west": {"uv": [7.5, 10, 9, 14.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10, 10.5, 14.5], "texture": "#0"}, - "down": {"uv": [6, 10, 7.5, 14.5], "texture": "#0"} - } - }, - { - "name": "left_front_leg", - "from": [6.5, 0.5, 4.5], - "to": [7.5, 4.5, 5.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [7, 2.5, 5]}, - "faces": { - "north": {"uv": [0.5, 10, 1, 14], "texture": "#0"}, - "east": {"uv": [0, 10, 0.5, 14], "texture": "#0"}, - "south": {"uv": [1.5, 10, 2, 14], "texture": "#0"}, - "west": {"uv": [1, 10, 1.5, 14], "texture": "#0"}, - "up": {"uv": [0.5, 9, 1, 10], "texture": "#0"}, - "down": {"uv": [1, 9, 1.5, 10], "texture": "#0"} - } - }, - { - "name": "left_back_leg", - "from": [6.75, 0.5, 5], - "to": [7.75, 1.5, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 1, 7]}, - "faces": { - "north": {"uv": [1, 9, 1.5, 10], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 10, 0.5, 14], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0.5, 9, 1, 10], "texture": "#0"}, - "west": {"uv": [1, 10, 1.5, 14], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0.5, 10, 1, 14], "rotation": 180, "texture": "#0"}, - "down": {"uv": [1.5, 10, 2, 14], "texture": "#0"} - } - }, - { - "name": "right_front_leg", - "from": [8.5, 0.5, 4.5], - "to": [9.5, 4.5, 5.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [9, 2.5, 5]}, - "faces": { - "north": {"uv": [0.5, 10, 1, 14], "texture": "#0"}, - "east": {"uv": [0, 10, 0.5, 14], "texture": "#0"}, - "south": {"uv": [1.5, 10, 2, 14], "texture": "#0"}, - "west": {"uv": [1, 10, 1.5, 14], "texture": "#0"}, - "up": {"uv": [0.5, 9, 1, 10], "texture": "#0"}, - "down": {"uv": [1, 9, 1.5, 10], "texture": "#0"} - } - }, - { - "name": "right_back_leg", - "from": [8.25, 0.5, 5], - "to": [9.25, 1.5, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 1, 7]}, - "faces": { - "north": {"uv": [1, 9, 1.5, 10], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 10, 0.5, 14], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0.5, 9, 1, 10], "texture": "#0"}, - "west": {"uv": [1, 10, 1.5, 14], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0.5, 10, 1, 14], "rotation": 180, "texture": "#0"}, - "down": {"uv": [1.5, 10, 2, 14], "texture": "#0"} - } - }, - { - "name": "tail", - "from": [7.5, 1, 10], - "to": [8.5, 2, 14], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.5, 12]}, - "faces": { - "north": {"uv": [2.75, 9, 3.25, 10], "rotation": 180, "texture": "#0"}, - "east": {"uv": [2.25, 10, 2.75, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9, 3.25, 10], "texture": "#0"}, - "west": {"uv": [3.25, 10, 3.75, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10, 4.25, 14], "texture": "#0"}, - "down": {"uv": [2.75, 10, 3.25, 14], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "plate", - "from": [4, 0, 4], - "to": [12, 0.5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0.125, 7.75]}, - "faces": { - "north": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.25], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4, 2], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 4, 2], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [1, 0, 0], - "translation": [0, 3, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [1, 0, 0], - "translation": [0, 3, 0], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, 6, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "translation": [0, -6.25, -15.5], - "scale": [1.2, 1.2, 1.2] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "head", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3] - }, - { - "name": "neck", - "origin": [8, 8, 8], - "children": [4] - }, - { - "name": "body", - "origin": [8, 8, 8], - "children": [5] - }, - { - "name": "legs", - "origin": [8, 8, 8], - "children": [6, 7, 8, 9] - }, - { - "name": "tail", - "origin": [8, 8, 8], - "children": [10] - } - ] - }, - { - "name": "plate", - "origin": [8, 8, 8], - "children": [11] - } - ] -} \ No newline at end of file diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/dianliang.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/dianliang.json new file mode 100644 index 000000000..5d119e07c --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/dianliang.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/dianliang", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/gugle.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/gugle.json new file mode 100644 index 000000000..d6e650504 --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/gugle.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/gugle", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/lake.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/lake.json new file mode 100644 index 000000000..beafd0533 --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/lake.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/lakejason", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/littlec.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/littlec.json new file mode 100644 index 000000000..a3123bc28 --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/littlec.json @@ -0,0 +1,239 @@ +{ + "credit": "Made with Blockbench by LakeJason", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/littlec", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 7, 9] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6, 7], + "to": [9, 8, 9], + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.375, 7.5], + "to": [9, 6.375, 8.5], + "faces": { + "north": { "uv": [5, 5, 7, 8], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 8], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9, 3.375, 7.5], + "to": [9.75, 6.375, 8.5], + "faces": { + "north": { "uv": [11, 5, 11.75, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [12.75, 5, 13.5, 8], "texture": "#1" }, + "west": { "uv": [11.75, 5, 12.75, 8], "texture": "#1" }, + "up": { "uv": [11.75, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [12.5, 4, 11.75, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [6.25, 3.375, 7.5], + "to": [7, 6.375, 8.5], + "faces": { + "north": { "uv": [9, 13, 9.75, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [10.75, 13, 11.5, 16], "texture": "#1" }, + "west": { "uv": [9.75, 13, 10.75, 16], "texture": "#1" }, + "up": { "uv": [9.75, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [10.5, 12, 9.75, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [7, 0.375, 7.5], + "to": [8, 3.375, 8.5], + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [8, 0.375, 7.5], + "to": [9, 3.375, 8.5], + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.875, 5.75, 6.875], + "to": [9.125, 8, 9.125], + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [7, 3.255, 7.3725], + "to": [9, 6.5075, 8.6225], + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [8.875, 3.25, 7.375], + "to": [9.875, 6.5, 8.625], + "faces": { + "north": { "uv": [10.75, 9, 11.5, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [12.75, 9, 13.5, 12], "texture": "#1" }, + "west": { "uv": [11.75, 9, 12.75, 12], "texture": "#1" }, + "up": { "uv": [11.75, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [12.5, 8, 11.75, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [6.125, 3.25, 7.375], + "to": [7.125, 6.5, 8.625], + "faces": { + "north": { "uv": [13, 13, 13.75, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [14.75, 13, 15.5, 16], "texture": "#1" }, + "west": { "uv": [13.75, 13, 14.75, 16], "texture": "#1" }, + "up": { "uv": [13.75, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [14.5, 12, 13.75, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.875, 0.25, 7.375], + "to": [9.125, 3.5, 8.625], + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.875, 0.25, 7.375], + "to": [8.125, 3.5, 8.625], + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 13, 1, 12], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 19.25, 0], + "scale": [1.6, 1.6, 1.6] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "alex", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/lxazl5770.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/lxazl5770.json new file mode 100644 index 000000000..0cafef075 --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/lxazl5770.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/lxazl5770", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/mysticnebula70.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/mysticnebula70.json new file mode 100644 index 000000000..13ada1e67 --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/mysticnebula70.json @@ -0,0 +1,305 @@ +{ + "credit": "Made with Blockbench by Gugle", + "texture_size": [64, 64], + "textures": { + "0": "mcwzhmeme:item/author/mysticnebula70", + "1": "block/smooth_stone", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "head_main", + "from": [7, 4, 0.5], + "to": [9.5, 6, 3], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [1.25, 1.25, 2.5, 2.25], "texture": "#0" }, + "east": { "uv": [0, 1.25, 1.25, 2.25], "texture": "#0" }, + "south": { "uv": [3.75, 1.25, 5, 2.25], "texture": "#0" }, + "west": { "uv": [2.5, 1.25, 3.75, 2.25], "texture": "#0" }, + "up": { "uv": [1.25, 0, 2.5, 1.25], "texture": "#0" }, + "down": { "uv": [2.5, 0, 3.75, 1.25], "texture": "#0" } + } + }, + { + "name": "head_nose", + "from": [7.5, 4, 0], + "to": [9, 5, 1], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [0.5, 6.5, 1.25, 7], "texture": "#0" }, + "east": { "uv": [0, 6.5, 0.5, 7], "texture": "#0" }, + "west": { "uv": [1.25, 6.5, 1.75, 7], "texture": "#0" }, + "up": { "uv": [0.5, 6, 1.25, 6.5], "texture": "#0" }, + "down": { "uv": [1.25, 6, 2, 6.5], "texture": "#0" } + } + }, + { + "name": "head_ear_1", + "from": [8.75, 6, 1.5], + "to": [9.25, 6.5, 2.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [0.5, 3, 0.75, 3.25], "texture": "#0" }, + "east": { "uv": [0, 3, 0.5, 3.25], "texture": "#0" }, + "south": { "uv": [1.5, 3, 1.75, 3.25], "texture": "#0" }, + "west": { "uv": [1, 3, 1.5, 3.25], "texture": "#0" }, + "up": { "uv": [0.5, 2.5, 0.75, 3], "texture": "#0" }, + "down": { "uv": [0.75, 2.5, 1, 3], "texture": "#0" } + } + }, + { + "name": "head_ear_1", + "from": [7.25, 6, 1.5], + "to": [7.75, 6.5, 2.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 2.5, 3.5] }, + "faces": { + "north": { "uv": [2, 3, 2.25, 3.25], "texture": "#0" }, + "east": { "uv": [1.5, 3, 2, 3.25], "texture": "#0" }, + "south": { "uv": [3, 3, 3.25, 3.25], "texture": "#0" }, + "west": { "uv": [2.5, 3, 3, 3.25], "texture": "#0" }, + "up": { "uv": [2, 2.5, 2.25, 3], "texture": "#0" }, + "down": { "uv": [2.25, 2.5, 2.5, 3], "texture": "#0" } + } + }, + { + "name": "body", + "from": [7.25, 2.5, 3], + "to": [9.25, 5.5, 11], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [6.5, 0, 7.5, 1.5], "texture": "#0" }, + "east": { + "uv": [5, 1.5, 6.5, 5.5], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [7.5, 0, 8.5, 1.5], "texture": "#0" }, + "west": { + "uv": [7.5, 1.5, 9, 5.5], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [9, 1.5, 10, 5.5], "texture": "#0" }, + "down": { "uv": [6.5, 1.5, 7.5, 5.5], "texture": "#0" } + } + }, + { + "name": "left", + "from": [7, 0.5, 4], + "to": [8, 5.5, 5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "east": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "south": { "uv": [11.5, 0.5, 12, 3], "texture": "#0" }, + "west": { "uv": [11, 0.5, 11.5, 3], "texture": "#0" }, + "up": { + "uv": [10.5, 0, 11, 0.5], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [11, 0, 11.5, 0.5], "texture": "#0" } + } + }, + { + "name": "right", + "from": [8.5, 0.5, 4], + "to": [9.5, 5.5, 5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "east": { "uv": [10.5, 0.5, 11, 3], "texture": "#0" }, + "south": { "uv": [11.5, 0.5, 12, 3], "texture": "#0" }, + "west": { "uv": [11, 0.5, 11.5, 3], "texture": "#0" }, + "up": { + "uv": [10.5, 0, 11, 0.5], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [11, 0, 11.5, 0.5], "texture": "#0" } + } + }, + { + "name": "left", + "from": [7, 0.5, 9.5], + "to": [8, 3.5, 10.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [2.5, 3.5, 3, 5], "texture": "#0" }, + "east": { "uv": [2, 3.75, 2.5, 5.25], "texture": "#0" }, + "south": { "uv": [3.5, 3.75, 4, 5.25], "texture": "#0" }, + "west": { "uv": [3, 3.75, 3.5, 5.25], "texture": "#0" }, + "up": { "uv": [2.5, 3.25, 3, 3.75], "texture": "#0" }, + "down": { "uv": [3, 3.25, 3.5, 3.75], "texture": "#0" } + } + }, + { + "name": "right", + "from": [8.5, 0.5, 9.5], + "to": [9.5, 3.5, 10.5], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4.5, 6] }, + "faces": { + "north": { "uv": [2.5, 3.5, 3, 5], "texture": "#0" }, + "east": { "uv": [2, 3.75, 2.5, 5.25], "texture": "#0" }, + "south": { "uv": [3.5, 3.75, 4, 5.25], "texture": "#0" }, + "west": { "uv": [3, 3.75, 3.5, 5.25], "texture": "#0" }, + "up": { "uv": [2.5, 3.25, 3, 3.75], "texture": "#0" }, + "down": { "uv": [3, 3.25, 3.5, 3.75], "texture": "#0" } + } + }, + { + "name": "tail", + "from": [8, 4.88268, 10.92388], + "to": [8.5, 5.38268, 14.92388], + "rotation": { "angle": 22.5, "axis": "x", "origin": [8, 4.5, 10] }, + "faces": { + "north": { + "uv": [0.25, 3.75, 0.5, 4], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [0, 4, 0.25, 6], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0.5, 3.75, 0.75, 4], "texture": "#0" }, + "west": { + "uv": [0.5, 4, 0.75, 6], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0.75, 4, 1, 6], "texture": "#0" }, + "down": { + "uv": [0.25, 4, 0.5, 6], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "tail_end", + "from": [8, 2.61732, 14.92388], + "to": [8.5, 3.11732, 18.92388], + "rotation": { "angle": -22.5, "axis": "x", "origin": [8, 3, 14] }, + "faces": { + "north": { + "uv": [1.25, 3.75, 1.5, 4], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [1, 4, 1.25, 6], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [1.5, 3.75, 1.75, 4], "texture": "#0" }, + "west": { + "uv": [1.5, 4, 1.75, 6], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [1.75, 4, 2, 6], "texture": "#0" }, + "down": { + "uv": [1.25, 4, 1.5, 6], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "plate", + "from": [4, 0, 3.5], + "to": [12, 0.5, 11.5], + "faces": { + "north": { "uv": [0, 15, 16, 16], "texture": "#1" }, + "east": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "south": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "west": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "up": { "uv": [0, 0, 16, 16], "texture": "#1" }, + "down": { "uv": [0, 0, 16, 16], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.8, 0.8, 0.8] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 4, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "translation": [0, 14.25, 0] + }, + "fixed": { + "translation": [0, -6.25, -15.5], + "scale": [1.2, 1.2, 1.2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "head", + "origin": [8, 8, 8], + "children": [0, 1, 2, 3] + }, + { + "name": "body", + "origin": [8, 8, 8], + "children": [4] + }, + { + "name": "leg", + "origin": [8, 8, 8], + "children": [ + { + "name": "front", + "origin": [8, 8, 8], + "children": [5, 6] + }, + { + "name": "back", + "origin": [8, 8, 8], + "children": [7, 8] + } + ] + }, + { + "name": "tail", + "origin": [8, 8, 8], + "children": [9, 10] + } + ] + }, + { + "name": "plate", + "origin": [8, 8, 8], + "children": [11] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/skyeyefast.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/skyeyefast.json new file mode 100644 index 000000000..64e975a5c --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/skyeyefast.json @@ -0,0 +1,251 @@ +{ + "credit": "Made with Blockbench by Gugle", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/skyeyefast", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "smooth_stone_0", + "from": [6, 0, 6], + "to": [10, 0.25, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [7, 6.25, 7], + "to": [9, 8.25, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [7, 3.2, 7.5], + "to": [9, 6.2, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [9.5, 1.38, 7.5], + "to": [10.5, 4.38, 8.5], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [5, 4, 7.5], + "to": [6, 7, 8.5], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, 0.26, 7.5], + "to": [9, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [7, 0.26, 7.5], + "to": [8, 3.26, 8.5], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [6.95, 6.255, 6.95], + "to": [9.05, 8.355, 9.05], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6.95, 3.2, 7.45], + "to": [9.05, 6.3, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [9.45, 1.375, 7.45], + "to": [10.55, 4.475, 8.55], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [4.95, 3.95, 7.45], + "to": [6.05, 7.05, 8.55], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.95, 0.26, 7.45], + "to": [9.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [6.95, 0.26, 7.45], + "to": [8.05, 3.36, 8.55], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "thirdperson_lefthand": { + "rotation": [60, 0, 0], + "translation": [0, 1.9, 3.75] + }, + "firstperson_righthand": { + "translation": [4, 5, 0] + }, + "firstperson_lefthand": { + "translation": [4, 5, 0] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.7, 0.7, 0.7] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 5, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 16, 0], + "scale": [1.2, 1.2, 1.2] + }, + "fixed": { + "translation": [0, 0, -14], + "scale": [2, 2, 2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/models/item/author/wolf.json b/modules/totem_model/assets/mcwzhmeme/models/item/author/wolf.json new file mode 100644 index 000000000..9b8dbf8a9 --- /dev/null +++ b/modules/totem_model/assets/mcwzhmeme/models/item/author/wolf.json @@ -0,0 +1,337 @@ +{ + "credit": "Made with Blockbench by LakeJason", + "texture_size": [64, 32], + "textures": { + "0": "mcwzhmeme:item/author/wolf", + "1": "block/smooth_stone", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "name": "head", + "from": [6.5, 4.5, 3.25], + "to": [9.5, 7.5, 5.25], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 6, 4] }, + "faces": { + "north": { "uv": [1, 2, 2.5, 5], "texture": "#0" }, + "east": { "uv": [0, 2, 1, 5], "texture": "#0" }, + "south": { "uv": [3.5, 2, 5, 5], "texture": "#0" }, + "west": { "uv": [2.5, 2, 3.5, 5], "texture": "#0" }, + "up": { "uv": [1, 0, 2.5, 2], "texture": "#0" }, + "down": { "uv": [2.5, 0, 4, 2], "texture": "#0" } + } + }, + { + "name": "nose", + "from": [7.25, 4.5, 1.75], + "to": [8.75, 6, 3.75], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 5.25, 2.75] }, + "faces": { + "north": { "uv": [1, 7, 1.75, 8.5], "texture": "#0" }, + "east": { "uv": [0, 7, 0.75, 8.5], "texture": "#0" }, + "south": { + "uv": [3, 7, 3.75, 8.5], + "rotation": 270, + "texture": "#0" + }, + "west": { "uv": [1.75, 7, 2.5, 8.5], "texture": "#0" }, + "up": { + "uv": [1, 5, 1.75, 7], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [1.75, 5, 2.5, 7], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "left_ear", + "from": [6.5, 7.5, 4.25], + "to": [7.5, 8.5, 4.75], + "rotation": { "angle": 0, "axis": "y", "origin": [7, 8, 4.5] }, + "faces": { + "north": { "uv": [4.25, 7.5, 4.75, 8.5], "texture": "#0" }, + "east": { "uv": [4, 7.5, 4.25, 8.5], "texture": "#0" }, + "south": { "uv": [5, 7.5, 5.5, 8.5], "texture": "#0" }, + "west": { "uv": [4.75, 7.5, 5, 8.5], "texture": "#0" }, + "up": { "uv": [4.25, 7, 4.75, 7.5], "texture": "#0" }, + "down": { "uv": [4.75, 7, 5.25, 7.5], "texture": "#0" } + } + }, + { + "name": "right_ear", + "from": [8.5, 7.5, 4.25], + "to": [9.5, 8.5, 4.75], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [8.75, 7.75, 5.25] + }, + "faces": { + "north": { "uv": [4.25, 7.5, 4.75, 8.5], "texture": "#0" }, + "east": { "uv": [4, 7.5, 4.25, 8.5], "texture": "#0" }, + "south": { "uv": [5, 7.5, 5.5, 8.5], "texture": "#0" }, + "west": { "uv": [4.75, 7.5, 5, 8.5], "texture": "#0" }, + "up": { "uv": [4.25, 7, 4.75, 7.5], "texture": "#0" }, + "down": { "uv": [4.75, 7, 5.25, 7.5], "texture": "#0" } + } + }, + { + "name": "neck", + "from": [6, 3.1765, 4.8832], + "to": [10, 6.6765, 7.8832], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [8, 4.9265, 6.3832] + }, + "faces": { + "north": { "uv": [7, 0, 9, 3.5], "texture": "#0" }, + "east": { + "uv": [5.25, 3.5, 7, 6.5], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [9, 0, 11, 3.5], "texture": "#0" }, + "west": { + "uv": [9, 3.5, 10.75, 6.5], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [10.75, 3.5, 12.75, 6.5], "texture": "#0" }, + "down": { "uv": [7, 3.5, 9, 6.5], "texture": "#0" } + } + }, + { + "name": "body", + "from": [6.5, 1.5, 6.5], + "to": [9.5, 4.5, 11], + "rotation": { "angle": 45, "axis": "x", "origin": [8, 3, 8.75] }, + "faces": { + "north": { "uv": [6, 7, 7.5, 10], "texture": "#0" }, + "east": { + "uv": [4.5, 10, 6, 14.5], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [9, 7, 7.5, 10], "texture": "#0" }, + "west": { + "uv": [7.5, 10, 9, 14.5], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [9, 10, 10.5, 14.5], "texture": "#0" }, + "down": { "uv": [6, 10, 7.5, 14.5], "texture": "#0" } + } + }, + { + "name": "left_front_leg", + "from": [6.5, 0.5, 4.5], + "to": [7.5, 4.5, 5.5], + "rotation": { "angle": 22.5, "axis": "x", "origin": [7, 2.5, 5] }, + "faces": { + "north": { "uv": [0.5, 10, 1, 14], "texture": "#0" }, + "east": { "uv": [0, 10, 0.5, 14], "texture": "#0" }, + "south": { "uv": [1.5, 10, 2, 14], "texture": "#0" }, + "west": { "uv": [1, 10, 1.5, 14], "texture": "#0" }, + "up": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "down": { "uv": [1, 9, 1.5, 10], "texture": "#0" } + } + }, + { + "name": "left_back_leg", + "from": [6.75, 0.5, 5], + "to": [7.75, 1.5, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [7, 1, 7] }, + "faces": { + "north": { + "uv": [1, 9, 1.5, 10], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [0, 10, 0.5, 14], + "rotation": 270, + "texture": "#0" + }, + "south": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "west": { + "uv": [1, 10, 1.5, 14], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [0.5, 10, 1, 14], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [1.5, 10, 2, 14], "texture": "#0" } + } + }, + { + "name": "right_front_leg", + "from": [8.5, 0.5, 4.5], + "to": [9.5, 4.5, 5.5], + "rotation": { "angle": 22.5, "axis": "x", "origin": [9, 2.5, 5] }, + "faces": { + "north": { "uv": [0.5, 10, 1, 14], "texture": "#0" }, + "east": { "uv": [0, 10, 0.5, 14], "texture": "#0" }, + "south": { "uv": [1.5, 10, 2, 14], "texture": "#0" }, + "west": { "uv": [1, 10, 1.5, 14], "texture": "#0" }, + "up": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "down": { "uv": [1, 9, 1.5, 10], "texture": "#0" } + } + }, + { + "name": "right_back_leg", + "from": [8.25, 0.5, 5], + "to": [9.25, 1.5, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [9, 1, 7] }, + "faces": { + "north": { + "uv": [1, 9, 1.5, 10], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [0, 10, 0.5, 14], + "rotation": 270, + "texture": "#0" + }, + "south": { "uv": [0.5, 9, 1, 10], "texture": "#0" }, + "west": { + "uv": [1, 10, 1.5, 14], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [0.5, 10, 1, 14], + "rotation": 180, + "texture": "#0" + }, + "down": { "uv": [1.5, 10, 2, 14], "texture": "#0" } + } + }, + { + "name": "tail", + "from": [7.5, 1, 10], + "to": [8.5, 2, 14], + "rotation": { "angle": 22.5, "axis": "x", "origin": [8, 1.5, 12] }, + "faces": { + "north": { + "uv": [2.75, 9, 3.25, 10], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [2.25, 10, 2.75, 14], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [3.75, 9, 3.25, 10], "texture": "#0" }, + "west": { + "uv": [3.25, 10, 3.75, 14], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [3.75, 10, 4.25, 14], "texture": "#0" }, + "down": { + "uv": [2.75, 10, 3.25, 14], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "name": "plate", + "from": [4, 0, 4], + "to": [12, 0.5, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 0.125, 7.75] }, + "faces": { + "north": { "uv": [0, 15, 16, 16], "texture": "#1" }, + "east": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "south": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "west": { "uv": [0, 0, 16, 0.25], "texture": "#1" }, + "up": { "uv": [0, 0, 16, 16], "texture": "#1" }, + "down": { "uv": [0, 0, 16, 16], "texture": "#1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "translation": [0, 4, 2], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "rotation": [1, 0, 0], + "translation": [0, 3, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.8, 0.8, 0.8] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, 6, 0], + "scale": [1.2, 1.2, 1.2] + }, + "head": { + "translation": [0, 14.25, 0] + }, + "fixed": { + "translation": [0, -6.25, -15.5], + "scale": [1.2, 1.2, 1.2] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "head", + "origin": [8, 8, 8], + "children": [0, 1, 2, 3] + }, + { + "name": "neck", + "origin": [8, 8, 8], + "children": [4] + }, + { + "name": "body", + "origin": [8, 8, 8], + "children": [5] + }, + { + "name": "legs", + "origin": [8, 8, 8], + "children": [6, 7, 8, 9] + }, + { + "name": "tail", + "origin": [8, 8, 8], + "children": [10] + } + ] + }, + { + "name": "plate", + "origin": [8, 8, 8], + "children": [11] + } + ] +} diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/gu_zt.png b/modules/totem_model/assets/mcwzhmeme/textures/entity/gu_zt.png deleted file mode 100644 index b2aa92eab..000000000 Binary files a/modules/totem_model/assets/mcwzhmeme/textures/entity/gu_zt.png and /dev/null differ diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/dianliang.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/dianliang.png similarity index 100% rename from modules/totem_model/assets/mcwzhmeme/textures/entity/dianliang.png rename to modules/totem_model/assets/mcwzhmeme/textures/item/author/dianliang.png diff --git a/modules/totem_model/assets/mcwzhmeme/textures/item/author/gugle.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/gugle.png new file mode 100644 index 000000000..d0131675c Binary files /dev/null and b/modules/totem_model/assets/mcwzhmeme/textures/item/author/gugle.png differ diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/lakejason.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/lakejason.png similarity index 100% rename from modules/totem_model/assets/mcwzhmeme/textures/entity/lakejason.png rename to modules/totem_model/assets/mcwzhmeme/textures/item/author/lakejason.png diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/littlec.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/littlec.png similarity index 100% rename from modules/totem_model/assets/mcwzhmeme/textures/entity/littlec.png rename to modules/totem_model/assets/mcwzhmeme/textures/item/author/littlec.png diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/lxazl5770.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/lxazl5770.png similarity index 100% rename from modules/totem_model/assets/mcwzhmeme/textures/entity/lxazl5770.png rename to modules/totem_model/assets/mcwzhmeme/textures/item/author/lxazl5770.png diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/mysticnebula70.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/mysticnebula70.png similarity index 100% rename from modules/totem_model/assets/mcwzhmeme/textures/entity/mysticnebula70.png rename to modules/totem_model/assets/mcwzhmeme/textures/item/author/mysticnebula70.png diff --git a/modules/totem_model/assets/mcwzhmeme/textures/entity/skyeyefast.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/skyeyefast.png similarity index 100% rename from modules/totem_model/assets/mcwzhmeme/textures/entity/skyeyefast.png rename to modules/totem_model/assets/mcwzhmeme/textures/item/author/skyeyefast.png diff --git a/modules/totem_model/assets/mcwzhmeme/textures/item/author/wolf.png b/modules/totem_model/assets/mcwzhmeme/textures/item/author/wolf.png new file mode 100644 index 000000000..701d18d5e Binary files /dev/null and b/modules/totem_model/assets/mcwzhmeme/textures/item/author/wolf.png differ diff --git a/modules/totem_model/assets/minecraft/models/item/totem_of_undying.json b/modules/totem_model/assets/minecraft/models/item/totem_of_undying.json index 580df1e2b..204128b88 100644 --- a/modules/totem_model/assets/minecraft/models/item/totem_of_undying.json +++ b/modules/totem_model/assets/minecraft/models/item/totem_of_undying.json @@ -1,262 +1,294 @@ { - "credit": "Made with Blockbench", - "textures": { - "0": "block/smooth_stone", - "1": "mcwzhmeme:entity/lxazl5770", - "particle": "block/smooth_stone" - }, - "gui_light": "side", + "credit": "Made with Blockbench", + "textures": { + "0": "block/smooth_stone", + "1": "mcwzhmeme:item/author/lxazl5770", + "particle": "block/smooth_stone" + }, + "gui_light": "side", "display": { "gui": { - "rotation": [ 30, 225, 0 ], - "translation": [ 0, 0, 0], - "scale":[ 0.8, 0.8, 0.8 ] + "rotation": [30, 225, 0], + "translation": [0, 0, 0], + "scale": [0.8, 0.8, 0.8] }, "ground": { - "rotation": [ 0, 0, 0 ], - "translation": [ 0, 3, 0], - "scale":[ 0.25, 0.25, 0.25 ] + "rotation": [0, 0, 0], + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] }, "fixed": { - "rotation": [ 0, 0, 0 ], - "translation": [ 0, -7, -14], - "scale":[ 1.0, 1.0, 1.0 ] + "rotation": [0, 0, 0], + "translation": [0, -7, -14], + "scale": [1.0, 1.0, 1.0] }, "thirdperson_righthand": { - "rotation": [ 60, 0, 0 ], - "translation": [ 0, 0.65, 0], - "scale": [ 0.5, 0.5, 0.5 ] + "rotation": [60, 0, 0], + "translation": [0, 0.65, 0], + "scale": [0.5, 0.5, 0.5] }, "firstperson_righthand": { - "rotation": [ 0, 0, 0 ], - "translation": [ 0, 0, 0 ], - "scale": [ 0.5, 0.5, 0.5 ] + "rotation": [0, 0, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] }, "firstperson_lefthand": { - "rotation": [ 0, 0, 0 ], - "translation": [ 0, 0, 0 ], - "scale": [ 0.5, 0.5, 0.5 ] + "rotation": [0, 0, 0], + "translation": [0, 0, 0], + "scale": [0.5, 0.5, 0.5] }, "thirdperson_lefthand": { - "rotation": [ 60, 0, 0 ], - "translation": [ 0, 0.65, 0], - "scale": [ 0.5, 0.5, 0.5 ] + "rotation": [60, 0, 0], + "translation": [0, 0.65, 0], + "scale": [0.5, 0.5, 0.5] }, - "head": { - "translation": [0, 12.4, 0], - "scale": [0.7, 0.7, 0.7] - } + "head": { + "translation": [0, 12.4, 0], + "scale": [0.7, 0.7, 0.7] + } }, - "elements": [ - { - "name": "smooth_stone_0", - "from": [4, -0.5, 4], - "to": [12, 0, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12]}, - "faces": { - "north": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#0"} - } - }, - { - "name": "head", - "from": [6, 11.75, 6], - "to": [10, 15.75, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} - } - }, - { - "name": "body", - "from": [6, 5.75, 7], - "to": [10, 11.75, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 5, 7, 7.98], "texture": "#1"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#1"}, - "south": {"uv": [8, 5, 10, 8], "texture": "#1"}, - "west": {"uv": [7, 5, 8, 7.98], "texture": "#1"}, - "up": {"uv": [7, 5, 5, 4], "texture": "#1"}, - "down": {"uv": [9, 4, 7, 5], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [12.23358, 2.91061, 7], - "to": [14.23358, 8.91061, 9], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 5, 12, 8], "texture": "#1"}, - "east": {"uv": [10, 5, 11, 8], "texture": "#1"}, - "south": {"uv": [13, 5, 14, 8], "texture": "#1"}, - "west": {"uv": [12, 5, 13, 8], "texture": "#1"}, - "up": {"uv": [12, 5, 11, 4], "texture": "#1"}, - "down": {"uv": [13, 4, 12, 5], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [1.23358, 5.58939, 7], - "to": [3.23358, 11.58939, 9], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [9, 13, 10, 16], "texture": "#1"}, - "east": {"uv": [8, 13, 9, 16], "texture": "#1"}, - "south": {"uv": [11, 13, 12, 16], "texture": "#1"}, - "west": {"uv": [10, 13, 11, 16], "texture": "#1"}, - "up": {"uv": [10, 13, 9, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 10, 13], "texture": "#1"} - } - }, - { - "name": "right_leg", - "from": [8, -0.25, 7], - "to": [10, 5.75, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 5, 2, 8], "texture": "#1"}, - "east": {"uv": [0, 5, 1, 8], "texture": "#1"}, - "south": {"uv": [3, 5, 4, 8], "texture": "#1"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#1"}, - "up": {"uv": [2, 5, 1, 4], "texture": "#1"}, - "down": {"uv": [3, 4, 2, 5], "texture": "#1"} - } - }, - { - "name": "left_leg", - "from": [6, -0.25, 7], - "to": [8, 5.75, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#1"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#1"}, - "south": {"uv": [7, 13, 8, 16], "texture": "#1"}, - "west": {"uv": [6, 13, 7, 16], "texture": "#1"}, - "up": {"uv": [6, 13, 5, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 6, 13], "texture": "#1"} - } - }, - { - "name": "head_2nd_layer", - "from": [5.75, 11.5, 5.75], - "to": [10.25, 16, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#1"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#1"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#1"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12, 2], "texture": "#1"} - } - }, - { - "name": "body_2nd_layer", - "from": [6, 5.51, 6.75], - "to": [10, 12.015, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [5, 9, 7, 12], "texture": "#1"}, - "east": {"uv": [4, 9, 5, 12], "texture": "#1"}, - "south": {"uv": [8, 9, 10, 12], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 12], "texture": "#1"}, - "up": {"uv": [7, 9, 5, 8], "texture": "#1"}, - "down": {"uv": [9, 8, 7, 9], "texture": "#1"} - } - }, - { - "name": "right_arm_2nd_layer", - "from": [11.98358, 2.66061, 6.75], - "to": [14.47858, 9.16061, 9.25], - "rotation": {"angle": 22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [11, 9, 12, 12], "texture": "#1"}, - "east": {"uv": [10, 9, 11, 12], "texture": "#1"}, - "south": {"uv": [13, 9, 14, 12], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 12], "texture": "#1"}, - "up": {"uv": [12, 9, 11, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 12, 9], "texture": "#1"} - } - }, - { - "name": "left_arm_2nd_layer", - "from": [0.98358, 5.33939, 6.75], - "to": [3.48358, 11.83939, 9.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [13, 13, 14, 16], "texture": "#1"}, - "east": {"uv": [12, 13, 13, 16], "texture": "#1"}, - "south": {"uv": [15, 13, 16, 16], "texture": "#1"}, - "west": {"uv": [14, 13, 15, 16], "texture": "#1"}, - "up": {"uv": [14, 13, 13, 12], "texture": "#1"}, - "down": {"uv": [15, 12, 14, 13], "texture": "#1"} - } - }, - { - "name": "right_leg_2nd_layer", - "from": [7.75, -0.5, 6.75], - "to": [10.25, 6, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 9, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 9, 1, 12], "texture": "#1"}, - "south": {"uv": [3, 9, 4, 12], "texture": "#1"}, - "west": {"uv": [2, 9, 3, 12], "texture": "#1"}, - "up": {"uv": [2, 9, 1, 8], "texture": "#1"}, - "down": {"uv": [3, 8, 2, 9], "texture": "#1"} - } - }, - { - "name": "left_leg_2nd_layer", - "from": [5.75, -0.5, 6.75], - "to": [8.25, 6, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 4, 12]}, - "faces": { - "north": {"uv": [1, 13, 2, 16], "texture": "#1"}, - "east": {"uv": [0, 13, 1, 16], "texture": "#1"}, - "south": {"uv": [3, 13, 4, 16], "texture": "#1"}, - "west": {"uv": [2, 13, 3, 16], "texture": "#1"}, - "up": {"uv": [2, 12, 1, 11], "texture": "#1"}, - "down": {"uv": [3, 12, 2, 13], "texture": "#1"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "children": [ - { - "name": "smooth_stone", - "origin": [8, 8, 8], - "children": [0] - }, - { - "name": "steve", - "origin": [8, 8, 8], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - } - ] - } + "elements": [ + { + "name": "smooth_stone_0", + "from": [4, -0.5, 4], + "to": [12, 0, 12], + "rotation": { "angle": 0, "axis": "y", "origin": [8, 4, 12] }, + "faces": { + "north": { "uv": [16, 0, 0, 1], "texture": "#0" }, + "east": { + "uv": [15, 0, 16, 16], + "rotation": 90, + "texture": "#0" + }, + "south": { "uv": [0, 15, 16, 16], "texture": "#0" }, + "west": { + "uv": [0, 0, 1, 16], + "rotation": 270, + "texture": "#0" + }, + "up": { "uv": [0, 0, 16, 16], "texture": "#0" }, + "down": { "uv": [0, 16, 16, 0], "texture": "#0" } + } + }, + { + "name": "head", + "from": [6, 11.75, 6], + "to": [10, 15.75, 10], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [2, 2, 4, 4], "texture": "#1" }, + "east": { "uv": [0, 2, 2, 4], "texture": "#1" }, + "south": { "uv": [6, 2, 8, 4], "texture": "#1" }, + "west": { "uv": [4, 2, 6, 4], "texture": "#1" }, + "up": { "uv": [4, 2, 2, 0], "texture": "#1" }, + "down": { "uv": [6, 0, 4, 2], "texture": "#1" } + } + }, + { + "name": "body", + "from": [6, 5.75, 7], + "to": [10, 11.75, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 5, 7, 7.98], "texture": "#1" }, + "east": { "uv": [4, 5, 5, 8], "texture": "#1" }, + "south": { "uv": [8, 5, 10, 8], "texture": "#1" }, + "west": { "uv": [7, 5, 8, 7.98], "texture": "#1" }, + "up": { "uv": [7, 5, 5, 4], "texture": "#1" }, + "down": { "uv": [9, 4, 7, 5], "texture": "#1" } + } + }, + { + "name": "right_arm", + "from": [12.23358, 2.91061, 7], + "to": [14.23358, 8.91061, 9], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 5, 12, 8], "texture": "#1" }, + "east": { "uv": [10, 5, 11, 8], "texture": "#1" }, + "south": { "uv": [13, 5, 14, 8], "texture": "#1" }, + "west": { "uv": [12, 5, 13, 8], "texture": "#1" }, + "up": { "uv": [12, 5, 11, 4], "texture": "#1" }, + "down": { "uv": [13, 4, 12, 5], "texture": "#1" } + } + }, + { + "name": "left_arm", + "from": [1.23358, 5.58939, 7], + "to": [3.23358, 11.58939, 9], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [9, 13, 10, 16], "texture": "#1" }, + "east": { "uv": [8, 13, 9, 16], "texture": "#1" }, + "south": { "uv": [11, 13, 12, 16], "texture": "#1" }, + "west": { "uv": [10, 13, 11, 16], "texture": "#1" }, + "up": { "uv": [10, 13, 9, 12], "texture": "#1" }, + "down": { "uv": [11, 12, 10, 13], "texture": "#1" } + } + }, + { + "name": "right_leg", + "from": [8, -0.25, 7], + "to": [10, 5.75, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 5, 2, 8], "texture": "#1" }, + "east": { "uv": [0, 5, 1, 8], "texture": "#1" }, + "south": { "uv": [3, 5, 4, 8], "texture": "#1" }, + "west": { "uv": [2, 5, 3, 8], "texture": "#1" }, + "up": { "uv": [2, 5, 1, 4], "texture": "#1" }, + "down": { "uv": [3, 4, 2, 5], "texture": "#1" } + } + }, + { + "name": "left_leg", + "from": [6, -0.25, 7], + "to": [8, 5.75, 9], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 13, 6, 16], "texture": "#1" }, + "east": { "uv": [4, 13, 5, 16], "texture": "#1" }, + "south": { "uv": [7, 13, 8, 16], "texture": "#1" }, + "west": { "uv": [6, 13, 7, 16], "texture": "#1" }, + "up": { "uv": [6, 13, 5, 12], "texture": "#1" }, + "down": { "uv": [7, 12, 6, 13], "texture": "#1" } + } + }, + { + "name": "head_2nd_layer", + "from": [5.75, 11.5, 5.75], + "to": [10.25, 16, 10.25], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [10, 2, 12, 4], "texture": "#1" }, + "east": { "uv": [8, 2, 10, 4], "texture": "#1" }, + "south": { "uv": [14, 2, 16, 4], "texture": "#1" }, + "west": { "uv": [12, 2, 14, 4], "texture": "#1" }, + "up": { "uv": [12, 2, 10, 0], "texture": "#1" }, + "down": { "uv": [14, 0, 12, 2], "texture": "#1" } + } + }, + { + "name": "body_2nd_layer", + "from": [6, 5.51, 6.75], + "to": [10, 12.015, 9.25], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [5, 9, 7, 12], "texture": "#1" }, + "east": { "uv": [4, 9, 5, 12], "texture": "#1" }, + "south": { "uv": [8, 9, 10, 12], "texture": "#1" }, + "west": { "uv": [7, 9, 8, 12], "texture": "#1" }, + "up": { "uv": [7, 9, 5, 8], "texture": "#1" }, + "down": { "uv": [9, 8, 7, 9], "texture": "#1" } + } + }, + { + "name": "right_arm_2nd_layer", + "from": [11.98358, 2.66061, 6.75], + "to": [14.47858, 9.16061, 9.25], + "rotation": { "angle": 22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [11, 9, 12, 12], "texture": "#1" }, + "east": { "uv": [10, 9, 11, 12], "texture": "#1" }, + "south": { "uv": [13, 9, 14, 12], "texture": "#1" }, + "west": { "uv": [12, 9, 13, 12], "texture": "#1" }, + "up": { "uv": [12, 9, 11, 8], "texture": "#1" }, + "down": { "uv": [13, 8, 12, 9], "texture": "#1" } + } + }, + { + "name": "left_arm_2nd_layer", + "from": [0.98358, 5.33939, 6.75], + "to": [3.48358, 11.83939, 9.25], + "rotation": { "angle": -22.5, "axis": "z", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [13, 13, 14, 16], "texture": "#1" }, + "east": { "uv": [12, 13, 13, 16], "texture": "#1" }, + "south": { "uv": [15, 13, 16, 16], "texture": "#1" }, + "west": { "uv": [14, 13, 15, 16], "texture": "#1" }, + "up": { "uv": [14, 13, 13, 12], "texture": "#1" }, + "down": { "uv": [15, 12, 14, 13], "texture": "#1" } + } + }, + { + "name": "right_leg_2nd_layer", + "from": [7.75, -0.5, 6.75], + "to": [10.25, 6, 9.25], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 9, 2, 12], "texture": "#1" }, + "east": { "uv": [0, 9, 1, 12], "texture": "#1" }, + "south": { "uv": [3, 9, 4, 12], "texture": "#1" }, + "west": { "uv": [2, 9, 3, 12], "texture": "#1" }, + "up": { "uv": [2, 9, 1, 8], "texture": "#1" }, + "down": { "uv": [3, 8, 2, 9], "texture": "#1" } + } + }, + { + "name": "left_leg_2nd_layer", + "from": [5.75, -0.5, 6.75], + "to": [8.25, 6, 9.25], + "rotation": { "angle": 0, "axis": "y", "origin": [4.5, 4, 12] }, + "faces": { + "north": { "uv": [1, 13, 2, 16], "texture": "#1" }, + "east": { "uv": [0, 13, 1, 16], "texture": "#1" }, + "south": { "uv": [3, 13, 4, 16], "texture": "#1" }, + "west": { "uv": [2, 13, 3, 16], "texture": "#1" }, + "up": { "uv": [2, 12, 1, 11], "texture": "#1" }, + "down": { "uv": [3, 12, 2, 13], "texture": "#1" } + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "smooth_stone", + "origin": [8, 8, 8], + "children": [0] + }, + { + "name": "steve", + "origin": [8, 8, 8], + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] + } ], - "overrides":[ - { "predicate": {"custom_model_data":10800000}, "model": "mcwzhmeme:author/lxazl5770" }, - { "predicate": {"custom_model_data":10800001}, "model": "mcwzhmeme:author/lake" }, - { "predicate": {"custom_model_data":10800002}, "model": "mcwzhmeme:author/dianliang" }, - { "predicate": {"custom_model_data":10800003}, "model": "mcwzhmeme:author/mysticnebula70" }, - { "predicate": {"custom_model_data":10800004}, "model": "mcwzhmeme:author/skyeyefast" }, - { "predicate": {"custom_model_data":10800005}, "model": "mcwzhmeme:author/gu_zt" }, - { "predicate": {"custom_model_data":10800006}, "model": "mcwzhmeme:author/littlec" }, - { "predicate": {"custom_model_data":10800007}, "model": "mcwzhmeme:author/wolf" } - ] -} \ No newline at end of file + "overrides": [ + { + "predicate": { "custom_model_data": 10800000 }, + "model": "mcwzhmeme:item/author/lxazl5770" + }, + { + "predicate": { "custom_model_data": 10800001 }, + "model": "mcwzhmeme:item/author/lake" + }, + { + "predicate": { "custom_model_data": 10800002 }, + "model": "mcwzhmeme:item/author/dianliang" + }, + { + "predicate": { "custom_model_data": 10800003 }, + "model": "mcwzhmeme:item/author/mysticnebula70" + }, + { + "predicate": { "custom_model_data": 10800004 }, + "model": "mcwzhmeme:item/author/skyeyefast" + }, + { + "predicate": { "custom_model_data": 10800005 }, + "model": "mcwzhmeme:item/author/gugle" + }, + { + "predicate": { "custom_model_data": 10800006 }, + "model": "mcwzhmeme:item/author/littlec" + }, + { + "predicate": { "custom_model_data": 10800007 }, + "model": "mcwzhmeme:item/author/wolf" + } + ] +} diff --git a/modules/totem_model/module_manifest.json b/modules/totem_model/module_manifest.json index 499d0e004..13247f48a 100644 --- a/modules/totem_model/module_manifest.json +++ b/modules/totem_model/module_manifest.json @@ -2,14 +2,5 @@ "name": "totem_model", "type": "resource", "description": "把不死图腾变成手办", - "author": [ - "Lakejason0", - "Gu_ZT" - ], - "incompatible_with": [ - "questioning_totem" - ], - "classifier": [ - "modified_resource" - ] -} \ No newline at end of file + "author": ["Lakejason0", "Gugle"] +} diff --git a/modules/version_1.12.2-1.15.2/module_manifest.json b/modules/version_1.12.2-1.15.2/module_manifest.json index 010ca0acf..8e8f68b55 100644 --- a/modules/version_1.12.2-1.15.2/module_manifest.json +++ b/modules/version_1.12.2-1.15.2/module_manifest.json @@ -2,15 +2,18 @@ "name": "version_1.12.2-1.15.2", "type": "collection", "description": "适用于1.12至1.15.2版本的模块集合", - "author": [ - "梗体中文内容组" - ], + "author": ["梗体中文内容组"], "contains": [ + "lang_achievements_1.11-1.11.2", "lang_attributes_1.12.2-1.15.2", + "lang_backupworld_1.12.2-1.16.5", + "lang_commands_1.11-1.12.2", "lang_extra_strings", "lang_grass_path_1.12.2-1.16.5", + "lang_itemgroup_1.12.2-1.19.2", "lang_multiplayer_1.12.2-1.16.3", "lang_nether_biome_1.12.2-1.15.2", + "lang_old_realms_strings", "lang_old_strings", "lang_replaceitem_1.12.2-1.16.5", "lang_selectworld_gui_1.12.2-1.16.1", @@ -18,6 +21,9 @@ "lang_sleep_impossible_1.12.2-1.16.5", "lang_spawnpoint_1.12.2-1.15.2", "lang_trapdoor_1.12.2-1.15.2", - "lang_worldborder_1.12.2-1.16.5" + "lang_worldborder_1.12.2-1.16.5", + "lang_old_biomes_1.12.2-1.17.1", + "lang_world_generation_1.12.2-1.18.2", + "text_ancient_credits" ] -} \ No newline at end of file +} diff --git a/modules/version_1.16.1/module_manifest.json b/modules/version_1.16.1/module_manifest.json new file mode 100644 index 000000000..0c6b9d170 --- /dev/null +++ b/modules/version_1.16.1/module_manifest.json @@ -0,0 +1,20 @@ +{ + "name": "version_1.16.1", + "type": "collection", + "description": "适用于1.16.1版本的模块集合", + "author": ["梗体中文内容组"], + "contains": [ + "lang_grass_path_1.12.2-1.16.5", + "lang_itemgroup_1.12.2-1.19.2", + "lang_old_realms_strings", + "lang_old_strings", + "lang_replaceitem_1.12.2-1.16.5", + "lang_selectworld_gui_1.16.2-1.16.5", + "lang_sleep_impossible_1.12.2-1.16.5", + "lang_spawnpoint_1.16-1.16.1", + "lang_worldborder_1.12.2-1.16.5", + "lang_old_biomes_1.12.2-1.17.1", + "lang_world_generation_1.12.2-1.18.2", + "text_ancient_credits" + ] +} diff --git a/modules/version_1.16.5/module_manifest.json b/modules/version_1.16.5/module_manifest.json index 7735d29d0..079b38685 100644 --- a/modules/version_1.16.5/module_manifest.json +++ b/modules/version_1.16.5/module_manifest.json @@ -2,14 +2,18 @@ "name": "version_1.16.5", "type": "collection", "description": "适用于1.16.5版本的模块集合", - "author": [ - "梗体中文内容组" - ], + "author": ["梗体中文内容组"], "contains": [ "lang_grass_path_1.12.2-1.16.5", + "lang_itemgroup_1.12.2-1.19.2", + "lang_old_realms_strings", "lang_old_strings", "lang_replaceitem_1.12.2-1.16.5", + "lang_selectworld_gui_1.16.2-1.16.5", "lang_sleep_impossible_1.12.2-1.16.5", - "lang_worldborder_1.12.2-1.16.5" + "lang_worldborder_1.12.2-1.16.5", + "lang_old_biomes_1.12.2-1.17.1", + "lang_world_generation_1.12.2-1.18.2", + "text_ancient_credits" ] -} \ No newline at end of file +} diff --git a/modules/version_1.17.1/module_manifest.json b/modules/version_1.17.1/module_manifest.json index 753e00000..9f4214f5c 100644 --- a/modules/version_1.17.1/module_manifest.json +++ b/modules/version_1.17.1/module_manifest.json @@ -2,10 +2,13 @@ "name": "version_1.17.1", "type": "collection", "description": "适用于1.17.1版本的模块集合", - "author": [ - "梗体中文内容组" - ], + "author": ["梗体中文内容组"], "contains": [ - "lang_old_strings" + "lang_itemgroup_1.12.2-1.19.2", + "lang_old_realms_strings", + "lang_old_strings", + "lang_old_biomes_1.12.2-1.17.1", + "lang_world_generation_1.12.2-1.18.2", + "text_elder_credits" ] -} \ No newline at end of file +} diff --git a/modules/version_1.18.2/module_manifest.json b/modules/version_1.18.2/module_manifest.json new file mode 100644 index 000000000..1c1cd296d --- /dev/null +++ b/modules/version_1.18.2/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "version_1.18.2", + "type": "collection", + "description": "适用于1.18.2版本的模块集合", + "author": ["梗体中文内容组"], + "contains": [ + "lang_itemgroup_1.12.2-1.19.2", + "lang_old_realms_strings", + "lang_old_strings", + "lang_world_generation_1.12.2-1.18.2", + "text_elder_credits" + ] +} diff --git a/modules/version_1.19.2/module_manifest.json b/modules/version_1.19.2/module_manifest.json new file mode 100644 index 000000000..8879d5586 --- /dev/null +++ b/modules/version_1.19.2/module_manifest.json @@ -0,0 +1,13 @@ +{ + "name": "version_1.19.2", + "type": "collection", + "description": "适用于1.19.2版本的模块集合", + "author": ["梗体中文内容组"], + "contains": [ + "lang_chat_preview_1.19.2", + "lang_itemgroup_1.12.2-1.19.2", + "lang_old_realms_strings", + "lang_old_strings", + "text_elder_credits" + ] +} diff --git a/modules/version_1.19.3/module_manifest.json b/modules/version_1.19.3/module_manifest.json new file mode 100644 index 000000000..efb4bb613 --- /dev/null +++ b/modules/version_1.19.3/module_manifest.json @@ -0,0 +1,11 @@ +{ + "name": "version_1.19.3", + "type": "collection", + "description": "适用于1.19.3版本的模块集合", + "author": ["梗体中文内容组"], + "contains": [ + "lang_old_realms_strings", + "lang_old_strings", + "text_elder_credits" + ] +} diff --git a/modules/version_1.19.4/module_manifest.json b/modules/version_1.19.4/module_manifest.json new file mode 100644 index 000000000..506e9fc5a --- /dev/null +++ b/modules/version_1.19.4/module_manifest.json @@ -0,0 +1,11 @@ +{ + "name": "version_1.19.4", + "type": "collection", + "description": "适用于1.19.4版本的模块集合", + "author": ["梗体中文内容组"], + "contains": [ + "lang_old_realms_strings", + "lang_old_strings", + "text_elder_credits" + ] +} diff --git a/modules/vulpes_ferrilata/add.json b/modules/vulpes_ferrilata/add.json index bd1eb915d..3e4d261c0 100644 --- a/modules/vulpes_ferrilata/add.json +++ b/modules/vulpes_ferrilata/add.json @@ -1,15 +1,15 @@ -{ - "entity.minecraft.fox": "藏狐", - "item.minecraft.fox_spawn_egg": "小藏狐", - "subtitles.entity.fox.aggro": "藏狐:我要打人了", - "subtitles.entity.fox.ambient": "藏狐:鉴定一下网络热门生物视频", - "subtitles.entity.fox.bite": "藏狐:耍双截棍", - "subtitles.entity.fox.death": "藏狐都没脾气了。", - "subtitles.entity.fox.eat": "藏狐:吃饭", - "subtitles.entity.fox.hurt": "藏狐:嚯!", - "subtitles.entity.fox.screech": "藏狐:尖声叫", - "subtitles.entity.fox.sleep": "藏狐:打鼾", - "subtitles.entity.fox.sniff": "藏狐:鉴定", - "subtitles.entity.fox.spit": "藏狐:呸!", - "subtitles.entity.fox.teleport": "藏狐:传送" -} \ No newline at end of file +{ + "entity.minecraft.fox": "藏狐", + "item.minecraft.fox_spawn_egg": "小藏狐", + "subtitles.entity.fox.aggro": "藏狐:我要打人了", + "subtitles.entity.fox.ambient": "藏狐:鉴定一下网络热门生物视频", + "subtitles.entity.fox.bite": "藏狐:耍双截棍", + "subtitles.entity.fox.death": "藏狐都没脾气了。", + "subtitles.entity.fox.eat": "藏狐:吃饭", + "subtitles.entity.fox.hurt": "藏狐:嚯!", + "subtitles.entity.fox.screech": "藏狐:尖声叫", + "subtitles.entity.fox.sleep": "藏狐:打鼾", + "subtitles.entity.fox.sniff": "藏狐:鉴定", + "subtitles.entity.fox.spit": "藏狐:呸!", + "subtitles.entity.fox.teleport": "藏狐:传送" +} diff --git a/modules/vulpes_ferrilata/module_manifest.json b/modules/vulpes_ferrilata/module_manifest.json index ee7b3b96a..b875b5de0 100644 --- a/modules/vulpes_ferrilata/module_manifest.json +++ b/modules/vulpes_ferrilata/module_manifest.json @@ -1,12 +1,12 @@ -{ - "name": "vulpes_ferrilata", - "type": "resource", - "description": "张辰亮,又称藏狐,是网络热门生物", - "author": [ - "ZH9c418" - ], - "classifier": [ - "modified_resource", - "modified_language" - ] -} +{ + "name": "vulpes_ferrilata", + "type": "resource", + "description": "张辰亮,又称藏狐,是网络热门生物", + "author": ["ZH9c418"], + "languageModification": [ + { + "file": "assets/minecraft/lang/zh_meme.json", + "add": "add.json" + } + ] +} diff --git a/modules/western_meme_modules/module_manifest.json b/modules/western_meme_modules/module_manifest.json deleted file mode 100644 index 8c1a493c4..000000000 --- a/modules/western_meme_modules/module_manifest.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "western_meme_modules", - "type": "collection", - "description": "欧美迷因模块集合", - "author": [ - "DoroWolf" - ], - "incompatible_with": [ - "eastern_meme_modules" - ], - "contains": [ - "linus_minecraft_craps", - "strange_meme_background", - "baguette" - ] -} \ No newline at end of file diff --git a/news.json b/news.json deleted file mode 100644 index 3acef3490..000000000 --- a/news.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "id": 9, - "title": "梗体中文现已加入适龄选项", - "image": "https://cdn.jsdelivr.net/gh/Teahouse-Studios/mcwzh-meme-resourcepack/materials/banner_new.png", - "video": null, - "content": "

各位好。

我们已经注意到了梗中造成的某些负面影响。对此,我们表示遗憾与无奈。

为此,经过工作室成员讨论提案,同时为确保相关工作的顺利进展,我们决定在在线构建中推出适龄选项。我们提倡用户自觉选择符合自身心智年龄的选项,并不鼓励12周岁以下人群继续使用梗体中文。同时,烦请各位主播和实况主选择12+选项,以减少不良影响。

无论选项如何,梗中的所有内容皆合法合规。适龄选项仅出于保护青少年心智、减少梗体中文带来的争议的目的。适龄选项仅凭各位自觉遵守,远不能使各类有关梗中的不宜言论消失;但千里之行,始于足下。还望诸用户三思,切记慎言。

P.S. 12+选项在某种意义上甚至更加好玩,确定不试试吗?", - "detail": null -} diff --git a/package.json b/package.json new file mode 100644 index 000000000..fc88d2b67 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "private": true, + "scripts": { + "format": "prettier --write ./**/*.{js,json}", + "test-build": "node preset_build.js" + }, + "dependencies": { + "glob": "^8.1.0", + "memepack-builder": "^0.4.0" + }, + "devDependencies": { + "prettier": "^2.8.0" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 000000000..a628f1666 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,134 @@ +lockfileVersion: '6.0' + +dependencies: + glob: + specifier: ^8.1.0 + version: 8.1.0 + memepack-builder: + specifier: ^0.4.0 + version: 0.4.0 + +devDependencies: + prettier: + specifier: ^2.8.0 + version: 2.8.3 + +packages: + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: false + + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: false + + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: false + + /fs-extra@11.1.0: + resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==} + engines: {node: '>=14.14'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: false + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: false + + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + dev: false + + /graceful-fs@4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: false + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: false + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: false + + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.10 + dev: false + + /klaw@4.1.0: + resolution: {integrity: sha512-1zGZ9MF9H22UnkpVeuaGKOjfA2t6WrfdrJmGjy16ykcjnKQDmHVX+KI477rpbGevz/5FD4MC3xf1oxylBgcaQw==} + engines: {node: '>=14.14.0'} + dev: false + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + dev: false + + /memepack-builder@0.4.0: + resolution: {integrity: sha512-D5xoe7jg0wT3fKiNGEVsidcMYmO6YWYJB5aL+22PrQzb9onzLVaHTUCIBTQe78YD4HBk54QPfjzudk9lnJAV7g==} + dependencies: + fs-extra: 11.1.0 + klaw: 4.1.0 + lodash: 4.17.21 + tslib: 2.5.0 + yazl: 2.5.1 + dev: false + + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: false + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: false + + /prettier@2.8.3: + resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /tslib@2.5.0: + resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} + dev: false + + /universalify@2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: false + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: false + + /yazl@2.5.1: + resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} + dependencies: + buffer-crc32: 0.2.13 + dev: false diff --git a/preset_build.js b/preset_build.js new file mode 100644 index 000000000..87dd03585 --- /dev/null +++ b/preset_build.js @@ -0,0 +1,149 @@ +const { JavaPackBuilder, ModuleParser } = require('memepack-builder') +const { writeFileSync, existsSync, mkdirSync, readFileSync } = require('fs') +const { resolve } = require('path') +const PACK_VERSION = '1.9.0' + +const preset_args = [ + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack'], + collection: ['choice_modules_1'], + }, + mod: [], + format: 9, + compatible: false, + }, + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: ['choice_modules_1'], + }, + mod: ['all'], + format: 9, + compatible: false, + }, + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: [], + }, + mod: [], + format: 9, + compatible: false, + }, + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: [], + }, + mod: [], + format: 9, + compatible: false, + }, + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: ['choice_modules_1'], + }, + mod: ['all'], + format: 9, + compatible: true, + }, + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: ['choice_modules_1'], + }, + mod: [], + format: 9, + compatible: true, + }, + { + platform: 'java', + type: 'normal', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: [], + }, + mod: [], + format: 9, + compatible: true, + }, + { + platform: 'java', + type: 'legacy', + modules: { + resource: ['meme_resource_pack', 'lang_sfw'], + collection: ['version_1.12.2-1.15.2'], + }, + mod: [], + format: 3, + compatible: false, + }, +] +const preset_name = [ + `mcwzh-meme_v${PACK_VERSION}.zip`, + `mcwzh-meme_sfw_v${PACK_VERSION}.zip`, + `mcwzh-meme_nomod_sfw_v${PACK_VERSION}.zip`, + `mcwzh-meme_nomod_noresource_sfw_v${PACK_VERSION}.zip`, + `mcwzh-meme_compatible_sfw_v${PACK_VERSION}.zip`, + `mcwzh-meme_compatible_nomod_sfw_v${PACK_VERSION}.zip`, + `mcwzh-meme_compatible_nomod_noresource_sfw_v${PACK_VERSION}.zip`, + `mcwzh-meme_legacy_nomod_noresource_sfw_v${PACK_VERSION}.zip`, +] + +async function start() { + const jeModules = new ModuleParser() + jeModules.addSearchPaths(resolve(__dirname, './modules')) + ;(function () { + const allMappings = JSON.parse( + readFileSync(resolve(__dirname, './mappings/all_mappings'), 'utf-8'), + ) + let obj = {} + for (const mapping of allMappings) { + const content = JSON.parse( + readFileSync(resolve(__dirname, `./mappings/${mapping}.json`)), + ) + obj = { ...obj, ...content } + } + writeFileSync( + resolve(__dirname, './mappings/mapping.json'), + JSON.stringify(obj), + ) + })() + const je = new JavaPackBuilder( + await jeModules.searchModules(), + resolve(__dirname, './modules/priority.txt'), + resolve(__dirname, './mappings/mapping.json'), + ) + + if (!existsSync('./builds')) { + mkdirSync('./builds') + } + + for (const [i, arg] of preset_args.entries()) { + try { + let r = await je.build(arg) + console.log(arg, preset_name[i]) + writeFileSync(resolve(__dirname, `./builds/${preset_name[i]}`), r) + } catch (e) { + console.error(e) + process.exit(1) + } + } + process.exit(0) +} + +start() diff --git a/preset_build.py b/preset_build.py deleted file mode 100644 index 7b32dcff4..000000000 --- a/preset_build.py +++ /dev/null @@ -1,75 +0,0 @@ -from json import load -from os import listdir, mkdir, remove, rename -from os.path import exists, isdir, join -from sys import exit -from memepack_builder.wrapper import main as _main - -PACK_VERSION = '1.4.2' - - -def check_version_consistency(): - mcmeta_desc = (load(open("meme_resourcepack/pack.mcmeta", - 'r', encoding='utf8')))['pack']['description'] - return PACK_VERSION in mcmeta_desc - - -def main(): - if check_version_consistency(): - preset_args = [ - {'platform': 'je', 'type': 'normal', 'modules': {'resource': [], 'collection': [ - 'choice_modules_1']}, 'mod': [], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'normal', 'modules': {'resource': ['lang_sfw'], 'collection': [ - 'choice_modules_1']}, 'mod': ['all'], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'normal', 'modules': {'resource': ['lang_sfw'], 'collection': []}, 'mod': [], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'normal', 'modules': {'resource': ['lang_sfw'], 'collection': []}, 'mod': [], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'compat', 'modules': {'resource': ['lang_sfw'], 'collection': [ - 'choice_modules_1']}, 'mod': ['all'], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'compat', 'modules': {'resource': ['lang_sfw'], 'collection': [ - 'choice_modules_1']}, 'mod': [], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'compat', 'modules': {'resource': ['lang_sfw'], 'collection': []}, 'mod': [], 'hash': False, 'output': 'builds', 'format': 7}, - {'platform': 'je', 'type': 'legacy', 'modules': {'resource': ['lang_sfw'], 'collection': [ - 'version_1.12.2-1.15.2']}, 'mod': [], 'hash': False, 'output': 'builds', 'format': 3} - ] - preset_name = [ - f"mcwzh-meme_v{PACK_VERSION}.zip", - f"mcwzh-meme_sfw_v{PACK_VERSION}.zip", - f"mcwzh-meme_nomod_sfw_v{PACK_VERSION}.zip", - f"mcwzh-meme_nomod_noresource_sfw_v{PACK_VERSION}.zip", - f"mcwzh-meme_compatible_sfw_v{PACK_VERSION}.zip", - f"mcwzh-meme_compatible_nomod_sfw_v{PACK_VERSION}.zip", - f"mcwzh-meme_compatible_nomod_noresource_sfw_v{PACK_VERSION}.zip", - f"mcwzh-meme_legacy_nomod_noresource_sfw_v{PACK_VERSION}.zip" - ] - pack_counter = 0 - perfect_pack_counter = 0 - base_folder = "builds" - build_unsuccessful = 0 - if exists(base_folder) and not isdir(base_folder): - remove(base_folder) - if not exists(base_folder): - mkdir(base_folder) - for file in listdir(base_folder): - remove(join(base_folder, file)) - for args, name in zip(preset_args, preset_name): - result = _main(args, True) - if result['error_code'] == 0: - pack_counter += 1 - if result['warning_count'] == 0: - perfect_pack_counter += 1 - if name != result['file_name']: - rename(join(base_folder, result['file_name']), - join(base_folder, name)) - print(f"Renamed pack to {name}.") - else: - print(f"Failed to build pack {name}.") - build_unsuccessful = 1 - print( - f"Built {pack_counter} packs with {perfect_pack_counter} pack(s) no warning.") - exit(build_unsuccessful) - else: - exit( - f'\033[1;31mError: Pack version "{PACK_VERSION}" does not match the number in pack.mcmeta.\033[0m') - - -if __name__ == '__main__': - main() diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index ea7096742..000000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -memepack-builder diff --git a/tools/conversion.py b/tools/conversion.py index f6da1f74f..83f716cf8 100644 --- a/tools/conversion.py +++ b/tools/conversion.py @@ -10,7 +10,7 @@ def generate_conversion(json1, json2, regex) -> dict: if __name__ == '__main__': from argparse import ArgumentParser, FileType - from sys import stdout + import sys def generate_parser() -> ArgumentParser: parser = ArgumentParser( @@ -20,7 +20,7 @@ def generate_parser() -> ArgumentParser: parser.add_argument("json2", type=FileType(mode='r', encoding='utf8'), help="path to the second json. Would be the values in the output.") parser.add_argument("regex", help="specify the regex.") - parser.add_argument("--outfile", "-o", nargs='?', default=stdout, type=FileType(mode='w', encoding='utf8'), + parser.add_argument("--outfile", "-o", nargs='?', default=sys.stdout, type=FileType(mode='w', encoding='utf8'), help="specify the name of sorted json. If omitted, will output the json to stdout.") return parser args = generate_parser().parse_args() diff --git a/tools/conversiongroup.py b/tools/conversiongroup.py index 2ad99201c..25866fb87 100644 --- a/tools/conversiongroup.py +++ b/tools/conversiongroup.py @@ -12,7 +12,7 @@ def generate_conversion(json1, json2, json3, regex) -> list: if __name__ == '__main__': from argparse import ArgumentParser, FileType - from sys import stdout + import sys def generate_parser() -> ArgumentParser: parser = ArgumentParser( @@ -24,7 +24,7 @@ def generate_parser() -> ArgumentParser: parser.add_argument("json3", type=FileType(mode='r', encoding='utf8'), help="path to the Original json. Would be the original part in the output.") parser.add_argument("regex", help="specify the regex.") - parser.add_argument("--outfile", "-o", nargs='?', default=stdout, type=FileType(mode='w', encoding='utf8'), + parser.add_argument("--outfile", "-o", nargs='?', default=sys.stdout, type=FileType(mode='w', encoding='utf8'), help="specify the name of output json. If omitted, will output the json to stdout.") return parser args = generate_parser().parse_args() diff --git a/tools/enchantment_level.py b/tools/enchantment_level.py index 1ad4d05ea..cd1b2725e 100644 --- a/tools/enchantment_level.py +++ b/tools/enchantment_level.py @@ -5,8 +5,9 @@ def dump(max: int): - json.dump({f'enchantment.level.{i}': f'{i}' for i in range(11, max + 1)}, - open("enchlevelfixS.json", 'w', encoding='utf8'), indent=4, ensure_ascii=False) + with open("enchlevelfixS.json", 'w', encoding='utf8') as e: + json.dump({f'enchantment.level.{i}': f'{i}' for i in range(11, max + 1)}, + e, indent=4, ensure_ascii=False) if __name__ == '__main__': diff --git a/tools/generate_bitmap_font_provider.py b/tools/generate_bitmap_font_provider.py new file mode 100644 index 000000000..2e34e275b --- /dev/null +++ b/tools/generate_bitmap_font_provider.py @@ -0,0 +1,15 @@ +cps=[] +def generate_bitmap_font_provider(cps): + for cp in cps: + cp -= 0x10000 + lead = cp >> 10 + trail = cp & 0b00000000001111111111 + lead += 0xd800 + trail += 0xdc00 + print(""" + {{ + "type": "bitmap", + "file": "minecraft:font/character-{0:x}.png", + "ascent": 7, + "chars": ["\\u{1:X}\\u{2:X}"] + }},""".format(cp+0x10000,lead,trail),end="") \ No newline at end of file diff --git a/tools/json2lang.py b/tools/json2lang.py index 017faceb7..0a630fce8 100644 --- a/tools/json2lang.py +++ b/tools/json2lang.py @@ -14,7 +14,7 @@ def lang_to_json(source, dest, indent): if __name__ == '__main__': from argparse import ArgumentParser, FileType - from sys import stdout + import sys def generate_parser(): parser = ArgumentParser( @@ -23,9 +23,10 @@ def generate_parser(): "type", help="Specify conversion destination file type. Must be 'lang' or 'json'.", choices=['lang', 'json']) parser.add_argument("input", type=FileType( mode='r', encoding='utf8'), help="Path to source file.") - parser.add_argument("-o", "--output", nargs='?', default=stdout, + parser.add_argument("-o", "--output", nargs='?', default=sys.stdout, type=FileType(mode='w', encoding='utf8'), help="Path to destination file. If omitted, will write to stdout.") - parser.add_argument("-i", "--indent", type=int, default=4, nargs='?', help="Indent the json file. Default indent is 4.") + parser.add_argument("-i", "--indent", type=int, default=4, + nargs='?', help="Indent the json file. Default indent is 4.") return parser args = generate_parser().parse_args() if args.type == 'lang': diff --git a/tools/mapping_evaluating.py b/tools/mapping_evaluating.py index 35cb03543..814aaa4e8 100644 --- a/tools/mapping_evaluating.py +++ b/tools/mapping_evaluating.py @@ -5,8 +5,8 @@ with open("1.12.lang", 'r', encoding='utf8') as f: legacy_lang_data = dict(line.strip().split( "=", 1) for line in f if line.strip() != '' and not line.startswith('#')) -mappings = load(open(os.path.join( - "mappings", "all_mappings"), 'r', encoding='utf8'))['mappings'] +with open(os.path.join("mappings", "all_mappings"), 'r', encoding='utf8') as f: + mappings = load(f)['mappings'] mapping_data = {} for item in mappings: mapping_file = f"{item}.json" @@ -14,6 +14,6 @@ print( f"\033[33mWarning: Missing mapping '{mapping_file}', skipping.\033[0m", file=stderr) else: - mapping_data.update( - load(open(os.path.join("mappings", mapping_file), 'r', encoding='utf8'))) + with open(os.path.join("mappings", mapping_file), 'r', encoding='utf8') as m: + mapping_data.update(load(m)) print(*(k for k in legacy_lang_data if k not in mapping_data), sep='\n') diff --git a/tools/pnghex.py b/tools/pnghex.py new file mode 100644 index 000000000..f3177e5ff --- /dev/null +++ b/tools/pnghex.py @@ -0,0 +1,212 @@ +from PIL import Image +import os +def png_to_hex(png_file): + img = Image.open(png_file).convert('1') + width, height = img.size + data = list(img.getdata()) + hex_string = '' + for y in range(height): + row = data[y*width:(y+1)*width] + byte = '' + for x in range(width): + byte += '1' if row[x] == 0 else '0' + if (x+1) % 8 == 0: + hex_string += f'{int(byte, 2):02X}' + byte = '' + return hex_string + + +def png_to_hex_mc(png_file): + img = Image.open(png_file) + width, height = img.size + data = list(img.getdata()) + hex_string = '' + for y in range(height): + row = data[y*width:(y+1)*width] + byte = '' + for x in range(width): + byte += '1' if row[x] == (255, 255, 255, 255) else '0' + if (x+1) % 8 == 0: + hex_string += f'{int(byte, 2):02X}' + byte = '' + return hex_string + +def hex_to_png(hex_string, png_file): + width = 8 if len(hex_string) == 32 else 16 + height = 16 + data = [] + for i in range(0, len(hex_string), 2): + byte = format(int(hex_string[i:i+2], 16), '08b') + data.extend([0 if b == '0' else 255 for b in byte]) + img = Image.new ('1', (width, height)) + img.putdata(data) + img.save (png_file) + +def cesi_pngs_to_hex(): + png_folder=r"C:\Users\Lakeus\Downloads\CESI\cjk-{}" + ext="bcdef" + + for i in ext: + hex_filename="cjk-{}.hex".format(i) + hex_file = os.path.join(r"C:\Users\Lakeus\Downloads\CESI", hex_filename) + with open(hex_file, "w", encoding="utf-8") as f: + for filename in os.listdir(png_folder.format(i)): + if filename.endswith(".png"): + png_file=os.path.join(png_folder.format(i), filename) + unicode_value = filename.split('u')[1].split(".")[0] + f.write(unicode_value.upper()+":"+png_to_hex(png_file)+"\n") + +def split_mc_unicode_page(png_file, cp_start, path): + original_image = Image.open(png_file) + width, height = original_image.size + num_images = (width // 16) * (height // 16) + + for i in range(num_images): + start_x = (i % (width // 16)) * 16 + start_y = (i // (width // 16)) * 16 + + new_image = Image.new("RGBA", (16, 16)) + new_image.paste(original_image.crop((start_x, start_y, start_x + 16, start_y + 16))) + unicode_code = i + cp_start + file_name = f"u{hex(unicode_code)[2:]}.png" + new_image.save(path+file_name) + +def pngs_to_hex(path, hex_file): + with open(hex_file,'w',newline='\n') as hex_file: + for filename in os.listdir(path): + if filename.endswith(".png"): + png_file = os.path.join(path,filename) + unicode_value=filename.split('u')[1].split('.')[0] + hex_file.write(unicode_value.upper()+":"+png_to_hex(png_file)+"\n") + +def pngs_to_hex_mc(path, hex_file): + with open(hex_file,'w',newline='\n') as hex_file: + for filename in os.listdir(path): + if filename.endswith(".png"): + png_file = os.path.join(path,filename) + unicode_value=filename.split('u')[1].split('.')[0] + hex_file.write(unicode_value.upper()+":"+png_to_hex_mc(png_file)+"\n") + +def read_hex_file_glyphs(hex_file): + glyphs={} + with open(hex_file) as hex_file: + for ln in hex_file: + cp=ln.split(":")[0] + glyph_data=ln.split(":")[1].rstrip("\n") + glyphs[cp]=glyph_data + return glyphs + +def remove_identical_glyphs(partial_hex_file, unifont_hex_file, final_hex_file): + partial_hex_file_glyphs = read_hex_file_glyphs(partial_hex_file) + unifont_hex_file_glyphs = read_hex_file_glyphs(unifont_hex_file) + with open(final_hex_file, "w", newline="\n") as final_hex_file: + for k in partial_hex_file_glyphs: + if partial_hex_file_glyphs[k] != unifont_hex_file_glyphs.get(k): + final_hex_file.write(k+":"+partial_hex_file_glyphs[k]+"\n") + +# create_hk_patch_from_tw_hex(r'D:\farstar\glyph_82',r'C:\Users\Lakeus\Downloads\unifont-16.0.01\unifont-16.0.01\font\precompiled\unifont_all-16.0.01.hex',r'D:\farstar\glyph_82\hk=#tw.txt',r'D:\farstar\glyph_82_tw.hex',r'D:\farstar\glyph_82_hk.hex',0x8200) +def create_hk_patch_from_tw_hex(path, unifont_hex_file, hk_ref_tw_list, tw_hex_file, final_hex_file, cp_start=0x4E00): + unifont_glyphs = read_hex_file_glyphs(unifont_hex_file) + tw_glyphs = read_hex_file_glyphs(tw_hex_file) + with open(hk_ref_tw_list,'r',encoding='utf-8') as f: + hk_ref_tw_str = f.read() + glyphs = {} + for i in range(256): + cp = cp_start + i + cp_str = hex(cp)[2:].upper() + if chr(cp) in hk_ref_tw_str: + glyphs[cp_str] = tw_glyphs[cp_str] + else: + glyphs[cp_str] = unifont_glyphs[cp_str] + + for filename in os.listdir(path): + if filename.endswith("-hk.png"): + png_file = os.path.join(path, filename) + unicode_value = filename.split('u')[1].split('-hk.')[0] + glyphs[unicode_value.upper()] = png_to_hex_mc(png_file) + with open(final_hex_file,'w',newline='\n') as final_hex_file: + for k in glyphs: + final_hex_file.write(k+':'+glyphs[k]+'\n') + +def print_256_chr_in_batch(cp_start=0x4E00): + for i in range(256): + print(chr(cp_start + i),end='') + print() + +# unihex_to_unicode_page(r'C:\Users\Lakeus\Downloads\unifont-16.0.01\unifont-16.0.01\font\precompiled\unifont_all-16.0.01.hex',r'D:\farstar\glyph_82.png',cp_start=0x8200) +def unihex_to_unicode_page(hex_file, output_image_file, cp_start=0x4E00, img_size=256, sub_img_size=16, glyph_size=(16, 16)): + # 创建256x256的图像,背景为白色 + img = Image.new('1', (img_size, img_size), color=1) + + # 读取hex文件中的字形数据 + glyphs = read_hex_file_glyphs(hex_file) + + # 初始化图块位置 + x = 0 + y = 0 + + # 从指定的码位开始处理 + glyph_items = list(glyphs.items()) + for unicode_val, hex_string in glyph_items: + # 如果当前码位小于开始码位,跳过 + if int(unicode_val, 16) < cp_start: + continue + + # 将hex字形转换为像素数据 + glyph_data = [] + for i in range(0, len(hex_string), 2): + byte = format(int(hex_string[i:i+2], 16), '08b') + glyph_data.extend([0 if b == '0' else 255 for b in byte]) + + # 创建一个16x16的图块 + glyph_img = Image.new('1', glyph_size) + glyph_img.putdata(glyph_data) + + # 将图块粘贴到大图上 + img.paste(glyph_img, (x, y)) + + # 更新图块位置,每16个图块换一行 + x += sub_img_size + if x >= img_size: + x = 0 + y += sub_img_size + if y >= img_size: + break + + # 保存为PNG文件 + img.save(output_image_file) + +"""js +// 在 shs-cid 工具内输入所有所需文字并加载后执行 +// 获取所有 .cid 元素 +const cidElements = document.querySelectorAll('.cid'); + +// 存储符合条件的 .cid-char 文本 +const charTexts = []; + +// 遍历每个 .cid 元素 +cidElements.forEach(cid => { + // 获取 .cid-locale 的内容 + const localeElement = cid.querySelector('.cid-locale'); + const langElement = localeElement.querySelector('.cid-lang'); + const equivElement = localeElement.querySelector('.cid-equiv'); + + // 检查是否符合条件 + if ( (langElement && langElement.innerText === 'HK' && + equivElement && equivElement.innerText === '=TW#' ) || + (langElement && langElement.innerText === 'TW' && + equivElement && equivElement.innerText === '=HK#' ) ) { + + // 获取 .cid-char 的内容 + const charElement = cid.querySelector('.cid-char'); + + if (charElement) { + // 提取 innerText 并添加到数组 + charTexts.push(charElement.innerText); + } + } +}); + +// 输出结果 +console.log(charTexts.toString().replaceAll(',','')); +""" \ No newline at end of file diff --git a/tools/sort.py b/tools/sort.py index 0cdb5cb21..959d47015 100644 --- a/tools/sort.py +++ b/tools/sort.py @@ -3,15 +3,15 @@ def sort(origin): if __name__ == '__main__': + import sys from argparse import ArgumentParser, FileType from json import load, dump - from sys import stdout def generate_parser() -> ArgumentParser: parser = ArgumentParser(description="Sort a json by key.") parser.add_argument("json", type=FileType( mode='r', encoding='utf8'), help="path to the json.") - parser.add_argument("--outfile", "-o", nargs='?', default=stdout, type=FileType(mode='w', encoding='utf8'), + parser.add_argument("--outfile", "-o", nargs='?', default=sys.stdout, type=FileType(mode='w', encoding='utf8'), help="specify the name of sorted json. If omitted, will output the json to stdout.") return parser args = generate_parser().parse_args()