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