First commit
This commit is contained in:
commit
9c25ea0b3e
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
assets/*
|
||||
i18n/*
|
||||
lang/*
|
||||
mods/*
|
||||
mods_translated/*
|
||||
|
||||
node_modules/*
|
23
README.md
Normal file
23
README.md
Normal file
@ -0,0 +1,23 @@
|
||||
# Minecraft Mod Translator
|
||||
|
||||
使用前请先运行,以安装必要库
|
||||
|
||||
```bash
|
||||
node install
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 文件夹说明
|
||||
|
||||
- `./assets` 临时资源文件夹
|
||||
- `./i18n/{modId}` 放置 *语言资源包* 内容
|
||||
- `./lang` 生成的语言文件
|
||||
- `./mods` 放置待翻译的模组
|
||||
- `./mods_translated` 放置翻译后的模组(所有模组文件名会添加 `[Translated]` 前缀)
|
||||
|
||||
### 文件作用
|
||||
|
||||
- `extract_lang.js`:把 `./mods` 下所有未汉化或未完全汉化的模组语言文件提取出来,补全所有未汉化的词条,并放入 `./lang/zh_cn` 文件夹下
|
||||
- `insert_lang.js`:把 `./lang/zh_cn` 下所有的语言文件重新打包回模组,并将翻译后的模组放入 `./mods_translated`
|
||||
- `check_lang.js`: 检查是否有词条未汉化,或有词条格式错误(占位符数量或类型错误 `%s`)
|
114
check_lang.js
Normal file
114
check_lang.js
Normal file
@ -0,0 +1,114 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const AdmZip = require("adm-zip"); // 用于解压 .jar 文件
|
||||
|
||||
// 读取文件并解析为 JSON
|
||||
function readJson(filePath) {
|
||||
try {
|
||||
const content = fs.readFileSync(filePath, "utf8");
|
||||
return JSON.parse(content);
|
||||
} catch (err) {
|
||||
console.error(`无法读取或解析文件: ${filePath}`);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// 获取 .jar 文件列表
|
||||
function getJarFiles(dirPath) {
|
||||
const files = fs.readdirSync(dirPath);
|
||||
return files.filter((file) => file.endsWith(".jar"));
|
||||
}
|
||||
|
||||
// 从字符串中提取所有符合 %+字母 格式的标签
|
||||
function extractTags(str) {
|
||||
const tagRegex = /%[a-zA-Z]/g;
|
||||
return (str.match(tagRegex) || []).sort();
|
||||
}
|
||||
|
||||
function removeJsonLineBreak(str) {
|
||||
const regex = /"([^"]*)"/g;
|
||||
return str.replace(regex, (match, p1) => {
|
||||
return `"${p1.replace(/[\r\n]+/g, "")}"`;
|
||||
});
|
||||
}
|
||||
|
||||
// 获取 zhLang 数据
|
||||
function getZhLang(modId, jarPath) {
|
||||
const zip = new AdmZip(jarPath); // 解压 jar 文件
|
||||
const zhFilePath1 = `assets/${modId}/lang/zh_cn.json`;
|
||||
const zhFilePath2 = path.join("./i18n", modId, "lang/zh_cn.json");
|
||||
|
||||
// 尝试从 jar 文件内部读取 zh_cn.json
|
||||
const zhJsonEntry = zip.getEntry(zhFilePath1);
|
||||
if (zhJsonEntry) {
|
||||
const content = zip.readAsText(zhJsonEntry);
|
||||
return JSON.parse(content);
|
||||
} else if (fileExists(zhFilePath2)) {
|
||||
return readJson(zhFilePath2);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
// 处理 mods_translated 目录下的 .jar 文件
|
||||
function processMods() {
|
||||
const modsTranslatedDir = "./mods_translated";
|
||||
const errorMods = [];
|
||||
|
||||
const jarFiles = getJarFiles(modsTranslatedDir);
|
||||
|
||||
jarFiles.forEach((jarFile) => {
|
||||
const jarPath = path.join(modsTranslatedDir, jarFile);
|
||||
console.log(`正在读取 ${jarPath}`);
|
||||
|
||||
// 解压 jar 包并读取 fabric.mod.json 文件
|
||||
const zip = new AdmZip(jarPath);
|
||||
const modJsonEntry = zip.getEntry("fabric.mod.json");
|
||||
if (!modJsonEntry) {
|
||||
console.log(`未找到 fabric.mod.json: ${jarPath}`);
|
||||
return;
|
||||
}
|
||||
|
||||
const modJsonContent = zip.readAsText(modJsonEntry);
|
||||
const modJson = JSON.parse(removeJsonLineBreak(modJsonContent));
|
||||
const modId = modJson.id;
|
||||
|
||||
// 检查是否存在 en_us.json 和 zh_cn.json 文件
|
||||
const enLangEntry = zip.getEntry(`assets/${modId}/lang/en_us.json`);
|
||||
|
||||
if (enLangEntry) {
|
||||
const enLangContent = zip.readAsText(enLangEntry);
|
||||
|
||||
const enLang = JSON.parse(enLangContent);
|
||||
const zhLang = getZhLang(modId, jarPath);
|
||||
|
||||
// 对比 enLang 和 zhLang 的 keys 是否相同
|
||||
const enKeys = Object.keys(enLang);
|
||||
const zhKeys = Object.keys(zhLang);
|
||||
|
||||
const keysDifference = enKeys.filter(
|
||||
(key) => !zhKeys.includes(key)
|
||||
);
|
||||
if (keysDifference.length > 0) {
|
||||
errorMods.push(jarFile + " " + keysDifference.toString());
|
||||
}
|
||||
|
||||
// 遍历 enLang 和 zhLang 的每一个 key
|
||||
enKeys.forEach((key) => {
|
||||
if (zhLang[key] !== undefined) {
|
||||
const enTags = extractTags(enLang[key]);
|
||||
const zhTags = extractTags(zhLang[key]);
|
||||
|
||||
// 比较 enTags 和 zhTags 是否相同
|
||||
if (enTags.sort().join(",") !== zhTags.sort().join(",")) {
|
||||
errorMods.push(jarFile + " key=" + key);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
console.log("有错误的 Mods:");
|
||||
console.log(errorMods);
|
||||
}
|
||||
|
||||
processMods();
|
30
check_lang.js.txt
Normal file
30
check_lang.js.txt
Normal file
@ -0,0 +1,30 @@
|
||||
按照此伪代码编写一个Node.js脚本,要求:
|
||||
1. 尽量不使用第三方库,adm-zip 除外(用来解析jar包)
|
||||
2. 使用双引号代替单引号
|
||||
3. 使用引号
|
||||
|
||||
伪代码:
|
||||
|
||||
const errorMods = new Array();
|
||||
遍历读取 ./mods_translated/*.jar (*.jar等同于*.zip压缩包) {
|
||||
输出 `正在读取 ${*.jar}`
|
||||
const modId = JSON.parse(读取jar内部的 ./fabric.mod.json).id;
|
||||
|
||||
if (./mods_translated/*.jar 内存在文件 `/assets/${modId}/lang/en_us.json`){
|
||||
const enLang = JSON.parse(读取 ./mods_translated/*.jar 内的 `/assets/${modId}/lang/en_us.json`);
|
||||
const zhLang = JSON.parse(读取 ./mods_translated/*.jar 内的 `/assets/${modId}/lang/zh_cn.json`);
|
||||
|
||||
对比 enLang 和 zhLang 的 keys 是否相同,如果不同 则 errorMods.append(*.jar)
|
||||
|
||||
遍历 enLang 和 zhLang 的每一个 key {
|
||||
const enTags: Array<string> = enLang[key]字符串内所有的 "%+字母" 格式的字符串
|
||||
const zhTags: Array<string> = zhLang[key]字符串内所有的 "%+字母" 格式的字符串
|
||||
排序 enTags 和 zhTags
|
||||
if (enTags和zhTags不相同 ){
|
||||
errorMods.append(*.jar)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
console.log(errorMods)
|
118
extract_lang.js
Normal file
118
extract_lang.js
Normal file
@ -0,0 +1,118 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const AdmZip = require("adm-zip"); // 用于解压 .jar 文件
|
||||
|
||||
// 读取文件并解析为 JSON
|
||||
function readJson(filePath) {
|
||||
try {
|
||||
const content = fs.readFileSync(filePath, "utf8");
|
||||
return JSON.parse(content);
|
||||
} catch (err) {
|
||||
console.error(`无法读取或解析文件: ${filePath}`);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// 获取文件列表
|
||||
function getJarFiles(dirPath) {
|
||||
const files = fs.readdirSync(dirPath);
|
||||
return files.filter((file) => file.endsWith(".jar"));
|
||||
}
|
||||
|
||||
// 检查文件是否存在
|
||||
function fileExists(filePath) {
|
||||
return fs.existsSync(filePath);
|
||||
}
|
||||
|
||||
// 获取 zhLang 数据
|
||||
function getZhLang(modId, jarPath) {
|
||||
const zip = new AdmZip(jarPath); // 解压 jar 文件
|
||||
const zhFilePath1 = `assets/${modId}/lang/zh_cn.json`;
|
||||
const zhFilePath2 = path.join("./i18n", modId, "lang/zh_cn.json");
|
||||
|
||||
// 尝试从 jar 文件内部读取 zh_cn.json
|
||||
const zhJsonEntry = zip.getEntry(zhFilePath1);
|
||||
if (zhJsonEntry) {
|
||||
const content = zip.readAsText(zhJsonEntry);
|
||||
return JSON.parse(content);
|
||||
} else if (fileExists(zhFilePath2)) {
|
||||
return readJson(zhFilePath2);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
function removeJsonLineBreak(str) {
|
||||
const regex = /"([^"]*)"/g;
|
||||
return str.replace(regex, (match, p1) => {
|
||||
return `"${p1.replace(/[\r\n]+/g, "")}"`;
|
||||
});
|
||||
}
|
||||
|
||||
// 遍历目录下所有的 .jar 文件并进行处理
|
||||
function processMods() {
|
||||
const modsDir = "./mods";
|
||||
const jarFiles = getJarFiles(modsDir);
|
||||
|
||||
console.log(`读取了 ${jarFiles.length} 个 mod`);
|
||||
|
||||
jarFiles.forEach((jarFile) => {
|
||||
const jarPath = path.join(modsDir, jarFile);
|
||||
const zip = new AdmZip(jarPath);
|
||||
console.log(`正在解析 ${jarPath}`);
|
||||
const modJsonEntry = zip.getEntry("fabric.mod.json");
|
||||
|
||||
// 读取 mod 信息
|
||||
const modJson = JSON.parse(removeJsonLineBreak(zip.readAsText(modJsonEntry)));
|
||||
if (!modJson) return;
|
||||
|
||||
const modId = modJson.id;
|
||||
const enLangPath = `assets/${modId}/lang/en_us.json`;
|
||||
|
||||
// 尝试从 jar 文件内部读取 en_us.json
|
||||
const enLangEntry = zip.getEntry(enLangPath);
|
||||
if (!enLangEntry) {
|
||||
console.log(`无法读取 ${jarFile} 的 en_us.json`);
|
||||
return;
|
||||
}
|
||||
|
||||
const enLangContent = zip.readAsText(enLangEntry);
|
||||
const enLang = JSON.parse(enLangContent);
|
||||
if (!enLang) {
|
||||
console.log(`${jarFile} 的 en_us.json 为空`);
|
||||
return;
|
||||
}
|
||||
|
||||
const zhLang = getZhLang(modId, jarPath);
|
||||
|
||||
// 找出 enLang 中有而 zhLang 中没有的 key
|
||||
const missingKeys = Object.keys(enLang).filter(
|
||||
(key) => !(key in zhLang)
|
||||
);
|
||||
|
||||
if (missingKeys.length > 0) {
|
||||
const newZhLang = {};
|
||||
/*missingKeys.forEach(key => {
|
||||
newZhLang[key] = enLang[key];
|
||||
});*/
|
||||
for (let k in enLang) {
|
||||
newZhLang[k] = zhLang[k] != undefined ? zhLang[k] : enLang[k];
|
||||
}
|
||||
|
||||
// 写入文件
|
||||
const outputDir = path.join("./lang/zh_cn");
|
||||
if (!fs.existsSync(outputDir)) {
|
||||
fs.mkdirSync(outputDir, { recursive: true });
|
||||
}
|
||||
|
||||
const outputPath = path.join(outputDir, `${modId}.json`);
|
||||
fs.writeFileSync(
|
||||
outputPath,
|
||||
JSON.stringify(newZhLang, null, 2),
|
||||
"utf8"
|
||||
);
|
||||
console.log(`写入文件: ${outputPath}`);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
processMods();
|
22
extract_lang.js.txt
Normal file
22
extract_lang.js.txt
Normal file
@ -0,0 +1,22 @@
|
||||
按照此伪代码编写一个Node.js脚本,要求:
|
||||
1. 尽量不使用第三方库
|
||||
2. 使用双引号代替单引号
|
||||
3. 使用引号
|
||||
|
||||
伪代码:
|
||||
遍历读取 ./mods/*.jar (*.jar等同于*.zip压缩包) {
|
||||
const modId = JSON.parse(读取 *.jar/fabric.mod.json).id;
|
||||
const enLang = JSON.parse(读取 `*.jar/assets/${modId}/lang/en_us.json`);
|
||||
const zhLang = () => {'
|
||||
if (存在 `*.jar/assets/${modId}/lang/zh_cn.json`) {
|
||||
return JSON.parse(读取 `*.jar/assets/${modId}/lang/zh_cn.json`)
|
||||
} else if (存在 `./i18n/${modId}/lang/zh_cn.json`){
|
||||
return JSON.parse(读取 `./i18n/${modId}/lang/zh_cn.json`)
|
||||
}
|
||||
return {};
|
||||
};
|
||||
|
||||
if (有存在于 enLang 中但不存在于 zhLang 中的 key){
|
||||
写入文件`./lang/zh_cn/${modId}.json` (内容: 格式化为人易读的格式(zhLang))
|
||||
}
|
||||
}
|
131
insert_lang.js
Normal file
131
insert_lang.js
Normal file
@ -0,0 +1,131 @@
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const AdmZip = require("adm-zip"); // 用于解压和打包 .jar 文件
|
||||
const { execSync } = require("child_process");
|
||||
|
||||
// 读取文件并解析为 JSON
|
||||
function readJson(filePath) {
|
||||
try {
|
||||
const content = fs.readFileSync(filePath, "utf8");
|
||||
return JSON.parse(content);
|
||||
} catch (err) {
|
||||
console.error(`无法读取或解析文件: ${filePath}`);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// 获取 .jar 文件列表
|
||||
function getJarFiles(dirPath) {
|
||||
const files = fs.readdirSync(dirPath);
|
||||
return files.filter((file) => file.endsWith(".jar"));
|
||||
}
|
||||
|
||||
// 复制文件
|
||||
function copyFile(source, destination) {
|
||||
try {
|
||||
fs.copyFileSync(source, destination);
|
||||
} catch (err) {
|
||||
console.error(`复制文件失败: ${source} 到 ${destination}`);
|
||||
}
|
||||
}
|
||||
|
||||
// 将 zh_cn.json 文件添加到 jar 包
|
||||
/*function addToJar(jarPath, modId, zhJsonPath) {
|
||||
const zip = new AdmZip(jarPath);
|
||||
|
||||
// 读取 zh_cn.json 文件内容
|
||||
const zhJson = readJson(zhJsonPath);
|
||||
if (!zhJson) return;
|
||||
|
||||
// 将 zh_cn.json 写入到 zip 包的指定位置
|
||||
const entryPath = `assets/${modId}/lang/zh_cn.json`;
|
||||
zip.addFile(
|
||||
entryPath,
|
||||
Buffer.from(JSON.stringify(zhJson, null, 2), "utf8")
|
||||
);
|
||||
|
||||
// 保存新的 .jar 文件
|
||||
const newJarPath = path.join(
|
||||
"./mods_translated",
|
||||
`[Translated]${path.basename(jarPath)}`
|
||||
);
|
||||
zip.writeZip(newJarPath);
|
||||
|
||||
console.log(`${jarPath} 已重新打包到 ${newJarPath}`);
|
||||
}*/
|
||||
|
||||
// 将 zh_cn.json 文件添加到 jar 包
|
||||
function addToJar(jarPath, modId, zhJsonPath) {
|
||||
// 新的 .jar 文件路径
|
||||
const translatedJarPath = path.join(
|
||||
"./mods_translated",
|
||||
`[Translated]${path.basename(jarPath)}`
|
||||
);
|
||||
|
||||
// 复制原始 jar 文件到 mods_translated 目录
|
||||
copyFile(jarPath, translatedJarPath);
|
||||
|
||||
// 使用 jar 命令行工具将 zh_cn.json 添加到 jar 包内
|
||||
const assetsPath = `assets/${modId}/lang/zh_cn.json`;
|
||||
|
||||
// 生成的命令:jar -cf <新文件路径> <要添加的文件路径> <原始 jar 文件路径>
|
||||
try {
|
||||
if (fs.existsSync(path.join(__dirname, "assets"))) {
|
||||
fs.rmSync(path.join(__dirname, "assets"), { recursive: true, force: true });
|
||||
}
|
||||
fs.mkdirSync(path.join(__dirname, path.dirname(assetsPath)), { recursive: true });
|
||||
copyFile(zhJsonPath, assetsPath);
|
||||
execSync(
|
||||
`jar -uf "${translatedJarPath}" assets`
|
||||
);
|
||||
console.log(
|
||||
`${jarPath} 已重新打包到 ${translatedJarPath},并添加了 ${assetsPath}`
|
||||
);
|
||||
} catch (err) {
|
||||
console.error(`打包失败: ${err.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
function removeJsonLineBreak(str) {
|
||||
const regex = /"([^"]*)"/g;
|
||||
return str.replace(regex, (match, p1) => {
|
||||
return `"${p1.replace(/[\r\n]+/g, "")}"`;
|
||||
});
|
||||
}
|
||||
|
||||
// 处理 mods 目录下的 .jar 文件
|
||||
function processMods() {
|
||||
const modsDir = "./mods";
|
||||
const translatedDir = "./mods_translated";
|
||||
if (!fs.existsSync(translatedDir)) {
|
||||
fs.mkdirSync(translatedDir, { recursive: true });
|
||||
}
|
||||
|
||||
const jarFiles = getJarFiles(modsDir);
|
||||
|
||||
jarFiles.forEach((jarFile) => {
|
||||
const jarPath = path.join(modsDir, jarFile);
|
||||
console.log(`正在读取 ${jarPath}`);
|
||||
|
||||
// 解压 jar 包并读取 fabric.mod.json 文件
|
||||
const zip = new AdmZip(jarPath);
|
||||
const modJsonEntry = zip.getEntry("fabric.mod.json");
|
||||
if (!modJsonEntry) {
|
||||
console.log(`未找到 fabric.mod.json: ${jarPath}`);
|
||||
return;
|
||||
}
|
||||
|
||||
const modJsonContent = zip.readAsText(modJsonEntry);
|
||||
const modJson = JSON.parse(removeJsonLineBreak(modJsonContent));
|
||||
const modId = modJson.id;
|
||||
|
||||
// 检查是否存在 zh_cn.json 文件
|
||||
const zhJsonPath = path.join("./lang/zh_cn", `${modId}.json`);
|
||||
if (fs.existsSync(zhJsonPath)) {
|
||||
// 将 zh_cn.json 文件打包进新的 jar 文件
|
||||
addToJar(jarPath, modId, zhJsonPath);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
processMods();
|
15
insert_lang.js.txt
Normal file
15
insert_lang.js.txt
Normal file
@ -0,0 +1,15 @@
|
||||
按照此伪代码编写一个Node.js脚本,要求:
|
||||
1. 尽量不使用第三方库,adm-zip 除外(用来解析jar包)
|
||||
2. 使用双引号代替单引号
|
||||
3. 使用引号
|
||||
|
||||
伪代码:
|
||||
遍历读取 ./mods/*.jar (*.jar等同于*.zip压缩包) {
|
||||
输出 正在读取 *.jar
|
||||
const modId = JSON.parse(读取jar内部的 ./fabric.mod.json).id;
|
||||
if (存在 `./lang/zh_cn/${modId}.json`) {
|
||||
复制 ./mods/*.jar 至 ./mods_translated/[Translated]*.jar
|
||||
将 `./lang/zh_cn/${modId}.json` 打包进 ./mods_translated/[Translated]*.jar 内部的 `/assets/${modId}/lang/zh_cn.json`
|
||||
输出 *.jar 已重新打包
|
||||
}
|
||||
}
|
86
lang_20241209/zh_cn/another_furniture.json
Normal file
86
lang_20241209/zh_cn/another_furniture.json
Normal file
@ -0,0 +1,86 @@
|
||||
{
|
||||
"itemGroup.another_furniture": "其他家具",
|
||||
"itemGroup.another_furniture.tab": "其他家具",
|
||||
"block.another_furniture.service_bell.use": "铃声响起",
|
||||
"block.another_furniture.chair.tuck": "椅子收起",
|
||||
"block.another_furniture.chair.untuck": "椅子展开",
|
||||
"block.another_furniture.curtain.use": "窗帘拉动",
|
||||
"block.everycomp.table": "%s 桌",
|
||||
"block.everycomp.chair": "%s 椅子",
|
||||
"block.everycomp.shelf": "%s 架子",
|
||||
"block.everycomp.shutter": "%s 窗扇",
|
||||
"block.everycomp.planter_box": "%s 花箱",
|
||||
"block.another_furniture.oak_chair": "橡木椅子",
|
||||
"block.another_furniture.spruce_chair": "云杉木椅子",
|
||||
"block.another_furniture.birch_chair": "白桦木椅子",
|
||||
"block.another_furniture.jungle_chair": "丛林木椅子",
|
||||
"block.another_furniture.acacia_chair": "金合欢木椅子",
|
||||
"block.another_furniture.dark_oak_chair": "深色橡木椅子",
|
||||
"block.another_furniture.crimson_chair": "绯红木椅子",
|
||||
"block.another_furniture.warped_chair": "诡异木椅子",
|
||||
"block.another_furniture.oak_shelf": "橡木架子",
|
||||
"block.another_furniture.spruce_shelf": "云杉木架子",
|
||||
"block.another_furniture.birch_shelf": "白桦木架子",
|
||||
"block.another_furniture.jungle_shelf": "丛林木架子",
|
||||
"block.another_furniture.acacia_shelf": "金合欢木架子",
|
||||
"block.another_furniture.dark_oak_shelf": "深色橡木架子",
|
||||
"block.another_furniture.crimson_shelf": "绯红木架子",
|
||||
"block.another_furniture.warped_shelf": "诡异木架子",
|
||||
"block.another_furniture.oak_table": "橡木桌",
|
||||
"block.another_furniture.spruce_table": "云杉木桌",
|
||||
"block.another_furniture.birch_table": "白桦木桌",
|
||||
"block.another_furniture.jungle_table": "丛林木桌",
|
||||
"block.another_furniture.acacia_table": "金合欢木桌",
|
||||
"block.another_furniture.dark_oak_table": "深色橡木桌",
|
||||
"block.another_furniture.crimson_table": "绯红木桌",
|
||||
"block.another_furniture.warped_table": "诡异木桌",
|
||||
"block.another_furniture.oak_shutter": "橡木窗扇",
|
||||
"block.another_furniture.spruce_shutter": "云杉木窗扇",
|
||||
"block.another_furniture.birch_shutter": "白桦木窗扇",
|
||||
"block.another_furniture.jungle_shutter": "丛林木窗扇",
|
||||
"block.another_furniture.acacia_shutter": "金合欢木窗扇",
|
||||
"block.another_furniture.dark_oak_shutter": "深色橡木窗扇",
|
||||
"block.another_furniture.crimson_shutter": "绯红木窗扇",
|
||||
"block.another_furniture.warped_shutter": "诡异木窗扇",
|
||||
"block.another_furniture.oak_planter_box": "橡木花箱",
|
||||
"block.another_furniture.spruce_planter_box": "云杉木花箱",
|
||||
"block.another_furniture.birch_planter_box": "白桦木花箱",
|
||||
"block.another_furniture.jungle_planter_box": "丛林木花箱",
|
||||
"block.another_furniture.acacia_planter_box": "金合欢木花箱",
|
||||
"block.another_furniture.dark_oak_planter_box": "深色橡木花箱",
|
||||
"block.another_furniture.crimson_planter_box": "绯红木花箱",
|
||||
"block.another_furniture.warped_planter_box": "诡异木花箱",
|
||||
"block.another_furniture.white_stool": "白色凳子",
|
||||
"block.another_furniture.orange_stool": "橙色凳子",
|
||||
"block.another_furniture.magenta_stool": "品红色凳子",
|
||||
"block.another_furniture.light_blue_stool": "淡蓝色凳子",
|
||||
"block.another_furniture.yellow_stool": "黄色凳子",
|
||||
"block.another_furniture.lime_stool": "黄绿色凳子",
|
||||
"block.another_furniture.pink_stool": "粉红色凳子",
|
||||
"block.another_furniture.gray_stool": "灰色凳子",
|
||||
"block.another_furniture.light_gray_stool": "淡灰色凳子",
|
||||
"block.another_furniture.cyan_stool": "青色凳子",
|
||||
"block.another_furniture.purple_stool": "紫色凳子",
|
||||
"block.another_furniture.blue_stool": "蓝色凳子",
|
||||
"block.another_furniture.brown_stool": "棕色凳子",
|
||||
"block.another_furniture.green_stool": "绿色凳子",
|
||||
"block.another_furniture.red_stool": "红色凳子",
|
||||
"block.another_furniture.black_stool": "黑色凳子",
|
||||
"block.another_furniture.service_bell": "服务铃",
|
||||
"block.another_furniture.white_curtain": "白色窗帘",
|
||||
"block.another_furniture.orange_curtain": "橙色窗帘",
|
||||
"block.another_furniture.magenta_curtain": "品红色窗帘",
|
||||
"block.another_furniture.light_blue_curtain": "淡蓝色窗帘",
|
||||
"block.another_furniture.yellow_curtain": "黄色窗帘",
|
||||
"block.another_furniture.lime_curtain": "黄绿色窗帘",
|
||||
"block.another_furniture.pink_curtain": "粉红色窗帘",
|
||||
"block.another_furniture.gray_curtain": "灰色窗帘",
|
||||
"block.another_furniture.light_gray_curtain": "淡灰色窗帘",
|
||||
"block.another_furniture.cyan_curtain": "青色窗帘",
|
||||
"block.another_furniture.purple_curtain": "紫色窗帘",
|
||||
"block.another_furniture.blue_curtain": "蓝色窗帘",
|
||||
"block.another_furniture.brown_curtain": "棕色窗帘",
|
||||
"block.another_furniture.green_curtain": "绿色窗帘",
|
||||
"block.another_furniture.red_curtain": "红色窗帘",
|
||||
"block.another_furniture.black_curtain": "黑色窗帘"
|
||||
}
|
63
lang_20241209/zh_cn/antiqueatlas.json
Normal file
63
lang_20241209/zh_cn/antiqueatlas.json
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"item.antiqueatlas.antique_atlas": "古式地图 #%d",
|
||||
"item.antiqueatlas.empty_antique_atlas": "空白古式地图",
|
||||
"gui.antiqueatlas.scalebar": "以方块缩放",
|
||||
"gui.antiqueatlas.addMarker": "添加标记",
|
||||
"gui.antiqueatlas.delMarker": "删除标记",
|
||||
"gui.antiqueatlas.followPlayer": "跟随该玩家",
|
||||
"gui.antiqueatlas.exportImage": "导出图像",
|
||||
"gui.antiqueatlas.hideMarkers": "隐藏标记",
|
||||
"gui.antiqueatlas.showMarkers": "显示标记",
|
||||
"gui.antiqueatlas.marker.label": "标签:",
|
||||
"gui.antiqueatlas.marker.type": "类型:",
|
||||
"gui.antiqueatlas.marker.village": "村庄",
|
||||
"gui.antiqueatlas.marker.netherPortal": "下界传送门",
|
||||
"gui.antiqueatlas.marker.tomb": "%s 在此长眠",
|
||||
"gui.antiqueatlas.marker.treasure": "埋藏的宝藏",
|
||||
"gui.antiqueatlas.marker.monument": "海底神殿",
|
||||
"gui.antiqueatlas.marker.mansion": "林地府邸",
|
||||
"gui.antiqueatlas.export.opening": "打开文件系统对话框……",
|
||||
"gui.antiqueatlas.export.selectFile": "选择PNG格式图片并另存为",
|
||||
"gui.antiqueatlas.export.tooLarge": "抱歉!图片过大无法渲染,请尝试给 Minecraft 分配更多内存空间。",
|
||||
"gui.antiqueatlas.export.setup": "设置……",
|
||||
"gui.antiqueatlas.export.rendering": "渲染……",
|
||||
"gui.antiqueatlas.export.writing": "写入文件……",
|
||||
"gui.antiqueatlas.export.loadingtextures": "加载材质……",
|
||||
"gui.antiqueatlas.export.makingbuffer": "分配 %dx%d 图像缓冲区……",
|
||||
"gui.antiqueatlas.export.renderstripe": "渲染层 %d/%d……",
|
||||
"gui.antiqueatlas.export.writestripe": "写入层……",
|
||||
"gui.antiqueatlas.export.rendering.background": "渲染地图背景",
|
||||
"gui.antiqueatlas.export.rendering.map": "渲染地图方块",
|
||||
"gui.antiqueatlas.export.rendering.markers": "渲染标记",
|
||||
"key.openatlas.desc": "打开古式地图",
|
||||
"key.antiqueatlas.category": "古式地图",
|
||||
"text.autoconfig.antiqueatlas.title": "古式地图",
|
||||
"text.autoconfig.antiqueatlas.category.gameplay": "游戏玩法",
|
||||
"text.autoconfig.antiqueatlas.category.userInterface": "用户界面",
|
||||
"text.autoconfig.antiqueatlas.category.performance": "性能",
|
||||
"text.autoconfig.antiqueatlas.category.appearance": "外观",
|
||||
"text.autoconfig.antiqueatlas.option.doSaveBrowsingPos": "保存地图位置",
|
||||
"text.autoconfig.antiqueatlas.option.autoDeathMarker": "死亡标记",
|
||||
"text.autoconfig.antiqueatlas.option.autoVillageMarkers": "村庄标记",
|
||||
"text.autoconfig.antiqueatlas.option.autoNetherPortalMarkers": "下界传送门标记",
|
||||
"text.autoconfig.antiqueatlas.option.itemNeeded": "使用时需要地图",
|
||||
"text.autoconfig.antiqueatlas.option.doScaleMarkers": "缩放标记",
|
||||
"text.autoconfig.antiqueatlas.option.defaultScale": "默认缩放级别",
|
||||
"text.autoconfig.antiqueatlas.option.minScale": "最小缩放级别",
|
||||
"text.autoconfig.antiqueatlas.option.maxScale": "最大缩放级别",
|
||||
"text.autoconfig.antiqueatlas.option.doReverseWheelZoom": "反向滚轮缩放",
|
||||
"text.autoconfig.antiqueatlas.option.scanRadius": "扫描半径",
|
||||
"text.autoconfig.antiqueatlas.option.forceChunkLoading": "强制区块加载",
|
||||
"text.autoconfig.antiqueatlas.option.newScanInterval": "扫描间隔",
|
||||
"text.autoconfig.antiqueatlas.option.doRescan": "重新扫描",
|
||||
"text.autoconfig.antiqueatlas.option.rescanRate": "重新扫描频率",
|
||||
"text.autoconfig.antiqueatlas.option.markerLimit": "标记数量限制",
|
||||
"text.autoconfig.antiqueatlas.option.doScanPonds": "扫描池塘",
|
||||
"text.autoconfig.antiqueatlas.option.doScanRavines": "扫描峡谷",
|
||||
"text.autoconfig.antiqueatlas.option.debugRender": "调试渲染",
|
||||
"text.autoconfig.antiqueatlas.option.resourcePackLogging": "资源包加载日志",
|
||||
"text.autoconfig.antiqueatlas.option.tileSize": "图块大小",
|
||||
"text.autoconfig.antiqueatlas.option.markerSize": "标记大小",
|
||||
"text.autoconfig.antiqueatlas.option.playerIconWidth": "玩家图标宽度",
|
||||
"text.autoconfig.antiqueatlas.option.playerIconHeight": "玩家图标高度"
|
||||
}
|
66
lang_20241209/zh_cn/brewinandchewin.json
Normal file
66
lang_20241209/zh_cn/brewinandchewin.json
Normal file
@ -0,0 +1,66 @@
|
||||
{
|
||||
"block.brewinandchewin.fiery_fondue_pot": "奶酪火锅",
|
||||
"block.brewinandchewin.flaxen_cheese_wheel": "淡黄奶酪轮",
|
||||
"block.brewinandchewin.item_coaster": "物品杯垫",
|
||||
"block.brewinandchewin.keg": "酒桶",
|
||||
"block.brewinandchewin.pizza": "比萨",
|
||||
"block.brewinandchewin.quiche": "法式咸派",
|
||||
"block.brewinandchewin.scarlet_cheese_wheel": "猩红奶酪轮",
|
||||
"block.brewinandchewin.unripe_flaxen_cheese_wheel": "未成熟淡黄奶酪轮",
|
||||
"block.brewinandchewin.unripe_scarlet_cheese_wheel": "未成熟猩红奶酪轮",
|
||||
"brewinandchewin.block.cheese.use_knife": "你需要一把刀来切割它。",
|
||||
"brewinandchewin.container.keg": "酒桶",
|
||||
"brewinandchewin.container.keg.cold": "温度:冷",
|
||||
"brewinandchewin.container.keg.frigid": "温度:极冷",
|
||||
"brewinandchewin.container.keg.hot": "温度:热",
|
||||
"brewinandchewin.container.keg.normal": "温度:正常",
|
||||
"brewinandchewin.container.keg.served_in": "盛装于:%s",
|
||||
"brewinandchewin.container.keg.warm": "温度:温暖",
|
||||
"brewinandchewin.jei.fermenting": "发酵中",
|
||||
"brewinandchewin.rei.fermenting": "发酵中",
|
||||
"brewinandchewin.tooltip.dread_nog": "不祥之兆 (10:00)",
|
||||
"brewinandchewin.tooltip.keg.empty": "空的",
|
||||
"brewinandchewin.tooltip.keg.many_servings": "容纳 %s 份:",
|
||||
"brewinandchewin.tooltip.keg.single_serving": "容纳 1 份:",
|
||||
"brewinandchewin.tooltip.tipsy1": "微醺 I (%s:00)",
|
||||
"brewinandchewin.tooltip.tipsy2": "微醺 II (%s:00)",
|
||||
"brewinandchewin.tooltip.tipsy3": "微醺 III (%s:00)",
|
||||
"effect.brewinandchewin.satisfaction": "满足",
|
||||
"effect.brewinandchewin.sweet_heart": "暖心",
|
||||
"effect.brewinandchewin.tipsy": "微醺",
|
||||
"emi.category.brewinandchewin.fermenting": "发酵中",
|
||||
"item.brewinandchewin.beer": "啤酒",
|
||||
"item.brewinandchewin.bloody_mary": "血腥玛丽",
|
||||
"item.brewinandchewin.cheesy_pasta": "奶酪意大利面",
|
||||
"item.brewinandchewin.cocoa_fudge": "可可软糖",
|
||||
"item.brewinandchewin.creamy_onion_soup": "奶油洋葱汤",
|
||||
"item.brewinandchewin.dread_nog": "邪恶凝视",
|
||||
"item.brewinandchewin.egg_grog": "鸡蛋酒",
|
||||
"item.brewinandchewin.fiery_fondue": "碗装奶酪火锅",
|
||||
"item.brewinandchewin.flaxen_cheese_wedge": "淡黄奶酪块",
|
||||
"item.brewinandchewin.glittering_grenadine": "闪光石榴汁",
|
||||
"item.brewinandchewin.ham_and_cheese_sandwich": "火腿奶酪三明治",
|
||||
"item.brewinandchewin.horror_lasagna": "恐怖千层面",
|
||||
"item.brewinandchewin.jerky": "干肉",
|
||||
"item.brewinandchewin.kimchi": "泡菜",
|
||||
"item.brewinandchewin.kippers": "腌鱼",
|
||||
"item.brewinandchewin.kombucha": "康普茶",
|
||||
"item.brewinandchewin.mead": "蜜酒",
|
||||
"item.brewinandchewin.pale_jane": "婚纱天使",
|
||||
"item.brewinandchewin.pickled_pickles": "腌制泡菜",
|
||||
"item.brewinandchewin.pizza_slice": "比萨片",
|
||||
"item.brewinandchewin.quiche_slice": "法式咸派片",
|
||||
"item.brewinandchewin.red_rum": "红色朗姆酒",
|
||||
"item.brewinandchewin.rice_wine": "米酒",
|
||||
"item.brewinandchewin.saccharine_rum": "甜味朗姆酒",
|
||||
"item.brewinandchewin.salty_folly": "人鱼之梦",
|
||||
"item.brewinandchewin.scarlet_cheese_wedge": "猩红奶酪块",
|
||||
"item.brewinandchewin.scarlet_pierogies": "猩红饺子形馅饼",
|
||||
"item.brewinandchewin.steel_toe_stout": "钢趾黑啤",
|
||||
"item.brewinandchewin.strongroot_ale": "地魔之血",
|
||||
"item.brewinandchewin.tankard": "酒杯",
|
||||
"item.brewinandchewin.vegetable_omelet": "蔬菜煎蛋卷",
|
||||
"item.brewinandchewin.vodka": "伏特加",
|
||||
"item.brewinandchewin.withering_dross": "废物",
|
||||
"itemGroup.brewinandchewin.main": "饮酒作乐"
|
||||
}
|
47
lang_20241209/zh_cn/comforts.json
Normal file
47
lang_20241209/zh_cn/comforts.json
Normal file
@ -0,0 +1,47 @@
|
||||
{
|
||||
"itemGroup.comforts.general": "Comforts",
|
||||
"block.comforts.hammock_black": "黑色吊床布",
|
||||
"block.comforts.hammock_blue": "蓝色吊床布",
|
||||
"block.comforts.hammock_brown": "棕色吊床布",
|
||||
"block.comforts.hammock_cyan": "青色吊床布",
|
||||
"block.comforts.hammock_gray": "灰色吊床布",
|
||||
"block.comforts.hammock_green": "绿色吊床布",
|
||||
"block.comforts.hammock_light_blue": "淡蓝色吊床布",
|
||||
"block.comforts.hammock_light_gray": "淡灰色吊床布",
|
||||
"block.comforts.hammock_lime": "黄绿色吊床布",
|
||||
"block.comforts.hammock_magenta": "品红色吊床布",
|
||||
"block.comforts.hammock_orange": "橙色吊床布",
|
||||
"block.comforts.hammock_pink": "粉色吊床布",
|
||||
"block.comforts.hammock_purple": "紫色吊床布",
|
||||
"block.comforts.hammock_red": "红色吊床布",
|
||||
"block.comforts.hammock_white": "白色吊床布",
|
||||
"block.comforts.hammock_yellow": "黄色吊床布",
|
||||
"block.comforts.rope_and_nail": "绳与钉",
|
||||
"block.comforts.sleeping_bag_black": "黑色睡袋",
|
||||
"block.comforts.sleeping_bag_blue": "蓝色睡袋",
|
||||
"block.comforts.sleeping_bag_brown": "棕色睡袋",
|
||||
"block.comforts.sleeping_bag_cyan": "青色睡袋",
|
||||
"block.comforts.sleeping_bag_gray": "灰色睡袋",
|
||||
"block.comforts.sleeping_bag_green": "绿色睡袋",
|
||||
"block.comforts.sleeping_bag_light_blue": "淡蓝色睡袋",
|
||||
"block.comforts.sleeping_bag_light_gray": "淡灰色睡袋",
|
||||
"block.comforts.sleeping_bag_lime": "黄绿色睡袋",
|
||||
"block.comforts.sleeping_bag_magenta": "品红色睡袋",
|
||||
"block.comforts.sleeping_bag_orange": "橙色睡袋",
|
||||
"block.comforts.sleeping_bag_pink": "粉色睡袋",
|
||||
"block.comforts.sleeping_bag_purple": "紫色睡袋",
|
||||
"block.comforts.sleeping_bag_red": "红色睡袋",
|
||||
"block.comforts.sleeping_bag_white": "白色睡袋",
|
||||
"block.comforts.sleeping_bag_yellow": "黄色睡袋",
|
||||
"block.comforts.hammock.occupied": "这个吊床已经被占用",
|
||||
"block.comforts.sleeping_bag.occupied": "这个睡袋已经被占用",
|
||||
"block.comforts.hammock.too_far_away": "吊床离你太远了,你现在不能休息。",
|
||||
"block.comforts.sleeping_bag.too_far_away": "睡袋离你太远了,你现在不能休息。",
|
||||
"block.comforts.hammock.no_sleep": "你只能一天打一次盹",
|
||||
"block.comforts.hammock.no_sleep.2": "你只能在白天、夜晚或雷暴时休息",
|
||||
"block.comforts.hammock.no_rope": "你必须将吊床挂在一对 绳与钉 上",
|
||||
"block.comforts.hammock.no_space": "没有足够的空间来放置吊床",
|
||||
"block.comforts.hammock.missing_rope": "吊床的另一端也必须有 绳与钉 才能挂起来",
|
||||
"block.comforts.sleeping_bag.broke": "睡袋坏了",
|
||||
"capability.comforts.not_sleepy": "你现在还不能休息,你还未感到疲倦。"
|
||||
}
|
612
lang_20241209/zh_cn/croptopia.json
Normal file
612
lang_20241209/zh_cn/croptopia.json
Normal file
@ -0,0 +1,612 @@
|
||||
{
|
||||
"item.croptopia.artichoke": "洋蓟",
|
||||
"item.croptopia.asparagus": "芦笋",
|
||||
"item.croptopia.bellpepper": "甜椒",
|
||||
"item.croptopia.blackbean": "黑豆",
|
||||
"item.croptopia.blackberry": "黑莓",
|
||||
"item.croptopia.blueberry": "蓝莓",
|
||||
"item.croptopia.broccoli": "西兰花",
|
||||
"item.croptopia.cabbage": "卷心菜",
|
||||
"item.croptopia.cantaloupe": "哈密瓜",
|
||||
"item.croptopia.cauliflower": "花椰菜",
|
||||
"item.croptopia.celery": "芹菜",
|
||||
"item.croptopia.coffee_beans": "咖啡豆",
|
||||
"item.croptopia.corn": "玉米",
|
||||
"item.croptopia.cranberry": "蔓越莓",
|
||||
"item.croptopia.cucumber": "黄瓜",
|
||||
"item.croptopia.currant": "醋栗",
|
||||
"item.croptopia.eggplant": "茄子",
|
||||
"item.croptopia.elderberry": "接骨木莓",
|
||||
"item.croptopia.garlic": "大蒜",
|
||||
"item.croptopia.grape": "葡萄",
|
||||
"item.croptopia.greenbean": "绿豆",
|
||||
"item.croptopia.greenonion": "大葱",
|
||||
"item.croptopia.honeydew": "蜜瓜",
|
||||
"item.croptopia.hops": "蛇麻花",
|
||||
"item.croptopia.kale": "羽衣甘蓝",
|
||||
"item.croptopia.kiwi": "猕猴桃",
|
||||
"item.croptopia.leek": "韭葱",
|
||||
"item.croptopia.lettuce": "生菜",
|
||||
"item.croptopia.olive": "橄榄",
|
||||
"item.croptopia.onion": "洋葱",
|
||||
"item.croptopia.peanut": "花生",
|
||||
"item.croptopia.pineapple": "菠萝",
|
||||
"item.croptopia.radish": "小萝卜",
|
||||
"item.croptopia.raspberry": "树莓",
|
||||
"item.croptopia.rhubarb": "大黄",
|
||||
"item.croptopia.rice": "大米",
|
||||
"item.croptopia.rutabaga": "芜菁甘蓝",
|
||||
"item.croptopia.saguaro": "巨人柱",
|
||||
"item.croptopia.spinach": "菠菜",
|
||||
"item.croptopia.squash": "倭瓜",
|
||||
"item.croptopia.strawberry": "草莓",
|
||||
"item.croptopia.sweetpotato": "红薯",
|
||||
"item.croptopia.tomatillo": "酸浆果",
|
||||
"item.croptopia.tomato": "番茄",
|
||||
"item.croptopia.turnip": "芜菁",
|
||||
"item.croptopia.yam": "山药",
|
||||
"item.croptopia.zucchini": "西葫芦",
|
||||
"item.croptopia.artichoke_seed": "洋蓟种子",
|
||||
"item.croptopia.asparagus_seed": "芦笋种子",
|
||||
"item.croptopia.bellpepper_seed": "甜椒种子",
|
||||
"item.croptopia.blackbean_seed": "黑豆种子",
|
||||
"item.croptopia.blackberry_seed": "黑莓种子",
|
||||
"item.croptopia.blueberry_seed": "蓝莓种子",
|
||||
"item.croptopia.broccoli_seed": "西兰花种子",
|
||||
"item.croptopia.cabbage_seed": "卷心菜种子",
|
||||
"item.croptopia.cantaloupe_seed": "哈密瓜种子",
|
||||
"item.croptopia.cauliflower_seed": "花椰菜种子",
|
||||
"item.croptopia.celery_seed": "芹菜种子",
|
||||
"item.croptopia.coffee_seed": "咖啡种子",
|
||||
"item.croptopia.corn_seed": "玉米种子",
|
||||
"item.croptopia.cranberry_seed": "蔓越莓种子",
|
||||
"item.croptopia.cucumber_seed": "黄瓜种子",
|
||||
"item.croptopia.currant_seed": "醋栗种子",
|
||||
"item.croptopia.eggplant_seed": "茄子种子",
|
||||
"item.croptopia.elderberry_seed": "接骨木种子",
|
||||
"item.croptopia.garlic_seed": "大蒜种子",
|
||||
"item.croptopia.grape_seed": "葡萄种子",
|
||||
"item.croptopia.greenbean_seed": "绿豆种子",
|
||||
"item.croptopia.greenonion_seed": "大葱种子",
|
||||
"item.croptopia.honeydew_seed": "蜜瓜种子",
|
||||
"item.croptopia.hops_seed": "蛇麻花种子",
|
||||
"item.croptopia.kale_seed": "羽衣甘蓝种子",
|
||||
"item.croptopia.kiwi_seed": "猕猴桃种子",
|
||||
"item.croptopia.leek_seed": "韭葱种子",
|
||||
"item.croptopia.lettuce_seed": "生菜种子",
|
||||
"item.croptopia.olive_seed": "橄榄种子",
|
||||
"item.croptopia.onion_seed": "洋葱种子",
|
||||
"item.croptopia.peanut_seed": "花生种子",
|
||||
"item.croptopia.pineapple_seed": "菠萝种子",
|
||||
"item.croptopia.radish_seed": "小萝卜种子",
|
||||
"item.croptopia.raspberry_seed": "树莓种子",
|
||||
"item.croptopia.rhubarb_seed": "大黄种子",
|
||||
"item.croptopia.rice_seed": "大米种子",
|
||||
"item.croptopia.rutabaga_seed": "芜菁甘蓝种子",
|
||||
"item.croptopia.saguaro_seed": "巨人柱种子",
|
||||
"item.croptopia.spinach_seed": "菠菜种子",
|
||||
"item.croptopia.squash_seed": "倭瓜种子",
|
||||
"item.croptopia.strawberry_seed": "草莓种子",
|
||||
"item.croptopia.sweetpotato_seed": "红薯种子",
|
||||
"item.croptopia.tomatillo_seed": "酸浆果种子",
|
||||
"item.croptopia.tomato_seed": "番茄种子",
|
||||
"item.croptopia.turnip_seed": "芜菁种子",
|
||||
"item.croptopia.yam_seed": "山药种子",
|
||||
"item.croptopia.zucchini_seed": "西葫芦种子",
|
||||
"item.croptopia.oat_seed": "燕麦种子",
|
||||
"item.croptopia.mustard_seed": "芥菜种子",
|
||||
"item.croptopia.pepper_seed": "胡椒种子",
|
||||
"item.croptopia.turmeric_seed": "姜黄种子",
|
||||
"item.croptopia.ginger_seed": "姜种子",
|
||||
"item.croptopia.basil_seed": "罗勒种子",
|
||||
"item.croptopia.chile_pepper_seed": "辣椒种子",
|
||||
"item.croptopia.barley_seed": "大麦种子",
|
||||
"item.croptopia.soybean_seed": "黄豆种子",
|
||||
"item.croptopia.barley": "大麦",
|
||||
"item.croptopia.oat": "燕麦",
|
||||
"item.croptopia.soybean": "黄豆",
|
||||
"item.croptopia.grapefruit": "葡萄柚",
|
||||
"item.croptopia.kumquat": "金橘",
|
||||
"item.croptopia.orange": "橙子",
|
||||
"item.croptopia.banana": "香蕉",
|
||||
"item.croptopia.persimmon": "柿子",
|
||||
"item.croptopia.plum": "李子",
|
||||
"item.croptopia.cherry": "樱桃",
|
||||
"item.croptopia.lemon": "柠檬",
|
||||
"item.croptopia.peach": "桃子",
|
||||
"item.croptopia.coconut": "椰子",
|
||||
"item.croptopia.nutmeg": "肉豆蔻",
|
||||
"item.croptopia.fig": "无花果",
|
||||
"item.croptopia.nectarine": "油桃",
|
||||
"item.croptopia.mango": "芒果",
|
||||
"item.croptopia.dragonfruit": "火龙果",
|
||||
"item.croptopia.starfruit": "杨桃",
|
||||
"item.croptopia.almond": "扁桃仁",
|
||||
"item.croptopia.cashew": "腰果",
|
||||
"item.croptopia.pecan": "碧根果",
|
||||
"item.croptopia.walnut": "核桃",
|
||||
"item.croptopia.avocado": "鳄梨",
|
||||
"item.croptopia.apricot": "杏子",
|
||||
"item.croptopia.pear": "梨",
|
||||
"item.croptopia.lime": "青柠",
|
||||
"item.croptopia.date": "海枣",
|
||||
"item.croptopia.mustard": "芥菜",
|
||||
"item.croptopia.vanilla": "香草",
|
||||
"item.croptopia.paprika": "红辣椒",
|
||||
"item.croptopia.pepper": "胡椒",
|
||||
"item.croptopia.salt": "盐",
|
||||
"item.croptopia.turmeric": "姜黄",
|
||||
"item.croptopia.ginger": "姜",
|
||||
"item.croptopia.basil": "罗勒",
|
||||
"item.croptopia.chile_pepper": "辣椒",
|
||||
"item.croptopia.apple_sapling": "苹果树苗",
|
||||
"item.croptopia.banana_sapling": "香蕉树苗",
|
||||
"item.croptopia.orange_sapling": "橙子树苗",
|
||||
"item.croptopia.persimmon_sapling": "柿子树苗",
|
||||
"item.croptopia.plum_sapling": "李子树苗",
|
||||
"item.croptopia.cherry_sapling": "樱桃树苗",
|
||||
"item.croptopia.lemon_sapling": "柠檬树苗",
|
||||
"item.croptopia.grapefruit_sapling": "葡萄柚树苗",
|
||||
"item.croptopia.kumquat_sapling": "金橘树苗",
|
||||
"item.croptopia.peach_sapling": "桃子树苗",
|
||||
"item.croptopia.coconut_sapling": "椰子树苗",
|
||||
"item.croptopia.nutmeg_sapling": "肉豆蔻树苗",
|
||||
"item.croptopia.fig_sapling": "无花果树苗",
|
||||
"item.croptopia.mango_sapling": "芒果树苗",
|
||||
"item.croptopia.dragonfruit_sapling": "火龙果树苗",
|
||||
"item.croptopia.starfruit_sapling": "杨桃树苗",
|
||||
"item.croptopia.avocado_sapling": "鳄梨树苗",
|
||||
"item.croptopia.apricot_sapling": "杏子树苗",
|
||||
"item.croptopia.pear_sapling": "梨树苗",
|
||||
"item.croptopia.lime_sapling": "青柠树苗",
|
||||
"item.croptopia.date_sapling": "海枣树苗",
|
||||
"item.croptopia.nectarine_sapling": "油桃树苗",
|
||||
"item.croptopia.almond_sapling": "扁桃仁树苗",
|
||||
"item.croptopia.cashew_sapling": "腰果树苗",
|
||||
"item.croptopia.pecan_sapling": "碧根果树苗",
|
||||
"item.croptopia.walnut_sapling": "核桃树苗",
|
||||
"item.croptopia.olive_oil": "橄榄油",
|
||||
"item.croptopia.cheese": "芝士",
|
||||
"item.croptopia.flour": "面粉",
|
||||
"item.croptopia.dough": "生面团",
|
||||
"item.croptopia.pepperoni": "意大利红肠",
|
||||
"item.croptopia.butter": "黄油",
|
||||
"item.croptopia.noodle": "面条",
|
||||
"item.croptopia.tofu": "豆腐",
|
||||
"item.croptopia.molasses": "糖蜜",
|
||||
"item.croptopia.caramel": "焦糖",
|
||||
"item.croptopia.chocolate": "巧克力",
|
||||
"item.croptopia.tortilla": "墨西哥薄饼",
|
||||
"item.croptopia.soy_sauce": "酱油",
|
||||
"item.croptopia.dumpling": "饺子",
|
||||
"item.croptopia.ravioli": "意大利饺",
|
||||
"item.croptopia.salsa": "萨尔萨酱",
|
||||
"item.croptopia.artichoke_dip": "洋蓟蘸酱",
|
||||
"item.croptopia.grape_juice": "葡萄汁",
|
||||
"item.croptopia.orange_juice": "橙子汁",
|
||||
"item.croptopia.apple_juice": "苹果汁",
|
||||
"item.croptopia.cranberry_juice": "蔓越莓汁",
|
||||
"item.croptopia.saguaro_juice": "巨人柱汁",
|
||||
"item.croptopia.tomato_juice": "番茄汁",
|
||||
"item.croptopia.melon_juice": "西瓜汁",
|
||||
"item.croptopia.pineapple_juice": "菠萝汁",
|
||||
"item.croptopia.coffee": "咖啡",
|
||||
"item.croptopia.lemonade": "柠檬汁",
|
||||
"item.croptopia.limeade": "青柠汁",
|
||||
"item.croptopia.soy_milk": "豆奶",
|
||||
"item.croptopia.strawberry_smoothie": "草莓冰沙",
|
||||
"item.croptopia.banana_smoothie": "香蕉冰沙",
|
||||
"item.croptopia.kale_smoothie": "羽衣甘蓝冰沙",
|
||||
"item.croptopia.fruit_smoothie": "水果冰沙",
|
||||
"item.croptopia.chocolate_milkshake": "巧克力奶昔",
|
||||
"item.croptopia.beer": "啤酒",
|
||||
"item.croptopia.wine": "葡萄酒",
|
||||
"item.croptopia.mead": "蜂蜜酒",
|
||||
"item.croptopia.rum": "朗姆酒",
|
||||
"item.croptopia.pumpkin_spice_latte": "南瓜拿铁",
|
||||
"item.croptopia.grape_jam": "葡萄酱",
|
||||
"item.croptopia.strawberry_jam": "草莓酱",
|
||||
"item.croptopia.peach_jam": "桃子酱",
|
||||
"item.croptopia.apricot_jam": "杏子酱",
|
||||
"item.croptopia.blackberry_jam": "黑莓酱",
|
||||
"item.croptopia.blueberry_jam": "蓝莓酱",
|
||||
"item.croptopia.cherry_jam": "樱桃酱",
|
||||
"item.croptopia.elderberry_jam": "接骨木酱",
|
||||
"item.croptopia.raspberry_jam": "树莓酱",
|
||||
"item.croptopia.beef_jerky": "牛肉干",
|
||||
"item.croptopia.pork_jerky": "猪肉干",
|
||||
"item.croptopia.kale_chips": "羽衣甘蓝片",
|
||||
"item.croptopia.potato_chips": "薯片",
|
||||
"item.croptopia.steamed_rice": "米饭",
|
||||
"item.croptopia.egg_roll": "蛋卷",
|
||||
"item.croptopia.french_fries": "炸薯条",
|
||||
"item.croptopia.sweet_potato_fries": "烤红薯",
|
||||
"item.croptopia.onion_rings": "洋葱圈",
|
||||
"item.croptopia.raisins": "葡萄干",
|
||||
"item.croptopia.doughnut": "甜甜圈",
|
||||
"item.croptopia.popcorn": "爆米花",
|
||||
"item.croptopia.baked_beans": "焗豆",
|
||||
"item.croptopia.toast": "吐司",
|
||||
"item.croptopia.cucumber_salad": "黄瓜沙拉",
|
||||
"item.croptopia.caesar_salad": "凯撒沙拉",
|
||||
"item.croptopia.leafy_salad": "绿叶沙拉",
|
||||
"item.croptopia.fruit_salad": "水果沙拉",
|
||||
"item.croptopia.veggie_salad": "蔬菜沙拉",
|
||||
"item.croptopia.pork_and_beans": "猪肉炖豆",
|
||||
"item.croptopia.oatmeal": "燕麦片",
|
||||
"item.croptopia.leek_soup": "韭葱汤",
|
||||
"item.croptopia.yoghurt": "酸奶",
|
||||
"item.croptopia.saucy_chips": "调味薯片",
|
||||
"item.croptopia.scrambled_eggs": "炒蛋",
|
||||
"item.croptopia.buttered_toast": "黄油吐司",
|
||||
"item.croptopia.toast_with_jam": "蘸酱吐司",
|
||||
"item.croptopia.ham_sandwich": "火腿三明治",
|
||||
"item.croptopia.peanut_butter_and_jam": "花生果酱三明治",
|
||||
"item.croptopia.blt": "培根生菜番茄三明治",
|
||||
"item.croptopia.grilled_cheese": "烤芝士",
|
||||
"item.croptopia.tuna_sandwich": "金枪鱼三明治",
|
||||
"item.croptopia.cheeseburger": "芝士汉堡",
|
||||
"item.croptopia.hamburger": "汉堡",
|
||||
"item.croptopia.tofuburger": "豆腐汉堡",
|
||||
"item.croptopia.pizza": "披萨",
|
||||
"item.croptopia.supreme_pizza": "至尊披萨",
|
||||
"item.croptopia.cheese_pizza": "芝士披萨",
|
||||
"item.croptopia.pineapple_pepperoni_pizza": "夏威夷菠萝红肠披萨",
|
||||
"item.croptopia.lemon_chicken": "柠檬鸡",
|
||||
"item.croptopia.fried_chicken": "炸鸡",
|
||||
"item.croptopia.chicken_and_noodles": "鸡肉面",
|
||||
"item.croptopia.chicken_and_dumplings": "鸡肉饺子",
|
||||
"item.croptopia.tofu_and_dumplings": "豆腐饺子汤",
|
||||
"item.croptopia.spaghetti_squash": "倭瓜意面",
|
||||
"item.croptopia.chicken_and_rice": "鸡米饭",
|
||||
"item.croptopia.taco": "墨西哥卷饼",
|
||||
"item.croptopia.sushi": "寿司",
|
||||
"item.croptopia.apple_pie": "苹果派",
|
||||
"item.croptopia.yam_jam": "山药酱",
|
||||
"item.croptopia.banana_cream_pie": "香蕉奶油派",
|
||||
"item.croptopia.candy_corn": "玉米糖",
|
||||
"item.croptopia.vanilla_ice_cream": "香草冰淇淋",
|
||||
"item.croptopia.strawberry_ice_cream": "草莓冰淇淋",
|
||||
"item.croptopia.mango_ice_cream": "芒果冰淇淋",
|
||||
"item.croptopia.rum_raisin_ice_cream": "朗姆葡萄冰淇淋",
|
||||
"item.croptopia.cherry_pie": "樱桃派",
|
||||
"item.croptopia.cheese_cake": "芝士蛋糕",
|
||||
"item.croptopia.brownies": "布朗尼",
|
||||
"item.croptopia.snicker_doodle": "肉桂饼",
|
||||
"item.croptopia.banana_nut_bread": "香蕉果仁面包",
|
||||
"item.croptopia.almond_brittle": "杏仁脆",
|
||||
"item.croptopia.candied_nuts": "蜜饯",
|
||||
"item.croptopia.cashew_chicken": "腰果鸡丁",
|
||||
"item.croptopia.nougat": "牛轧糖",
|
||||
"item.croptopia.nutty_cookie": "坚果曲奇饼干",
|
||||
"item.croptopia.pecan_ice_cream": "美洲山核桃冰淇淋",
|
||||
"item.croptopia.pecan_pie": "美洲山核桃派",
|
||||
"item.croptopia.protein_bar": "蛋白棒",
|
||||
"item.croptopia.raisin_oatmeal_cookie": "葡萄干燕麦曲奇饼干",
|
||||
"item.croptopia.roasted_nuts": "烤坚果",
|
||||
"item.croptopia.trail_mix": "什锦果仁",
|
||||
"item.croptopia.burrito": "墨西哥卷饼",
|
||||
"item.croptopia.tostada": "托斯它达玉米饼",
|
||||
"item.croptopia.horchata": "奥查塔",
|
||||
"item.croptopia.carnitas": "墨西哥小肉",
|
||||
"item.croptopia.fajitas": "墨西哥肉菜卷饼",
|
||||
"item.croptopia.enchilada": "墨西哥辣肉馅玉米卷",
|
||||
"item.croptopia.churros": "油条",
|
||||
"item.croptopia.tamales": "墨西哥玉米粽",
|
||||
"item.croptopia.tres_leche_cake": "三奶蛋糕",
|
||||
"item.croptopia.stuffed_poblanos": "镶填墨西哥辣椒",
|
||||
"item.croptopia.chili_relleno": "墨西哥爆浆芝士辣椒",
|
||||
"item.croptopia.crema": "咖啡油脂",
|
||||
"item.croptopia.refried_beans": "炸豆泥",
|
||||
"item.croptopia.chimichanga": "墨西哥油煎面卷饼",
|
||||
"item.croptopia.quesadilla": "墨西哥起司薄饼",
|
||||
"item.croptopia.cinnamon": "桂皮",
|
||||
"item.croptopia.corn_husk": "玉米皮",
|
||||
"item.croptopia.whipping_cream": "打发的奶油",
|
||||
"item.croptopia.vanilla_seeds": "香草籽",
|
||||
"item.croptopia.cinnamon_sapling": "桂皮树苗",
|
||||
"item.croptopia.cinnamon_log": "桂皮原木",
|
||||
"item.croptopia.stripped_cinnamon_log": "去皮桂皮原木",
|
||||
"item.croptopia.cinnamon_wood": "桂皮木",
|
||||
"item.croptopia.stripped_cinnamon_wood": "去皮桂皮木",
|
||||
"item.croptopia.shepherds_pie": "牧羊人派",
|
||||
"item.croptopia.beef_wellington": "惠灵顿牛排",
|
||||
"item.croptopia.fish_and_chips": "炸鱼薯条",
|
||||
"item.croptopia.eton_mess": "伊顿麦斯",
|
||||
"item.croptopia.tea": "茶",
|
||||
"item.croptopia.cornish_pasty": "康沃尔馅饼",
|
||||
"item.croptopia.scones": "茶饼",
|
||||
"item.croptopia.figgy_pudding": "无花果布丁",
|
||||
"item.croptopia.treacle_tart": "糖浆挞",
|
||||
"item.croptopia.sticky_toffee_pudding": "太妃布丁",
|
||||
"item.croptopia.trifle": "乳脂松糕",
|
||||
"item.croptopia.water_bottle": "水瓶",
|
||||
"item.croptopia.milk_bottle": "牛奶瓶",
|
||||
"item.croptopia.tea_leaves": "茶叶",
|
||||
"item.croptopia.tea_seed": "茶种子",
|
||||
"item.croptopia.ajvar": "辣椒酱",
|
||||
"item.croptopia.ajvar_toast": "辣椒酱吐司",
|
||||
"item.croptopia.avocado_toast": "鳄梨酱吐司",
|
||||
"item.croptopia.baked_sweet_potato": "甜烤土豆",
|
||||
"item.croptopia.baked_yam": "烤山药",
|
||||
"item.croptopia.beef_stew": "牛肉乱炖",
|
||||
"item.croptopia.beef_stir_fry": "干煸牛肉",
|
||||
"item.croptopia.buttered_green_beans": "黄油炒绿豆",
|
||||
"item.croptopia.cheesy_asparagus": "芦笋芝士",
|
||||
"item.croptopia.chocolate_ice_cream": "巧克力冰淇淋",
|
||||
"item.croptopia.cooked_bacon": "烤培根",
|
||||
"item.croptopia.eggplant_parmesan": "茄子帕尔玛干酪",
|
||||
"item.croptopia.fruit_cake": "水果蛋糕",
|
||||
"item.croptopia.grilled_eggplant": "烧烤茄子",
|
||||
"item.croptopia.kiwi_sorbet": "猕猴桃雪糕",
|
||||
"item.croptopia.knife": "刀",
|
||||
"item.croptopia.lemon_coconut_bar": "柠檬椰子棒",
|
||||
"item.croptopia.nether_wart_stew": "地狱疣炖汤",
|
||||
"item.croptopia.peanut_butter": "花生酱",
|
||||
"item.croptopia.peanut_butter_with_celery": "花生芹菜",
|
||||
"item.croptopia.potato_soup": "土豆汤",
|
||||
"item.croptopia.ratatouille": "蔬菜杂烩",
|
||||
"item.croptopia.bacon": "培根",
|
||||
"item.croptopia.rhubarb_crisp": "大黄酥",
|
||||
"item.croptopia.rhubarb_pie": "大黄派",
|
||||
"item.croptopia.roasted_asparagus": "烤芦笋",
|
||||
"item.croptopia.roasted_radishes": "烤小萝卜",
|
||||
"item.croptopia.roasted_squash": "烤倭瓜",
|
||||
"item.croptopia.roasted_turnips": "烤芜菁",
|
||||
"item.croptopia.steamed_broccoli": "蒸西兰花",
|
||||
"item.croptopia.steamed_green_beans": "蒸绿豆",
|
||||
"item.croptopia.stir_fry": "干煸蔬菜",
|
||||
"item.croptopia.stuffed_artichoke": "填洋蓟",
|
||||
"item.croptopia.toast_sandwich": "吐司三明治",
|
||||
"item.croptopia.roasted_pumpkin_seeds": "烤南瓜子",
|
||||
"item.croptopia.roasted_sunflower_seeds": "瓜子",
|
||||
"item.croptopia.pumpkin_bars": "南瓜条",
|
||||
"item.croptopia.corn_bread": "玉米面包",
|
||||
"item.croptopia.pumpkin_soup": "南瓜汤",
|
||||
"item.croptopia.meringue": "蛋白酥",
|
||||
"item.croptopia.cabbage_roll": "菜卷",
|
||||
"item.croptopia.borscht": "罗宋汤",
|
||||
"item.croptopia.goulash": "匈牙利红烩牛肉",
|
||||
"item.croptopia.beetroot_salad": "甜菜沙拉",
|
||||
"item.croptopia.candied_kumquats": "金桔蜜饯",
|
||||
"item.croptopia.shrimp": "虾",
|
||||
"item.croptopia.tuna": "金枪鱼",
|
||||
"item.croptopia.calamari": "鱿鱼",
|
||||
"item.croptopia.crab": "螃蟹",
|
||||
"item.croptopia.roe": "鱼子",
|
||||
"item.croptopia.clam": "蛤蜊",
|
||||
"item.croptopia.oyster": "牡蛎",
|
||||
"item.croptopia.cooked_shrimp": "煮大虾",
|
||||
"item.croptopia.cooked_tuna": "煮金枪鱼",
|
||||
"item.croptopia.cooked_calamari": "煮鱿鱼",
|
||||
"item.croptopia.steamed_crab": "清蒸螃蟹",
|
||||
"item.croptopia.glowing_calamari": "发光的鱿鱼须",
|
||||
"item.croptopia.sea_lettuce": "海莴苣",
|
||||
"item.croptopia.deep_fried_shrimp": "炸虾",
|
||||
"item.croptopia.tuna_roll": "金枪鱼卷",
|
||||
"item.croptopia.fried_calamari": "炸鱿鱼",
|
||||
"item.croptopia.crab_legs": "炒蟹腿",
|
||||
"item.croptopia.steamed_clams": "蒸蛤蜊",
|
||||
"item.croptopia.grilled_oysters": "烤牡蛎",
|
||||
"item.croptopia.anchovy": "鳀鱼",
|
||||
"item.croptopia.cooked_anchovy": "熟鳀鱼",
|
||||
"item.croptopia.anchovy_pizza": "鳀鱼披萨",
|
||||
"item.croptopia.mashed_potatoes": "土豆泥",
|
||||
"item.croptopia.baked_crepes": "烤可丽饼",
|
||||
"item.croptopia.cinnamon_roll": "肉桂卷",
|
||||
"item.croptopia.croque_madame": "悲伤鸡明治",
|
||||
"item.croptopia.croque_monsieur": "开心鸡明治",
|
||||
"item.croptopia.dauphine_potatoes": "王妃土豆",
|
||||
"item.croptopia.fried_frog_legs": "炸青蛙腿",
|
||||
"item.croptopia.frog_legs": "青蛙腿",
|
||||
"item.croptopia.ground_pork": "猪肉末",
|
||||
"item.croptopia.hashed_brown": "薯饼",
|
||||
"item.croptopia.macaron": "马卡龙",
|
||||
"item.croptopia.quiche": "法式咸派",
|
||||
"item.croptopia.sausage": "香肠",
|
||||
"item.croptopia.sunny_side_eggs": "太阳蛋",
|
||||
"item.croptopia.sweet_crepes": "甜可丽饼",
|
||||
"item.croptopia.the_big_breakfast": "丰盛早餐",
|
||||
"item.croptopia.food_press": "多功能食品压榨机",
|
||||
"item.croptopia.frying_pan": "平底锅",
|
||||
"item.croptopia.cooking_pot": "烹饪锅",
|
||||
"item.croptopia.mortar_and_pestle": "研钵",
|
||||
"item.croptopia.guide": "Croptopia",
|
||||
"item.croptopia.salt_ore": "盐矿石",
|
||||
"block.croptopia.salt_ore": "盐矿石",
|
||||
"block.croptopia.apple_crop": "苹果作物",
|
||||
"block.croptopia.banana_crop": "香蕉作物",
|
||||
"block.croptopia.orange_crop": "橙子作物",
|
||||
"block.croptopia.persimmon_crop": "柿子作物",
|
||||
"block.croptopia.plum_crop": "李子作物",
|
||||
"block.croptopia.cherry_crop": "樱桃作物",
|
||||
"block.croptopia.lemon_crop": "柠檬作物",
|
||||
"block.croptopia.grapefruit_crop": "葡萄柚作物",
|
||||
"block.croptopia.kumquat_crop": "金橘作物",
|
||||
"block.croptopia.peach_crop": "桃子作物",
|
||||
"block.croptopia.coconut_crop": "椰子作物",
|
||||
"block.croptopia.nutmeg_crop": "肉豆蔻作物",
|
||||
"block.croptopia.fig_crop": "无花果作物",
|
||||
"block.croptopia.nectarine_crop": "油桃作物",
|
||||
"block.croptopia.mango_crop": "芒果作物",
|
||||
"block.croptopia.dragonfruit_crop": "火龙果作物",
|
||||
"block.croptopia.starfruit_crop": "杨桃作物",
|
||||
"block.croptopia.avocado_crop": "鳄梨作物",
|
||||
"block.croptopia.apricot_crop": "杏子作物",
|
||||
"block.croptopia.pear_crop": "梨作物",
|
||||
"block.croptopia.lime_crop": "青柠作物",
|
||||
"block.croptopia.date_crop": "海枣作物",
|
||||
"block.croptopia.almond_crop": "扁桃仁作物",
|
||||
"block.croptopia.cashew_crop": "腰果作物",
|
||||
"block.croptopia.pecan_crop": "碧根果作物",
|
||||
"block.croptopia.walnut_crop": "核桃作物",
|
||||
"block.croptopia.artichoke_crop": "洋蓟作物",
|
||||
"block.croptopia.asparagus_crop": "芦笋作物",
|
||||
"block.croptopia.barley_crop": "大麦作物",
|
||||
"block.croptopia.basil_crop": "罗勒作物",
|
||||
"block.croptopia.bellpepper_crop": "甜椒作物",
|
||||
"block.croptopia.blackbean_crop": "黑豆作物",
|
||||
"block.croptopia.blackberry_crop": "黑莓作物",
|
||||
"block.croptopia.blueberry_crop": "蓝莓作物",
|
||||
"block.croptopia.broccoli_crop": "西兰花作物",
|
||||
"block.croptopia.cabbage_crop": "卷心菜作物",
|
||||
"block.croptopia.cantaloupe_crop": "哈密瓜作物",
|
||||
"block.croptopia.cauliflower_crop": "花椰菜作物",
|
||||
"block.croptopia.celery_crop": "芹菜作物",
|
||||
"block.croptopia.coffee_crop": "咖啡作物",
|
||||
"block.croptopia.corn_crop": "玉米作物",
|
||||
"block.croptopia.cranberry_crop": "蔓越莓作物",
|
||||
"block.croptopia.cucumber_crop": "黄瓜作物",
|
||||
"block.croptopia.currant_crop": "醋栗作物",
|
||||
"block.croptopia.eggplant_crop": "茄子作物",
|
||||
"block.croptopia.elderberry_crop": "接骨木作物",
|
||||
"block.croptopia.garlic_crop": "大蒜作物",
|
||||
"block.croptopia.ginger_crop": "姜作物",
|
||||
"block.croptopia.grape_crop": "葡萄作物",
|
||||
"block.croptopia.greenbean_crop": "绿豆作物",
|
||||
"block.croptopia.greenonion_crop": "大葱作物",
|
||||
"block.croptopia.honeydew_crop": "蜜瓜作物",
|
||||
"block.croptopia.hops_crop": "蛇麻花作物",
|
||||
"block.croptopia.kale_crop": "羽衣甘蓝作物",
|
||||
"block.croptopia.kiwi_crop": "猕猴桃作物",
|
||||
"block.croptopia.leek_crop": "韭葱作物",
|
||||
"block.croptopia.lettuce_crop": "生菜作物",
|
||||
"block.croptopia.mustard_crop": "芥菜作物",
|
||||
"block.croptopia.oat_crop": "燕麦作物",
|
||||
"block.croptopia.olive_crop": "橄榄作物",
|
||||
"block.croptopia.onion_crop": "洋葱作物",
|
||||
"block.croptopia.peanut_crop": "花生作物",
|
||||
"block.croptopia.chile_pepper_crop": "辣椒作物",
|
||||
"block.croptopia.pineapple_crop": "菠萝作物",
|
||||
"block.croptopia.radish_crop": "小萝卜作物",
|
||||
"block.croptopia.raspberry_crop": "树莓作物",
|
||||
"block.croptopia.rhubarb_crop": "大黄作物",
|
||||
"block.croptopia.rice_crop": "大米作物",
|
||||
"block.croptopia.rutabaga_crop": "芜菁甘蓝作物",
|
||||
"block.croptopia.saguaro_crop": "巨人柱作物",
|
||||
"block.croptopia.soybean_crop": "黄豆作物",
|
||||
"block.croptopia.spinach_crop": "菠菜作物",
|
||||
"block.croptopia.squash_crop": "倭瓜作物",
|
||||
"block.croptopia.strawberry_crop": "草莓作物",
|
||||
"block.croptopia.sweetpotato_crop": "红薯作物",
|
||||
"block.croptopia.tomatillo_crop": "酸浆果作物",
|
||||
"block.croptopia.tomato_crop": "番茄作物",
|
||||
"block.croptopia.turmeric_crop": "姜黄作物",
|
||||
"block.croptopia.turnip_crop": "芜菁作物",
|
||||
"block.croptopia.yam_crop": "山药作物",
|
||||
"block.croptopia.zucchini_crop": "西葫芦作物",
|
||||
"block.croptopia.pepper_crop": "胡椒作物",
|
||||
"block.croptopia.vanilla_crop": "香草作物",
|
||||
"block.croptopia.tea_crop": "茶作物",
|
||||
"block.croptopia.apple_sapling": "苹果树苗",
|
||||
"block.croptopia.banana_sapling": "香蕉树苗",
|
||||
"block.croptopia.orange_sapling": "橙子树苗",
|
||||
"block.croptopia.persimmon_sapling": "柿子树苗",
|
||||
"block.croptopia.plum_sapling": "李子树苗",
|
||||
"block.croptopia.cherry_sapling": "樱桃树苗",
|
||||
"block.croptopia.lemon_sapling": "柠檬树苗",
|
||||
"block.croptopia.grapefruit_sapling": "葡萄柚树苗",
|
||||
"block.croptopia.kumquat_sapling": "金橘树苗",
|
||||
"block.croptopia.peach_sapling": "桃子树苗",
|
||||
"block.croptopia.coconut_sapling": "椰子树苗",
|
||||
"block.croptopia.nutmeg_sapling": "肉豆蔻树苗",
|
||||
"block.croptopia.fig_sapling": "无花果树苗",
|
||||
"block.croptopia.nectarine_sapling": "油桃树苗",
|
||||
"block.croptopia.mango_sapling": "芒果树苗",
|
||||
"block.croptopia.dragonfruit_sapling": "火龙果树苗",
|
||||
"block.croptopia.starfruit_sapling": "杨桃树苗",
|
||||
"block.croptopia.avocado_sapling": "鳄梨树苗",
|
||||
"block.croptopia.apricot_sapling": "杏子树苗",
|
||||
"block.croptopia.pear_sapling": "梨树苗",
|
||||
"block.croptopia.lime_sapling": "青柠树苗",
|
||||
"block.croptopia.date_sapling": "海枣树苗",
|
||||
"block.croptopia.almond_sapling": "扁桃仁树苗",
|
||||
"block.croptopia.cashew_sapling": "腰果树苗",
|
||||
"block.croptopia.pecan_sapling": "碧根果树苗",
|
||||
"block.croptopia.walnut_sapling": "核桃树苗",
|
||||
"block.croptopia.cinnamon_sapling": "桂皮树苗",
|
||||
"block.croptopia.cinnamon_log": "桂皮原木",
|
||||
"block.croptopia.stripped_cinnamon_log": "去皮桂皮原木",
|
||||
"block.croptopia.cinnamon_wood": "桂皮木",
|
||||
"block.croptopia.stripped_cinnamon_wood": "去皮桂皮木",
|
||||
"advancements.croptopia.root.description": " '不劳者不得食' ",
|
||||
"advancements.croptopia.getseed.description": "破坏一个野生植物来获得种子!",
|
||||
"advancements.croptopia.getseed.title": "额外的种子",
|
||||
"advancements.croptopia.getsapling.title": "森林,土地",
|
||||
"advancements.croptopia.getsapling.description": "收集一些果实来合成果树",
|
||||
"advancements.croptopia.pot.title": "进锅!",
|
||||
"advancements.croptopia.pot.description": "制作一个烹饪锅",
|
||||
"advancements.croptopia.frying_pan.title": "并不能当成武器",
|
||||
"advancements.croptopia.frying_pan.description": "制作一个平底锅",
|
||||
"advancements.croptopia.food_press.title": "搅拌",
|
||||
"advancements.croptopia.food_press.description": "制作一个多功能食品压榨机",
|
||||
"advancements.croptopia.mortar_and_pestle.title": "致命武器——对食材来说",
|
||||
"advancements.croptopia.mortar_and_pestle.description": "制作一个研钵",
|
||||
"advancements.croptopia.eatbig.title": "一锅装不下",
|
||||
"advancements.croptopia.eatbig.description": "食用任意一种由五种或更多材料烹饪的食物",
|
||||
"advancements.croptopia.eatcrafted.title": "丰盛的食物",
|
||||
"advancements.croptopia.eatcrafted.description": "食用任意一种食物",
|
||||
"advancements.croptopia.gather_desert.title": "尚未风干的种子",
|
||||
"advancements.croptopia.gather_desert.description": "收集所有来自沙漠群系的种子",
|
||||
"advancements.croptopia.gather_savanna.title": "燥热的种子",
|
||||
"advancements.croptopia.gather_savanna.description": "收集所有来自热带草原群系的种子",
|
||||
"advancements.croptopia.gather_forest.title": "树苗Lite",
|
||||
"advancements.croptopia.gather_forest.description": "收集所有来自森林群系的种子",
|
||||
"advancements.croptopia.gather_jungle.title": "野蛮的种子",
|
||||
"advancements.croptopia.gather_jungle.description": "收集所有来自丛林群系的种子",
|
||||
"advancements.croptopia.gather_plains.title": "平凡的种子",
|
||||
"advancements.croptopia.gather_plains.description": "收集所有来自平原群系的种子",
|
||||
"advancements.croptopia.gather_swamp.title": "水润的种子",
|
||||
"advancements.croptopia.gather_swamp.description": "收集所有来自沼泽群系的种子",
|
||||
"advancements.croptopia.gather_all.title": "种质库",
|
||||
"advancements.croptopia.gather_all.description": "集齐所有种子",
|
||||
"advancements.croptopia.getdrinks.title": "花哨的水",
|
||||
"advancements.croptopia.getdrinks.description": "制作任意一种饮品",
|
||||
"advancements.croptopia.gather_drinks.title": "单调鸡尾酒",
|
||||
"advancements.croptopia.gather_drinks.description": "喝下所有饮品",
|
||||
"advancements.croptopia.gather_food.title": "美食评论家",
|
||||
"advancements.croptopia.gather_food.description": "有啥吃啥",
|
||||
"advancements.croptopia.knife.title": "铁火把!",
|
||||
"advancements.croptopia.knife.description": "制作一把刀",
|
||||
"advancements.croptopia.tofu.title": "伪装成肉的豆制品",
|
||||
"advancements.croptopia.tofu.description": "制作豆腐",
|
||||
"advancements.croptopia.cinnamon.title": "奇妙美味棒",
|
||||
"advancements.croptopia.cinnamon.description": "在丛林中给桂皮木剥皮",
|
||||
"advancements.croptopia.salt.title": "全能——除了提高FPS",
|
||||
"advancements.croptopia.salt.description": "在河流的深处找到盐",
|
||||
"advancements.croptopia.gather_tree_all.title": "树苗追寻者",
|
||||
"advancements.croptopia.gather_tree_all.description": "收集所有Croptopia中的树苗",
|
||||
"advancements.croptopia.gather_tree_forest.title": "你的折价树苗",
|
||||
"advancements.croptopia.gather_tree_forest.description": "收集所有来自森林群系及其变种的树苗",
|
||||
"advancements.croptopia.gather_tree_jungle.title": "野生的巨大西兰花",
|
||||
"advancements.croptopia.gather_tree_jungle.description": "收集所有来自丛林群系及其变种的树苗",
|
||||
"advancements.croptopia.gather_tree_plains.title": "独特的灌木",
|
||||
"advancements.croptopia.gather_tree_plains.description": "收集所有来自平原群系及其变种的树苗",
|
||||
"advancements.croptopia.gather_tree_dark_forest.title": "黑暗之树",
|
||||
"advancements.croptopia.gather_tree_dark_forest.description": "收集所有来自黑森林群系及其变种的树苗",
|
||||
"itemGroup.croptopia.croptopia": "Croptopia",
|
||||
"itemGroup.croptopia": "Croptopia",
|
||||
"info.croptopia.seed": "这个种子将会在以下类别的群系中掉落:",
|
||||
"tag.c.crops": "作物",
|
||||
"tag.c.saplings": "树苗",
|
||||
"tag.c.vegetables": "蔬菜",
|
||||
"tag.c.nuts": "坚果",
|
||||
"tag.c.fruits": "水果",
|
||||
"tag.c.grain": "谷物",
|
||||
"tag.c.seeds": "种子",
|
||||
"tag.c.jams": "果酱",
|
||||
"tag.c.juices": "果汁",
|
||||
"tag.c.tools.knives": "刀具",
|
||||
"tag.croptopia.beef_mutton": "牛羊肉",
|
||||
"tag.croptopia.meat_replacements": "肉类替代品",
|
||||
"tag.croptopia.nuts": "坚果",
|
||||
"tag.croptopia.chicken_replacements": "鸡肉替代品",
|
||||
"tag.croptopia.pork_replacements": "猪肉替代品",
|
||||
"tag.croptopia.fishes": "鱼类",
|
||||
"tag.croptopia.peppers": "辣椒",
|
||||
"tag.croptopia.sauces": "酱料",
|
||||
"tag.croptopia.melons": "瓜类",
|
||||
"tag.croptopia.beef_replacements": "牛肉替代品",
|
||||
"tag.croptopia.flourable": "可制粉",
|
||||
"tag.croptopia.cinnamon_logs": "肉桂木"
|
||||
}
|
73
lang_20241209/zh_cn/culinaire.json
Normal file
73
lang_20241209/zh_cn/culinaire.json
Normal file
@ -0,0 +1,73 @@
|
||||
{
|
||||
"block.culinaire.lettuce": "生菜",
|
||||
"block.culinaire.tomatoes": "番茄",
|
||||
"block.culinaire.milk_cauldron": "装有牛奶的炼药锅",
|
||||
"block.culinaire.cheese_cauldron": "奶酪炼药锅",
|
||||
"block.culinaire.cheese_wheel": "奶酪轮",
|
||||
"block.culinaire.kettle": "水壶",
|
||||
"block.culinaire.dark_chocolate_cauldron": "黑巧克力炼药锅",
|
||||
"block.culinaire.milk_chocolate_cauldron": "牛奶巧克力炼药锅",
|
||||
"block.culinaire.white_chocolate_cauldron": "白巧克力炼药锅",
|
||||
"item.culinaire.cheese": "奶酪",
|
||||
"item.culinaire.lettuce": "生菜",
|
||||
"item.culinaire.lettuce_seeds": "生菜种子",
|
||||
"item.culinaire.tomato": "番茄",
|
||||
"item.culinaire.chocolate": "巧克力",
|
||||
"item.culinaire.marshmallow": "棉花糖",
|
||||
"item.culinaire.chouquette": "法式小泡芙",
|
||||
"item.culinaire.apple_pie": "苹果派",
|
||||
"item.culinaire.sweet_berry_pie": "甜浆果派",
|
||||
"item.culinaire.salad": "沙拉",
|
||||
"item.culinaire.mashed_potatoes": "土豆泥",
|
||||
"item.culinaire.sandwich": "三明治",
|
||||
"item.culinaire.marshmallow_on_a_stick": "棉花糖棍",
|
||||
"item.culinaire.toasty_marshmallow_on_a_stick": "烤棉花糖棍",
|
||||
"item.culinaire.golden_marshmallow_on_a_stick": "金棉花糖棍",
|
||||
"item.culinaire.burnt_marshmallow_on_a_stick": "焦棉花糖棍",
|
||||
"item.culinaire.milk_bottle": "鲜奶瓶",
|
||||
"item.culinaire.tea_bag": "茶包",
|
||||
"item.culinaire.tea_bottle": "茶瓶",
|
||||
"item.culinaire.dark_chocolate_bottle": "黑巧克力瓶",
|
||||
"item.culinaire.milk_chocolate_bottle": "牛奶巧克力瓶",
|
||||
"item.culinaire.white_chocolate_bottle": "白巧克力瓶",
|
||||
"item.culinaire.dark_chocolate_bar": "黑巧克力棒",
|
||||
"item.culinaire.milk_chocolate_bar": "牛奶巧克力棒",
|
||||
"item.culinaire.white_chocolate_bar": "白巧克力棒",
|
||||
"item.culinaire.dark_chocolate_pie": "黑巧克力派",
|
||||
"item.culinaire.milk_chocolate_pie": "牛奶巧克力派",
|
||||
"item.culinaire.white_chocolate_pie": "白巧克力派",
|
||||
"effect.culinaire.foresight": "远见",
|
||||
"effect.culinaire.fulfillment": "满足",
|
||||
"effect.culinaire.guard": "守护",
|
||||
"effect.culinaire.poison_resistance": "抗毒",
|
||||
"container.culinaire.kettle": "水壶",
|
||||
"tea_type.culinaire.bitter.normal": "苦",
|
||||
"tea_type.culinaire.bitter.strong": "非常苦",
|
||||
"tea_type.culinaire.bitter.weak": "略苦",
|
||||
"tea_type.culinaire.gloopy.normal": "稠",
|
||||
"tea_type.culinaire.gloopy.strong": "非常稠",
|
||||
"tea_type.culinaire.gloopy.weak": "略稠",
|
||||
"tea_type.culinaire.salty.normal": "咸",
|
||||
"tea_type.culinaire.salty.strong": "非常咸",
|
||||
"tea_type.culinaire.salty.weak": "略咸",
|
||||
"tea_type.culinaire.shining.normal": "闪光",
|
||||
"tea_type.culinaire.shining.strong": "耀光",
|
||||
"tea_type.culinaire.shining.weak": "微光",
|
||||
"tea_type.culinaire.sour.normal": "酸",
|
||||
"tea_type.culinaire.sour.strong": "非常酸",
|
||||
"tea_type.culinaire.sour.weak": "略酸",
|
||||
"tea_type.culinaire.sweet.normal": "甜",
|
||||
"tea_type.culinaire.sweet.strong": "非常甜",
|
||||
"tea_type.culinaire.sweet.weak": "略甜",
|
||||
"tea_type.culinaire.umami.normal": "鲜",
|
||||
"tea_type.culinaire.umami.strong": "非常鲜",
|
||||
"tea_type.culinaire.umami.weak": "略鲜",
|
||||
"subtitles.culinaire.block.kettle.brew": "水壶:哨鸣",
|
||||
"subtitles.culinaire.item.tea_bottle.fill": "茶瓶:装满",
|
||||
"stat.culinaire.interact_with_kettle": "与水壶交互",
|
||||
"rei_category.culinaire.tea_brewing": "茶叶冲泡",
|
||||
"text.autoconfig.culinaire.title": "Culinaire 配置",
|
||||
"text.autoconfig.culinaire.category.features": "功能",
|
||||
"text.autoconfig.culinaire.option.features.canDrinkMilkBucket": "允许直接饮用牛奶桶",
|
||||
"text.autoconfig.culinaire.option.features.milkBottlesMaxCount": "牛奶瓶最大堆叠数量"
|
||||
}
|
162
lang_20241209/zh_cn/ecologics.json
Normal file
162
lang_20241209/zh_cn/ecologics.json
Normal file
@ -0,0 +1,162 @@
|
||||
{
|
||||
"block.ecologics.coconut": "椰子",
|
||||
"block.ecologics.hanging_coconut": "悬挂的椰子",
|
||||
"block.ecologics.coconut_button": "椰木按钮",
|
||||
"block.ecologics.coconut_door": "椰木门",
|
||||
"block.ecologics.coconut_fence": "椰木栅栏",
|
||||
"block.ecologics.coconut_fence_gate": "椰木栅栏门",
|
||||
"block.ecologics.coconut_seedling": "椰木树苗",
|
||||
"block.ecologics.coconut_leaves": "椰木树叶",
|
||||
"block.ecologics.coconut_log": "椰木原木",
|
||||
"block.ecologics.coconut_planks": "椰木木板",
|
||||
"block.ecologics.coconut_pressure_plate": "椰木压力板",
|
||||
"block.ecologics.coconut_slab": "椰木台阶",
|
||||
"block.ecologics.coconut_stairs": "椰木楼梯",
|
||||
"block.ecologics.coconut_trapdoor": "椰木活板门",
|
||||
"block.ecologics.coconut_wood": "椰木",
|
||||
"block.ecologics.seashell": "贝壳",
|
||||
"block.ecologics.seashell_block": "贝壳块",
|
||||
"block.ecologics.seashell_tile_slab": "贝壳台阶",
|
||||
"block.ecologics.seashell_tile_stairs": "贝壳砖楼梯",
|
||||
"block.ecologics.seashell_tile_wall": "贝壳砖墙",
|
||||
"block.ecologics.seashell_tiles": "贝壳砖",
|
||||
"block.ecologics.sandcastle": "沙堡",
|
||||
"block.ecologics.stripped_coconut_log": "去皮椰木原木",
|
||||
"block.ecologics.stripped_coconut_wood": "去皮椰木",
|
||||
"block.ecologics.coconut_sign": "椰木告示牌",
|
||||
"block.ecologics.coconut_wall_sign": "墙上的椰木告示牌",
|
||||
"block.ecologics.prickly_pear": "仙人掌果",
|
||||
"block.ecologics.snow_brick_slab": "雪砖台阶",
|
||||
"block.ecologics.snow_brick_stairs": "雪砖楼梯",
|
||||
"block.ecologics.snow_brick_wall": "雪砖墙",
|
||||
"block.ecologics.snow_bricks": "雪砖",
|
||||
"block.ecologics.ice_brick_slab": "冰砖台阶",
|
||||
"block.ecologics.ice_brick_stairs": "冰砖楼梯",
|
||||
"block.ecologics.ice_brick_wall": "冰砖墙",
|
||||
"block.ecologics.ice_bricks": "冰砖",
|
||||
"block.ecologics.pot": "锅",
|
||||
"block.ecologics.thin_ice": "薄冰",
|
||||
"block.ecologics.walnut_button": "核桃木按钮",
|
||||
"block.ecologics.walnut_door": "核桃木门",
|
||||
"block.ecologics.walnut_fence": "核桃木栅栏",
|
||||
"block.ecologics.walnut_fence_gate": "核桃木栅栏门",
|
||||
"block.ecologics.walnut_leaves": "核桃树叶",
|
||||
"block.ecologics.walnut_log": "核桃原木",
|
||||
"block.ecologics.walnut_planks": "核桃木板",
|
||||
"block.ecologics.walnut_pressure_plate": "核桃木压力板",
|
||||
"block.ecologics.walnut_slab": "核桃木台阶",
|
||||
"block.ecologics.walnut_stairs": "核桃木楼梯",
|
||||
"block.ecologics.walnut_trapdoor": "核桃木活板门",
|
||||
"block.ecologics.walnut_wood": "核桃木",
|
||||
"block.ecologics.stripped_walnut_log": "去皮核桃原木",
|
||||
"block.ecologics.stripped_walnut_wood": "去皮核桃木",
|
||||
"block.ecologics.walnut_sign": "核桃木告示牌",
|
||||
"block.ecologics.walnut_wall_sign": "墙上的核桃木告示牌",
|
||||
"block.ecologics.walnut_sapling": "核桃木树苗",
|
||||
"block.ecologics.azalea_button": "杜鹃木按钮",
|
||||
"block.ecologics.azalea_door": "杜鹃木门",
|
||||
"block.ecologics.azalea_fence": "杜鹃木栅栏",
|
||||
"block.ecologics.azalea_fence_gate": "杜鹃木栅栏门",
|
||||
"block.ecologics.azalea_flower": "杜鹃花",
|
||||
"block.ecologics.azalea_log": "杜鹃原木",
|
||||
"block.ecologics.azalea_planks": "杜鹃木板",
|
||||
"block.ecologics.azalea_pressure_plate": "杜鹃木压力板",
|
||||
"block.ecologics.azalea_slab": "杜鹃木台阶",
|
||||
"block.ecologics.azalea_stairs": "杜鹃木楼梯",
|
||||
"block.ecologics.azalea_trapdoor": "杜鹃木活板门",
|
||||
"block.ecologics.azalea_wood": "杜鹃木",
|
||||
"block.ecologics.flowering_azalea_door": "盛开的杜鹃木门",
|
||||
"block.ecologics.flowering_azalea_fence": "盛开的杜鹃木栅栏",
|
||||
"block.ecologics.flowering_azalea_fence_gate": "盛开的杜鹃木栅栏门",
|
||||
"block.ecologics.flowering_azalea_log": "盛开的杜鹃原木",
|
||||
"block.ecologics.flowering_azalea_planks": "盛开的杜鹃木板",
|
||||
"block.ecologics.flowering_azalea_slab": "盛开的杜鹃木台阶",
|
||||
"block.ecologics.flowering_azalea_stairs": "盛开的杜鹃木楼梯",
|
||||
"block.ecologics.flowering_azalea_trapdoor": "盛开的杜鹃木活板门",
|
||||
"block.ecologics.flowering_azalea_wood": "盛开的杜鹃木",
|
||||
"block.ecologics.surface_moss": "表面苔藓",
|
||||
"block.ecologics.moss_layer": "藓层",
|
||||
"block.ecologics.stripped_azalea_log": "去皮杜鹃原木",
|
||||
"block.ecologics.stripped_azalea_wood": "去皮杜鹃木",
|
||||
"block.ecologics.azalea_sign": "杜鹃木告示牌",
|
||||
"block.ecologics.azalea_wall_sign": "墙上的杜鹃木告示牌",
|
||||
"block.ecologics.flowering_azalea_sign": "盛开的杜鹃木告示牌",
|
||||
"block.ecologics.flowering_azalea_wall_sign": "墙上的盛开的杜鹃木告示牌",
|
||||
"block.ecologics.potted_walnut_sapling": "核桃树苗盆栽",
|
||||
"block.ecologics.potted_coconut_seedling": "椰子盆栽",
|
||||
"block.ecologics.potted_azalea_flower": "杜鹃花盆栽",
|
||||
"death.attack.coconut": "%1$s 被椰子砸到了",
|
||||
"death.attack.coconut.player": "%1$s 在和 %2$s 战斗时被掉落的椰子砸到了",
|
||||
"ecologics.subtitles.block.coconut.smash": "椰子重击",
|
||||
"ecologics.subtitles.block.thin_ice.crack": "薄冰开裂",
|
||||
"ecologics.subtitles.entity.coconut_crab.ambient": "椰子蟹:嘎吱声",
|
||||
"ecologics.subtitles.entity.coconut_crab.death": "椰子蟹:死亡",
|
||||
"ecologics.subtitles.entity.coconut_crab.hurt": "椰子蟹:受伤",
|
||||
"ecologics.subtitles.entity.penguin.ambient": "企鹅:大叫",
|
||||
"ecologics.subtitles.entity.penguin.death": "企鹅:死亡",
|
||||
"ecologics.subtitles.entity.penguin.hurt": "企鹅:受伤",
|
||||
"ecologics.subtitles.entity.squirrel.ambient": "松鼠:嗅探",
|
||||
"ecologics.subtitles.entity.squirrel.death": "松鼠:死亡",
|
||||
"ecologics.subtitles.entity.squirrel.hurt": "松鼠:受伤",
|
||||
"ecologics.subtitles.entity.camel.ambient": "骆驼:吼叫",
|
||||
"ecologics.subtitles.entity.camel.angry": "骆驼:怒吼",
|
||||
"ecologics.subtitles.entity.camel.chest": "骆驼:装备箱子",
|
||||
"ecologics.subtitles.entity.camel.death": "骆驼:死亡",
|
||||
"ecologics.subtitles.entity.camel.eat": "骆驼:进食",
|
||||
"ecologics.subtitles.entity.camel.hurt": "骆驼:受伤",
|
||||
"ecologics.subtitles.entity.camel.step": "骆驼:脚步声",
|
||||
"entity.ecologics.coconut_crab": "椰子蟹",
|
||||
"entity.ecologics.camel": "骆驼",
|
||||
"entity.ecologics.penguin": "企鹅",
|
||||
"entity.ecologics.squirrel": "松鼠",
|
||||
"entity.ecologics.boat": "船",
|
||||
"effect.ecologics.slippery": "滑动",
|
||||
"effect.ecologics.slippery.description": "使受影响的实体在所有方块上像在冰面上一样滑动。",
|
||||
"item.ecologics.coconut_crab_spawn_egg": "椰子蟹刷怪蛋",
|
||||
"item.ecologics.camel_spawn_egg": "骆驼刷怪蛋",
|
||||
"item.ecologics.penguin_spawn_egg": "企鹅刷怪蛋",
|
||||
"item.ecologics.squirrel_spawn_egg": "松鼠刷怪蛋",
|
||||
"item.ecologics.coconut_slice": "椰子片",
|
||||
"item.ecologics.coconut_husk": "椰壳",
|
||||
"item.ecologics.crab_claw": "蟹钳",
|
||||
"item.ecologics.crab_meat": "蟹肉",
|
||||
"item.ecologics.tropical_stew": "热带炖菜",
|
||||
"item.ecologics.music_disc_coconut": "音乐唱片",
|
||||
"item.ecologics.coconut_boat": "椰木船",
|
||||
"item.ecologics.walnut_boat": "核桃木船",
|
||||
"item.ecologics.azalea_boat": "杜鹃木船",
|
||||
"item.ecologics.flowering_azalea_boat": "盛开的杜鹃木船",
|
||||
"item.ecologics.music_disc_coconut.desc": "BooWho - coconut",
|
||||
"item.ecologics.prickly_pear": "仙人掌果",
|
||||
"item.ecologics.cooked_prickly_pear": "熟仙人掌果",
|
||||
"item.ecologics.penguin_feather": "企鹅羽毛",
|
||||
"item.minecraft.potion.effect.sliding": "滑动药水",
|
||||
"item.minecraft.splash_potion.effect.sliding": "喷溅型滑动药水",
|
||||
"item.minecraft.lingering_potion.effect.sliding": "滞留型滑动药水",
|
||||
"item.minecraft.tipped_arrow.effect.sliding": "滑动之箭",
|
||||
"item.ecologics.walnut": "核桃",
|
||||
"itemGroup.ecologics.tab": "丰富的生态",
|
||||
"advancements.husbandry.sandcastle.title": "沙地堡垒",
|
||||
"advancements.husbandry.sandcastle.description": "建造一座沙堡来保护海龟蛋",
|
||||
"advancements.husbandry.breed_penguin.title": "《快乐的大脚》",
|
||||
"advancements.husbandry.breed_penguin.description": "繁殖企鹅,从企鹅宝宝身上获得一根企鹅羽毛。",
|
||||
"text.autoconfig.ecologics.title": "丰富的生态配置",
|
||||
"text.autoconfig.ecologics.option.beach": "沙滩生物群系",
|
||||
"text.autoconfig.ecologics.option.desert": "沙漠生物群系",
|
||||
"text.autoconfig.ecologics.option.snowy": "积雪生物群系",
|
||||
"text.autoconfig.ecologics.option.plains": "平原生物群系",
|
||||
"text.autoconfig.ecologics.option.lushCaves": "繁茂洞穴生物群系",
|
||||
"text.autoconfig.ecologics.option.beach.coconutCrabSpawnChance": "破坏椰子时有多大概率(百分比)生成椰子蟹?",
|
||||
"text.autoconfig.ecologics.option.beach.generateCoconutTrees": "生成椰子树",
|
||||
"text.autoconfig.ecologics.option.beach.generateSeashells": "生成贝壳",
|
||||
"text.autoconfig.ecologics.option.desert.spawnCamels": "生成骆驼",
|
||||
"text.autoconfig.ecologics.option.desert.generatePricklyPears": "在自然生成的仙人掌上生成仙人掌果",
|
||||
"text.autoconfig.ecologics.option.desert.pricklyPearGrowthChance": "仙人掌达到最大高度时,有多大概率(百分比)生成仙人掌果?",
|
||||
"text.autoconfig.ecologics.option.desert.generateDesertRuins": "生成沙漠废墟",
|
||||
"text.autoconfig.ecologics.option.snowy.spawnPenguins": "生成企鹅",
|
||||
"text.autoconfig.ecologics.option.snowy.generateThinIcePatches": "生成薄冰区",
|
||||
"text.autoconfig.ecologics.option.plains.spawnSquirrels": "生成松鼠",
|
||||
"text.autoconfig.ecologics.option.plains.generateWalnutTrees": "生成核桃树",
|
||||
"text.autoconfig.ecologics.option.lushCaves.replaceAzaleaTree": "用杜鹃原木代替原版杜鹃树上的橡木原木",
|
||||
"text.autoconfig.ecologics.option.lushCaves.generateSurfaceMoss": "生成地表苔藓"
|
||||
}
|
35
lang_20241209/zh_cn/enchantmentsplus.json
Normal file
35
lang_20241209/zh_cn/enchantmentsplus.json
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
"enchantment.enchantmentsplus.frostbite": "寒霜之牙",
|
||||
"enchantment.enchantmentsplus.frostbite.desc": "被击中的目标会被给予缓慢效果",
|
||||
"enchantment.enchantmentsplus.lunarsight": "月魔之眼",
|
||||
"enchantment.enchantmentsplus.lunarsight.desc": "给予使用者夜视效果",
|
||||
"enchantment.enchantmentsplus.cubical": "立方杀手",
|
||||
"enchantment.enchantmentsplus.cubical.desc": "对类似史莱姆的立方形生物造成更多伤害",
|
||||
"enchantment.enchantmentsplus.endslayer": "末地杀手",
|
||||
"enchantment.enchantmentsplus.endslayer.desc": "对末地生物造成更多伤害",
|
||||
"enchantment.enchantmentsplus.payback": "报复",
|
||||
"enchantment.enchantmentsplus.payback.desc": "当使用者的生命值低时造成更多伤害",
|
||||
"enchantment.enchantmentsplus.lifesteal": "生命窃取",
|
||||
"enchantment.enchantmentsplus.lifesteal.desc": "攻击时轻微地治疗使用者",
|
||||
"enchantment.enchantmentsplus.thunderlord": "雷霆之主",
|
||||
"enchantment.enchantmentsplus.thunderlord.desc": "被击中的目标有时会被闪电击中",
|
||||
"enchantment.enchantmentsplus.levitation": "浮升术",
|
||||
"enchantment.enchantmentsplus.levitation.desc": "被击中的目标会随机漂浮",
|
||||
"enchantment.enchantmentsplus.blazewalker": "烈焰行者",
|
||||
"enchantment.enchantmentsplus.blazewalker.desc": "允许使用者在岩浆上行走",
|
||||
"enchantment.enchantmentsplus.flashforge": "闪速锻造",
|
||||
"enchantment.enchantmentsplus.flashforge.desc": "挖掘的方块会被冶炼",
|
||||
"enchantment.enchantmentsplus.moonwalker": "月步",
|
||||
"enchantment.enchantmentsplus.moonwalker.desc": "提供低等级的速度和跳跃提升,随机提供强力的跳跃提升",
|
||||
"enchantment.enchantmentsplus.raider": "掠夺杀手",
|
||||
"enchantment.enchantmentsplus.raider.desc": "对袭击中的生物造成更多伤害",
|
||||
"enchantment.enchantmentsplus.toxicstrike": "毒液之袭",
|
||||
"enchantment.enchantmentsplus.toxicstrike.desc": "被击中的目标会中毒",
|
||||
"enchantment.enchantmentsplus.hiker": "攀登者",
|
||||
"enchantment.enchantmentsplus.hiker.desc": "允许使用者登上方块而不需要跳跃",
|
||||
"effect.enchantmentsplus.moonresteffect": "月面歇息",
|
||||
"key.enchantmentsplus.moonwalk": "月步 (在冲刺时按下)",
|
||||
"category.enchantmentsplus.keys": "附魔 Plus",
|
||||
"subtitles.enchantmentsplus.swoop": "月步:呼呼",
|
||||
"subtitles.enchantmentsplus.blurp": "生命值回复"
|
||||
}
|
70
lang_20241209/zh_cn/expandeddelight.json
Normal file
70
lang_20241209/zh_cn/expandeddelight.json
Normal file
@ -0,0 +1,70 @@
|
||||
{
|
||||
"item.expandeddelight.asparagus": "芦笋",
|
||||
"item.expandeddelight.asparagus_seeds": "芦笋种子",
|
||||
"item.expandeddelight.asparagus_soup": "芦笋汤",
|
||||
"item.expandeddelight.asparagus_soup_creamy": "奶油芦笋汤",
|
||||
"item.expandeddelight.asparagus_and_bacon_cheesy": "蘸奶酪的芦笋培根",
|
||||
"item.expandeddelight.sweet_potato": "红薯",
|
||||
"item.expandeddelight.baked_sweet_potato": "烤红薯",
|
||||
"item.expandeddelight.sweet_potato_salad": "红薯沙拉",
|
||||
"item.expandeddelight.chili_pepper": "辣椒",
|
||||
"item.expandeddelight.chili_pepper_seeds": "辣椒种子",
|
||||
"item.expandeddelight.peperonata": "番茄甜椒意面",
|
||||
"item.expandeddelight.peanut": "花生",
|
||||
"item.expandeddelight.peanut_butter": "花生酱",
|
||||
"item.expandeddelight.peanut_butter_sandwich": "花生酱三明治",
|
||||
"item.expandeddelight.peanut_butter_honey_sandwich": "花生酱蜂蜜三明治",
|
||||
"item.expandeddelight.peanut_salad": "花生沙拉",
|
||||
"item.expandeddelight.peanut_honey_soup": "蜂蜜花生汤",
|
||||
"item.expandeddelight.sweet_berry_jelly_sandwich": "花生酱甜浆果三明治",
|
||||
"item.expandeddelight.glow_berry_jelly_sandwich": "花生酱发光浆果三明治",
|
||||
"item.expandeddelight.glass_jar": "玻璃罐",
|
||||
"item.expandeddelight.raw_cinnamon": "生肉桂",
|
||||
"item.expandeddelight.ground_cinnamon": "肉桂粉",
|
||||
"item.expandeddelight.salt_rock": "碎岩盐块",
|
||||
"item.expandeddelight.ground_salt": "盐",
|
||||
"item.expandeddelight.cheese_wheel": "奶酪轮",
|
||||
"item.expandeddelight.cheese_slice": "奶酪片",
|
||||
"item.expandeddelight.cheese_sandwich": "奶酪三明治",
|
||||
"item.expandeddelight.grilled_cheese": "烤奶酪三明治",
|
||||
"item.expandeddelight.mac_and_cheese": "芝士通心粉",
|
||||
"item.expandeddelight.sweet_roll": "甜面包",
|
||||
"item.expandeddelight.berry_sweet_roll": "浆果甜面包",
|
||||
"item.expandeddelight.glow_berry_sweet_roll": "发光浆果甜面包",
|
||||
"item.expandeddelight.cinnamon_rice": "肉桂饭",
|
||||
"item.expandeddelight.cinnamon_apples": "肉桂苹果",
|
||||
"item.expandeddelight.chocolate_cookie": "巧克力曲奇",
|
||||
"item.expandeddelight.sugar_cookie": "甜曲奇",
|
||||
"item.expandeddelight.snickerdoodle": "肉桂曲奇",
|
||||
"item.expandeddelight.juice.tooltip": "速度 (0:10)",
|
||||
"item.expandeddelight.apple_juice": "苹果汁",
|
||||
"item.expandeddelight.sweet_berry_juice": "甜浆果汁",
|
||||
"item.expandeddelight.glow_berry_juice": "发光浆果汁",
|
||||
"item.expandeddelight.sweet_berry_jelly": "甜浆果酱",
|
||||
"item.expandeddelight.sweet_berry_jelly.tooltip": "生命提升 (0:10)",
|
||||
"item.expandeddelight.glow_berry_jelly": "发光浆果酱",
|
||||
"item.expandeddelight.glow_berry_jelly.tooltip": "夜视 (0:10)",
|
||||
"item.expandeddelight.mortar_and_pestle_item": "杵臼",
|
||||
"item.expandeddelight.juicer_item": "榨汁机",
|
||||
"block.expandeddelight.asparagus_crate": "箱装芦笋",
|
||||
"block.expandeddelight.wild_asparagus": "野生芦笋",
|
||||
"block.expandeddelight.asparagus_crop": "芦笋",
|
||||
"block.expandeddelight.sweet_potato_crate": "箱装红薯",
|
||||
"block.expandeddelight.wild_sweet_potatoes": "野生红薯",
|
||||
"block.expandeddelight.sweet_potatoes_crop": "红薯",
|
||||
"block.expandeddelight.chili_pepper_crate": "箱装辣椒",
|
||||
"block.expandeddelight.wild_chili_pepper": "野生辣椒",
|
||||
"block.expandeddelight.chili_pepper_crop": "辣椒",
|
||||
"block.expandeddelight.wild_peanuts": "野生花生",
|
||||
"block.expandeddelight.peanut_crop": "花生",
|
||||
"block.expandeddelight.cinnamon_sapling": "肉桂树苗",
|
||||
"block.expandeddelight.cinnamon_log": "肉桂原木",
|
||||
"block.expandeddelight.salt_ore": "盐矿石",
|
||||
"block.expandeddelight.deepslate_salt_ore": "深层盐矿石",
|
||||
"block.expandeddelight.juicer": "榨汁机",
|
||||
"block.expandeddelight.mortar_and_pestle": "杵臼",
|
||||
"block.expandeddelight.mortar_and_pestle.pass": "你无法捣碎这东西...",
|
||||
"container.expandeddelight.juicer": "榨汁机",
|
||||
"itemGroup.expandeddelight.group": "扩充乐事",
|
||||
"expandeddelight.rei.juicing": "榨取"
|
||||
}
|
260
lang_20241209/zh_cn/farmersdelight.json
Normal file
260
lang_20241209/zh_cn/farmersdelight.json
Normal file
@ -0,0 +1,260 @@
|
||||
{
|
||||
"block.farmersdelight.stove": "炉灶",
|
||||
"block.farmersdelight.cooking_pot": "厨锅",
|
||||
"block.farmersdelight.basket": "篮子",
|
||||
"block.farmersdelight.cutting_board": "砧板",
|
||||
"block.farmersdelight.skillet": "煎锅",
|
||||
"block.farmersdelight.oak_cabinet": "橡木厨柜",
|
||||
"block.farmersdelight.birch_cabinet": "白桦木厨柜",
|
||||
"block.farmersdelight.spruce_cabinet": "云杉木厨柜",
|
||||
"block.farmersdelight.jungle_cabinet": "丛林木厨柜",
|
||||
"block.farmersdelight.acacia_cabinet": "金合欢木厨柜",
|
||||
"block.farmersdelight.dark_oak_cabinet": "深色橡木厨柜",
|
||||
"block.farmersdelight.crimson_cabinet": "绯红木厨柜",
|
||||
"block.farmersdelight.warped_cabinet": "诡异木厨柜",
|
||||
"block.farmersdelight.rope": "绳子",
|
||||
"block.farmersdelight.safety_net": "安全网",
|
||||
"block.farmersdelight.canvas_rug": "粗布毯",
|
||||
"block.farmersdelight.tatami": "榻榻米方块",
|
||||
"block.farmersdelight.full_tatami_mat": "长榻榻米垫",
|
||||
"block.farmersdelight.half_tatami_mat": "短榻榻米垫",
|
||||
"block.farmersdelight.organic_compost": "有机肥料",
|
||||
"block.farmersdelight.rich_soil": "沃土",
|
||||
"block.farmersdelight.rich_soil_farmland": "沃土耕地",
|
||||
"block.farmersdelight.carrot_crate": "箱装胡萝卜",
|
||||
"block.farmersdelight.potato_crate": "箱装马铃薯",
|
||||
"block.farmersdelight.beetroot_crate": "箱装甜菜根",
|
||||
"block.farmersdelight.cabbage_crate": "箱装卷心菜",
|
||||
"block.farmersdelight.tomato_crate": "箱装番茄",
|
||||
"block.farmersdelight.onion_crate": "箱装洋葱",
|
||||
"block.farmersdelight.rice_bale": "稻米块",
|
||||
"block.farmersdelight.rice_bag": "稻米袋",
|
||||
"block.farmersdelight.straw_bale": "稻草",
|
||||
"block.farmersdelight.canvas_sign": "粗布告示牌",
|
||||
"block.farmersdelight.white_canvas_sign": "白色粗布告示牌",
|
||||
"block.farmersdelight.orange_canvas_sign": "橙色粗布告示牌",
|
||||
"block.farmersdelight.magenta_canvas_sign": "品红色粗布告示牌",
|
||||
"block.farmersdelight.light_blue_canvas_sign": "淡蓝色粗布告示牌",
|
||||
"block.farmersdelight.yellow_canvas_sign": "黄色粗布告示牌",
|
||||
"block.farmersdelight.lime_canvas_sign": "黄绿色粗布告示牌",
|
||||
"block.farmersdelight.pink_canvas_sign": "粉红色粗布告示牌",
|
||||
"block.farmersdelight.gray_canvas_sign": "灰色粗布告示牌",
|
||||
"block.farmersdelight.light_gray_canvas_sign": "淡灰色粗布告示牌",
|
||||
"block.farmersdelight.cyan_canvas_sign": "青色粗布告示牌",
|
||||
"block.farmersdelight.purple_canvas_sign": "紫色粗布告示牌",
|
||||
"block.farmersdelight.blue_canvas_sign": "蓝色粗布告示牌",
|
||||
"block.farmersdelight.brown_canvas_sign": "棕色粗布告示牌",
|
||||
"block.farmersdelight.green_canvas_sign": "绿色粗布告示牌",
|
||||
"block.farmersdelight.red_canvas_sign": "红色粗布告示牌",
|
||||
"block.farmersdelight.black_canvas_sign": "黑色粗布告示牌",
|
||||
"block.farmersdelight.budding_tomatoes": "发芽的番茄藤蔓",
|
||||
"block.farmersdelight.tomatoes": "番茄",
|
||||
"block.farmersdelight.cabbages": "卷心菜",
|
||||
"block.farmersdelight.onions": "洋葱",
|
||||
"block.farmersdelight.rice_crop": "稻米",
|
||||
"block.farmersdelight.rice_upper_crop": "稻米",
|
||||
"block.farmersdelight.brown_mushroom_colony": "棕色蘑菇菌落",
|
||||
"block.farmersdelight.red_mushroom_colony": "红色蘑菇菌落",
|
||||
"block.farmersdelight.sandy_shrub": "Sandy Shrub",
|
||||
"block.farmersdelight.wild_cabbages": "野生卷心菜",
|
||||
"block.farmersdelight.wild_tomatoes": "番茄藤蔓",
|
||||
"block.farmersdelight.wild_onions": "野生洋葱",
|
||||
"block.farmersdelight.wild_carrots": "野生胡萝卜",
|
||||
"block.farmersdelight.wild_potatoes": "野生马铃薯",
|
||||
"block.farmersdelight.wild_beetroots": "海甜菜",
|
||||
"block.farmersdelight.wild_rice": "野生稻米",
|
||||
"block.farmersdelight.apple_pie": "苹果派",
|
||||
"block.farmersdelight.sweet_berry_cheesecake": "甜浆果芝士派",
|
||||
"block.farmersdelight.chocolate_pie": "巧克力派",
|
||||
"item.farmersdelight.tomato": "番茄",
|
||||
"item.farmersdelight.cabbage": "卷心菜",
|
||||
"item.farmersdelight.onion": "洋葱",
|
||||
"item.farmersdelight.rice": "稻米",
|
||||
"item.farmersdelight.cabbage_seeds": "卷心菜种子",
|
||||
"item.farmersdelight.tomato_seeds": "番茄种子",
|
||||
"item.farmersdelight.rice_panicle": "稻米穗",
|
||||
"item.farmersdelight.rotten_tomato": "腐烂的番茄",
|
||||
"item.farmersdelight.straw": "草秆",
|
||||
"item.farmersdelight.canvas": "粗布",
|
||||
"item.farmersdelight.tree_bark": "树皮",
|
||||
"item.farmersdelight.tomato_sauce": "番茄酱",
|
||||
"item.farmersdelight.fried_egg": "煎鸡蛋",
|
||||
"item.farmersdelight.milk_bottle": "奶瓶",
|
||||
"item.farmersdelight.hot_cocoa": "热可可",
|
||||
"item.farmersdelight.apple_cider": "苹果酒",
|
||||
"item.farmersdelight.melon_juice": "西瓜汁",
|
||||
"item.farmersdelight.wheat_dough": "面团",
|
||||
"item.farmersdelight.raw_pasta": "生意面",
|
||||
"item.farmersdelight.pumpkin_slice": "南瓜片",
|
||||
"item.farmersdelight.cabbage_leaf": "卷心菜叶",
|
||||
"item.farmersdelight.minced_beef": "牛肉馅",
|
||||
"item.farmersdelight.beef_patty": "牛肉饼",
|
||||
"item.farmersdelight.chicken_cuts": "生鸡肉丁",
|
||||
"item.farmersdelight.cooked_chicken_cuts": "熟鸡肉丁",
|
||||
"item.farmersdelight.bacon": "生培根",
|
||||
"item.farmersdelight.cooked_bacon": "熟培根",
|
||||
"item.farmersdelight.cod_slice": "生鳕鱼片",
|
||||
"item.farmersdelight.cooked_cod_slice": "熟鳕鱼片",
|
||||
"item.farmersdelight.salmon_slice": "生鲑鱼片",
|
||||
"item.farmersdelight.cooked_salmon_slice": "熟鲑鱼片",
|
||||
"item.farmersdelight.mutton_chops": "生羊排",
|
||||
"item.farmersdelight.cooked_mutton_chops": "熟羊排",
|
||||
"item.farmersdelight.ham": "火腿",
|
||||
"item.farmersdelight.smoked_ham": "烟熏火腿",
|
||||
"item.farmersdelight.pie_crust": "馅饼酥皮",
|
||||
"item.farmersdelight.cake_slice": "蛋糕切片",
|
||||
"item.farmersdelight.apple_pie_slice": "苹果派切片",
|
||||
"item.farmersdelight.sweet_berry_cheesecake_slice": "甜浆果芝士派切片",
|
||||
"item.farmersdelight.chocolate_pie_slice": "巧克力派切片",
|
||||
"item.farmersdelight.fruit_salad": "水果沙拉",
|
||||
"item.farmersdelight.sweet_berry_cookie": "甜浆果曲奇",
|
||||
"item.farmersdelight.honey_cookie": "蜜饼",
|
||||
"item.farmersdelight.melon_popsicle": "西瓜冰棍",
|
||||
"item.farmersdelight.glow_berry_custard": "发光浆果蛋奶沙司",
|
||||
"item.farmersdelight.earthworm": "蚯蚓",
|
||||
"item.farmersdelight.flint_knife": "燧石刀",
|
||||
"item.farmersdelight.iron_knife": "铁刀",
|
||||
"item.farmersdelight.golden_knife": "金刀",
|
||||
"item.farmersdelight.diamond_knife": "钻石刀",
|
||||
"item.farmersdelight.netherite_knife": "下界合金刀",
|
||||
"item.farmersdelight.barbecue_stick": "烧烤串",
|
||||
"item.farmersdelight.egg_sandwich": "鸡蛋三明治",
|
||||
"item.farmersdelight.chicken_sandwich": "鸡肉三明治",
|
||||
"item.farmersdelight.hamburger": "汉堡包",
|
||||
"item.farmersdelight.bacon_sandwich": "培根三明治",
|
||||
"item.farmersdelight.mutton_wrap": "羊肉卷饼",
|
||||
"item.farmersdelight.dumplings": "饺子",
|
||||
"item.farmersdelight.stuffed_potato": "填馅马铃薯",
|
||||
"item.farmersdelight.cabbage_rolls": "卷心菜卷",
|
||||
"item.farmersdelight.salmon_roll": "鲑鱼寿司",
|
||||
"item.farmersdelight.cod_roll": "鳕鱼寿司",
|
||||
"item.farmersdelight.kelp_roll": "海带寿司卷",
|
||||
"item.farmersdelight.kelp_roll_slice": "海带寿司",
|
||||
"item.farmersdelight.cooked_rice": "米饭",
|
||||
"item.farmersdelight.mixed_salad": "混合沙拉",
|
||||
"item.farmersdelight.nether_salad": "下界沙拉",
|
||||
"item.farmersdelight.beef_stew": "牛肉炖",
|
||||
"item.farmersdelight.chicken_soup": "鸡肉汤",
|
||||
"item.farmersdelight.vegetable_soup": "蔬菜汤",
|
||||
"item.farmersdelight.fish_stew": "鱼肉炖",
|
||||
"item.farmersdelight.fried_rice": "炒饭",
|
||||
"item.farmersdelight.pumpkin_soup": "南瓜汤",
|
||||
"item.farmersdelight.baked_cod_stew": "烘焙鳕鱼炖",
|
||||
"item.farmersdelight.noodle_soup": "面条汤",
|
||||
"item.farmersdelight.bone_broth": "大骨汤",
|
||||
"item.farmersdelight.bacon_and_eggs": "培根鸡蛋",
|
||||
"item.farmersdelight.pasta_with_meatballs": "肉丸意面",
|
||||
"item.farmersdelight.pasta_with_mutton_chop": "羊排意面",
|
||||
"item.farmersdelight.roasted_mutton_chops": "烤羊排",
|
||||
"item.farmersdelight.steak_and_potatoes": "牛排配土豆",
|
||||
"item.farmersdelight.vegetable_noodles": "蔬菜面",
|
||||
"item.farmersdelight.ratatouille": "蔬菜杂烩",
|
||||
"item.farmersdelight.squid_ink_pasta": "鱿鱼墨面",
|
||||
"item.farmersdelight.grilled_salmon": "香烤鲑鱼",
|
||||
"item.farmersdelight.mushroom_rice": "蘑菇饭",
|
||||
"block.farmersdelight.roast_chicken_block": "烤鸡",
|
||||
"item.farmersdelight.roast_chicken": "盘装烤鸡",
|
||||
"block.farmersdelight.stuffed_pumpkin_block": "填馅南瓜",
|
||||
"item.farmersdelight.stuffed_pumpkin": "碗装填馅南瓜",
|
||||
"block.farmersdelight.honey_glazed_ham_block": "蜜汁火腿",
|
||||
"item.farmersdelight.honey_glazed_ham": "盘装蜜汁火腿",
|
||||
"block.farmersdelight.shepherds_pie_block": "牧羊人派",
|
||||
"item.farmersdelight.shepherds_pie": "盘装牧羊人派",
|
||||
"block.farmersdelight.rice_roll_medley_block": "寿司拼盘",
|
||||
"item.farmersdelight.dog_food": "狗粮",
|
||||
"item.farmersdelight.horse_feed": "马食",
|
||||
"effect.farmersdelight.nourishment": "滋养",
|
||||
"effect.farmersdelight.comfort": "舒适",
|
||||
"effect.farmersdelight.nourishment.0.desc": "你不会再消耗饥饿值,除非需要借以恢复生命值。",
|
||||
"effect.farmersdelight.comfort.0.desc": "使你对饥饿、缓慢和虚弱效果免疫。",
|
||||
"enchantment.farmersdelight.backstabbing": "背刺",
|
||||
"enchantment.farmersdelight.backstabbing.desc": "增加从后攻击目标时的伤害。",
|
||||
"itemGroup.farmersdelight.main": "农夫乐事",
|
||||
"farmersdelight.container.recipe_book.cookable": "仅显示可烹饪",
|
||||
"farmersdelight.container.cooking_pot": "厨锅",
|
||||
"farmersdelight.container.cooking_pot.served_on": "需摆放于:%s",
|
||||
"farmersdelight.container.cooking_pot.not_heated": "需要下部热源",
|
||||
"farmersdelight.container.cooking_pot.heated": "已受热",
|
||||
"farmersdelight.container.basket": "篮子",
|
||||
"farmersdelight.container.cabinet": "厨柜",
|
||||
"farmersdelight.tooltip.cooking_pot.empty": "空",
|
||||
"farmersdelight.tooltip.cooking_pot.single_serving": "目前的 1 份食物:",
|
||||
"farmersdelight.tooltip.cooking_pot.many_servings": "目前的 %s 份食物:",
|
||||
"farmersdelight.tooltip.dog_food.when_feeding": "喂给已驯服的狗时:",
|
||||
"farmersdelight.tooltip.horse_feed.when_feeding": "喂给已驯服的马时:",
|
||||
"farmersdelight.tooltip.milk_bottle": "清除 1 个效果",
|
||||
"farmersdelight.tooltip.hot_cocoa": "清除 1 个有害效果",
|
||||
"farmersdelight.tooltip.melon_juice": "瞬间恢复少量生命值",
|
||||
"farmersdelight.advancement.root": "农夫乐事",
|
||||
"farmersdelight.advancement.root.desc": "美味的世界在等着你!",
|
||||
"farmersdelight.advancement.craft_knife": "刀耕火种",
|
||||
"farmersdelight.advancement.craft_knife.desc": "合成一把刀来从植物和动物上获取更多资源!",
|
||||
"farmersdelight.advancement.harvest_straw": "救命稻草",
|
||||
"farmersdelight.advancement.harvest_straw.desc": "使用刀割下长草的植物以获取一些草秆",
|
||||
"farmersdelight.advancement.place_organic_compost": "先进堆肥",
|
||||
"farmersdelight.advancement.place_organic_compost.desc": "放置一些有机肥料。要是有阳光、水和蘑菇就更好了!",
|
||||
"farmersdelight.advancement.get_rich_soil": "种下食物",
|
||||
"farmersdelight.advancement.get_rich_soil.desc": "放置有机肥料,让它分解直到变成沃土。菌落能加速这一过程!",
|
||||
"farmersdelight.advancement.get_ham": "狂野屠夫",
|
||||
"farmersdelight.advancement.get_ham.desc": "刀可以更精准仔细地切开动物的肉。刀劈有时候能产出更大的肉块!",
|
||||
"farmersdelight.advancement.use_cutting_board": "当心伤手……",
|
||||
"farmersdelight.advancement.use_cutting_board.desc": "工具到手,在砧板上切开一些东西",
|
||||
"farmersdelight.advancement.obtain_netherite_knife": "没这金刚钻的话……",
|
||||
"farmersdelight.advancement.obtain_netherite_knife.desc": "要么在你的刀上花一整块下界合金锭,要么离开厨房",
|
||||
"farmersdelight.advancement.get_fd_seed": "野生作物",
|
||||
"farmersdelight.advancement.get_fd_seed.desc": "有四种新的作物在野外等待着你,你需要跨越山和大海……或者只需要翻翻箱子。",
|
||||
"farmersdelight.advancement.plant_rice": "倾斜稻根",
|
||||
"farmersdelight.advancement.plant_rice.desc": "在浅水洼里种一些稻米",
|
||||
"farmersdelight.advancement.harvest_ropelogged_tomato": "采田艹加",
|
||||
"farmersdelight.advancement.harvest_ropelogged_tomato.desc": "在番茄顶上挂些绳子,让它长得更高",
|
||||
"farmersdelight.advancement.hit_raider_with_rotten_tomato": "嘘!去!",
|
||||
"farmersdelight.advancement.hit_raider_with_rotten_tomato.desc": "向那些讨厌的入侵者扔一个烂番茄!",
|
||||
"farmersdelight.advancement.get_mushroom_colony": "我们当中出了内“菌”",
|
||||
"farmersdelight.advancement.get_mushroom_colony.desc": "在暗处的沃土上种点蘑菇,看着菌落长出来,然后剪掉它!",
|
||||
"farmersdelight.advancement.plant_all_crops": "轮作",
|
||||
"farmersdelight.advancement.plant_all_crops.desc": "种植所有你找得到的水果、蔬菜,或是菌类!",
|
||||
"farmersdelight.advancement.place_campfire": "点起篝火",
|
||||
"farmersdelight.advancement.place_campfire.desc": "放置一个营火,让夜晚不再寒冷",
|
||||
"farmersdelight.advancement.use_skillet": "移动厨房",
|
||||
"farmersdelight.advancement.use_skillet.desc": "煎锅能让你轻松烹饪食物。在另一只手上把食物拿好,然后离热源近些!",
|
||||
"farmersdelight.advancement.place_skillet": "滋滋火热!",
|
||||
"farmersdelight.advancement.place_skillet.desc": "潜行时把煎锅作为方块放置下来",
|
||||
"farmersdelight.advancement.place_cooking_pot": "晚餐上桌喽!",
|
||||
"farmersdelight.advancement.place_cooking_pot.desc": "放置一个厨锅,准备做饭!",
|
||||
"farmersdelight.advancement.eat_comfort_food": "温暖又舒适",
|
||||
"farmersdelight.advancement.eat_comfort_food.desc": "汤和炖菜对抵御寒冷和疾病很有好处!",
|
||||
"farmersdelight.advancement.eat_nourishing_food": "服务周到",
|
||||
"farmersdelight.advancement.eat_nourishing_food.desc": "一盘丰盛的食物会让你获得滋养很长一段时间!",
|
||||
"farmersdelight.advancement.place_feast": "一顿盛宴",
|
||||
"farmersdelight.advancement.place_feast.desc": "有些食物最好拿到台面上分享给朋友。准备好盛饭的餐具吧!",
|
||||
"farmersdelight.advancement.master_chef": "厨神当道",
|
||||
"farmersdelight.advancement.master_chef.desc": "把全部菜肴都品尝一遍!",
|
||||
"farmersdelight.subtitles.cooking_pot.boil": "厨锅:蒸煮",
|
||||
"farmersdelight.subtitles.cutting_board.knife_cut": "刀:切下",
|
||||
"farmersdelight.subtitles.stove.crackle": "炉灶:噼啪",
|
||||
"farmersdelight.subtitles.skillet.sizzle": "煎锅:滋滋",
|
||||
"farmersdelight.subtitles.skillet.add_food": "煎锅:嘶嘶",
|
||||
"farmersdelight.subtitles.cabinet.open": "厨柜:打开",
|
||||
"farmersdelight.subtitles.cabinet.close": "厨柜:关闭",
|
||||
"farmersdelight.subtitles.tomato.pick": "番茄:噗",
|
||||
"farmersdelight.subtitles.rotten_tomato.throw": "烂番茄:丢出",
|
||||
"farmersdelight.subtitles.rotten_tomato.hit": "烂番茄:脓汁四溅",
|
||||
"farmersdelight.block.feast.use_container": "你需要一个%s以食用它。",
|
||||
"farmersdelight.block.rice.invalid_placement": "这株作物很难在水洼外生存。",
|
||||
"farmersdelight.block.cutting_board.invalid_item": "这东西切不动啊……",
|
||||
"farmersdelight.block.cutting_board.invalid_tool": "或许得换个工具……",
|
||||
"farmersdelight.block.skillet.invalid_item": "这东西可不能放进去……",
|
||||
"farmersdelight.item.skillet.how_to_cook": "用你的另一只手把食物拿好!",
|
||||
"death.attack.farmersdelight.stove": "%1$s 被烤的酥脆",
|
||||
"death.attack.farmersdelight.stove.player": "%1$s 被大厨 %2$s 扔到了烤架上",
|
||||
"farmersdelight.rei.cooking": "烹饪",
|
||||
"farmersdelight.rei.cutting": "砧板",
|
||||
"farmersdelight.rei.chance": "%1$s%% 的概率",
|
||||
"farmersdelight.rei.decomposition": "分解",
|
||||
"farmersdelight.rei.decomposition.light": "有日光时加快",
|
||||
"farmersdelight.rei.decomposition.fluid": "周围有水时加快",
|
||||
"farmersdelight.rei.decomposition.accelerators": "周围有以下催化物时加快",
|
||||
"farmersdelight.rei.info.straw": "用于合成的干燥植物纤维。使用小刀破坏草类植物或作物方块可以获得。",
|
||||
"farmersdelight.rei.info.knife": "小刀是轻量的近战武器。你可以用它们从草类植物中获得草秆,也可以击杀动物以获得副掉落物。",
|
||||
"farmersdelight.rei.info.ham": "从猪或疣猪兽腿上切下的一大块肉。剑太大了,想切下它你得找一把更轻的工具……"
|
||||
}
|
38
lang_20241209/zh_cn/gammautils.json
Normal file
38
lang_20241209/zh_cn/gammautils.json
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"key.categories.gamma_utils": "伽玛工具",
|
||||
"key.gamma_utils.gamma_toggle": "伽玛切换",
|
||||
"key.gamma_utils.increase_gamma": "增加伽玛",
|
||||
"key.gamma_utils.decrease_gamma": "降低伽玛",
|
||||
"key.gamma_utils.night_vision_toggle": "夜视切换",
|
||||
"text.autoconfig.gamma_utils.title": "伽玛工具配置",
|
||||
"text.autoconfig.gamma_utils.option.defaultGamma": "默认伽玛百分比",
|
||||
"text.autoconfig.gamma_utils.option.defaultGamma.@Tooltip": "关闭mod时的伽玛百分比",
|
||||
"text.autoconfig.gamma_utils.option.toggledGamma": "切换伽玛百分比",
|
||||
"text.autoconfig.gamma_utils.option.toggledGamma.@Tooltip": "开启模组时的伽马百分比",
|
||||
"text.autoconfig.gamma_utils.option.smoothTransition": "平稳过渡",
|
||||
"text.autoconfig.gamma_utils.option.smoothTransition.@Tooltip": "使切换伽马时的过渡更平滑",
|
||||
"text.autoconfig.gamma_utils.option.updateToggle": "更新切换值",
|
||||
"text.autoconfig.gamma_utils.option.updateToggle.@Tooltip": "启用此功能将使切换值记住你最后使用的非默认值",
|
||||
"text.autoconfig.gamma_utils.option.showStatusEffect": "显示状态效果",
|
||||
"text.autoconfig.gamma_utils.option.showStatusEffect.@Tooltip": "当 gamma 百分比超出正常范围时显示状态效果 \n(\"低伽马\" 低于 0% 和 \"高伽马\" 100% 以上)",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions": "高级选项",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.transitionSpeed": "过渡速度",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.transitionSpeed.@Tooltip": "每秒伽马百分比的速度(启用平滑过渡时每秒伽马百分比的速度(启用平滑过渡时)",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.limitCheck": "限制检查",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.limitCheck.@Tooltip": "mod是否应该强制执行最小和最大伽马限制",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.minGamma": "最小伽马限制",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.minGamma.@Tooltip": "如果启用了限制检查,mod将允许的最小伽马百分比",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.maxGamma": "最大伽马限制",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.maxGamma.@Tooltip": "如果启用了限制检查,mod将允许的最大伽马百分比",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.gammaStep": "伽玛百分比步长",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.gammaStep.@Tooltip": "每次增加或减少的伽马百分比变化",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.showMessage": "显示伽马信息",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.showMessage.@Tooltip": "显示带有新伽马值的信息",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.resetOnClose": "关闭时重置",
|
||||
"text.autoconfig.gamma_utils.option.advancedOptions.resetOnClose.@Tooltip": "Minecraft 关闭时将伽玛值重置为默认值",
|
||||
"text.gamma_utils.message.gamma": "伽玛: %d%%",
|
||||
"text.gamma_utils.message.nightvision.enabled": "夜视: 启用",
|
||||
"text.gamma_utils.message.nightvision.disabled": "夜视: 禁用",
|
||||
"effect.gammautils.bright": "高伽马",
|
||||
"effect.gammautils.dim": "低伽马"
|
||||
}
|
141
lang_20241209/zh_cn/naturalist.json
Normal file
141
lang_20241209/zh_cn/naturalist.json
Normal file
@ -0,0 +1,141 @@
|
||||
{
|
||||
"itemGroup.naturalist.tab": "自然主义",
|
||||
"entity.naturalist.butterfly": "蝴蝶",
|
||||
"entity.naturalist.bluejay": "冠蓝鸦",
|
||||
"entity.naturalist.canary": "金丝雀",
|
||||
"entity.naturalist.cardinal": "主红雀",
|
||||
"entity.naturalist.caterpillar": "毛毛虫",
|
||||
"entity.naturalist.coral_snake": "珊瑚蛇",
|
||||
"entity.naturalist.deer": "鹿",
|
||||
"entity.naturalist.elephant": "大象",
|
||||
"entity.naturalist.firefly": "萤火虫",
|
||||
"entity.naturalist.giraffe": "长颈鹿",
|
||||
"entity.naturalist.bear": "灰熊",
|
||||
"entity.naturalist.hippo": "河马",
|
||||
"entity.naturalist.lion": "狮子",
|
||||
"entity.naturalist.rattlesnake": "响尾蛇",
|
||||
"entity.naturalist.rhino": "犀牛",
|
||||
"entity.naturalist.robin": "旅鸫",
|
||||
"entity.naturalist.snail": "蜗牛",
|
||||
"entity.naturalist.snake": "蛇",
|
||||
"entity.naturalist.zebra": "斑马",
|
||||
"entity.naturalist.vulture": "秃鹫",
|
||||
"entity.naturalist.boar": "野猪",
|
||||
"item.naturalist.bluejay_spawn_egg": "冠蓝鸦刷怪蛋",
|
||||
"item.naturalist.butterfly_spawn_egg": "蝴蝶刷怪蛋",
|
||||
"item.naturalist.canary_spawn_egg": "金丝雀刷怪蛋",
|
||||
"item.naturalist.cardinal_spawn_egg": "主红雀刷怪蛋",
|
||||
"item.naturalist.caterpillar_spawn_egg": "毛毛虫刷怪蛋",
|
||||
"item.naturalist.coral_snake_spawn_egg": "珊瑚蛇刷怪蛋",
|
||||
"item.naturalist.deer_spawn_egg": "鹿刷怪蛋",
|
||||
"item.naturalist.elephant_spawn_egg": "大象刷怪蛋",
|
||||
"item.naturalist.firefly_spawn_egg": "萤火虫刷怪蛋",
|
||||
"item.naturalist.giraffe_spawn_egg": "长颈鹿刷怪蛋",
|
||||
"item.naturalist.bear_spawn_egg": "灰熊刷怪蛋",
|
||||
"item.naturalist.hippo_spawn_egg": "河马刷怪蛋",
|
||||
"item.naturalist.lion_spawn_egg": "狮子刷怪蛋",
|
||||
"item.naturalist.rattlesnake_spawn_egg": "响尾蛇刷怪蛋",
|
||||
"item.naturalist.rhino_spawn_egg": "犀牛刷怪蛋",
|
||||
"item.naturalist.robin_spawn_egg": "旅鸫刷怪蛋",
|
||||
"item.naturalist.snail_spawn_egg": "蜗牛刷怪蛋",
|
||||
"item.naturalist.snake_spawn_egg": "蛇刷怪蛋",
|
||||
"item.naturalist.zebra_spawn_egg": "斑马刷怪蛋",
|
||||
"item.naturalist.vulture_spawn_egg": "秃鹫刷怪蛋",
|
||||
"item.naturalist.boar_spawn_egg": "野猪刷怪蛋",
|
||||
"item.naturalist.antler": "鹿角",
|
||||
"item.naturalist.snail_bucket": "桶装蜗牛",
|
||||
"block.naturalist.chrysalis": "蛹",
|
||||
"block.naturalist.teddy_bear": "泰迪熊",
|
||||
"item.naturalist.cooked_venison": "烤鹿肉",
|
||||
"item.naturalist.glow_goop": "荧光黏胶",
|
||||
"item.naturalist.snail_shell": "蜗牛壳",
|
||||
"item.naturalist.venison": "生鹿肉",
|
||||
"item.naturalist.bear_fur": "熊皮",
|
||||
"item.minecraft.tipped_arrow.effect.forest_dasher": "森林疾行之箭",
|
||||
"item.minecraft.potion.effect.forest_dasher": "森林疾行药水",
|
||||
"item.minecraft.splash_potion.effect.forest_dasher": "喷溅型森林疾行药水",
|
||||
"item.minecraft.lingering_potion.effect.forest_dasher": "滞留型森林疾行药水",
|
||||
"item.minecraft.tipped_arrow.effect.glowing": "荧光箭",
|
||||
"item.minecraft.potion.effect.glowing": "荧光药水",
|
||||
"item.minecraft.splash_potion.effect.glowing": "喷溅型荧光药水",
|
||||
"item.minecraft.lingering_potion.effect.glowing": "滞留型荧光药水",
|
||||
"naturalist.subtitles.entity.bird.hurt": "鸟:受伤",
|
||||
"naturalist.subtitles.entity.bird.death": "鸟:死亡",
|
||||
"naturalist.subtitles.entity.bird.eat": "鸟:进食",
|
||||
"naturalist.subtitles.entity.bird.fly": "鸟:振翅",
|
||||
"naturalist.subtitles.entity.bird.ambient_bluejay": "冠蓝鸦:鸣叫",
|
||||
"naturalist.subtitles.entity.bird.ambient_canary": "金丝雀:鸣叫",
|
||||
"naturalist.subtitles.entity.bird.ambient_cardinal": "主红雀:鸣叫",
|
||||
"naturalist.subtitles.entity.bird.ambient_robin": "旅鸫:鸣叫",
|
||||
"naturalist.subtitles.entity.deer.hurt": "鹿:受伤",
|
||||
"naturalist.subtitles.entity.deer.ambient": "鹿:呼噜",
|
||||
"naturalist.subtitles.entity.deer.hurt_baby": "幼鹿:受伤",
|
||||
"naturalist.subtitles.entity.deer.ambient_baby": "幼鹿:咩",
|
||||
"naturalist.subtitles.entity.elephant.hurt": "大象:受伤",
|
||||
"naturalist.subtitles.entity.elephant.ambient": "大象:嘶鸣",
|
||||
"naturalist.subtitles.entity.firefly.hurt": "萤火虫:受伤",
|
||||
"naturalist.subtitles.entity.firefly.death": "萤火虫:死亡",
|
||||
"naturalist.subtitles.entity.firefly.hide": "萤火虫:隐匿",
|
||||
"naturalist.subtitles.entity.bear.hurt": "灰熊:受伤",
|
||||
"naturalist.subtitles.entity.bear.death": "灰熊:死亡",
|
||||
"naturalist.subtitles.entity.bear.ambient": "灰熊:呻吟",
|
||||
"naturalist.subtitles.entity.bear.ambient_baby": "灰熊:哼叫",
|
||||
"naturalist.subtitles.entity.bear.hurt_baby": "棕熊幼崽:受伤",
|
||||
"naturalist.subtitles.entity.bear.sleep": "灰熊:鼾声",
|
||||
"naturalist.subtitles.entity.bear.sniff": "灰熊:嗅",
|
||||
"naturalist.subtitles.entity.bear.spit": "灰熊:吐口水",
|
||||
"naturalist.subtitles.entity.bear.eat": "灰熊:进食",
|
||||
"naturalist.subtitles.entity.lion.hurt": "狮子:受伤",
|
||||
"naturalist.subtitles.entity.lion.ambient": "狮子:低吼",
|
||||
"naturalist.subtitles.entity.lion.roar": "狮子:咆哮",
|
||||
"naturalist.subtitles.entity.rhino.scrape": "犀牛:摩擦脚掌",
|
||||
"naturalist.subtitles.entity.rhino.ambient": "犀牛:低吼",
|
||||
"naturalist.subtitles.entity.snail.crush": "蜗牛:被碾压",
|
||||
"naturalist.subtitles.entity.snail.move": "蜗牛:缓慢移动",
|
||||
"naturalist.subtitles.item.bucket.fill_snail": "蜗牛:被装起",
|
||||
"naturalist.subtitles.item.bucket.empty_snail": "蜗牛桶:倒空",
|
||||
"naturalist.subtitles.entity.snake.hiss": "蛇:嘶嘶声",
|
||||
"naturalist.subtitles.entity.snake.hurt": "蛇:受伤",
|
||||
"naturalist.subtitles.entity.snake.rattle": "蛇:响尾声",
|
||||
"naturalist.subtitles.entity.zebra.ambient": "斑马:嘶鸣",
|
||||
"naturalist.subtitles.entity.zebra.hurt": "斑马:受伤",
|
||||
"naturalist.subtitles.entity.zebra.death": "斑马:死亡",
|
||||
"naturalist.subtitles.entity.zebra.eat": "斑马:进食",
|
||||
"naturalist.subtitles.entity.zebra.breathe": "斑马:喘息",
|
||||
"naturalist.subtitles.entity.zebra.jump": "斑马:腾跃",
|
||||
"naturalist.subtitles.entity.zebra.angry": "斑马:响鼻",
|
||||
"naturalist.subtitles.entity.vulture.ambient": "秃鹫:鸣叫",
|
||||
"naturalist.subtitles.entity.vulture.hurt": "秃鹫:受伤",
|
||||
"naturalist.subtitles.entity.vulture.death": "秃鹫:死亡",
|
||||
"naturalist.subtitles.entity.giraffe.ambient": "长颈鹿:呼吸",
|
||||
"naturalist.subtitles.entity.hippo.ambient": "河马:低吼",
|
||||
"naturalist.subtitles.entity.hippo.hurt": "河马:受伤",
|
||||
"advancements.husbandry.ride_giraffe_with_map.title": "大开眼界",
|
||||
"advancements.husbandry.ride_giraffe_with_map.description": "在骑乘长颈鹿时使用地图",
|
||||
"advancements.husbandry.feed_hippo_melon.title": "饥饿河马",
|
||||
"advancements.husbandry.feed_hippo_melon.description": "向河马投喂西瓜",
|
||||
"text.autoconfig.naturalist.title": "自然主义配置",
|
||||
"text.autoconfig.naturalist.option.bluejaySpawnWeight": "冠蓝鸦生成权重",
|
||||
"text.autoconfig.naturalist.option.butterflySpawnWeight": "蝴蝶生成权重",
|
||||
"text.autoconfig.naturalist.option.canarySpawnWeight": "金丝雀生成权重",
|
||||
"text.autoconfig.naturalist.option.cardinalSpawnWeight": "主红雀生成权重",
|
||||
"text.autoconfig.naturalist.option.coralSnakeSpawnWeight": "珊瑚蛇生成权重",
|
||||
"text.autoconfig.naturalist.option.deerSpawnWeight": "鹿生成权重",
|
||||
"text.autoconfig.naturalist.option.fireflySpawnWeight": "萤火虫生成权重",
|
||||
"text.autoconfig.naturalist.option.bearSpawnWeight": "灰熊生成权重",
|
||||
"text.autoconfig.naturalist.option.rattlesnakeSpawnWeight": "响尾蛇生成权重",
|
||||
"text.autoconfig.naturalist.option.robinSpawnWeight": "旅鸫生成权重",
|
||||
"text.autoconfig.naturalist.option.snailSpawnWeight": "蜗牛生成权重",
|
||||
"text.autoconfig.naturalist.option.snakeSpawnWeight": "蛇生成权重",
|
||||
"text.autoconfig.naturalist.option.forestRabbitSpawnWeight": "森林生物群系中兔子生成权重",
|
||||
"text.autoconfig.naturalist.option.forestFoxSpawnWeight": "森林生物群系中狐狸生成权重",
|
||||
"text.autoconfig.naturalist.option.rhinoSpawnWeight": "犀牛生成权重",
|
||||
"text.autoconfig.naturalist.option.lionSpawnWeight": "狮子生成权重",
|
||||
"text.autoconfig.naturalist.option.elephantSpawnWeight": "大象生成权重",
|
||||
"text.autoconfig.naturalist.option.zebraSpawnWeight": "斑马生成权重",
|
||||
"text.autoconfig.naturalist.option.giraffeSpawnWeight": "长颈鹿生成权重",
|
||||
"text.autoconfig.naturalist.option.hippoSpawnWeight": "河马生成权重",
|
||||
"text.autoconfig.naturalist.option.vultureSpawnWeight": "秃鹫生成权重",
|
||||
"text.autoconfig.naturalist.option.boarSpawnWeight": "野猪生成权重",
|
||||
"text.autoconfig.naturalist.option.removeSavannaFarmAnimals": "热带草原不生成家畜"
|
||||
}
|
1116
lang_20241209/zh_cn/pfm.json
Normal file
1116
lang_20241209/zh_cn/pfm.json
Normal file
File diff suppressed because it is too large
Load Diff
21
lang_20241209/zh_cn/showmeyourskin.json
Normal file
21
lang_20241209/zh_cn/showmeyourskin.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"category.showmeyourskin.showmeyourskin": "展示你的皮肤!",
|
||||
"key.showmeyourskin.open_settings": "打开盔甲设置",
|
||||
"key.showmeyourskin.global_toggle": "开启/关闭模组",
|
||||
"key.showmeyourskin.global_toggle.enable": "启用盔甲渲染自定义。",
|
||||
"key.showmeyourskin.global_toggle.disable": "禁用盔甲渲染自定义。",
|
||||
"gui.showmeyourskin.armorScreen.globalToggleTooltip": "全局切换,按 %1$s 切换游戏内设置。",
|
||||
"gui.showmeyourskin.armorScreen.global": "全局",
|
||||
"gui.showmeyourskin.armorScreen.playerSelector": "盔甲设置",
|
||||
"gui.showmeyourskin.armorScreen.headSlider": "头盔:%d%%",
|
||||
"gui.showmeyourskin.armorScreen.chestSlider": "胸甲:%d%%",
|
||||
"gui.showmeyourskin.armorScreen.legsSlider": "护腿:%d%%",
|
||||
"gui.showmeyourskin.armorScreen.feetSlider": "靴子:%d%%",
|
||||
"gui.showmeyourskin.armorScreen.glintTooltip": "启用附魔光效",
|
||||
"gui.showmeyourskin.armorScreen.combatTooltip": "战斗时自动禁用透明效果",
|
||||
"gui.showmeyourskin.armorScreen.nameTagTooltip": "显示玩家名称标签",
|
||||
"gui.showmeyourskin.armorScreen.showElytraTooltip": "显示鞘翅",
|
||||
"gui.showmeyourskin.armorScreen.shieldGlintTooltip": "在盾牌上显示附魔光效",
|
||||
"gui.showmeyourskin.armorScreen.openButtonTooltip": "打开盔甲透明度覆盖",
|
||||
"gui.showmeyourskin.armorScreen.deleteButtonTooltip": "删除透明度覆盖"
|
||||
}
|
583
lang_20241209/zh_cn/simplyswords.json
Normal file
583
lang_20241209/zh_cn/simplyswords.json
Normal file
@ -0,0 +1,583 @@
|
||||
{
|
||||
"item.simplyswords.iron_cutlass": "铁弯刀",
|
||||
"item.simplyswords.gold_cutlass": "金弯刀",
|
||||
"item.simplyswords.diamond_cutlass": "钻石弯刀",
|
||||
"item.simplyswords.netherite_cutlass": "下界合金弯刀",
|
||||
"item.simplyswords.runic_rapier": "符文西洋剑",
|
||||
"item.simplyswords.netherite_rapier": "下界合金西洋剑",
|
||||
"item.simplyswords.diamond_rapier": "钻石西洋剑",
|
||||
"item.simplyswords.gold_rapier": "金西洋剑",
|
||||
"item.simplyswords.iron_rapier": "铁西洋剑",
|
||||
"item.simplyswords.iron_glaive": "铁长柄刀",
|
||||
"item.simplyswords.gold_glaive": "金长柄刀",
|
||||
"item.simplyswords.diamond_glaive": "钻石长柄刀",
|
||||
"item.simplyswords.netherite_glaive": "下界合金长柄刀",
|
||||
"item.simplyswords.iron_warglaive": "铁战刃",
|
||||
"item.simplyswords.gold_warglaive": "金战刃",
|
||||
"item.simplyswords.diamond_warglaive": "钻石战刃",
|
||||
"item.simplyswords.netherite_warglaive": "下界合金战刃",
|
||||
"item.simplyswords.iron_spear": "铁矛",
|
||||
"item.simplyswords.gold_spear": "金矛",
|
||||
"item.simplyswords.diamond_spear": "钻石矛",
|
||||
"item.simplyswords.netherite_spear": "下界合金矛",
|
||||
"item.simplyswords.iron_sai": "铁钗",
|
||||
"item.simplyswords.diamond_sai": "钻石钗",
|
||||
"item.simplyswords.gold_sai": "金钗",
|
||||
"item.simplyswords.netherite_sai": "下界合金钗",
|
||||
"item.simplyswords.iron_katana": "铁武士刀",
|
||||
"item.simplyswords.gold_katana": "金武士刀",
|
||||
"item.simplyswords.diamond_katana": "钻石武士刀",
|
||||
"item.simplyswords.netherite_katana": "下界合金武士刀",
|
||||
"item.simplyswords.runic_cutlass": "符文弯刀",
|
||||
"item.simplyswords.runic_katana": "符文武士刀",
|
||||
"item.simplyswords.runic_sai": "符文钗",
|
||||
"item.simplyswords.diamond_claymore": "钻石阔剑",
|
||||
"item.simplyswords.netherite_claymore": "下界合金阔剑",
|
||||
"item.simplyswords.runic_claymore": "符文阔剑",
|
||||
"item.simplyswords.watcher_claymore": "守望者",
|
||||
"item.simplyswords.brimstone_claymore": "硫磺阔剑",
|
||||
"item.simplyswords.gold_claymore": "金阔剑",
|
||||
"item.simplyswords.iron_claymore": "铁阔剑",
|
||||
"item.simplyswords.runic_longsword": "符文长剑",
|
||||
"item.simplyswords.watching_warglaive": "守望战刃",
|
||||
"item.simplyswords.iron_longsword": "铁长剑",
|
||||
"item.simplyswords.gold_longsword": "金长剑",
|
||||
"item.simplyswords.diamond_longsword": "钻石长剑",
|
||||
"item.simplyswords.netherite_longsword": "下界合金长剑",
|
||||
"item.simplyswords.toxic_longsword": "瘟疫长剑",
|
||||
"item.simplyswords.runic_twinblade": "符文双刃剑",
|
||||
"item.simplyswords.runic_glaive": "符文长柄刀",
|
||||
"item.simplyswords.runic_spear": "符文矛",
|
||||
"item.simplyswords.runic_warglaive": "符文战刃",
|
||||
"item.simplyswords.runic_greathammer": "符文巨锤",
|
||||
"item.simplyswords.runic_greataxe": "符文巨斧",
|
||||
"item.simplyswords.iron_twinblade": "铁双刃剑",
|
||||
"item.simplyswords.gold_twinblade": "金双刃剑",
|
||||
"item.simplyswords.diamond_twinblade": "钻石双刃剑",
|
||||
"item.simplyswords.netherite_twinblade": "下界合金双刃剑",
|
||||
"item.simplyswords.iron_greathammer": "铁巨锤",
|
||||
"item.simplyswords.gold_greathammer": "金巨锤",
|
||||
"item.simplyswords.diamond_greathammer": "钻石巨锤",
|
||||
"item.simplyswords.netherite_greathammer": "下界合金巨锤",
|
||||
"item.simplyswords.iron_greataxe": "铁巨斧",
|
||||
"item.simplyswords.gold_greataxe": "金巨斧",
|
||||
"item.simplyswords.diamond_greataxe": "钻石巨斧",
|
||||
"item.simplyswords.netherite_greataxe": "下界合金巨斧",
|
||||
"item.simplyswords.iron_chakram": "铁环刃",
|
||||
"item.simplyswords.gold_chakram": "金环刃",
|
||||
"item.simplyswords.diamond_chakram": "钻石环刃",
|
||||
"item.simplyswords.netherite_chakram": "下界合金环刃",
|
||||
"item.simplyswords.iron_scythe": "铁长柄镰",
|
||||
"item.simplyswords.gold_scythe": "金长柄镰",
|
||||
"item.simplyswords.diamond_scythe": "钻石长柄镰",
|
||||
"item.simplyswords.netherite_scythe": "下界合金长柄镰",
|
||||
"item.simplyswords.runic_chakram": "符文环刃",
|
||||
"item.simplyswords.runic_scythe": "符文长柄镰",
|
||||
"item.simplyswords.storms_edge": "风暴之刃",
|
||||
"item.simplyswords.stormbringer": "风暴使者",
|
||||
"item.simplyswords.sword_on_a_stick": "带长棍的剑",
|
||||
"item.simplyswords.bramblethorn": "木棘之杖",
|
||||
"item.simplyswords.magic_estoc": "蕴魔佩剑",
|
||||
"item.simplyswords.mjolnir": "雷神之锤",
|
||||
"item.simplyswords.emberblade": "余烬之刃",
|
||||
"item.simplyswords.hearthflame": "炉火巨锤",
|
||||
"item.simplyswords.twisted_blade": "扭曲之刃",
|
||||
"item.simplyswords.twilight": "暮光",
|
||||
"item.simplyswords.soulkeeper": "聚魂之锤",
|
||||
"item.simplyswords.soulstealer": "窃魂之剑",
|
||||
"item.simplyswords.soulrender": "裂魂之镰",
|
||||
"item.simplyswords.soulpyre": "灵魂焚烧",
|
||||
"item.simplyswords.frostfall": "冰霜降临",
|
||||
"item.simplyswords.molten_edge": "熔火之刃",
|
||||
"item.simplyswords.livyatan": "利维坦",
|
||||
"item.simplyswords.icewhisper": "冰语",
|
||||
"item.simplyswords.arcanethyst": "奥术紫水晶",
|
||||
"item.simplyswords.thunderbrand": "雷霆印记",
|
||||
"item.simplyswords.slumbering_lichblade": "沉睡巫妖之刃",
|
||||
"item.simplyswords.waking_lichblade": "觉醒巫妖之刃",
|
||||
"item.simplyswords.awakened_lichblade": "觉醒的巫妖之刃",
|
||||
"item.simplyswords.runic_tablet": "符文石板",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_claymore": "精金阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_cutlass": "精金弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_glaive": "精金长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_katana": "精金武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_longsword": "精金长剑",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_rapier": "精金西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_sai": "精金钗",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_spear": "精金矛",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_twinblade": "精金双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_warglaive": "精金战刃",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_greathammer": "精金巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_greataxe": "精金巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_chakram": "精金环刃",
|
||||
"item.simplyswords.mythicmetals_compat.adamantite.adamantite_scythe": "精金长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_claymore": "激水阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_cutlass": "激水弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_glaive": "激水长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_katana": "激水武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_longsword": "激水长剑",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_rapier": "激水西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_sai": "激水钗",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_spear": "激水矛",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_twinblade": "激水双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_warglaive": "激水战刃",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_greathammer": "激水巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_greataxe": "激水巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_chakram": "激水环刃",
|
||||
"item.simplyswords.mythicmetals_compat.aquarium.aquarium_scythe": "激水长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_claymore": "聚爆石阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_cutlass": "聚爆石弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_glaive": "聚爆石长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_katana": "聚爆石武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_longsword": "聚爆石长剑",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_rapier": "聚爆石西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_sai": "聚爆石钗",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_spear": "聚爆石矛",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_twinblade": "聚爆石双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_warglaive": "聚爆石战刃",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_greathammer": "聚爆石巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_greataxe": "聚爆石巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_chakram": "聚爆石环刃",
|
||||
"item.simplyswords.mythicmetals_compat.banglum.banglum_scythe": "聚爆石长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_claymore": "点金石阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_cutlass": "点金石弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_glaive": "点金石长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_katana": "点金石武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_longsword": "点金石长剑",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_rapier": "点金石西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_sai": "点金石钗",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_spear": "点金石矛",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_twinblade": "点金石双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_warglaive": "点金石战刃",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_greathammer": "点金石巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_greataxe": "点金石巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_chakram": "点金石环刃",
|
||||
"item.simplyswords.mythicmetals_compat.carmot.carmot_scythe": "点金石长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_claymore": "凯伯阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_cutlass": "凯伯弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_glaive": "凯伯长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_katana": "凯伯武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_longsword": "凯伯长剑",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_rapier": "凯伯西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_sai": "凯伯钗",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_spear": "凯伯矛",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_twinblade": "凯伯双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_warglaive": "凯伯战刃",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_greathammer": "凯伯巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_greataxe": "凯伯巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_chakram": "凯伯环刃",
|
||||
"item.simplyswords.mythicmetals_compat.kyber.kyber_scythe": "凯伯长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_claymore": "秘银阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_cutlass": "秘银弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_glaive": "秘银长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_katana": "秘银武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_longsword": "秘银长剑",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_rapier": "秘银西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_sai": "秘银钗",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_spear": "秘银矛",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_twinblade": "秘银双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_warglaive": "秘银战刃",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_greathammer": "秘银巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_greataxe": "秘银巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_chakram": "秘银环刃",
|
||||
"item.simplyswords.mythicmetals_compat.mythril.mythril_scythe": "秘银长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_claymore": "山铜阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_cutlass": "山铜弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_glaive": "山铜长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_katana": "山铜武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_longsword": "山铜长剑",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_rapier": "山铜西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_sai": "山铜钗",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_spear": "山铜矛",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_twinblade": "山铜双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_warglaive": "山铜战刃",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_greathammer": "山铜巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_greataxe": "山铜巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_chakram": "山铜环刃",
|
||||
"item.simplyswords.mythicmetals_compat.orichalcum.orichalcum_scythe": "山铜长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_claymore": "锇阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_cutlass": "锇弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_glaive": "锇长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_katana": "锇武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_longsword": "锇长剑",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_rapier": "锇西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_sai": "锇钗",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_spear": "锇矛",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_twinblade": "锇双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_warglaive": "锇战刃",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_greathammer": "锇巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_greataxe": "锇巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_chakram": "锇环刃",
|
||||
"item.simplyswords.mythicmetals_compat.osmium.osmium_scythe": "锇长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_claymore": "钷阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_cutlass": "钷弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_glaive": "钷长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_katana": "钷武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_longsword": "钷长剑",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_rapier": "钷西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_sai": "钷钗",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_spear": "钷矛",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_twinblade": "钷双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_warglaive": "钷战刃",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_greathammer": "钷巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_greataxe": "钷巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_chakram": "钷环刃",
|
||||
"item.simplyswords.mythicmetals_compat.prometheum.prometheum_scythe": "钷长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_claymore": "兆金阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_cutlass": "兆金弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_glaive": "兆金长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_katana": "兆金武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_longsword": "兆金长剑",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_rapier": "兆金西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_sai": "兆金钗",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_spear": "兆金矛",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_twinblade": "兆金双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_warglaive": "兆金战刃",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_greathammer": "兆金巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_greataxe": "兆金巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_chakram": "兆金环刃",
|
||||
"item.simplyswords.mythicmetals_compat.quadrillum.quadrillum_scythe": "兆金长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_claymore": "符石阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_cutlass": "符石弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_glaive": "符石长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_katana": "符石武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_longsword": "符石长剑",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_rapier": "符石西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_sai": "符石钗",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_spear": "符石矛",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_twinblade": "符石双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_warglaive": "符石战刃",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_greathammer": "符石巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_greataxe": "符石巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_chakram": "符石环刃",
|
||||
"item.simplyswords.mythicmetals_compat.runite.runite_scythe": "符石长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_claymore": "星辰铂金阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_cutlass": "星辰铂金弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_glaive": "星辰铂金长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_katana": "星辰铂金武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_longsword": "星辰铂金长剑",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_rapier": "星辰铂金西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_sai": "星辰铂金钗",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_spear": "星辰铂金矛",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_twinblade": "星辰铂金双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_warglaive": "星辰铂金战刃",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_greathammer": "星辰铂金巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_greataxe": "星辰铂金巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_chakram": "星辰铂金环刃",
|
||||
"item.simplyswords.mythicmetals_compat.star_platinum.star_platinum_scythe": "星辰铂金长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_claymore": "青铜阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_cutlass": "青铜弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_glaive": "青铜长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_katana": "青铜武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_longsword": "青铜长剑",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_rapier": "青铜西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_sai": "青铜钗",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_spear": "青铜矛",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_twinblade": "青铜双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_warglaive": "青铜战刃",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_greathammer": "青铜巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_greataxe": "青铜巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_chakram": "青铜环刃",
|
||||
"item.simplyswords.mythicmetals_compat.bronze.bronze_scythe": "青铜长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_claymore": "钯金阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_cutlass": "钯金弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_glaive": "钯金长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_katana": "钯金武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_longsword": "钯金长剑",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_rapier": "钯金西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_sai": "钯金钗",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_spear": "钯金矛",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_twinblade": "钯金双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_warglaive": "钯金战刃",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_greathammer": "钯金巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_greataxe": "钯金巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_chakram": "钯金环刃",
|
||||
"item.simplyswords.mythicmetals_compat.palladium.palladium_scythe": "钯金长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_claymore": "飓霆阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_cutlass": "飓霆弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_glaive": "飓霆长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_katana": "飓霆武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_longsword": "飓霆长剑",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_rapier": "飓霆西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_sai": "飓霆钗",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_spear": "飓霆矛",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_twinblade": "飓霆双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_warglaive": "飓霆战刃",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_greathammer": "飓霆巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_greataxe": "飓霆巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_chakram": "飓霆环刃",
|
||||
"item.simplyswords.mythicmetals_compat.stormyx.stormyx_scythe": "飓霆长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_claymore": "钢阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_cutlass": "钢弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_glaive": "钢长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_katana": "钢武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_longsword": "钢长剑",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_rapier": "钢西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_sai": "钢钗",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_spear": "钢矛",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_twinblade": "钢双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_warglaive": "钢战刃",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_greathammer": "钢巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_greataxe": "钢巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_chakram": "钢环刃",
|
||||
"item.simplyswords.mythicmetals_compat.steel.steel_scythe": "钢长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_claymore": "倚天阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_cutlass": "倚天弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_glaive": "倚天长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_katana": "倚天武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_longsword": "倚天长剑",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_rapier": "倚天西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_sai": "倚天钗",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_spear": "倚天矛",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_twinblade": "倚天双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_warglaive": "倚天战刃",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_greathammer": "倚天巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_greataxe": "倚天巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_chakram": "倚天环刃",
|
||||
"item.simplyswords.mythicmetals_compat.celestium.celestium_scythe": "倚天长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_claymore": "炼金阔剑",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_cutlass": "炼金弯刀",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_glaive": "炼金长柄刀",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_katana": "炼金武士刀",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_longsword": "炼金长剑",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_rapier": "炼金西洋剑",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_sai": "炼金钗",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_spear": "炼金矛",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_twinblade": "炼金双刃剑",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_warglaive": "炼金战刃",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_greathammer": "炼金巨锤",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_greataxe": "炼金巨斧",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_chakram": "炼金环刃",
|
||||
"item.simplyswords.mythicmetals_compat.metallurgium.metallurgium_scythe": "炼金长柄镰",
|
||||
"item.simplyswords.mythicmetals_compat.copper.copper_longsword": "铜长剑",
|
||||
"item.simplyswords.mythicmetals_compat.durasteel.durasteel_greathammer": "韧钢巨锤",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_claymore": "戈伯阔剑",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_cutlass": "戈伯弯刀",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_glaive": "戈伯长柄刀",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_katana": "戈伯武士刀",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_longsword": "戈伯长剑",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_rapier": "戈伯西洋剑",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_sai": "戈伯钗",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_spear": "戈伯矛",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_twinblade": "戈伯双刃剑",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_warglaive": "戈伯战刃",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_greathammer": "戈伯巨锤",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_greataxe": "戈伯巨斧",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_chakram": "戈伯环刃",
|
||||
"item.simplyswords.gobber_compat.gobber.gobber_scythe": "戈伯长柄镰",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_claymore": "下界阔剑",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_cutlass": "下界弯刀",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_glaive": "下界长柄刀",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_katana": "下界武士刀",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_longsword": "下界长剑",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_rapier": "下界西洋剑",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_sai": "下界钗",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_spear": "下界矛",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_twinblade": "下界双刃剑",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_warglaive": "下界战刃",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_greathammer": "下界巨锤",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_greataxe": "下界巨斧",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_chakram": "下界环刃",
|
||||
"item.simplyswords.gobber_compat.gobber_nether.gobber_nether_scythe": "下界长柄镰",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_claymore": "末地戈伯阔剑",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_cutlass": "末地戈伯弯刀",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_glaive": "末地戈伯长柄刀",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_katana": "末地戈伯武士刀",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_longsword": "末地戈伯长剑",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_rapier": "末地戈伯西洋剑",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_sai": "末地戈伯钗",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_spear": "末地戈伯矛",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_twinblade": "末地戈伯双刃剑",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_warglaive": "末地戈伯战刃",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_greathammer": "末地戈伯巨锤",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_greataxe": "末地戈伯巨斧",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_chakram": "末地戈伯环刃",
|
||||
"item.simplyswords.gobber_compat.gobber_end.gobber_end_scythe": "末地戈伯长柄镰",
|
||||
"itemGroup.simplyswords.simplyswords": "简易刀剑",
|
||||
"item.simplyswords.awakening": "觉醒 LV: %d ",
|
||||
"item.simplyswords.awakening.exp": "觉醒经验: %d%% ",
|
||||
"item.simplyswords.awakening.powers": "觉醒之力: ",
|
||||
"effect.simplyswords.freeze": "冻结",
|
||||
"effect.simplyswords.burn": "硫磺",
|
||||
"effect.simplyswords.omen": "预兆",
|
||||
"effect.simplyswords.watcher": "守望者",
|
||||
"effect.simplyswords.electric": "闪电",
|
||||
"effect.simplyswords.wildfire": "野火",
|
||||
"item.simplyswords.onrightclick": "右键时:",
|
||||
"item.simplyswords.firesworditem.tooltip1": "独特效果:硫磺",
|
||||
"item.simplyswords.firesworditem.tooltip2": "击中时有概率向前散射会爆炸的硫磺。",
|
||||
"item.simplyswords.bramblesworditem.tooltip1": "独特效果:木棘",
|
||||
"item.simplyswords.bramblesworditem.tooltip2": "击中时有概率释放一片有毒的孢子云,",
|
||||
"item.simplyswords.bramblesworditem.tooltip3": "使附近的所有生物获得缓慢和中毒效果。",
|
||||
"item.simplyswords.stormsworditem.tooltip1": "独特效果:风暴",
|
||||
"item.simplyswords.stormsworditem.tooltip2": "当下雨/湿润时:击中时有概率从空中召唤闪电,",
|
||||
"item.simplyswords.stormsworditem.tooltip3": "劈到你的敌人身上。",
|
||||
"item.simplyswords.watchersworditem.tooltip1": "独特效果:预兆",
|
||||
"item.simplyswords.watchersworditem.tooltip2": "击中时有概率从生命值",
|
||||
"item.simplyswords.watchersworditem.tooltip3": "低于%d%%的敌人身上吸取生命,并将部分生命",
|
||||
"item.simplyswords.watchersworditem.tooltip4": "以伤害吸收的方式给予持有者。",
|
||||
"item.simplyswords.watchersworditem.tooltip5": "独特效果:守望者",
|
||||
"item.simplyswords.watchersworditem.tooltip6": "击中时有概率吸取附近敌人的生命,并治疗",
|
||||
"item.simplyswords.watchersworditem.tooltip7": "持有者。",
|
||||
"item.simplyswords.plaguesworditem.tooltip1": "独特效果:瘟疫",
|
||||
"item.simplyswords.plaguesworditem.tooltip2": "击中时有概率将正面药水效果转变为其对应",
|
||||
"item.simplyswords.plaguesworditem.tooltip3": "的负面效果。",
|
||||
"item.simplyswords.emberiresworditem.tooltip1": "独特效果:余烬怒火",
|
||||
"item.simplyswords.emberiresworditem.tooltip2": "击中时有概率用火焰包裹持有者,对其",
|
||||
"item.simplyswords.emberiresworditem.tooltip3": "造成伤害并给予力量效果。",
|
||||
"item.simplyswords.emberiresworditem.tooltip4": "消除火焰,失去力量效果并向前发射",
|
||||
"item.simplyswords.emberiresworditem.tooltip5": "一个火球。",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip1": "独特效果:火山之怒",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip2": "击中时有概率点燃你的目标,然后",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip3": "将其弹飞。",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip4": "积蓄你的愤怒,用生命交换以获得",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip5": "抗性,同时造成震动将敌人拉向你。",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip6": "",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip7": "停止积蓄以释放愤怒,将敌人击飞、",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip8": "点燃,并造成更多伤害,持续时间",
|
||||
"item.simplyswords.volcanicfurysworditem.tooltip9": "越长伤害越高。",
|
||||
"item.simplyswords.ferocitysworditem.tooltip1": "独特效果:凶猛",
|
||||
"item.simplyswords.ferocitysworditem.tooltip2": "击中时有概率提升你的攻击速度,最多",
|
||||
"item.simplyswords.ferocitysworditem.tooltip3": "可以叠加15次。",
|
||||
"item.simplyswords.ferocitysworditem.tooltip4": "消耗所有叠加层数,获得力量效果,持续时间",
|
||||
"item.simplyswords.ferocitysworditem.tooltip5": "等于消耗的层数。",
|
||||
"item.simplyswords.ferocitysworditem.tooltip6": "",
|
||||
"item.simplyswords.rendsworditem.tooltip1": "独特效果:灵魂撕裂",
|
||||
"item.simplyswords.rendsworditem.tooltip2": "击中时有概率给予目标可叠加的虚弱效果。",
|
||||
"item.simplyswords.rendsworditem.tooltip3": "",
|
||||
"item.simplyswords.rendsworditem.tooltip4": "消耗周围敌人身上所有叠加的虚弱效果,",
|
||||
"item.simplyswords.rendsworditem.tooltip5": "对他们造成伤害并治疗你,效果正比于",
|
||||
"item.simplyswords.rendsworditem.tooltip6": "消耗的叠加层数",
|
||||
"item.simplyswords.soulsworditem.tooltip1": "独特效果:灵魂融合",
|
||||
"item.simplyswords.soulsworditem.tooltip2": "击中时有概率吸收周围的灵魂,使持有者变得",
|
||||
"item.simplyswords.soulsworditem.tooltip3": "坚韧,并降低攻击速度。",
|
||||
"item.simplyswords.soulsworditem.tooltip4": "释放灵魂,将攻速减益转移到附近的敌人",
|
||||
"item.simplyswords.soulsworditem.tooltip5": "身上,并恢复持有者的生命。",
|
||||
"item.simplyswords.soulsworditem.tooltip6": "",
|
||||
"item.simplyswords.stealsworditem.tooltip1": "独特效果:灵魂窃取",
|
||||
"item.simplyswords.stealsworditem.tooltip2": "击中时有概率吸收敌人的灵魂,获得急迫效果",
|
||||
"item.simplyswords.stealsworditem.tooltip3": "并使敌人获得缓慢效果,对敌人进行标记。",
|
||||
"item.simplyswords.stealsworditem.tooltip4": "",
|
||||
"item.simplyswords.stealsworditem.tooltip5": "如果位于标记的敌人周围5格范围内,则归还",
|
||||
"item.simplyswords.stealsworditem.tooltip6": "其灵魂,向前跳跃并获得隐身效果。",
|
||||
"item.simplyswords.stealsworditem.tooltip7": "",
|
||||
"item.simplyswords.stealsworditem.tooltip8": "如果距离标记的敌人超过5格,则闪现到其位置,",
|
||||
"item.simplyswords.stealsworditem.tooltip9": "强行归还其灵魂,使其失明并造成伤害。",
|
||||
"item.simplyswords.stealsworditem.tooltip10": "",
|
||||
"item.simplyswords.soulpyresworditem.tooltip1": "独特效果:灵魂束缚",
|
||||
"item.simplyswords.soulpyresworditem.tooltip2": "激发灵魂束缚,将与目标交换位置,",
|
||||
"item.simplyswords.soulpyresworditem.tooltip3": "同时冻结目标并获得急速和抗性。",
|
||||
"item.simplyswords.soulpyresworditem.tooltip4": "",
|
||||
"item.simplyswords.soulpyresworditem.tooltip5": "到达目的地后,点燃附近敌人,",
|
||||
"item.simplyswords.soulpyresworditem.tooltip6": "并将他们拉近你。",
|
||||
"item.simplyswords.soulpyresworditem.tooltip7": "经过 %ds 后,灵魂束缚被切断,",
|
||||
"item.simplyswords.soulpyresworditem.tooltip8": "你将与目标交换位置,再次发生。",
|
||||
"item.simplyswords.soulpyresworditem.tooltip9": "",
|
||||
"item.simplyswords.frostfallsworditem.tooltip1": "独特效果:冰霜愤怒",
|
||||
"item.simplyswords.frostfallsworditem.tooltip2": "击中时有几率将附近敌人包裹在",
|
||||
"item.simplyswords.frostfallsworditem.tooltip3": "冰中,使其无法受到伤害。",
|
||||
"item.simplyswords.frostfallsworditem.tooltip4": "经过 %ds 后,冰层碎裂,造成 %d 点伤害。",
|
||||
"item.simplyswords.frostfallsworditem.tooltip5": "将自己包裹在冰中 %ds,使你",
|
||||
"item.simplyswords.frostfallsworditem.tooltip6": "免疫伤害并获得再生效果。",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip1": "独特效果:熔岩怒吼",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip2": "击中时有几率点燃你的敌人或你自己。",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip3": "当生命值低时,转而获得再生效果。",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip4": "根据缺失的生命值获得力量和速度。",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip5": "释放强力的怒吼,将附近敌人击退并",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip6": "点燃。每击中一个敌人,你将获得",
|
||||
"item.simplyswords.moltenedgesworditem.tooltip7": "一个吸收和急速的增益效果,持续 %ds。",
|
||||
"item.simplyswords.livyatansworditem.tooltip1": "独特效果:冰霜碎裂",
|
||||
"item.simplyswords.livyatansworditem.tooltip2": "击中时有几率将附近敌人包裹在",
|
||||
"item.simplyswords.livyatansworditem.tooltip3": "冰中,使其无法受到伤害。",
|
||||
"item.simplyswords.livyatansworditem.tooltip4": "经过 %ds 后,冰层碎裂,造成 %d 点伤害。",
|
||||
"item.simplyswords.livyatansworditem.tooltip5": "预先打破包裹在敌人身上的冰,",
|
||||
"item.simplyswords.livyatansworditem.tooltip6": "越早打破冰层,造成的伤害越高。",
|
||||
"item.simplyswords.icewhispersworditem.tooltip1": "独特效果:永冻",
|
||||
"item.simplyswords.icewhispersworditem.tooltip2": "持有时,获得一个冰霜光环,对",
|
||||
"item.simplyswords.icewhispersworditem.tooltip3": "范围内的敌人造成伤害并减速,范围为 %d 格。",
|
||||
"item.simplyswords.icewhispersworditem.tooltip4": "消耗你的饥饿值来召唤一场",
|
||||
"item.simplyswords.icewhispersworditem.tooltip5": "暴风雪,在暴风雪范围内减速并",
|
||||
"item.simplyswords.icewhispersworditem.tooltip6": "对敌人造成增强的伤害,范围为 %d 格。",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip1": "独特效果:奥术攻击",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip2": "击中时有几率获得一个奥术充能。",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip3": "消耗你的奥术充能来攻击",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip4": "附近敌人,每个充能都会增强攻击效果。",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip5": "1 充能:将敌人举起至空中。",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip6": "2 充能:造成持续伤害。",
|
||||
"item.simplyswords.arcanethystsworditem.tooltip7": "3 充能:将敌人猛击到地面。",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip1": "独特效果:雷霆闪击",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip2": "击中时有几率刷新技能冷却时间。",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip3": "短暂减速并为武器充能,",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip4": "对附近敌人造成区域伤害。",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip5": "充能后向前冲刺,获得急速效果,",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip6": "并对路径上的敌人造成巨大伤害。",
|
||||
"item.simplyswords.thunderbrandsworditem.tooltip7": "",
|
||||
"item.simplyswords.stormsedgesworditem.tooltip1": "独特效果:风暴震击",
|
||||
"item.simplyswords.stormsedgesworditem.tooltip2": "击中时有几率刷新技能冷却时间。",
|
||||
"item.simplyswords.stormsedgesworditem.tooltip3": "像闪电一样向前冲刺,获得短暂的免疫效果,",
|
||||
"item.simplyswords.stormsedgesworditem.tooltip4": "同时增加持续的速度和急速。",
|
||||
"item.simplyswords.stormsedgesworditem.tooltip5": "",
|
||||
"item.simplyswords.lichbladesworditem.tooltip1": "独特效果:灵魂痛苦 I",
|
||||
"item.simplyswords.lichbladesworditem.tooltip1.2": "独特效果:灵魂痛苦 II",
|
||||
"item.simplyswords.lichbladesworditem.tooltip1.3": "独特效果:灵魂痛苦 III",
|
||||
"item.simplyswords.lichbladesworditem.tooltip2": "受苦的灵魂从你身上释放,",
|
||||
"item.simplyswords.lichbladesworditem.tooltip3": "对附近的敌人造成伤害。",
|
||||
"item.simplyswords.lichbladesworditem.tooltip4": "命令你的灵魂攻击远处目标,",
|
||||
"item.simplyswords.lichbladesworditem.tooltip5": "造成快速伤害,有几率吸取敌人的生命。",
|
||||
"item.simplyswords.lichbladesworditem.tooltip6": "",
|
||||
"item.simplyswords.lichbladesworditem.tooltip7": "攻击结束后,灵魂将回归你身边,",
|
||||
"item.simplyswords.lichbladesworditem.tooltip8": "并为你提供吸收效果。",
|
||||
"item.simplyswords.lichbladesworditem.tooltip9": "",
|
||||
"item.simplyswords.stormbringersworditem.tooltip1": "独特效果:电击反弹",
|
||||
"item.simplyswords.stormbringersworditem.tooltip2": "将能量集中到剑身的单点,",
|
||||
"item.simplyswords.stormbringersworditem.tooltip3": "使你能短暂阻挡来袭的攻击。",
|
||||
"item.simplyswords.stormbringersworditem.tooltip4": "",
|
||||
"item.simplyswords.stormbringersworditem.tooltip5": "当你成功与敌人的近战攻击匹配时,",
|
||||
"item.simplyswords.stormbringersworditem.tooltip6": "触发招架,造成伤害并击退敌人,",
|
||||
"item.simplyswords.stormbringersworditem.tooltip7": "同时减少技能冷却时间。",
|
||||
"item.simplyswords.stormbringersworditem.tooltip8": "",
|
||||
"item.simplyswords.stormbringersworditem.tooltip9": "连续招架会增强技能伤害,",
|
||||
"item.simplyswords.stormbringersworditem.tooltip10": "并缩短技能冷却时间。",
|
||||
"item.simplyswords.stormbringersworditem.tooltip11": "",
|
||||
"item.simplyswords.levitationsworditem.tooltip1": "符文之力:漂浮",
|
||||
"item.simplyswords.levitationsworditem.tooltip2": "击中时有概率反转攻击目标的重力。",
|
||||
"item.simplyswords.levitationsworditem.tooltip3": "",
|
||||
"item.simplyswords.speedsworditem.tooltip1": "符文之力:极速",
|
||||
"item.simplyswords.speedsworditem.tooltip2": "击中时有概率在一段时间内提升持有者的",
|
||||
"item.simplyswords.speedsworditem.tooltip3": "移动速度。",
|
||||
"item.simplyswords.slownesssworditem.tooltip1": "符文之力:缓速",
|
||||
"item.simplyswords.slownesssworditem.tooltip2": "击中时有概率在一段时间内降低攻击目标的",
|
||||
"item.simplyswords.slownesssworditem.tooltip3": "移动速度。",
|
||||
"item.simplyswords.freezesworditem.tooltip1": "符文之力:冰冻",
|
||||
"item.simplyswords.freezesworditem.tooltip2": "击中时有概率使攻击目标降温或冰冻。",
|
||||
"item.simplyswords.wildfiresworditem.tooltip1": "符文之力:野火",
|
||||
"item.simplyswords.wildfiresworditem.tooltip2": "击中时有概率点燃附近所有和攻击目标",
|
||||
"item.simplyswords.wildfiresworditem.tooltip3": "同类的实体。",
|
||||
"item.simplyswords.zephyrsworditem.tooltip1": "符文能量:西风",
|
||||
"item.simplyswords.zephyrsworditem.tooltip2": "击中时有几率获得攻击力和移动速度。",
|
||||
"item.simplyswords.zephyrsworditem.tooltip3": "",
|
||||
"item.simplyswords.shieldingsworditem.tooltip1": "符文能量:护盾",
|
||||
"item.simplyswords.shieldingsworditem.tooltip2": "击中时有几率获得伤害吸收。",
|
||||
"item.simplyswords.shieldingsworditem.tooltip3": "",
|
||||
"item.simplyswords.stoneskinsworditem.tooltip1": "符文能量:石肤",
|
||||
"item.simplyswords.stoneskinsworditem.tooltip2": "击中时有几率提高你的抗性,",
|
||||
"item.simplyswords.stoneskinsworditem.tooltip3": "但会降低移动速度。",
|
||||
"item.simplyswords.trailblazesworditem.tooltip1": "符文能量:开路先锋",
|
||||
"item.simplyswords.trailblazesworditem.tooltip2": "击中时有几率获得抗火和速度,",
|
||||
"item.simplyswords.trailblazesworditem.tooltip3": "并点燃自己。",
|
||||
"item.simplyswords.weakensworditem.tooltip1": "符文能量:削弱",
|
||||
"item.simplyswords.weakensworditem.tooltip2": "击中时有几率减缓并虚弱你的目标。",
|
||||
"item.simplyswords.weakensworditem.tooltip3": "",
|
||||
"item.simplyswords.unstablesworditem.tooltip1": "符文能量:不稳定",
|
||||
"item.simplyswords.unstablesworditem.tooltip2": "定期为持有者施加随机效果。",
|
||||
"item.simplyswords.unstablesworditem.tooltip3": "",
|
||||
"item.simplyswords.activedefencesworditem.tooltip1": "符文能量:主动防御",
|
||||
"item.simplyswords.activedefencesworditem.tooltip2": "定期向附近敌人发射箭矢(需要箭矢)。",
|
||||
"item.simplyswords.activedefencesworditem.tooltip3": "",
|
||||
"item.simplyswords.frostwardsworditem.tooltip1": "符文能量:霜之守卫",
|
||||
"item.simplyswords.frostwardsworditem.tooltip2": "定期向附近所有敌人发射减速雪球。",
|
||||
"item.simplyswords.frostwardsworditem.tooltip3": "",
|
||||
"item.simplyswords.unidentifiedsworditem.tooltip1": "符文能量:????",
|
||||
"item.simplyswords.unidentifiedsworditem.tooltip2": "点击以识别。",
|
||||
"item.simplyswords.common.blacklisteffect": "能力已禁用"
|
||||
}
|
115
lang_20241209/zh_cn/things.json
Normal file
115
lang_20241209/zh_cn/things.json
Normal file
@ -0,0 +1,115 @@
|
||||
{
|
||||
"item.things.things_almanac": "杂七杂八的手册",
|
||||
"item.things.guide_book.landing": "关于$(thing)『杂七杂八的东西』$()的杂七杂八的手册",
|
||||
"block.things.stone_glowstone_fixture": "石制萤石灯具",
|
||||
"block.things.quartz_glowstone_fixture": "石英制萤石灯具",
|
||||
"block.things.gleaming_ore": "璀璨矿",
|
||||
"block.things.deepslate_gleaming_ore": "深层璀璨矿",
|
||||
"block.things.diamond_pressure_plate": "钻石压力板",
|
||||
"item.things.hardening_catalyst": "硬化催化剂",
|
||||
"item.things.hardening_catalyst.tooltip": "在铁砧上使用,使任何物品变为无法破坏",
|
||||
"item.things.recall_potion": "回忆药水",
|
||||
"item.things.container_key": "容器钥匙",
|
||||
"item.things.container_key.tooltip": "用于锁定容器,蹲下点击以锁定/解锁。打开锁定容器需要此钥匙",
|
||||
"item.things.bater_wucket": "木涌",
|
||||
"item.things.ender_pouch": "末影袋",
|
||||
"item.things.ender_pouch.tooltip": "§7按 §6%1$s §7打开末影箱库存",
|
||||
"item.things.monocle": "单片眼镜",
|
||||
"item.things.monocle.tooltip": "赋予永久夜视效果",
|
||||
"item.things.moss_necklace": "苔藓项链",
|
||||
"item.things.moss_necklace.tooltip": "在光照下赋予 再生II 效果",
|
||||
"item.things.placebo": "安慰剂",
|
||||
"item.things.placebo.tooltip": "装备时有25%%的几率不消耗药水",
|
||||
"item.things.displacement_tome": "位移魔典",
|
||||
"item.things.displacement_tome.tooltip": "用于传送的精美工具",
|
||||
"item.things.displacement_page": "位移魔页",
|
||||
"item.things.mining_gloves": "挖矿手套",
|
||||
"item.things.mining_gloves.tooltip": "赋予永久 急迫II 效果",
|
||||
"item.things.riot_gauntlet": "狂暴臂铠",
|
||||
"item.things.riot_gauntlet.tooltip": "赋予永久 力量 效果",
|
||||
"item.things.infernal_scepter": "烈焰魔杖",
|
||||
"item.things.infernal_scepter.tooltip": "发射火球,使用火药作为弹药",
|
||||
"item.things.gleaming_powder": "璀璨粉",
|
||||
"item.things.gleaming_compound": "璀璨合金",
|
||||
"item.things.hades_crystal": "炼狱结晶",
|
||||
"item.things.hades_crystal.tooltip": "赋予永久火焰抗性,与§6附魔蜡腺§7一起佩戴效果更佳",
|
||||
"item.things.enchanted_wax_gland": "附魔蜡腺",
|
||||
"item.things.enchanted_wax_gland.tooltip": "使你在水中浮动,并显著加速",
|
||||
"item.things.item_magnet": "物品磁铁",
|
||||
"item.things.rabbit_foot_charm": "兔脚护符",
|
||||
"item.things.rabbit_foot_charm.tooltip": "赋予永久 跳跃提升II 效果",
|
||||
"item.things.luck_of_the_irish": "爱尔兰人的幸运符",
|
||||
"item.things.luck_of_the_irish.tooltip": "将毒马铃薯变成金苹果",
|
||||
"item.things.socks": "袜子",
|
||||
"item.things.socks.tooltip": "提高行走速度,并可选择增加跳跃增强效果和步伐协助。在工作台中升级",
|
||||
"item.things.socks.jumpy": "跳跃型",
|
||||
"item.things.socks.speed_0": "普通",
|
||||
"item.things.socks.speed_1": "迅速",
|
||||
"item.things.socks.speed_2": "尤赛因·博尔特",
|
||||
"item.things.socks.speed_illegal": "顽皮",
|
||||
"item.things.arm_extender": "手臂延伸器",
|
||||
"item.things.arm_extender.tooltip": "将你的攻击范围增加2格",
|
||||
"item.things.shock_absorber": "冲击吸收器",
|
||||
"item.things.shock_absorber.tooltip": "减少75%%的跌落和动能伤害",
|
||||
"item.things.broken_watch": "坏掉的手表",
|
||||
"item.things.broken_watch.tooltip": "增加50%%的状态效果持续时间",
|
||||
"effect.things.momentum": "动量",
|
||||
"enchantment.things.retribution": "报应",
|
||||
"enchantment.things.retribution.desc": "赐予用此附魔过的盾阻挡攻击的人力量",
|
||||
"container.enderpouch": "末影袋",
|
||||
"itemGroup.things.things": "杂七杂八的东西",
|
||||
"trinkets.slot.feet.charm": "护符",
|
||||
"category.things.things": "杂七杂八的东西",
|
||||
"gui.things.displacement_tome.charges": "充能:%1$d",
|
||||
"text.things.tooltip_hint": "§7按住 §6SHIFT §7查看信息",
|
||||
"text.things.crafting_component": "合成组件",
|
||||
"key.things.openenderchest": "开启末影袋",
|
||||
"key.things.place_item": "在世界中放置物品",
|
||||
"key.mouse.5": "鼠标5号键",
|
||||
"key.mouse.4": "鼠标4号键",
|
||||
"advancement.things.root.title": "杂七杂八的东西",
|
||||
"advancement.things.root.description": "可能还是些好东西呢",
|
||||
"advancement.things.gleaming_powder.title": "和钻石差不多,但没那么闪就对了",
|
||||
"advancement.things.gleaming_powder.description": "获取璀璨粉",
|
||||
"advancement.things.gleaming_compound.title": "混合得正到好处",
|
||||
"advancement.things.gleaming_compound.description": "合成一些璀璨合金",
|
||||
"advancement.things.bater_wucket.title": "桶装无限水",
|
||||
"advancement.things.bater_wucket.description": "但这至于吗?",
|
||||
"advancement.things.displacement_tome.title": "量子纠缠",
|
||||
"advancement.things.displacement_tome.description": "合成一本位移宝典",
|
||||
"advancement.things.enchanted_wax_gland.title": "似鸭非鸭,疾走娃",
|
||||
"advancement.things.enchanted_wax_gland.description": "合成一个附魔蜡腺",
|
||||
"advancement.things.ender_pouch.title": "便捷的存储升级啦啊啊啊啊~~",
|
||||
"advancement.things.ender_pouch.description": "合成一个末影袋",
|
||||
"advancement.things.hades_crystal.title": "在热浪中一起摇摆",
|
||||
"advancement.things.hades_crystal.description": "炼狱结晶",
|
||||
"advancement.things.infernal_scepter.title": "热、炎、炙",
|
||||
"advancement.things.infernal_scepter.description": "骄傲地驾驭你的烈焰魔杖",
|
||||
"advancement.things.item_magnet.title": "我是风儿你是沙",
|
||||
"advancement.things.item_magnet.description": "合成一块物品磁铁",
|
||||
"advancement.things.mining_gloves.title": "So we back in the mine♪",
|
||||
"advancement.things.mining_gloves.description": "Got our pickaxe swinging from side to side♪(合成一副挖矿手套)",
|
||||
"advancement.things.monocle.title": "眼前duang得一下就亮堂了",
|
||||
"advancement.things.monocle.description": "合成一片单片眼镜",
|
||||
"advancement.things.moss_necklace.title": "它会慢~慢~得~爬过你的每一寸肌肤哟~",
|
||||
"advancement.things.moss_necklace.description": "D区",
|
||||
"advancement.things.placebo.title": "医学奇迹",
|
||||
"advancement.things.placebo.description": "合成一剂安慰剂",
|
||||
"advancement.things.recall_potion.title": "娘~我想家了",
|
||||
"advancement.things.recall_potion.description": "合成一瓶回忆药水",
|
||||
"advancement.things.riot_gauntlet.title": "MissingNo.",
|
||||
"advancement.things.riot_gauntlet.description": "MissingNo.",
|
||||
"advancement.things.rabbit_foot_charm.title": "B-hop它不香么",
|
||||
"advancement.things.rabbit_foot_charm.description": "合成一个兔脚护符",
|
||||
"advancement.things.shock_absorber.title": "猫一样的反应力",
|
||||
"advancement.things.shock_absorber.description": "合成冲击吸收器",
|
||||
"advancement.things.arm_extender.title": "到极限了",
|
||||
"advancement.things.arm_extender.description": "合成手臂延伸器",
|
||||
"advancement.things.broken_watch.title": "“一天有两次是对的”",
|
||||
"advancement.things.broken_watch.description": "合成一块坏掉的手表",
|
||||
"text.autoconfig.things.title": "『杂七杂八的东西』设置",
|
||||
"text.autoconfig.things.option.appleTrinket": "启用苹果饰品",
|
||||
"text.autoconfig.things.option.waxGlandMultiplier": "附魔蜡腺速度倍率",
|
||||
"text.autoconfig.things.option.infernalScepterDurability": "烈焰魔杖最大耐久",
|
||||
"text.autoconfig.things.option.nerfBeaconsWithMomentum": "削弱带动能效果的信标"
|
||||
}
|
4
lang_20241209/zh_cn/trade_cycling.json
Normal file
4
lang_20241209/zh_cn/trade_cycling.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"tooltip.trade_cycling.cycle_trades": "刷新交易",
|
||||
"key.trade_cycling.cycle_trades": "刷新交易"
|
||||
}
|
166
lang_20241209/zh_cn/travelersbackpack.json
Normal file
166
lang_20241209/zh_cn/travelersbackpack.json
Normal file
@ -0,0 +1,166 @@
|
||||
{
|
||||
"itemGroup.travelersbackpack": "旅行者背包",
|
||||
"key.travelersbackpack.category": "旅行者背包",
|
||||
"key.travelersbackpack.inventory": "打开背包界面",
|
||||
"key.travelersbackpack.sort": "整理背包",
|
||||
"key.travelersbackpack.ability": "启用/禁用特殊能力",
|
||||
"key.travelersbackpack.cycle_tool": "切换工具或软管模式",
|
||||
"key.travelersbackpack.toggle_tank": "切换软管储罐",
|
||||
"action.travelersbackpack.unequip_nobackpack": "没有可卸下的背包。",
|
||||
"action.travelersbackpack.unequip_nospace": "背包空间有限,无法存放另一个背包。",
|
||||
"action.travelersbackpack.equip_otherbackpack": "已装备了其他背包。",
|
||||
"action.travelersbackpack.equip_fail": "无法装备此背包。",
|
||||
"action.travelersbackpack.deploy_sleeping_bag": "无法铺展睡袋!请确认附近有足够的空间。",
|
||||
"information.travelersbackpack.backpack_coords": "你的背包已放置于 X: %s Y: %s Z: %s",
|
||||
"information.travelersbackpack.backpack_drop": "周围没有空间放置背包。背包以物品形式掉落于 X: %s Y: %s Z: %s",
|
||||
"screen.travelersbackpack.none": "无",
|
||||
"screen.travelersbackpack.empty": "空",
|
||||
"screen.travelersbackpack.empty_tank": "空",
|
||||
"screen.travelersbackpack.ability_enabled": "能力已启用",
|
||||
"screen.travelersbackpack.ability_disabled": "能力已禁用",
|
||||
"screen.travelersbackpack.ability_disabled_config": "能力已被配置禁用",
|
||||
"screen.travelersbackpack.ability_ready": "能力已就绪",
|
||||
"screen.travelersbackpack.equip_integration": "集成已启用-把背包放在背饰插槽",
|
||||
"screen.travelersbackpack.unequip_integration": "集成已启用-把背包从背饰插槽取下",
|
||||
"screen.travelersbackpack.open_inventory": "按 %s 打开背包",
|
||||
"screen.travelersbackpack.hide_icon": "按 Shift + 右键 隐藏图标",
|
||||
"screen.travelersbackpack.hidden_icon_info": "背包图标已隐藏,恢复图标请编辑客户端配置",
|
||||
"screen.travelersbackpack.sort": "整理物品",
|
||||
"screen.travelersbackpack.quick_stack": "仅单击:从玩家背包过滤出旅行者背包内已有物品并整理到旅行者背包",
|
||||
"screen.travelersbackpack.transfer_to_backpack": "将物品全部转移到背包",
|
||||
"screen.travelersbackpack.transfer_to_player": "将物品转移到玩家物品栏",
|
||||
"screen.travelersbackpack.quick_stack_shift": "Shift单击:将快捷栏物品一并过滤整理到旅行者背包",
|
||||
"screen.travelersbackpack.transfer_to_backpack_shift": "按住Shift:将快捷栏物品一并转移到背包",
|
||||
"screen.travelersbackpack.settings": "背包设置",
|
||||
"screen.travelersbackpack.settings_back": "返回",
|
||||
"screen.travelersbackpack.unsortable": "进入选择模式\n§7选择不受排序影响的槽位\n§7左键点击选择槽位\n§7右键点击取消选择槽位",
|
||||
"screen.travelersbackpack.memory": "进入选择模式\n§7选择带有物品的槽位以为该物品预留位置\n§7左键点击选择槽位\n§7右键点击取消选择槽位",
|
||||
"screen.travelersbackpack.select_all": "选中全部",
|
||||
"screen.travelersbackpack.remove_all": "移除全部",
|
||||
"screen.travelersbackpack.crafting": "合成网格",
|
||||
"screen.travelersbackpack.crafting_to_backpack": "Shift+点击将合成结果放入背包",
|
||||
"screen.travelersbackpack.crafting_to_player": "Shift+点击将合成结果放入玩家背包",
|
||||
"tier.travelersbackpack.leather": "§6背包等级:§4皮革",
|
||||
"tier.travelersbackpack.iron": "§6背包等级:§7铁",
|
||||
"tier.travelersbackpack.gold": "§6背包等级:§6金",
|
||||
"tier.travelersbackpack.diamond": "§6背包等级:§b钻石",
|
||||
"tier.travelersbackpack.netherite": "§6背包等级:§8下界合金",
|
||||
"obtain.travelersbackpack.bat": "可在废弃矿井或地牢中找到此背包",
|
||||
"obtain.travelersbackpack.iron_golem": "可在铁匠的箱子中找到此背包",
|
||||
"obtain.travelersbackpack.villager": "只能在牧师或图书管理员处购买获得",
|
||||
"ability.travelersbackpack.hold_shift": "按住 shift 查看能力信息",
|
||||
"ability.travelersbackpack.item_and_block": "§6能力§e穿戴放置皆可§r生效",
|
||||
"ability.travelersbackpack.item": "§6能力§e仅穿戴§r时生效",
|
||||
"ability.travelersbackpack.block": "§6能力§e仅放置§r时生效",
|
||||
"ability.travelersbackpack.netherite": "+4 护甲值",
|
||||
"ability.travelersbackpack.diamond": "+3 护甲值",
|
||||
"ability.travelersbackpack.gold": "+2 护甲值",
|
||||
"ability.travelersbackpack.emerald": "一些很酷的粒子, 没有什么特别的.",
|
||||
"ability.travelersbackpack.iron": "+2 护甲值",
|
||||
"ability.travelersbackpack.lapis": "有机会翻倍玩家获得的经验值",
|
||||
"ability.travelersbackpack.redstone": "背包形式的红石块, 提供强红石信号。",
|
||||
"ability.travelersbackpack.bookshelf": "拥有强大的知识储备, 放置在附魔台周围, \n就像书架一样, 可以获得更高级别的附魔!",
|
||||
"ability.travelersbackpack.sponge": "像海绵块那样使用,可将水储存至背包储罐中。\n需要空的或未装满水的储罐才能工作",
|
||||
"ability.travelersbackpack.cake": "慢慢地用美味的蛋糕增加你的饱食度",
|
||||
"ability.travelersbackpack.cactus": "就像现实生活中的仙人掌一样, 如果下雨, \n只要背包露天, 不管是背在身上还是放在地面上, \n都会随着时间的推移收集水到空的或未装满水的储罐里. \n如果你想要更多水, 还是自己动手比较好哦?",
|
||||
"ability.travelersbackpack.melon": "收获时可以额外掉落最多3片西瓜",
|
||||
"ability.travelersbackpack.pumpkin": "盯着末影人时不再激怒末影人",
|
||||
"ability.travelersbackpack.creeper": "如果玩家濒死, 会立即触发爆炸并伤害周围的\n所有生物, 同时给予玩家吸收, 再生和防火效果. \n该功能每隔几分钟可用.",
|
||||
"ability.travelersbackpack.dragon": "真正的勇士背包, 结合了岩浆怪和鱿鱼的背包能力, \n附赠力量和再生! 你, 就是无敌的! \n但是. . . 代价是什么呢?",
|
||||
"ability.travelersbackpack.enderman": "增加1格触及范围",
|
||||
"ability.travelersbackpack.blaze": "免疫摔落伤害和烈焰人发出的火球",
|
||||
"ability.travelersbackpack.ghast": "恶魂视你为盟友,除非你攻击它们",
|
||||
"ability.travelersbackpack.magma_cube": "免疫火焰伤害",
|
||||
"ability.travelersbackpack.spider": "你试过爬墙吗?",
|
||||
"ability.travelersbackpack.wither": "免疫凋零效果",
|
||||
"ability.travelersbackpack.bat": "提供夜视能力(嗯?蝙蝠侠?不,没什么...)",
|
||||
"ability.travelersbackpack.bee": "攻击生物会叮咬它们,导致中毒,持续4秒",
|
||||
"ability.travelersbackpack.ocelot": "如果附近有敌对的生物, 则给予速度效果.",
|
||||
"ability.travelersbackpack.cow": "清除所有负面效果",
|
||||
"ability.travelersbackpack.chicken": "你曾经想成为一只鸡吗? 不太好? \n不过现在你是了! 你现在会下蛋了!",
|
||||
"ability.travelersbackpack.squid": "在水中时获得水下呼吸和夜视效果",
|
||||
"block.travelersbackpack.travelers_backpack": "旅行者背包",
|
||||
"block.travelersbackpack.white_sleeping_bag": "白色睡袋",
|
||||
"block.travelersbackpack.orange_sleeping_bag": "橙色睡袋",
|
||||
"block.travelersbackpack.magenta_sleeping_bag": "品红色睡袋",
|
||||
"block.travelersbackpack.light_blue_sleeping_bag": "淡蓝色睡袋",
|
||||
"block.travelersbackpack.yellow_sleeping_bag": "黄色睡袋",
|
||||
"block.travelersbackpack.lime_sleeping_bag": "黄绿色睡袋",
|
||||
"block.travelersbackpack.pink_sleeping_bag": "粉红色睡袋",
|
||||
"block.travelersbackpack.gray_sleeping_bag": "灰色睡袋",
|
||||
"block.travelersbackpack.light_gray_sleeping_bag": "淡灰色睡袋",
|
||||
"block.travelersbackpack.cyan_sleeping_bag": "青色睡袋",
|
||||
"block.travelersbackpack.purple_sleeping_bag": "紫色睡袋",
|
||||
"block.travelersbackpack.blue_sleeping_bag": "蓝色睡袋",
|
||||
"block.travelersbackpack.brown_sleeping_bag": "棕色睡袋",
|
||||
"block.travelersbackpack.green_sleeping_bag": "绿色睡袋",
|
||||
"block.travelersbackpack.red_sleeping_bag": "红色睡袋",
|
||||
"block.travelersbackpack.black_sleeping_bag": "黑色睡袋",
|
||||
"item.travelersbackpack.inventory_tooltip": "按<Ctrl>查看物品栏",
|
||||
"item.travelersbackpack.blank_upgrade": "空白升级",
|
||||
"item.travelersbackpack.iron_tier_upgrade": "§7铁等级升级",
|
||||
"item.travelersbackpack.gold_tier_upgrade": "§6金等级升级",
|
||||
"item.travelersbackpack.diamond_tier_upgrade": "§b钻石等级升级",
|
||||
"item.travelersbackpack.netherite_tier_upgrade": "§8下界合金等级升级",
|
||||
"item.travelersbackpack.crafting_upgrade": "合成升级",
|
||||
"item.travelersbackpack.blank_upgrade_tooltip": "Shift+点击已放置的背包以重置为默认设置\n - 移除罐中的过量液体并将物品和升级分散到背包中",
|
||||
"item.travelersbackpack.tier_upgrade_tooltip": "与 %s 等级的旅行者背包在铁匠台中合成以应用升级",
|
||||
"item.travelersbackpack.crafting_upgrade_tooltip": "为背包提供合成网格。\n与旅行者背包在铁匠台中合成以应用升级",
|
||||
"item.travelersbackpack.upgrade_disabled": "§4由于配置选项,升级已被禁用",
|
||||
"fluid.travelersbackpack.milk": "牛奶",
|
||||
"item.travelersbackpack.backpack_tank": "背包储罐",
|
||||
"item.travelersbackpack.hose_nozzle": "软管接口",
|
||||
"item.travelersbackpack.hose": "软管",
|
||||
"item.travelersbackpack.hose.suck": "汲取模式",
|
||||
"item.travelersbackpack.hose.spill": "排放模式",
|
||||
"item.travelersbackpack.hose.drink": "饮用模式",
|
||||
"hose.travelersbackpack.not_assigned": "软管模式未指定",
|
||||
"hose.travelersbackpack.current_mode_suck": "当前模式:汲取",
|
||||
"hose.travelersbackpack.current_mode_spill": "当前模式:排放",
|
||||
"hose.travelersbackpack.current_mode_drink": "当前模式:饮用",
|
||||
"hose.travelersbackpack.current_tank_left": "当前储罐:左侧",
|
||||
"hose.travelersbackpack.current_tank_right": "当前储罐:右侧",
|
||||
"block.travelersbackpack.standard": "标准旅行者背包",
|
||||
"block.travelersbackpack.netherite": "下界合金旅行者背包",
|
||||
"block.travelersbackpack.diamond": "钻石旅行者背包",
|
||||
"block.travelersbackpack.gold": "金旅行者背包",
|
||||
"block.travelersbackpack.emerald": "绿宝石旅行者背包",
|
||||
"block.travelersbackpack.iron": "铁旅行者背包",
|
||||
"block.travelersbackpack.lapis": "青金石旅行者背包",
|
||||
"block.travelersbackpack.redstone": "红石旅行者背包",
|
||||
"block.travelersbackpack.coal": "煤炭旅行者背包",
|
||||
"block.travelersbackpack.quartz": "石英旅行者背包",
|
||||
"block.travelersbackpack.bookshelf": "书架旅行者背包",
|
||||
"block.travelersbackpack.end": "末地旅行者背包",
|
||||
"block.travelersbackpack.nether": "下界旅行者背包",
|
||||
"block.travelersbackpack.sandstone": "砂岩旅行者背包",
|
||||
"block.travelersbackpack.snow": "雪旅行者背包",
|
||||
"block.travelersbackpack.sponge": "海绵旅行者背包",
|
||||
"block.travelersbackpack.cake": "蛋糕旅行者背包",
|
||||
"block.travelersbackpack.cactus": "仙人掌旅行者背包",
|
||||
"block.travelersbackpack.hay": "干草旅行者背包",
|
||||
"block.travelersbackpack.melon": "西瓜旅行者背包",
|
||||
"block.travelersbackpack.pumpkin": "南瓜旅行者背包",
|
||||
"block.travelersbackpack.creeper": "苦力怕旅行者背包",
|
||||
"block.travelersbackpack.dragon": "龙背包",
|
||||
"block.travelersbackpack.enderman": "末影人旅行者背包",
|
||||
"block.travelersbackpack.blaze": "烈焰人旅行者背包",
|
||||
"block.travelersbackpack.ghast": "恶魂旅行者背包",
|
||||
"block.travelersbackpack.magma_cube": "岩浆怪旅行者背包",
|
||||
"block.travelersbackpack.skeleton": "骷髅旅行者背包",
|
||||
"block.travelersbackpack.spider": "蜘蛛旅行者背包",
|
||||
"block.travelersbackpack.wither": "凋灵旅行者背包",
|
||||
"block.travelersbackpack.bat": "蝙蝠旅行者背包",
|
||||
"block.travelersbackpack.bee": "蜜蜂旅行者背包",
|
||||
"block.travelersbackpack.wolf": "狼旅行者背包",
|
||||
"block.travelersbackpack.fox": "狐狸旅行者背包",
|
||||
"block.travelersbackpack.ocelot": "豹猫旅行者背包",
|
||||
"block.travelersbackpack.horse": "马旅行者背包",
|
||||
"block.travelersbackpack.cow": "牛旅行者背包",
|
||||
"block.travelersbackpack.pig": "猪旅行者背包",
|
||||
"block.travelersbackpack.sheep": "绵羊旅行者背包",
|
||||
"block.travelersbackpack.chicken": "鸡旅行者背包",
|
||||
"block.travelersbackpack.squid": "鱿鱼旅行者背包",
|
||||
"block.travelersbackpack.villager": "村民旅行者背包",
|
||||
"block.travelersbackpack.iron_golem": "铁傀儡旅行者背包"
|
||||
}
|
29
lang_20241209/zh_cn/weaponmaster.json
Normal file
29
lang_20241209/zh_cn/weaponmaster.json
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
"weaponmaster.screen": "YDM's Weapon Master",
|
||||
"key.weaponmaster.category": "YDM's Weapon Master",
|
||||
"key.weaponmaster.opengui": "打开设置",
|
||||
"weaponmaster.screen2": "更多设置",
|
||||
"weaponmaster.screen.reset_to_previous": "重置",
|
||||
"weaponmaster.screen.reset_to_null": "全部重置为 0",
|
||||
"gui.weaponmaster.slot.posx": "位置 X: ",
|
||||
"gui.weaponmaster.slot.posy": "位置 Y: ",
|
||||
"gui.weaponmaster.slot.posz": "位置 Z: ",
|
||||
"gui.weaponmaster.slot.rotx": "旋转 X: ",
|
||||
"gui.weaponmaster.slot.roty": "旋转 Y: ",
|
||||
"gui.weaponmaster.slot.rotz": "旋转 Z: ",
|
||||
"weaponmaster.screen.other_settings": "更多",
|
||||
"weaponmaster.screen.shield": "盾牌",
|
||||
"weaponmaster.screen.banner": "旗帜",
|
||||
"gui.weaponmaster.attach.head": "头部",
|
||||
"gui.weaponmaster.attach.body": "身体",
|
||||
"gui.weaponmaster.attach.larm": "左臂",
|
||||
"gui.weaponmaster.attach.rarm": "右臂",
|
||||
"gui.weaponmaster.attach.lleg": "左腿",
|
||||
"gui.weaponmaster.attach.rleg": "右腿",
|
||||
"gui.weaponmaster.rotate": "拖动以旋转",
|
||||
"gui.weaponmaster.slot.shield": "盾牌",
|
||||
"gui.weaponmaster.slot.banner": "旗帜",
|
||||
"gui.weaponmaster.mover": "从此处修改位置:",
|
||||
"gui.weaponmaster.arrowright": "->",
|
||||
"gui.weaponmaster.attach": "附加到身体部位:"
|
||||
}
|
27
package-lock.json
generated
Normal file
27
package-lock.json
generated
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "Minecraft Mod Translator",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"dependencies": {
|
||||
"adm-zip": "^0.5.16"
|
||||
}
|
||||
},
|
||||
"node_modules/adm-zip": {
|
||||
"version": "0.5.16",
|
||||
"resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz",
|
||||
"integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==",
|
||||
"engines": {
|
||||
"node": ">=12.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"adm-zip": {
|
||||
"version": "0.5.16",
|
||||
"resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz",
|
||||
"integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ=="
|
||||
}
|
||||
}
|
||||
}
|
5
package.json
Normal file
5
package.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"adm-zip": "^0.5.16"
|
||||
}
|
||||
}
|
5
translate.txt
Normal file
5
translate.txt
Normal file
@ -0,0 +1,5 @@
|
||||
下面是 Minecraft Mod 的语言文件,格式是JSON,请将其翻译成中文。
|
||||
注意:
|
||||
1. §加数字或字母是颜色字符,不可翻译
|
||||
2. %s 是占位符,不要翻译
|
||||
|
Loading…
Reference in New Issue
Block a user