diff --git a/HMCL/parse_mcmod_data.py b/HMCL/parse_mcmod_data.py index 1a0318765..456d5dbc0 100644 --- a/HMCL/parse_mcmod_data.py +++ b/HMCL/parse_mcmod_data.py @@ -85,6 +85,7 @@ if __name__ == '__main__': for mod in data: chinese_name = mod['name']['main'] sub_name = mod['name']['sub'] + abbr = mod['name']['abbr'] if S in chinese_name: print('Error! ' + chinese_name) @@ -132,6 +133,6 @@ if __name__ == '__main__': mod_ids = MOD_SEPARATOR.join([str(id) for id in mod_id]) outfile.write( - f'{curseforge_id}{S}{mcmod_id}{S}{mcbbs_id}{S}{mod_ids}{S}{chinese_name}{S}{sub_name}\n') + f'{curseforge_id}{S}{mcmod_id}{S}{mcbbs_id}{S}{mod_ids}{S}{chinese_name}{S}{sub_name}{S}{abbr}\n') print('Success!') diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/DownloadPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/DownloadPage.java index 426cefb8e..639484a89 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/DownloadPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/download/DownloadPage.java @@ -39,6 +39,7 @@ import org.jackhuang.hmcl.ui.construct.TabHeader; import org.jackhuang.hmcl.ui.construct.TaskExecutorDialogPane; import org.jackhuang.hmcl.ui.decorator.DecoratorPage; import org.jackhuang.hmcl.ui.versions.DownloadListPage; +import org.jackhuang.hmcl.ui.versions.ModDownloadListPage; import org.jackhuang.hmcl.ui.versions.VersionPage; import org.jackhuang.hmcl.ui.versions.Versions; import org.jackhuang.hmcl.util.io.NetworkUtils; @@ -64,7 +65,7 @@ public class DownloadPage extends BorderPane implements DecoratorPage { public DownloadPage() { modpackTab.setNodeSupplier(() -> new DownloadListPage(CurseModManager.SECTION_MODPACK, Versions::downloadModpackImpl)); - modTab.setNodeSupplier(() -> new DownloadListPage(CurseModManager.SECTION_MOD, (profile, version, file) -> download(profile, version, file, "mods"), true)); + modTab.setNodeSupplier(() -> new ModDownloadListPage(CurseModManager.SECTION_MOD, (profile, version, file) -> download(profile, version, file, "mods"), true)); resourcePackTab.setNodeSupplier(() -> new DownloadListPage(CurseModManager.SECTION_RESOURCE_PACK, (profile, version, file) -> download(profile, version, file, "resourcepacks"))); // customizationTab.setNodeSupplier(() -> new ModDownloadListPage(CurseModManager.SECTION_CUSTOMIZATION, this::download)); worldTab.setNodeSupplier(() -> new DownloadListPage(CurseModManager.SECTION_WORLD)); diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/main/AboutPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/main/AboutPage.java index 76f17ebd4..bfeccd1ee 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/main/AboutPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/main/AboutPage.java @@ -74,6 +74,12 @@ public class AboutPage extends StackPane { mcbbs.setSubtitle(i18n("about.thanks_to.mcbbs.statement")); mcbbs.setExternalLink("https://www.mcbbs.net/"); + IconedTwoLineListItem mcmod = new IconedTwoLineListItem(); + mcmod.setImage(new Image("/assets/img/mcmod.png", 32, 32, false, true)); + mcmod.setTitle(i18n("about.thanks_to.mcmod")); + mcmod.setSubtitle(i18n("about.thanks_to.mcmod.statement")); + mcmod.setExternalLink("https://www.mcmod.cn/"); + IconedTwoLineListItem contributors = new IconedTwoLineListItem(); contributors.setImage(new Image("/assets/img/github.png", 32, 32, false, true)); contributors.setTitle(i18n("about.thanks_to.contributors")); @@ -86,7 +92,7 @@ public class AboutPage extends StackPane { users.setSubtitle(i18n("about.thanks_to.users.statement")); users.setExternalLink("https://hmcl.huangyuhui.net/api/redirect/sponsor"); - thanks.getContent().setAll(yushijinhun, bangbang93, mcbbs, redLnn, users, contributors); + thanks.getContent().setAll(yushijinhun, bangbang93, mcbbs, mcmod, redLnn, users, contributors); } ComponentList dep = new ComponentList(); diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModDownloadListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModDownloadListPage.java new file mode 100644 index 000000000..9cd8def5d --- /dev/null +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModDownloadListPage.java @@ -0,0 +1,53 @@ +/* + * Hello Minecraft! Launcher + * Copyright (C) 2021 huangyuhui and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.jackhuang.hmcl.ui.versions; + +import org.jackhuang.hmcl.mod.curse.CurseAddon; +import org.jackhuang.hmcl.util.StringUtils; + +import java.util.ArrayList; +import java.util.List; + +public class ModDownloadListPage extends DownloadListPage { + public ModDownloadListPage(int section, DownloadPage.DownloadCallback callback, boolean versionSelection) { + super(section, callback, versionSelection); + } + + @Override + protected List searchImpl(String gameVersion, int category, int section, int pageOffset, String searchFilter, int sort) throws Exception { + if (StringUtils.CHINESE_PATTERN.matcher(searchFilter).find()) { + List mods = ModTranslations.searchMod(searchFilter); + List searchFilters = new ArrayList<>(); + int count = 0; + for (ModTranslations.Mod mod : mods) { + String englishName = mod.getName(); + if (StringUtils.isNotBlank(mod.getSubname())) { + englishName = mod.getSubname(); + } + + searchFilters.add(englishName); + + count++; + if (count >= 3) break; + } + return super.searchImpl(gameVersion, category, section, pageOffset, String.join(" ", searchFilters), sort); + } else { + return super.searchImpl(gameVersion, category, section, pageOffset, searchFilter, sort); + } + } +} diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModTranslations.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModTranslations.java index 6452588be..df612d05d 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModTranslations.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/ModTranslations.java @@ -17,6 +17,7 @@ */ package org.jackhuang.hmcl.ui.versions; +import org.jackhuang.hmcl.util.Pair; import org.jackhuang.hmcl.util.StringUtils; import org.jackhuang.hmcl.util.io.IOUtils; @@ -26,6 +27,7 @@ import java.util.logging.Level; import java.util.stream.Collectors; import static org.jackhuang.hmcl.util.Logging.LOG; +import static org.jackhuang.hmcl.util.Pair.pair; /** * Parser for mod_data.txt @@ -36,6 +38,8 @@ public final class ModTranslations { private static List mods; private static Map modIdMap; // mod id -> mod private static Map curseForgeMap; // curseforge id -> mod + private static List> keywords; + private static int maxKeywordLength = -1; private ModTranslations(){} @@ -51,6 +55,28 @@ public final class ModTranslations { return modIdMap.get(id); } + public static List searchMod(String query) { + if (!loadKeywords()) return Collections.emptyList(); + + StringBuilder newQuery = query.chars() + .filter(ch -> !Character.isSpaceChar(ch)) + .collect(StringBuilder::new, (sb, value) -> sb.append((char)value), StringBuilder::append); + query = newQuery.toString(); + + StringUtils.LongestCommonSubsequence lcs = new StringUtils.LongestCommonSubsequence(query.length(), maxKeywordLength); + List> modList = new ArrayList<>(); + for (Pair keyword : keywords) { + int value = lcs.calc(query, keyword.getKey()); + if (value >= Math.max(1, query.length() - 3)) { + modList.add(pair(value, keyword.getValue())); + } + } + return modList.stream() + .sorted((a, b) -> -a.getKey().compareTo(b.getKey())) + .map(Pair::getValue) + .collect(Collectors.toList()); + } + private static boolean loadFromResource() { if (mods != null) return true; try { @@ -99,6 +125,34 @@ public final class ModTranslations { return true; } + private static boolean loadKeywords() { + if (keywords != null) { + return true; + } + + if (mods == null) { + if (!loadFromResource()) return false; + } + + keywords = new ArrayList<>(); + maxKeywordLength = -1; + for (Mod mod : mods) { + if (StringUtils.isNotBlank(mod.getName())) { + keywords.add(pair(mod.getName(), mod)); + maxKeywordLength = Math.max(maxKeywordLength, mod.getName().length()); + } + if (StringUtils.isNotBlank(mod.getSubname())) { + keywords.add(pair(mod.getSubname(), mod)); + maxKeywordLength = Math.max(maxKeywordLength, mod.getSubname().length()); + } + if (StringUtils.isNotBlank(mod.getAbbr())) { + keywords.add(pair(mod.getAbbr(), mod)); + maxKeywordLength = Math.max(maxKeywordLength, mod.getAbbr().length()); + } + } + return true; + } + public static class Mod { private final String curseforge; private final String mcmod; @@ -106,11 +160,12 @@ public final class ModTranslations { private final List modIds; private final String name; private final String subname; + private final String abbr; public Mod(String line) { String[] items = line.split(";", -1); - if (items.length != 6) { - throw new IllegalArgumentException("Illegal mod data line, 6 items expected " + line); + if (items.length != 7) { + throw new IllegalArgumentException("Illegal mod data line, 7 items expected " + line); } curseforge = items[0]; @@ -119,23 +174,29 @@ public final class ModTranslations { modIds = Collections.unmodifiableList(Arrays.asList(items[3].split(","))); name = items[4]; subname = items[5]; + abbr = items[6]; } - public Mod(String curseforge, String mcmod, String mcbbs, List modIds, String name, String subname) { + public Mod(String curseforge, String mcmod, String mcbbs, List modIds, String name, String subname, String abbr) { this.curseforge = curseforge; this.mcmod = mcmod; this.mcbbs = mcbbs; this.modIds = modIds; this.name = name; this.subname = subname; + this.abbr = abbr; } public String getDisplayName() { - if (StringUtils.isBlank(subname)) { - return name; - } else { - return String.format("%s (%s)", name, subname); + StringBuilder builder = new StringBuilder(); + if (StringUtils.isNotBlank(abbr)) { + builder.append("[").append(abbr).append("]"); } + builder.append(name); + if (StringUtils.isNotBlank(subname)) { + builder.append(" (").append(subname).append(")"); + } + return builder.toString(); } public String getCurseforge() { @@ -161,5 +222,9 @@ public final class ModTranslations { public String getSubname() { return subname; } + + public String getAbbr() { + return abbr; + } } } diff --git a/HMCL/src/main/resources/assets/lang/I18N.properties b/HMCL/src/main/resources/assets/lang/I18N.properties index 90726f061..5e00871d6 100644 --- a/HMCL/src/main/resources/assets/lang/I18N.properties +++ b/HMCL/src/main/resources/assets/lang/I18N.properties @@ -33,6 +33,8 @@ about.thanks_to.contributors.statement=Thanks to the open source community for s about.thanks_to.gamerteam.statement=Default background image about.thanks_to.mcbbs=MCBBS about.thanks_to.mcbbs.statement=Provide MCBBS download source +about.thanks_to.mcmod=mcmod.cn +about.thanks_to.mcmod.statement=Provide Mod Chinese name translations about.thanks_to.users=Members of HMCL User Group about.thanks_to.users.statement=Thanks to donations, bug reports and so on. about.thanks_to.yushijinhun.statement=authlib-injector @@ -73,15 +75,18 @@ account.manage=Account List account.methods=Login Type account.methods.authlib_injector=authlib-injector account.methods.microsoft=Microsoft Account +account.methods.microsoft.birth=How to edit birthday setting... account.methods.microsoft.close_page=Microsoft account authorization has been finished. There are some remaining logging-in steps to be finished later. You can close this page right now. account.methods.microsoft.error.add_family=Since you are not yet 18 years old, an adult must add you to a family in order for you to play Minecraft. +account.methods.microsoft.error.add_family_probably=Please check your account settings whether you are already 18 years old or not. If not, adding your account to a family is necessary. account.methods.microsoft.error.country_unavailable=XBox Live is not available in your country/region. account.methods.microsoft.error.missing_xbox_account=Your Microsoft account is not connected to an Xbox account. Please create one before continuing. account.methods.microsoft.error.no_character=Account is missing a Minecraft Java profile. While the Microsoft account is valid, it does not own the game. account.methods.microsoft.error.unknown=Failed to log in. Microsoft respond with error code %d. account.methods.microsoft.logging_in=Logging in... account.methods.microsoft.hint=You should click "login" button and continue login process in newly opened browser window. -account.methods.microsoft.manual=After clicking "login" button, you should finish authorization in the newly opened browser window. If the browser window failed to show, you can click here to copy the URL, and manually open it in your browser. +account.methods.microsoft.manual=After clicking "login" button, you should finish authorization in the newly opened browser window. If the browser window failed to show, you can click here to copy the URL, and manually open it in your browser. +account.methods.microsoft.profile=Account Profile... account.methods.microsoft.waiting_browser=Waiting for authorization in opened browser window... account.methods.offline=Offline account.methods.offline.uuid=UUID diff --git a/HMCL/src/main/resources/assets/lang/I18N_zh.properties b/HMCL/src/main/resources/assets/lang/I18N_zh.properties index 0e0264d3c..3916b8d54 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_zh.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_zh.properties @@ -30,6 +30,8 @@ about.thanks_to.contributors.statement=沒有開源社區的支持,Hello Minec about.thanks_to.gamerteam.statement=提供默認背景圖 about.thanks_to.mcbbs=MCBBS 我的世界中文論壇 about.thanks_to.mcbbs.statement=提供 MCBBS 下載源 +about.thanks_to.mcmod=MC 百科 +about.thanks_to.mcmod.statement=提供 Mod 中文名映射表與 Mod 百科 about.thanks_to.users=HMCL 用戶群成員 about.thanks_to.users.statement=感謝用戶群成員贊助充電、積極催更、迴響問題、出謀劃策 about.thanks_to.yushijinhun.statement=authlib-injector 相关支持 @@ -78,8 +80,10 @@ account.manage=帳戶列表 account.methods=登入方式 account.methods.authlib_injector=authlib-injector 登入 account.methods.microsoft=微軟帳戶 +account.methods.microsoft.birth=如何修改帳戶出生日期 account.methods.microsoft.close_page=已完成微軟帳號授權,接下來啟動器還需要完成剩餘登入步驟。你已經可以關閉本頁面了。 -account.methods.microsoft.error.add_family=由於你未滿 18 歲,你的帳號必須被加入到家庭中才能登入遊戲。你也可以更改你的帳戶的出生日期,使年齡滿18歲以上以繼續登入。 +account.methods.microsoft.error.add_family=由於你未滿 18 歲,你的帳戶必須被加入到家庭中才能登錄遊戲。你也可以點擊上方連結更改你的帳戶的出生日期,使年齡滿 18 歲以上以繼續登錄。 +account.methods.microsoft.error.add_family_probably=請檢查你的帳戶設置,如果你未滿 18 歲,你的帳戶必須被加入到家庭中才能登錄遊戲。你也可以點擊上方連結更改你的帳戶的出生日期,使年齡滿 18 歲以上以繼續登錄。 account.methods.microsoft.error.country_unavailable=你所在的國家或地區不受 XBox Live 的支持。 account.methods.microsoft.error.missing_xbox_account=你的微軟帳號尚未關聯 XBox 帳號,你必須先創建 XBox 帳號,才能登入遊戲。 account.methods.microsoft.error.no_character=該帳號沒有包含 Minecraft Java 版購買記錄 @@ -87,6 +91,7 @@ account.methods.microsoft.error.unknown=登入失敗,錯誤碼:%d account.methods.microsoft.logging_in=登入中... account.methods.microsoft.hint=您需要點擊登入按鈕,並在新打開的瀏覽器窗口中完成登入。 account.methods.microsoft.manual=若登入頁面未能打開,您可以點擊此處複製連結,並手動在瀏覽器中打開網頁。 +account.methods.microsoft.profile=帳戶設置頁 account.methods.microsoft.waiting_browser=等待在新打開的瀏覽器窗口中完成登入... account.methods.offline=離線模式 account.methods.offline.uuid=UUID diff --git a/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties b/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties index 12751a1ef..bcfd166f8 100644 --- a/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties +++ b/HMCL/src/main/resources/assets/lang/I18N_zh_CN.properties @@ -33,6 +33,8 @@ about.thanks_to.contributors.statement=没有开源社区的支持,Hello Minec about.thanks_to.gamerteam.statement=提供默认背景图 about.thanks_to.mcbbs=MCBBS 我的世界中文论坛 about.thanks_to.mcbbs.statement=提供 MCBBS 下载源 +about.thanks_to.mcmod=MC 百科 +about.thanks_to.mcmod.statement=提供 Mod 中文名映射表与 Mod 百科 about.thanks_to.users=HMCL 用户群成员 about.thanks_to.users.statement=感谢用户群成员赞助充电、积极催更、反馈问题、出谋划策 about.thanks_to.yushijinhun.statement=authlib-injector 相关支持 @@ -73,8 +75,10 @@ account.manage=帐户列表 account.methods=登录方式 account.methods.authlib_injector=外置登录 (authlib-injector) account.methods.microsoft=微软帐户 +account.methods.microsoft.birth=如何修改帐户出生日期 account.methods.microsoft.close_page=已完成微软帐户授权,接下来启动器还需要完成剩余登录步骤。你已经可以关闭本页面了。 -account.methods.microsoft.error.add_family=由于你未满 18 岁,你的帐户必须被加入到家庭中才能登录游戏。你也可以更改你的帐户的出生日期,使年龄满 18 岁以上以继续登录。 +account.methods.microsoft.error.add_family=由于你未满 18 岁,你的帐户必须被加入到家庭中才能登录游戏。你也可以点击上方链接更改你的帐户的出生日期,使年龄满 18 岁以上以继续登录。 +account.methods.microsoft.error.add_family_probably=请检查你的帐户设置,如果年龄未满 18 岁,你的帐户必须被加入到家庭中才能登录游戏。你也可以点击上方链接更改你的帐户的出生日期,使年龄满 18 岁以上以继续登录。 account.methods.microsoft.error.country_unavailable=你所在的国家或地区不受 XBox Live 的支持。 account.methods.microsoft.error.missing_xbox_account=你的微软帐户尚未关联 XBox 帐户,你必须先创建 XBox 帐户,才能登录游戏。 account.methods.microsoft.error.no_character=该帐户没有包含 Minecraft Java 版购买记录 @@ -82,6 +86,7 @@ account.methods.microsoft.error.unknown=登录失败,错误码:%d account.methods.microsoft.logging_in=登录中... account.methods.microsoft.hint=您需要点击登录按钮,并在新打开的浏览器窗口中完成登录。 account.methods.microsoft.manual=若登录页面未能打开,您可以点击此处复制链接,并手动在浏览器中打开网页。 +account.methods.microsoft.profile=帐户设置页 account.methods.microsoft.waiting_browser=等待在新打开的浏览器窗口中完成登录... account.methods.offline=离线模式 account.methods.offline.uuid=UUID diff --git a/HMCL/src/main/resources/assets/mod_data.txt b/HMCL/src/main/resources/assets/mod_data.txt index 642130dc4..cb9dc7963 100644 --- a/HMCL/src/main/resources/assets/mod_data.txt +++ b/HMCL/src/main/resources/assets/mod_data.txt @@ -5,4523 +5,4523 @@ # This file is licensed under CC BY-NC-SA 3.0. # Thanks to mcmod.cn and all contributors. # -industrial-craft;2;515771;IC2,ic2;工业时代2;Industrial Craft 2 -;3;;RedPowerCore,RedPowerBase;红石力量2;RedPower2 -BuildCraft;4;884720;BuildCraft|Core,buildcraftlib,buildcraftcore,buildcraftbuilders,buildcrafttransport,buildcraftsilicon,buildcraftfactory,buildcraftrobotics,buildcraftenergy,BuildMod,kamenridercraft4th,BuildCraft|Energy,BuildCraft|Transport,BuildCraft|Factory,BuildCraft|Silicon,BuildCraft|Builders,BuildCraft|Robotics;建筑;BuildCraft -forestry;5;708812;Forestry,forestry;林业;Forestry -railcraft;6;603270;Railcraft,railcraft;铁路;Railcraft -minefactory-reloaded;7;693826;MineFactoryReloaded|CompatVanilla,MineFactoryReloaded|CompatAppliedEnergistics,MineFactoryReloaded|CompatForgeMicroblock,MineFactoryReloaded|CompatThaumcraft,MineFactoryReloaded|CompatThermalExpansion,MineFactoryReloaded|CompatIC2,MineFactoryReloaded|CompatForestry,MineFactoryReloaded|CompatMagicalCrops,MineFactoryReloaded|CompatBuildCraft,MineFactoryReloaded|CompatRailcraft,MineFactoryReloaded,MineFactoryReloaded|CompatAtum,MineFactoryReloaded|CompatBackTools,MineFactoryReloaded|CompatChococraft,MineFactoryReloaded|CompatExtraBiomes,MineFactoryReloaded|CompatForestryPre,MineFactoryReloaded|CompatMystcraft,MineFactoryReloaded|CompatPams,MineFactoryReloaded|CompatRP2,MineFactoryReloaded|CompatSufficientBiomes,minefactoryreloaded;我的工厂重置版;MineFactory Reloaded -;9;;;等价交换2;Equivalent Exchange 2 -;10;;ForgottenNature;被遗忘的大自然;Forgotten Nature -;11;250249;THKaguyaMod;辉夜姬的五难题;五つの難題MOD+ ~ Touhou Items -secretroomsmod;12;;secretroomsmod;密室;SecretRooms -the-camping-mod;13;;;野营;The Camping Mod -usefulfood;14;;;有用的食物;UsefulFood -powerconverters-portablejims-fork;15;;PowerConverters;能源转换;PowerConverters -;16;;snyke7_Transformers;变压器;Transformers -;17;407949;jammyfurniture,JammyFurniture;吉米的家具;Jammy Furniture -modular-forcefield-system;18;;modularforcefieldsystem;模块化力场系统;Modular Force Field System -minechem;19;;minechem;化学;MineChem -iron-chests;20;372723;IronChest,ironchest;更多箱子;Iron Chests -balkons-weaponmod;21;;;更多武器;Balkon's WeaponMod -advanced-machines;22;;AdvancedMachines,advanced_machines;高级机械;AdvancedMachines -advanced-solar-panels;23;;AdvancedSolarPanel,advanced_solar_panels;高级太阳能;AdvancedSolarPanel -nuclear-control-2;24;;IC2NuclearControl;核电控制2;Nuclear Control 2 -;25;;;魔法艺术;Ars Magica -better-dungeons;26;418940;chocolateQuest;更好的地牢/寻找巧克力;Better Dungeons -flans-mod-5-5-2;27;494675;flansmod;Flan的枪械;Flan's Mod -;29;776706;Thaumcraft;神秘时代3;Thaumcraft 3 -;30;;Forge,forge;Minecraft Forge; -ee3;31;;EE3;等价交换3;Equivalent Exchange 3 -minefactory-reloaded;32;;MineFactoryReloaded;我的工厂2;MineFactoryReloaded 2 -;33;;;Risugami's ModLoader; -render-player-api;34;;;玩家渲染API;Render Player API -player-api;35;;PlayerAPI;玩家API;Player API -;36;606019;optifine;高清修复;OptiFine -not-enough-items-1-8;41;389937;NotEnoughItems,nei;NEI物品管理器;Not Enough Items -;42;120501;;TMI内置修改器;TooManyItems -inputfix;43;83941;InputFix;中文输入修复补丁;Minecraft Language InputFix -;44;71955;;更多语言;MoLanguage -custom-npcs;45;936521;customnpcs,AdvNPCs;自定义NPC;Custom Npcs -millenaire;46;812961;millenaire;千年村庄;Millénaire -clay-soldiers-mod;47;;claysoldiers;粘土士兵;Clay Soldiers Mod -mo-creatures;48;836997;mocreatures;更多生物;Mo' Creatures -;49;291020;pixelmon;精灵宝可梦;Pixelmon -extrabiomesxl;50;;ExtrabiomesXL,extrabiomesxl;更多生态群系;ExtraBiomesXL -;51;;gregtech;格雷科技4;GregTech 4 -tale-of-kingdoms;55;;taleofkingdoms;王国;Tale Of Kingdoms -;56;;;守护精灵;familiars -;58;;;正版皮肤显示修正;AntiSteve -tfcraft;59;887732;terrafirmacraft;群峦传说;TerraFirmaCraft -;60;;;灵魂碎片;Soul Shards -the-twilight-forest;61;733312;twilightforest;暮色森林;The Twilight Forest -binnies-mods;62;;ExtraBees,extrabees;更多蜜蜂;Extra Bees -portal-gun;63;777495;PortalGun,portalgun;传送枪;Portal Gun -simpleores;64;;simpleores;简单矿石;SimpleOres -smart-moving;65;;SmartMoving;灵活动作;Smart Moving -easycrafting;66;;;轻松合成;Easy Crafting -;67;;;热力膨胀3;Thermal Expansion 3 -;68;;;费如罗的枪械;Ferullo's Guns -;69;;compactkineticgenerators;压缩风电阵列;Compact Windmills -;70;;;元素魔法;Manasys -computercraft;71;473694;ComputerCraft;电脑;Computer Craft -;72;['313835'];SpecialArmor;特殊防具;Special Armor -inventory-tweaks;73;877466;inventorytweaks;R键整理;Inventory Tweaks -;74;;;更多弓;More Bows -;75;;;召唤奴仆;Minions -ender-storage;76;870812;enderstorage;末影存储;Ender Storage -;77;521541;DQMV;勇者斗恶龙;Dragon Quest Monster -;78;;;内置音乐播放器;MCMP-1 -;80;800848;NBTEdit,nbtedit;内置NBT编辑器;In-Game NBTEdit -extra-utilities;81;377817;ExtraUtilities;更多实用设备;Extra Utilities -;84;126486;;立体机动装置;フックショット -rotarycraft;85;;RotaryCraft;旋转工艺;RotaryCraft -;86;132684;;万用工具;OmniTools -applied-energistics-1;87;;AppliedEnergistics;应用能源;Applied Energistics -;88;;;奥法卷轴;Arcane Scroll -;89;;HarkenScythe_Core;死神之镰;Harken Scythes -;90;;;巨剑与大盾;Asgard Shield -;91;;;锁链;CHAINZ: THE -MISSING- IRON LINK -Universal-Electricity;92;405261;;通用电力;Universal Electricity -;93;;;比狼好;Better Than Wolves -the-aether;94;797941;aether,aether_legacy;天境;The Aether -;95;;;电脑外设;MiscPeripherals -;96;216074;;高级核电;Advanced Reactors -assassincraft-assassins-creed-mod;97;334358;AssassinCraft;刺客信条;AssassinCraft -;98;;RWG;更真实的地图生成;Realistic World Gen -custom-recipes;99;;;自定义合成表;Custom Recipes -minecraft-comes-alive-mca;100;727273;mca;虚拟人生/凡家物语;Minecraft Comes Alive -tinkers-construct;101;;TConstruct;匠魂;Tinkers' Construct -;102;;;BukkitForge; -forge-essentials-74735;103;;;ForgeEssentials; -;104;;palaria;帕拉瑞亚;Palaria -translocators;105;;Translocator,translocators;转运器;Translocators -craftguide;106;723306;craftguide;G键合成指南;CraftGuide -;107;;mobdictionary;生物图鉴;Mob Dictionary -biomes-o-plenty;108;814732;biomesoplenty;超多生物群系;Biomes O' Plenty -;109;588294;BambooMod;竹;Bamboo -;110;;;立体机动装置(Ibemu版);立体機動装置MOD -enhanced-portals-3;111;;enhancedportals;增强传送门3;Enhanced Portals 3 -compact-solars;112;807551;compactsolars,CompactSolars;压缩太阳能阵列;CompactSolars -bibliocraft;113;;BiblioCraft,bibliocraft;收藏馆;BiblioCraft -natura;114;;Natura,natura;自然;Natura -atomic-science;115;;atomicscience;原子科学;Atomic Science -;116;985499;shouldersurfing;越肩视角;Shoulder Surfing -atum;117;;atum;阿图姆:沙漠之旅/亚图姆:金沙之旅;Atum 2: Return to the Sands -blockphysics_by_id_miner;118;;BlockPhysics;方块物理学;BlockPhysics -;119;;;火箭科技;Rocket Science -;120;;grimoireofgaia;盖亚魔典2;GRIMOIRE OF GAIA 2 -remain-in-motion;121;;JAKJ_RedstoneInMotion;运动红石机构;Redstone in motion -;122;;;开放式电脑传感器;OpenCCSensors -;123;;OpenPeripheral;开放式电脑外设;OpenPeripheral -modular-powersuits;124;;powersuits;模块化动力套装;Modular Powersuits -;129;;immibis_microblocks;Immibis的小方块;Immibis's Microblocks -;132;;RedLogic;红石逻辑;RedLogic -;;;;能量工厂;Power Craft -;134;;ObsidiPlates;黑曜石压力板;ObsidiPlates -;135;;InfiniTubes;终极管道;InfiniTubes -flatsigns;136;;FlatSigns;平置牌子;FlatSigns -switches;137;;switches;按钮开关;Switches -artifice;138;;Artifice;工匠的手艺;Artifice -archimedes-ships;140;;ArchimedesShipsPlus,ArchimedesShips;阿基米德之舟;Archimedes' Ships -cubebots;141;;;魔方机器人;CubeBots -truss-mod;142;;TrussMod;桁架;TrussMod -mutant-creatures-mod;143;;MutantCreatures;突变生物;Mutant Creatures -;144;;;魔能II;Minegicka2 -logistics-pipes;145;;LogisticsPipes,logisticspipes;物流管道;Logistics Pipes -binnies-mods;146;;ExtraTrees,extratrees;更多树;Extra Trees -magic-bees;148;;MagicBees,magicbees;魔法蜜蜂;Magic Bees -carpenters-blocks;149;461134;CarpentersBlocks;木匠方块;Carpenter's Blocks -mystcraft;150;;mystcraft;神秘岛;Mystcraft -;151;;;牛仔帽;Cowboy Hat Mod -;152;127877;;英文显示默认字体;FontsFix -;153;354477;;达特工艺;DartCraft -minesweeper-mod;154;;MinesweeperMod;扫雷;Minesweeper -minechess;155;;MineChess;国际象棋;MineChess -;156;143601;MineCharacter;职业;MineCharacter -;157;;tennox_bacteria;细菌;Bacteria -;158;145719;;贝爷;BearGrylls -;159;;factorization;因式分解;Factorization -;160;;;我的幻想;MineFantasy -;161;;;机关;UgoCraft -;162;;ColoredWool;真彩色羊毛;Full RGB Colored Wool -;163;;;你是苦力怕;You Are The Creeper -project-red-base;164;;ProjRed|Core,projectred-integration,projectred-transmission,projectred-expansion,projectred-relocation,projectred-transportation,projectred-fabrication,projectred-exploration,projectred-compat,projectred-illumination,ProjRed|Transmission,ProjRed|Integration,ProjRed|Illumination,ProjRed|Expansion,ProjRed|Exploration,ProjRed|Transportation,ProjRed|Fabrication,ProjRed|Compatibility,projectred-core;红石计划;ProjectRed -;165;;OpenXP;开放式经验;OpenXP -dimensionaldoors;166;896027;dimdoors;次元门;Dimensional Doors -chickenchunks;167;;chickenchunks;区块载入器;ChickenChunks -dlt2;168;;dynamictanks;动态蓄水槽;Dynamic Liquid Tanks -;169;;;海绵科技;Technical Vanilla -;170;778743;webdisplays,WebDisplay;内置网页浏览器;WebDisplays -morph;171;;Morph;变身;Morph -;172;;;自定义旗帜;Custom Flags -;173;['953855'];;泰拉瑞亚3D;Terraria 3D -extracells2;174;;extracells;更多存储单元2;Extra Cells 2 -;175;;itemrender;渲染图片导出;Item Render -;;;;齐柏林;Zeppelin -;177;;;乐高;Billund -;178;;AlchemyPlusPlus;炼金++;Alchemy++ -better-bows;179;;;更好弓箭系统;Better Archery Mod -mumblelink;180;;mumblelink;Mumble语音链接;Mumblelink -ender-io;181;677063;enderioconduitsappliedenergistics,enderiointegrationforestry,enderioconduitsopencomputers,enderioconduitsrefinedstorage,enderioendergy,enderiobase,enderioconduits,enderiointegrationticlate,enderiomachines,enderiopowertools,enderiointegrationtic,enderio,EnderIO;末影接口;Ender IO -;184;;LevelStorage;等级存储;LevelStorage -electrodynamics;185;;electrodynamics;电动力学;Electrodynamics -elite-armageddon;186;;;太阳启示录;Elite Armageddon -mekanism;187;654082;Mekanism,mekanism;通用机械;Mekanism -;188;;;吹熄火焰!;Blow Me! -;189;;Somnia;梦短人生长/真实睡眠;Somnia -magic-crusade-rpg-mod;190;;;魔法远征:魔法十字军;Magic Crusade -invasions;191;;Invasion,mod_Invasion;入侵;Invasion -mb-battlegear-2;192;;battlegear2;挖矿与砍杀:双持与战备2;Mine & Blade: Battlegear 2 -;193;;;青蛙化工;FrogCraft -;194;802464;GalacticraftCore,galacticraftplanets,GalacticraftMars,galacticraftcore;星系;GalactiCraft -;195;;dungeonpack;地牢拓展;DungeonPack -;196;;LittleBlocks;小方块;Little Blocks -;197;;CustomStuff2;自定义物品2;Custom Stuff 2 -journeymap;198;612917;JourneyMapServer,journeymap;旅行地图;Journey Map -;199;;;线程优化;TickThreading -underground-biomes;201;;;科学地质;Underground Biomes -fpsplus-lagfixes;202;;;FPS优化;FPS Plus -ars-magica-2;203;;arsmagica2;魔法艺术2;Ars Magica 2 -thaumcraft;204;776706;Thaumcraft;神秘时代4;Thaumcraft 4 -highlands;205;;;高地;Highlands -doggy-talents;206;713458;doggytalents;小狗天才;Doggy Talents -plasmacraft;207;;plasmacraft;电浆工艺;PlasmaCraft -;208;;;更多生命;More Health ENHANCED -fossils;209;;HungerOverhaul;考古与化石;Fossils and Archeology Revival -glenns-gases;210;;gasesFrameworkCore,gasesFramework,gases;格林的气体;Glenn's Gases -the-lord-of-the-rings-mod-legacy;211;363128;lotr;魔戒:传承;The Lord of the Rings Mod: Legacy -thaumic-tinkerer;212;;ThaumicTinkerer,ThaumicTinkerer-preloader,thaumictinkerer;神秘工匠;Thaumic Tinkerer -;213;;Paleocraft;古生代;Paleocraft -metallurgy;214;;;冶金3;MetallurgyIII -;216;;xycraft;XyCraft; -chococraft;217;;chococraft;陆行鸟;ChocoCraft -pams-harvestcraft;218;669856;harvestcraft;潘马斯农场;Pam's HarvestCraft -blood-magic;219;566726;AWWayofTime,bloodmagic;血魔法;Blood Magic -opis;220;;Opis;Opis; -;221;169093;;世界树/巨树;Yggdrasill -openblocks;222;;OpenBlocks,openblocks;开放式方块;OpenBlocks -;223;;TinyCarts;微型矿车;TinyCarts -;225;;;冒险;AdventureCraft -;226;;MITE;MC实在是太简单了;Minecraft Is Too Easy -randomcraft-v0-1-0;227;;RandomCraft;随机工艺;RandomCraft -;228;;DragonMounts;龙坐骑/龙骑士;Dragon Mounts -animal-bikes;229;;animalbikes;动物坐骑;Animal Bikes -;230;165454;BetterGrassAndLeavesMod;更好的草地和树叶;Better Grass & Leaves -electro-magic-tools;232;;EMT;电力魔法工具;Electro-Magic Tools -forbidden-magic;233;;ForbiddenMagic;禁忌魔法;Forbidden Magic -mobtalker2;234;;mobtalker2;怪物交谈2;MobTalker 2 -icbm-classic;235;;;洲际导弹;ICBM -thaumic-infusion;236;; thaumicinfusion,thaumicinfusion;神秘注魔;Thaumic Infusion -thaumic-exploration;237;;ThaumicExploration;神秘探险;Thaumic Exploration -deconstruction-table;238;;deconstruction;解构工作台;Deconstruction Table -;240;;;岩浆工具;The Magma Items -b0bgarys-growable-ores;241;;B0bGrowsOre;可生长矿石;B0bGary's Growable Ores -;242;;;基础ID修复工具;Idfix -;243;;;高级ID修复工具;IdfixMinus -;244;296056;;远陆时代2;Far Land Era2 -;245;;CompactEngine;高效率引擎;Compact Engine -waila;246;;Waila,waila;高亮信息拓展;What am I looking at -chaoscraft-2;247;; Chaos_Technology;混沌工艺;ChaosCraft -scenter-mod;248;;;矿物追踪;Scenter -;249;401486;otaku_craft;御宅工艺;Otaku Craft -ex-nihilo;250;195925;exnihilo;无中生有;Ex Nihilo -reactorcraft;251;;ReactorCraft;反应堆工艺;ReactorCraft -bctools;252;;;BC扩展:更多工具;Buildcraft Tools -additional-buildcraft-objects;253;;;更多管道;Additional Buildcraft Objects -foundry;254;;foundry;金属工坊;Foundry -gravitation-suite;255;734193;GraviSuite,gravisuite;重力装甲;Gravitation Suite -redstone-arsenal;256;;RedstoneArsenal,redstonearsenal;红石兵工厂;Redstone Arsenal -big-reactors;257;348989;BigReactors;大型反应堆;Big Reactors -;258;;;谐振感应;Resonant-Induction -endertanks;259;;endertanks;末影水槽;Ender Tanks -applied-energistics-2;260;798231;appliedenergistics2,appliedenergistics2-core;应用能源2;Applied Energistics 2 -hopper-ducts;261;;HopperDuctMod,hopperducts;漏斗管道;Hopper Ducts -autofish;262;;;自动钓鱼;Autofish -mrcrayfish-furniture-mod;263;321693;cfm;MrCrayfish 的家具;MrCrayfish's Furniture Mod -wireless-redstone-cbe;264;621428;WR-CBE,WR-CBE|Logic,WR-CBE|Addons,WR-CBE|Core,wrcbe;无线红石;Wireless Redstone -;265;;;终极农业;Agent's Agriculture -;266;;;异次元物品存储;Extradimensional Item Storage -per-fabrica-ad-astra-geologica;267;;PFAAGeologica;自合成至星辰:真实地理;Per Fabrica Ad Astra: Geologica -;268;;;更好的矿物挖掘;Better Mining -redstone-furnace;269;;;红石炉;Redstone Furnace -pneumaticcraft;270;;PneumaticCraft,PneumaticCrap,pneumaticcraft;气动工艺;PneumaticCraft: Repressurized -;271;;;能源转换器;Transducers -thirst-mod;272;78952;thirstmod;饮水;Thirst Mod -tubes;273;;tubes;管道;Tubes -pchan3-steamship-steamboat-pirates;274;;;飞艇与汽船;SteamShip - SteamBoat and Pirates -;275;;powersuits;模块化动力装甲扩展;Modular Powersuits Addons -betterfarming;276;;;农业增强;Better Farming -;277;;AdvancedTools;IC扩展:高级工具;Advanced Tools -lots-of-food;278;73013;LotsOfFood;更多的食物;Lots Of Food -;279;;FoodPlus;更多食物;Food Plus -aquaculture;281;;aquaculture;水产养殖2;Aquaculture 2 -project-bench;282;;;高级工作台;Project Bench -;283;;extendedWorkbench;扩展工作台;Extended Workbench -apples-plus;284;;apples;更多苹果;Apples+ -;285;165727;;啤酒;Beer Mod -qcraft;286;;qCraft;量子物理;QCraft -;287;;enderCraft;末影工艺;EnderCraft -mad-science;288;;;疯狂科学;Mad Science -;289;;;采石场增强;Quarry Plus -enviromine;290;;enviromine;更多生存要素;EnviroMine -;291;;;群峦扩展;ExtraFirma -the-erebus;292;856406;erebus;混沌之地;The Erebus -emerald-mod;293;282677;emeraldmod;绿宝石Mod;Emerald Mod -configuration;294;;lucky;幸运方块;Lucky Block -dynamic-lights;295;593066;DynamicLights,DynamicLights_onFire,DynamicLights_creepers,DynamicLights_dropItems,DynamicLights_entityClasses,DynamicLights_mobEquipment,DynamicLights_thePlayer,DynamicLights_otherPlayers,DynamicLights_flameArrows;动态光源;Dynamic Lights -yarr-cute-mob-models-remake;296;;yarr_cutemobmodels;怪物娘化;Yarr Cute Mob Models - Remake -monster-hunter-frontier-craft;297;;mhfc;怪物猎人边境工艺;Monster Hunter Frontier Craft -zombie-awareness;298;;zombieawareness;僵尸意识;Zombie Awareness -remote-io;299;;RIO;远程接口;Remote IO -electrical-age;300;;Eln;电力时代;Electrical Age -;301;;;可升级机器;Upgradable Machines -;302;;PowerUtils;电力转换;Power Utilites -minor-alchemy;303;;;小型炼金术;Minor Alchemy -;304;;;更多TNT;TooMuchTNT -;305;;;更多爆炸物;More Explosives Mod -;306;;;生物病毒;MineInfection -;307;;;高级能量工具;Advanced Flux Tools -;308;;;自然工艺;Natural Craft -mcicraft;309;;mcicraft,mcicraft_machines,mcicraft_redstone,mcicraft_farming;MCI工艺;MCI Craft -;310;;;能源操纵;Energy Manipulation -;311;;Lantern;手电与照明;Lanterns and Flashlights -engineers-toolbox;312;;eng_toolbox;工程师工具箱;Engineer's Toolbox -e-tools-redstone-powered-tools;313;;;电子工具:红石供电工具;E-Tools: Redstone Powered Tools -;314;;AppliedThermodynamics;应用热力学;Applied Thermodynamics -modular-systems;315;;modularsystems;模块化熔炉2;Modular Furnaces 2/Modular Systems -;316;;;原子科技;Atomicraft -Traincraft;317;;;火车工业;Traincraft -hydraulicraft;318;;HydCraft;液压工艺;Hydraulicraft -utilities3;319;;;流体能量;Utilities³ -;320;;;科学;The Science Mod -;321;;;和平工艺;InspiritCraft -metallurgy;322;273214;MetallurgyCore,Metallurgy,metallurgycm,metallurgy;冶金4;Metallurgy 4 -school-mod-forge-1-14;324;;;学校;School Mod -witchery;325;314815;witchery;巫术;Witchery -growthcraft-community-edition;326;;Growthcraft,growthcraft_rice,growthcraft_milk,growthcraft_hops,growthcraft_grapes,growthcraft_fishtrap,growthcraft_bees,growthcraft_cellar,growthcraft_bamboo,growthcraft_apples,Growthcraft|Rice,Growthcraft|Milk,Growthcraft|Hops,Growthcraft|Grapes,Growthcraft|Fishtrap,Growthcraft|Bees,Growthcraft|Bamboo,Growthcraft|Apples,Growthcraft|Cellar;生长工艺;GrowthCraft -gregtech-5-unofficial;327;352465;gregtech_addon;格雷科技5;GregTech 5 -mantle;329;;Mantle,mantle;地幔;Mantle -customoregen;330;;CustomOreGen;自定义矿物生成;Custom Ore Generation -littlemaidmobx;331;932911;MMMLibX,lmmx;女仆;LittleMaidMob -botania;332;722470;botania,Botania;植物魔法;Botania -alternate-terrain-generation;333;;atg;交替性地形生成;Alternate Terrain Generation -gendustry;334;441078;gendustry;基因工业;Gendustry -;336;199037;;更多的配方;NotEnoughRecipes -;337;;CrossbowMod2;十字弩2;Crossbow2 -;338;;mario;超级马里奥;SuperMario -betterfonts;339;187674;BetterFonts;更好的字体;BetterFonts -zelda-sword-skills;340;;zeldaswordskills;塞尔达剑技;ZELDA SWORD SKILLS -minemenu;342;302947;minemenu;我的菜单;MineMenu -symcalc;343;;symcalc;对称度运算仪;Symcalc -;344;['302178'];mod_ecru_MapleTree;枫树;MapleTree -iguanas-tinker-tweaks;345;425981;;匠魂强化;TiC Tweaks -jabba;346;;JABBA;更好的储物桶;Just Another Better Barrel Attempt -mcheli-minecraft-helicopter-mod;347;;mcheli;MC直升机;MC Helicopter MOD -ex-aliquo;348;;exaliquo;Ex Aliquo; -steves-carts-2;350;;StevesCarts;史蒂夫矿车2;Steve's Carts 2 -mariculture;351;321251;Mariculture;海洋物语;Mariculture -evilcraft;352;;evilcraft,evilcraftcompat;邪恶工艺;EvilCraft -projecte;353;1109380;ProjectE,projecte;等价交换重制版;ProjectE -falling-meteors-mod;354;;meteors;陨石;Falling Mateors -thermal-expansion;357;805200;ThermalExpansion;热力膨胀4;Thermal Expansion 4 -;358;;;控制包/更方便快捷的控制;ControlPack -glacia-dimension;360;;;冰河时代;Glacia -water-power;361;190676;WaterPower,waterpower;水力科技;Water Power -realtrainmod;362;781058;rtm;真实火车模组;RealTrainMod -applemilktea2;363;464690;DCsAppleMilk;苹果奶茶2;Apple&Milk&Tea! ver2 -;364;;ihouse;我的房屋;iHouse -flaxbeards-steam-power;365;315722;Steamcraft;FSP蒸汽动力;Flaxbeard's Steam Power -slashblade;366;726664;flammpfeil.slashblade;拔刀剑;SlashBlade -steves-factory-manager;367;;StevesFactoryManager;史蒂夫工厂管理;Steve's Factory Manager -;369;296193;;神秘管道;Thaumic Pipes -thaumcraftgates;370;;thaumiumPipe;神秘管道;ThaumcraftGates -;371;;;神秘合成;Thaumcraft Recipes -;372;;;玩家死亡掉头;Player Heads -notenoughkeys;373;;;更好的按键控制;Not Enough Keys -;374;273086;;更深的雪;Snow Deeper -pet-bats;375;295007;petbat;宠物蝙蝠;Pet Bat Mod -;376;241681;;光桥和门;Light Bridges and Doors -crafting-pillar-mod;377;;craftingpillars;合成柱;Crafting Pillar Mod -ultratech;378;;UltraTech;次元科技;UltraTech -;379;;;高级排斥系统;Advanced Repulsion Systems -atomicstrykers-infernal-mobs;380;592395;InfernalMobs,infernalmobs;稀有精英怪;Infernal Mobs -applecore;381;;AppleCore,applecore;苹果核;AppleCore -thaumic-energistics;385;791638;thaumicenergistics;神秘能源;Thaumic Energistics -;386;172867;TofuCraft;豆腐工艺;TofuCraft -chisel;387;641383;chisel;凿子;Chisel -nuclearcraft-mod;388;;nuclearcraft;核电工艺;NuclearCraft -opencomputers;389;618383;OpenComputers,OpenComputers|Core,opencomputers,opencomputers|core;开放式电脑;Open Computers -elemental-stones;390;;;元素之石;Elemental Stones -waila-nbt;392;;WailaNBT;万用高亮显示;Waila NBT -thaumcraft-node-tracker;393;;;神秘节点追踪;Thaumcraft Node Tracker -geochests;394;;;箱载世界;Geochests -parachutemod;395;;parachutemod;降落伞;Parachute -gem-buffs-infinite-potion-effects;396;;;宝石效果/增益宝石;Gem Buffs -rftools;397;416167;rftools;RF工具箱;RFTools -;398;;MagicYarn;AtomicStryker的魔法线;AtomicStryker's Magic Yarn -grimoire-of-gaia;399;679274;GrimoireOfGaia,grimoireofgaia;盖亚魔典3;Grimoire of Gaia 3 -;400;;;怀旧地形;Old World Gen -advent-of-ascension-nevermine;401;325420;nevermine;虚无世界2;Nevermine 2 -academycraft;402;421967;academy-craft,academy;超能力/学园都市;AcademyCraft -the-spice-of-life;404;722595;SpiceOfLife,spiceoflife;生活调味料;The Spice of Life -;405;;;更好的载入界面;Minecraft Loader -automagy;407;;Automagy;自动化魔法;Automagy -storage-drawers;408;798307;StorageDrawers,storagedrawers;储物抽屉;Storage Drawers -wintercraft-gruntpie224;409;;;冬天的世界;Wintercraft -;410;441072;FoodCraft;食物工艺;FoodCraft -;411;610367;;缝合玻璃;Pane In The Glasses -shincolle;412;420381;shincolle;深海舰队收藏;ShinColle -;413;;;猫之手;猫の手 ~Hand of Cats~ -unicode-font-fixer;414;398402;UnicodeFontFixer;Unicode字体修复;UnicodeFontFixer -lanteacraft;415;;LanteaCraft;星际之门;LanteaCraft -matteroverdrive-17-edition;416;802474;matteroverdrive,mo;超能物质;Matter Overdrive -tainted-magic;417;807351;TaintedMagic;污秽魔法;Tainted Magic -minetweaker3;418;;MineTweaker3;MineTweaker 3; -treecapitator;419;;Treecapitator;砍树;Tree Capitator -;420;;;即时建造;Insta House -multi-page-chest;421;142597;MultiPageChest,multipagechest;多页箱子;Multi-Page Chest -;422;410261;;凋零蛋原创不科学和平包;WESPP -draconic-evolution;423;724610;draconicevolution;龙之进化/龙之研究;Draconic Evolution -galacticraft-add-on-more-planets;424;453885;MorePlanet,moreplanets;更多行星;More Planets -thermal-foundation;425;;ThermalFoundation,thermalfoundation;热力基本;Thermal Foundation -;426;463431;colourfulsurvivalmod;多姿多彩的生存;Colourful Survival Mod -;427;461268;;基岩破坏法杖;Bedrock Breaker -ding;428;;ding;界面进入提醒;Ding -ender-utilities;429;;enderutilities;末影设备;Ender Utilities -magical-crops;430;440898;magicalcrops,magicalcropsarmour;魔法作物;Magical Crops -headcrumbs;431;;headcrumbs;更多头颅;Headcrumbs -ex-astris;432;;exastris;星辉生万物;Ex Astris -xelitez-frostcraft;433;;XEZFrostcraft;冰冻工艺;FrostCraft -hardcore-ender-expansion;434;456093;HardcoreEnderExpansion;极限末地生存;Hardcore Ender Expansion -more-fun-quicksand-mod;435;449666;MFQM;更多流沙;More Fun Quicksand Mod -fastcraft;436;343542;FastCraft;快速工艺;FastCraft -forgeautoshutdown-1-12-2;437;;forgeautoshutdown;Forge Auto Shutdown; -;438;120571;;行动助手;Movement Assistant -sao-ui;439;473756;saoui;刀剑神域UI;Sword Art Online UI -extratic;440;;ExtraTiC;匠魂扩展;Extra TiC -dimensional-pockets;441;;dimensionalPockets;四次元口袋;DimensionalPockets -;442;631110;modJ_JBRobot,modJ_JointBlock,modj_jointblock;机器方块;JointBlock -security-craft;443;774616;securitycraft;安全工艺;Security Craft -buildcraft-additions;444;;bcadditions;建筑扩充;Buildcraft Additions -bedrockium-mod;445;;be;基岩工艺;Bedrockium Mod -blocksteps;446;;blocksteps;Blocksteps; -thaumic-horizons;447;;ThaumicHorizons;神秘视界;Thaumic Horizons -modtweaker;448;;modtweaker2,modtweaker;ModTweaker; -lootbags;449;720841;enhancedlootbags,lootbags;战利品;Loot Bags -compact-lava-generator;450;522808;CLG;高级地热发电机;Compact Lava Generator -project-zulu;451;;ProjectZulu|Core;祖鲁;Project Zulu -;452;;;许多生物;LotsOMobs -chinacraft;453;518660;chinacraft;华夏文明;ChinaCraft -thaumcraft;454;776706;;神秘时代5;Thaumcraft 5 -;455;681514;gregtech;格雷科技6;GregTech 6 -betterbeginnings-mod;456;;;更好的开局;Better Beginnings -utility-mobs;457;;;工具怪物;Utility Mobs -hunger-overhaul;458;785119;;饥饿改革;Hunger Overhaul -jei;459;1175372;jei,JEI;JEI物品管理器;Just Enough Items -jeiaddons;460;;;JEI Addons; -magneticraft;461;;Magneticraft;磁场工艺;MagnetiCraft -chromaticraft;462;;ChromatiCraft;缤纷纪元;ChromatiCraft -immersive-engineering;463;450097;ImmersiveEngineering,immersiveengineering;沉浸工程;Immersive Engineering -armourers-workshop;464;382319;armourersWorkshop,armourers_workshop,plushieWrapper;时装工坊;Armourer's Workshop -;465;;plo;植物矿石;Plants To Ores -;466;;;命令强化;Slash -et-futurum;467;459404;etfuturum;把未来带回现实;Et Futurum -cooking-for-blockheads;468;545680;cookingforblockheads,cookingbook;懒人厨房;Cooking for Blockheads -;469;485184;nstd;不要饿死;No Starve To Death -psi;470;;psi,Psi;Psi; -good-nights-sleep;471;965322;good_nights_sleep;晚安的梦境;Good Night's Sleep -binnies-mods;472;;;Binnie's Mods; -baubles;473;;Baubles,baubles;饰品栏;Baubles -more-swords-mod;474;;;更多剑;MoreSwords -thaumic-bases;475;;thaumicbases;神秘基础学;Thaumic Bases -essentialcraft-3;476;;essentialcraft;源质魔法3;EssentialCraft 3 -;477;;Wa;和风;和風 -hardcore-questing-mode;478;1101667;HardcoreQuesting,hardcorequesting;困难任务;Hardcore Questing Mode -unidict;479;600649;unidict;矿辞统一;UniDict -thermal-dynamics;480;;ThermalDynamics,thermaldynamics;热动力学;Thermal Dynamics -zoology;481;;;动物学;Zoology -;482;;pmp,plantmegapack;植物世界;Plant Mega Pack -thaumic-revelations;483;;trevelations;神秘启示录;Thaumic Revelations -;484;604292;;更多燃料;MoreFuel -warp-book;485;;warpbook;传送书;Warp Book -ex-compressum;486;676165;excompressum;压缩工具;Ex Compressum -simply-jetpacks;487;;simplyjetpacks;简易喷气背包;Simply Jetpacks -blood-arsenal;488;958995;BloodArsenal,bloodarsenal;血液兵工厂;Blood Arsenal -sim-u-kraft;489;530048;ashjacksimukraftreloaded;模拟城市;Sim-U-Kraft Reload -superheroes-unlimited;490;693397;;超级英雄无限;Superheroes Unlimited -;491;;Oceancraft;海洋世界;Oceancraft -;492;;;能源链接;BC-IC2 Crossover -;493;618763;AencEx,MoreEnchants;更多附魔;More Enchantments -witching-gadgets;494;;WitchingGadgets,WitchingGadgetsCore;巫师宝具;Witching Gadgets -buildcraft-compat;496;;BuildCraft|Compat,buildcraftcompat;建筑兼容;Buildcraft Compat -extrabotany;497;596279;ExtraBotany,extrabotany;额外植物学;ExtraBotany -botania-unofficial;498;;;植物魔法非官方版;Botania Unoffical -angry-pixel-the-betweenlands-mod;499;804242;thebetweenlands;交错次元/黑暗沼泽;The Betweenlands -real-first-person-render;500;773042;;真实的第一人称;Real First-Person Render -;501;610780;;丹药笔记;PillNote -;502;;;TW-信息;TW-Info -custom-stuff-3;503;;CustomStuff3;自定义物品3;Custom Stuff 3 -lockdown;504;;lockdown;地图生成锁定;Lockdown -avaritia;505;734399;Avaritia,avaritia;无尽贪婪;Avaritia -minecraft-flight-simulator;506;;mfs;飞行模拟;Minecraft Flight Simulator -essential-thaumaturgy;507;;essenthaum;源质神秘学;Essential Thaumaturgy -abyssalcraft;508;664279;abyssalcraft;深渊国度;AbyssalCraft -calculator;509;440074;calculator;运算工艺;Calculator -sextiarysector2;510;;;农业黑科技;Sextiary Sector 2 -warpdrive;511;713261;WarpDrive;曲率驱动;WarpDrive -futurepack;512;1102237;fp.api;飞向未来;Futurepack Mod -hbms-nuclear-tech-mod;513;;hbm;HBM的核科技;HBM's Nuclear Tech -agricraft;514;;AgriCraft,agricraft;农业工艺;AgriCraft -arcane-engineering;515;;arcane_engineering;奥法工程学;Arcane Engineering -immersive-integration;516;;immersiveintegration;Immersive Integration; -ae2-stuff;517;;ae2stuff;AE2 Stuff; -minetweaker-recipemaker;518;;MTRM;可视化合成表编辑器;MineTweaker RecipeMaker -thaumic-dyes;519;;thaumicdyes;神秘染料;Thaumic Dyes -gadomancy;520;;gadomancy;魔像秘经;Gadomancy -inventory-pets;521;437983;inventorypets;背包宠物;Inventory Pets -levels;522;;;装备等级;Levels -keeping-inventory;523;592605;keepinginventory;Keeping Inventory; -orespawn;524;464954;OreSpawn,orespawn;矿石菌种;OreSpawn -reliquary-v1-3;525;;xreliquary;圣遗物;Reliquary -mo-bends;526;729115;mobends;更多弯曲;Mo' Bends -quark;527;1155355;quark,Quark;夸克;Quark -blood-magic;528;566726;bloodmagic,BloodMagic;血魔法2;Blood Magic 2 -official-divinerpg;529;1080271;divinerpg;神圣RPG;DivineRPG -harvest-festival;530;658968;festival;丰收物语;Harvest Festival -tough-as-nails;531;849264;toughasnails;意志坚定;Tough As Nails -non-update;532;;non_update;不再有更新;Non Update -clayium;533;;clayium;粘土工业;Clayium -better-storage;534;;betterstorage;更好的储存;Better Storage -davincis-vessels;535;475292;davincisvessels;达芬奇之舟/达芬奇的船;Davincis Vessels -bspkrscore;536;430478;bspkrsCore;bspkrs核心;bspkrsCore -techguns;537;['631578'];Techguns,techguns_core;科技枪;Techguns -Iron-Backpacks;538;;ironbackpacks;特殊背包;Iron Backpacks -openmodularturrets;539;;openmodularturrets;开放式炮台;OpenModularTurrets -technomancy;540;;technom;量子魔法;Technomancy -quantumflux;541;668576;quantumflux;量子通量;QuantumFlux -blocksniffer;542;;sniffer;方块探测;Block Sniffer -dragonapi;543;;;Dragon API; -electricraft;544;;ElectriCraft;电力工艺;ElectriCraft -candycraft;545;459723;candycraftmod;糖果世界;CandyCraft -;546;694067;ihl;IHL Tools & Machines; -minefantasy2;547;;minefantasy2;我的幻想2;MineFantasy2 -;548;;;更高的世界;TallWorlds -rails-of-war;549;;;铁路战争;Rails of War -actually-additions;550;841281;ActuallyAdditions,actuallyadditions;实用拓展;Actually Additions -galaxy-space-addon-for-galacticraft;551;857805;GalaxySpace,galaxyspace;星空;Galaxy Space -latiao-craft;552;720880;latiaocraft;辣条工艺;Latiao Craft -;553;;TofuFactory;豆腐工厂重置版;Tofu Factory Reloaded -meteorcraft;554;;;陨石工艺;MeteorCraft -iguanas-tinker-tweaks;555;425981;IguanaTweaksTConstruct;匠魂增强;Iguanas Tinker Tweaks -arrow-cam;556;;;箭矢视角;Arrow Cam Mod -tea-the-story;557;562372;teastory;茶风·纪事;Tea the Story -techreborn;558;777062;techreborn,techreborn_compat;科技复兴;Tech Reborn -infusinbrewing;559;;InfusionBrewing;注魔酿造;Infusion Brewing -jurassicraft;560;831791;jurassicraft;侏罗纪时代;JurassiCraft -eternal-singularity;561;;eternalsingularity;永恒奇点;Eternal Singularity -codechicken-lib-1-8;562;;codechickenlib,ccl-entityhook,CodeChickenLib;CodeChicken Lib; -codechicken-core-1-8;563;;CodeChickenCore;鸡块核心;CodeChickenCore -;564;;;自动化魔法2;Automagy 2 -aobd-singularities;565;;aobdsingularities;AOBD Singularities; -universal-singularities;566;;universalsingularities;通用奇点;Universal Singularities -academy-monster;567;['677849'];academymonster;超能力怪物;Academy Monster -sonar-core;568;;sonarcore;声呐核心;Sonar Core -armorstatushud-updated;569;138426;armorstatushud;耐久信息显示;ArmorStatusHUD -wanionlib;570;;wanionlib;Wanion Lib; -llibrary;571;;llibrary;LLibrary; -;575;;gtextras;GTExtras; -environmental-tech;583;644622;environmentaltech;环境科技;Environmental Tech -magic-cookies;585;710008;MagicCookie;魔法饼干;Magic Cookies -thaumic-potatoes;586;;;神秘土豆;Thaumic Potatoes -torcherino;587;788894;Torcherino,torcherino;加速火把;Torcherino -craftable-nether-star;588;;craftnstar;Craftable Nether Star +; -veinminer;589;387183;veinminer,VeinMinerModSupport;连锁采矿/矿脉矿工;Vein Miner -;590;;iridiummod;铱矿Mod;Iridium Mod -another-one-bites-the-dust;591;;aobd;Another One Bites the Dust; -;592;;MCEF;Minecraft Chromium嵌入式框架;Minecraft Chromium Embedded Framework -mine-mine-no-mi;593;['828931'];mineminenomi;恶魔果实;Mine Mine no Mi -advanced-rocketry;594;671760;advancedRocketry,advancedrocketrycore,advancedrocketry,AdvancedRocketryCore;高级火箭;Advanced Rocketry -vics-modern-warfare-mod;595;692842;mw;维克的现代战争;Vic's Modern Warfare Mod -chance-cubes;596;;chancecubes;机会方块;Chance Cubes -gun-customization;597;;;Gun Customization; -endercore;598;;endercore;末影核心;EnderCore -brandons-core;599;;brandonscore;Brandon's Core; -cofh-core;600;;CoFHCore,cofh_core,cofhcore;CoFH核心;CoFH Core -statuseffecthud;601;63123;;状态信息显示;StatusEffectHUD -lambdalib;602;;LambdaLib,LambdaLib|Core,lambdalib2;LambdaLib; -redstonic;603;623471;Redstonic,redstonic;红石电子;Redstonic -libvulpes;604;;libVulpes,libvulpes;Libvulpes; -ye-gamol-chattels;605;617588;yegamolchattels;伊加墨的财产;Ye Gamol Chattels -ivtoolkit;606;;ivtoolkit;IvToolkit; -wolf-armor-and-storage;607;672655;wolfarmor;狼铠;Wolf Armor and Storage -better-records;608;;betterrecords;更好的播放器;Better Records -worldedit;609;;worldedit;创世神;WorldEdit -;610;;;LiteLoader; -;611;;;单机创世神;WorldEdit Wrapper -worldeditcui;612;1013295;;WorldEdit CUI; -ztones;613;;Ztones;Ztones;Ztones -;614;;ppapmod;笔菠萝苹果笔;Pen Pineapple Apple Pen Mod -dummycore;615;;DummyCore,fc-dummy;DummyCore; -extra-utilities;616;868981;extrautils2;更多实用设备2;Extra Utilities 2 -openmodslib;617;;OpenMods,OpenModsCore,openmodscore,openmods;开放式模组库;OpenModsLib -embers;618;;embers;余烬;Embers -neat;619;938958;neat,Neat;极简血量显示;Neat -mob-properties;620;;MobProperties,mob_properties;怪物属性;Mob Properties -ganys-surface;621;450171;;Gany的世界;Gany's Surface -;622;244871;;遗忘的火光;Amnesia Lights -ezstorage;623;;ezstorage;EZ存储;EZStorage -ichunutil;624;;ichunutil;iChunUtil; -intangible;625;;;Intangible; -;626;522654;;灵魂森林;Soul Forest -forge-multipart-cbe;627;;ForgeMultipart,forgemultipartcbe,microblockcbe,minecraftmultipartcbe;Forge Multipart CBE/ForgeMultipart; -the-titans-mod;628;730072;TitansAnimationAPI,thetitans;泰坦生物;The Titans -enchiridion;629;;Enchiridion,Enchiridion2;Enchiridion; -stimmedcow-nomorerecipeconflict;630;705241;recipemod,recipehandler;合成冲突消除;NoMoreRecipeConflict -tinker-i-o;631;727609;tinker_io;工匠接口;Tinker I/O -woot;632;;woot,Woot;生物工厂;Woot -;633;578416;;滑稽纪元;Huaji Age -thermal-expansion;634;805200;thermalexpansion;热力膨胀5;Thermal Expansion 5 -realistic-terrain-generation;635;681294;RTG,rtg;真实地形生成;Realistic Terrain Generation -mob-rebirth;636;519229;mobrebirth;怪物重生;Mob Rebirth -diseasecraft;637;406682;DiseaseCraft;疾病;Disease Craft -zombie-infection;638;410512;ZombieInfection;僵尸感染;Zombie Infection -astral-sorcery;639;;astralsorcery;星辉魔法;Astral Sorcery -neotech;640;;neotech;全新科技;NeoTech -apocalypse-mod;641;433738;Apocalypse;启示录;Apocalypse -bookshelf-api-library;642;;;Bookshelf API Library; -;643;;;以太;The Ether -movingworld;644;;MovingWorld;MovingWorld; -botania-garden-of-glass;645;['541959'];GardenOfGlass,gardenofglass;水晶花园;Garden of Glass -;646;;Tubestuff;RP增强;Tube Stuff -tiny-progressions;647;;tp;微型自动化;Tiny Progressions -thaumic-additions;648;;;神秘领域;Thaumcraft Addition -baubles-stuff;649;620576;baublesstuff;更多首饰;Baubles Stuff -thaumaturgical-knowledge;650;690813; benway_knowledge;神秘奥义;Thaumaturgical Knowledge -advanced-thaumaturgy-2;651;;AdvancedThaumaturgy;高等神秘学;Advanced Thaumaturgy 2 -INpureCore;652;;inpure|core;INpureCore; -atomicstrykers-battle-towers;653;142832;battletowers;战斗高塔;AtomicStryker's Battle Towers -reborncore;654;;reborncore,reborncore-mcmultipart;重生核心;Reborn Core -steves-carts-reborn;655;728591;stevescarts;史蒂夫矿车:重生;Steve's Carts Reborn -refined-relocation;656;;ForgeRelocation;简单分类;Refined Relocation -gilded-games-util;657;;gilded-games-util;Gilded Games Util; -dangerrpg;658;;dangerrpg;危险RPG;Danger RPG -malisisdoors;659;;malisisdoors;更多门;MalisisDoors -;;;;YMC科技公司的录像室;[YMC.Inc]Video Studio Room -jaffa-foods-a-harvestcraft-addon;661;500121;jaffa;更多有趣的食物;Just Another Fun Food Addon -thermal-smeltery;662;;ThermalSmeltery,thermalsmeltery;热力冶炼厂;Thermal Smeltery -;663;439135;torchLevers;火把拉杆;Torch Levers -malisiscore;664;;malisiscore;MalisisCore; -valkyrielib;665;;valkyrielib,universalmodifiers,valkyrie;ValkyrieLib; -waila-harvestability;666;;WailaHarvestability,wailaharvestability;Waila Harvestability; -236768-mixed-magic;667;;;混合魔法;Mixed Magic -hwyla;668;['648893'];waila;Here's What You're Looking At; -crafttweaker;669;769481;crafttweaker,ctgui,crafttweakerjei;CraftTweaker; -plusticminusbad;670;;plustic;匠魂扩充;PlusTiC -real-time-chat-translation-mod;671;;;实时聊天翻译;Real Time Chat Translation Mod -;672;230546;;自定义史蒂夫;CustomSteve -practical-logistics-2;673;;practicallogistics2;实用物流监控2;Practical Logistics 2 -energyadditions;674;;;高级能源;EnergyAdditions -advanced-generators;675;;advgenerators;模块化发电机;Advanced Generators -bdlib;676;;bdlib;BDLib; -;677;350131;FLabsBF;更好的熔炉;Better furnace -pressure-pipes;678;;pressure;压力管道;Pressure Pipes -onlinepictureframe;679;;opframe;在线相框显示;OnlinePictureFrame -super-circuit-maker;680;;rscircuits;超级电路;SuperCircuitMaker -switch-bow;681;;switchbow;Switch-Bow; -minecolonies;682;1052010;minecolonies;模拟殖民地;Minecolonies -tinkers-construct;683;661201;TConstruct,tconstruct;匠魂2;Tinkers' Construct 2 -mcjtylib;684;;mcjtylib_ng,mcjtylib;McJtyLib; -mcmultipart;685;;mcmultipart;MCMultiPart; -aroma1997s-dimensional-world;686;;aroma1997sdimension,Aroma1997sDimension;Aroma1997的维度世界;Aroma1997's Dimensional World -;687;;;超级合成框架;Super Crafting Frame -akashic-tome;688;805606;akashictome,AkashicTome;阿卡什宝典;Akashic Tome -morph-o-tool;689;;morphtool,Morphtool;变形工具;Morph-o-Tool -decocraft;690;;props;装饰工艺;Decocraft -refined-storage;691;612538;refinedstorage,refinedreborn;精致存储;Refined Storage -deep-resonance;692;;deepresonance;深度共振;Deep Resonance -;693;;GollumCoreLib;Gollum Core Lib; -;694;;MorePistons;更多活塞;More Pistons -;695;;itemsaver;物品存储器;ItemSaver -clockwork-phase;696;;;时之沙;Clockwork Phase -;697;695905;;镐子养成;Growable Pickaxe -autoreglib;698;;autoreglib,AutoRegLib;AutoRegLib; -roots;699;;crafttweakersync,roots;根源魔法;Roots -guide-api;700;;guideapi;指南;Guide-Api -fraghappy-reborn;701;;fraghappy;FragHappy Reborn; -genetics-reborn;702;;geneticsreborn;基因重生;Genetics Reborn -router-reborn;704;;routerreborn;路由重生;Router Reborn -;705;614246;neieasysearch;NEI中文快捷搜索;NEI Easy Search -coroutil;706;;coroutil,CoroAI,CoroPets;CoroUtil; -vanilla-magic;707;;vanillamagic2;原生魔法;Vanilla Magic -taoism;708;['668355'];;御灵;Taoism -254817-essentialcraft-4-unofficial;709;;;源质魔法4非官方版;EssentialCraft 4 Unofficial -celestial-craft;710;;;天体;Celestial Craft -lost-thaumaturgy;711;;;失落神秘;Pengu's Lost Thaumaturgy -compact-machines;712;;compactmachines3,cm2;更多空间/压缩空间;Compact Machines -;713;466581;uc;实用煤炭;UsefulCoals -ex-nihilo-omnia;714;631637;exnihiloomnia;无中生有-世间万物;Ex Nihilo Omnia -last-sword-you-will-ever-need-mo;715;;theonlychaosmodforyou;最终之剑;The Last Sword You Will Ever Need Mod -the-last-sword-you-will-ever-need-reboot;716;;;最终之剑:重生;The Last Sword You Will Ever Need Reboot -ftb-library-legacy-forge;718;;ftblib,FTBL,ftbl;FTB Library(旧版);FTB Library (Forge) (Legacy) -;719;;;库存扫描;InventoryScan -;720;;;哥斯拉;Godzilla -thaumic-potatoes-2;721;;thaumicpotatoes;神秘土豆2;Thaumic Potatoes 2 -extraplanets;722;799074;extraplanets;额外行星;Extra Planets -xtracraft-mod;724;;xtracraftmod;X工艺;XtraCraft Mod -;725;;DefenseTech;防御科技;DefenseTech -;726;;CARuins,GreatWallMod,WalledCityMod;城墙城市生成;Cellular Automata Generator/Great Wall Mod/Walled City Generator -icbm-classic;727;;icbmclassic;洲际导弹经典版;ICBM - Classic -voltz-engine;728;;;Voltz Engine; -blocklings;729;831446;blocklings;方块酱;Blocklings -;730;;ThaumicMachina;神秘力学;Thaumic Machina -;731;;;巫媒;Shamanry -;732;; ThaumicDarkness;黑暗神秘学;Thaumic Darkness -;733;;;自然魔法;Magia Naturalis -sbm-wooden-shears;734;;woodenshears;木剪刀;Wooden Shears -;735;;;神秘史记;Thaumic History -schools-of-magic;736;;;魔法学院;Schools of Magic -aether-aspects;737;;;天境要素扫描;Aether Aspects -arcane-arteries;738;;arcanearteries;奥法献祭学;Arcane Arteries -thaumic-palmistry;739;;thaumicpalmistry;Thaumic Palmistry; -one-click-crafting;740;943364;oneclickcrafting;一键合成;One click crafting -essential-thaumaturgy-unofficial;741;;;源质神秘学(非官方版);Essential Thaumaturgy Unofficial -wireless-crafting-terminal;742;;wct,ae2wct;无线合成终端;Wireless Crafting Terminal -waila-plugins;743;;wailaplugins;Waila插件;Waila Plugins -appleskin;744;1141428;appleskin;苹果皮;AppleSkin -tcbotaniaexoflame;745;;TCBotaniaExoflame;奥术投射;TCBotaniaExoflame -thaumic-equivalence;746;;;奥法置换;Thaumic Equivalence -thaumcraft-research-helper;747;;;神秘研究小助手;Thaumcraft Research Helper -thaumic-upholstry;748;;;神秘装饰;Thaumic Upholstry -thaumic-expansion;749;;;神秘膨胀;Thaumic Expansion -nodal-mechanics;750;;NodalMechanics;节点力学;Nodal Mechanics -transmute-liquids-addon-for-thaumcraft-4;751;;;液体嬗变;Transmute Liquids -thaumores;752;;;奥能矿物;ThaumOres -notenoughthaumcrafttabs;753;;;无限神秘标签页;Not Enough Thaumcraft Tabs -natures-compass;754;977694;naturescompass;自然罗盘/生物群系指南针;Nature's Compass -warp-theory;755;;WarpTheory;神秘扭曲学;Warp Theory -hammer-lib;756;;hammercore;锤子核心;Hammer Core/Hammer Lib -;757;;MiningTools;采掘工具;Mining Tools -thermal-casting;758;;;热力铸造室;Thermal Casting -thermal-smeltery-redux;759;;;热力冶炼厂重置版;Thermal Smeltery Redux -brcore;760;;BRCore;BRCore; -industrial-expansion-te-addon;761;;industrialexpansion;工业扩充(TE附属);Industrial Expansion [TE Addon] -;762;;gtveinlocator,detravscannermod;格雷科技矿脉定位器;GTVeinLocator -;763;;gtneioreplugin;格雷矿物NEI插件;GTNEIOrePlugin -;764;;spmodapi;SpmodAPI; -quantum-pack;765;;quantumpack;量子工具包;Quantum Pack -netherores;766;;NetherOres;下界矿石;NetherOres -tesla;767;;tesla;特斯拉;TESLA -vanillafoodpantry-mod;768;683091;vanillafoodpantry;食品储藏室;VanillaFoodPantry Mod -the-elysium;769;;elysium;极乐世界;The Elysium -ice-and-fire-dragons;770;847008;iceandfire;冰火传说 / 冰与火之歌;Ice and Fire -yabba;772;;yabba;YABBA; -useful-nullifiers;773;;usefulnullifiers;实用销毁器;Useful Nullifiers -xtones;774;;xtones;Xtones; -xnet;775;;xnet;XNet; -wireless-crafting-grid;776;;wcg;无线合成网络;Wireless Crafting Grid -top-addons;778;;topaddons;TOP Addons; -torchmaster;779;;torchmaster;火炬大师;Torchmaster -zerocore;780;;zerocore;ZeroCore; -sleeping-bag;781;;SleepingBag;睡袋;Sleeping Bag -the-one-probe;782;1155343;theoneprobe;检测器;The One Probe -simply-jetpacks-2;784;;simplyjetpacks;简易喷气背包2;Simply Jetpacks 2 -snad;785;;snad;子沙;Snad -storage-drawers-extras;786;;storagedrawersextra;Storage Drawers Extras; -solar-flux-reborn;787;;solarflux;日光通量:重制版;Solar Flux Reborn -simple-void-world;788;1089311;simplevoidworld;简单虚空世界;Simple Void World -shetiphiancore;789;;shetiphiancore;ShetiPhianCore; -shadowmc;790;;shadowmc;ShadowMC; -scannable;791;['692037'];scannable;扫描器;Scannable -rebornstorage;792;;rebornstorage;存储重置;Reborn Storage -quantumstorage;793;;quantumstorage;量子存储;QuantumStorage -p455w0rds-library;794;;p455w0rdslib;p455w0rd's Library; -mtlib;795;;mtlib;MTLib; -;796;;;光滑的地形;No Cubes Mod -open-glider;797;;openglider;滑翔翼;Open Glider -mputils;798;;mputils;MPUtils; -shadowfacts-forgelin;799;;forgelin;Shadowfacts' Forgelin; -eleccore;800;;eleccore;ElecCore | Rendering Library; -infinitylib;801;;infinitylib;Infinity Lib; -dark-utilities;802;;darkutils;Dark Utilities; -flux-networks;803;;fluxnetworks;通量网络;Flux Networks -flat-colored-blocks;804;;flatcoloredblocks;平滑色块;Flat Colored Blocks -jei-bees;805;;jeibees;JEI Bees; -chisels-bits;806;;chiselsandbits;雕凿工艺;Chisels & Bits -architecturecraft;807;;ArchitectureCraft;建筑师工艺;Architecture Craft -chameleon;808;;chameleon,Chameleon;变色龙;Chameleon -mrtjpcore;809;;MrTJPCoreMod,mrtjpcore;MrTJPCore; -cyclops-core;810;;cyclopscore;Cyclops Core; -netherportalfix;811;1004332;netherportalfix;下界传送门修正;NetherPortalFix -rftools-dimensions;812;;rftoolsdim;RF工具:维度;RFTools Dimensions -signals;813;;signals,Signals;信号;Signals -extreme-reactors;814;841782;bigreactors;极限反应堆;Extreme Reactors -et-lunar-environmental-tech-addon;815;;etlunar;ET:月光发电;ET Lunar -angel-ring-to-bauble;816;;flyringbaublemod;Angel Ring To Bauble; -mob-grinding-utils;817;;mob_grinding_utils;刷怪塔实用设备;Mob Grinding Utils -rftools-control;818;;rftoolscontrol;RF工具:控制;RFTools Control -immersive-petroleum;819;;immersivepetroleum;沉浸原油;Immersive Petroleum -more-shearables;820;;shear;更多的剪刀用途;More Shearables -gregtech-gt-gtplusplus;821;;miscutils, GT++_Preloader;Gregtech++; -;822;;GTTweaker;GTTweaker; -;823;;TGregworks;Tinkers' Gregworks; -;824;;galacticgreg;GalacticGreg; -;825;;tectech;TecTech; -;826;;YAMCore;YAMCore; -;828;;;自然灾害;NaturalDisasters -teletoro;829;;teletoro;远程传送;TeleToro -;830;244572;touhou_alice_core,touhou_alice_dolls,touhou_alice_extras;爱丽丝人偶;Alice's Doll -re-zero-kara-hajimeru-isekai-seikatsu;831;;ReZero;RE:从零开始的异世界;Re: Zero kara hajimeru isekai seikatsu -minewatch;832;730508;minewatch;Minewatch; -thaumcraft-inventory-scanning;833;;tcinventoryscan;神秘时代物品栏扫描;Thaumcraft Inventory Scanning -cyclic;834;648189;cyclicmagic,cyclic;循环;Cyclic -redstoneplusplus;836;;;红石++;Redstone++ -ctm;837;;ctm;连接材质;ConnectedTexturesMod -simulated-nights;838;;simulatednights;夜晚模拟;Simulated Nights -ftb-utilities;839;;FTBU,ftbutilities,ftbu;FTB 实用工具;FTB Utilities -just-enough-characters;840;639271;jecharacters,je_characters;通用拼音搜索;Just Enough Characters -redstone-flux;842;;redstoneflux;Redstone Flux API; -cofh-world;843;;cofhworld;CoFH World; -ancient-warfare-2;844;['665422'];AncientWarfareAutomation,AncientWarfare,ancientwarfare,ancientwarfarestructure,ancientwarfarevehicle,ancientwarfarenpc,ancientwarfareautomation;古代战争2;Ancient Warfare2 -integrated-dynamics;845;;integrateddynamics,integrateddynamicscompat;动态联合/集成动力;Integrated Dynamics -common-capabilities;846;;commoncapabilities;Common Capabilities; -;847;715486;jinryuudragonblockc;龙珠 C;Dragon Block C -tan-campfire-spit;848;; tanspit;意志坚定-篝火烤架;TAN Campfire Spit -super-solar-panels;849;699953;supersolarpanel;超级太阳能发电机;Super Solar Panels -ngtlib;850;;ngtlib;NGTLib; -geomastery;851;;;征服大地;Geomastery -afsu-mod;852;;AFSU;AFSU; -;853;;NyankoMod;猫;Nyanko -lightningcraft;854;['692998'];LightningCraft,lightningcraft;雷电工艺;LightningCraft -just-enough-resources-jer;855;;jeresources;Just Enough Resources; -morpheus;856;;Morpheus,morpheus;Morpheus; -wall-jump;857;;walljump;飞檐走壁;Wall Jump -condensed-block-mod-reborn;858;;CBMReborn;凝结成块;Condensed Block Mod Reborn -refined-avaritia;859;;refined_avaritia;Refined Avaritia; -weather-storms-tornadoes;860;;weather2;局部气候&风暴;Weather, Storms & Tornadoes -new-things;861;;newthings;New Things; -survivalist;862;;survivalist;生存主义;Survivalist -mystic-divination;863;;;秘契占星术;Mystic Divination -cofh-lib;864;;;CoFH Lib; -tabula-rasa;865;;;Tabula Rasa; -cofhtweaks;866;;;CoFHTweaks; -ender-io-zoo;867;;EnderZoo;末影动物园;Ender IO Zoo -simple-usage-log;868;;;简易日志;Simple Usage Log -omnis-core;869;;;Omnis Core; -auto-paths;870;;;自动路径;Auto Paths -react;871;;react;React; -shared-resource-packs;872;;;共享材质包;Shared Resource Packs -i-know-what-im-doing;873;;ikwid;我知道我在干什么;I Know What I'm Doing -Leather-Works;874;;leatherworks;皮革加工厂;Leather Works -cyberware;875;['618353'];cyberware;机械改造;Cyberware -thermal-cultivation;876;;thermalcultivation;热力农业;Thermal Cultivation -better-builders-wands;877;831822;betterbuilderswands;更好的建筑之杖;Better Builder's Wands -jaopca;878;;jaopca;Just A Ore Processing Compatibility Attempt; -chickens;879;570570;chickens;更多鸡;Chickens -tragicmc2;880;304696;;悲惨世界2;TragicMC2 -mobdrip;881;;;MobDrip; -;882;697804;custommc;自定义MC;CustomMc -customskinloader;883;269807;customskinloader;万用皮肤补丁;CustomSkinLoader -saltymod;884;562144;saltmod;盐;SaltyMod -immersive-tech;885;724918;immersivetech;沉浸科技;Immersive Technology -;886;526067;DQMIIINext;勇者斗恶龙R;Dragon Quest Respect -funky-locomotion;887;;funkylocomotion;Funky Locomotion; -compatlayer;888;;compatlayer;版本兼容;CompatLayer -wopper;889;;wopper;木制漏斗;Wopper -gorgecore;890;;;食用强化;GorgeCore -chineseworkshop;891;639428;chineseworkshop;中式工坊;Chinese Workshop -modular-routers;892;;modularrouters;模块化路由器;Modular Routers -darkcore;893;;;暗黑核心;Darkcore -tardis-mod;894;;;时间和空间的相对维度;TARDIS MOD -;895;362797;ProjectBlue;蓝石计划;Project Blue -;;;herowatch;守望先锋;HeroWatch -another-one-bites-the-dust-berry-bushes;897;;aobdbb;AOBD Berry Bushes;Another One Bites the Dust: Berry Bushes -gokistats;898;805910;gokistats,gokiStats;天赋技能树;Goki Stats -;899;691969;scraft;SC科学创造;Scientific Craft -tropicraft;900;;tropicraft;热带世界;Tropicraft -;901;709216;DanmakuCraft;弹幕工艺;DanmakuCraft -;902;;exastrisrebirth;星辉生万物·重制;Ex Astris Rebirth -sumsang;903;;sumsang;亖圼;Sumsang -moblocks;904;;;Mo' Blocks; -creepypasta-1-0-0;905;;;蠕动意面;CreepyPasta -grue;906;;grue;Grue; -;907;;;亡兄;The Dead Brother -googlyeyes;908;;googlyeyes;金鱼眼;GooglyEyes -lycanites-mobs;909;980282;lycanitesmobs,swampmobs,saltwatermobs,plainsmobs,mountainmobs,junglemobs,infernomobs,freshwatermobs,forestmobs,desertmobs;恐怖生物;Lycanites Mobs -back-to-eco;910;;backtoeco;生态回归;Back to Eco -world-of-warcraft;911;;;魔兽世界;World Of Warcraft -the-witcher-adventure;912;;;猎魔人;The Witcher Adventure -fancy-battleaxes;913;;;华丽战斧;Fancy Battleaxes -zora-no-densha;914;1085883;zoranodensha;Zora的电车;Zora no Densha -roguelike-dungeons;915;300785;roguelike;冒险地牢;Roguelike Dungeons -first-aid;916;850687;firstaid;医疗护理;First Aid -bonfires;917;772983;bonfires;篝火;Bonfires -immersive-craft;918;;immcraft;沉浸工艺;Immersive Craft -aroma1997core;919;;Aroma1997Core,Aroma1997CoreHelper,aroma1997core;Aroma1997Core; -tatw;920;;tatw;TATW; -;921;;hmag;敌对生物和女孩们;Hostile Mobs and Girls -better-hud;922;;hud,betterhud;更好的HUD;Better HUD -custom-stuff-4;923;;;自定义物品4;Custom Stuff 4 -powered-thingies;924;;teslathingies;特斯拉科技;Tesla Powered Thingies -;925;;xaerobetterpvp;更好的PVP;Better PVP -mcmusicplayer;926;;;MCMusic player; -obsidian-suite;927;;;Obsidian Animation Suite; -wizards-of-lua;928;;wol;Lua魔导师;Wizards of Lua -mystical-agriculture;929;707360;mysticalagriculture;神秘农业;Mystical Agriculture -vampirism-become-a-vampire;930;982006;vampirism;吸血鬼/血族传说;Vampirism -;931;; plants2;植物大战僵尸;Plants V.S. Zombies -itemphysic-lite;932;;itemphysic;物品物理掉落;ItemPhysic -minenautica;933;;Minenautica;Minenautica; -improved-extraction;934;;improvedextraction;矿物获取改进;Improved Extraction -ecology-mod;935;;;生态学;Ecology Mod -cakeisalie-mod;936;;CakeIsALie;蛋糕是个谎言;CakeIsALie -ex-nihilo-adscensio;937;;;无中生有:Adscensio;Ex Nihilo Adscensio -bookshelf;938;;bookshelf,bookshelfapi;Bookshelf; -;939;732164;mooncakecraft;月饼工坊;Mooncake Craft -random-things;940;938101;randomthings,RandomThings;随意作品;Random Things -;941;613218;;SCP基金会2;SCP Craft 2 -netherex;942;918772;nex,netherex;下界拓展;NetherEX -engender-mod;943;796593;;召唤师;Engender - The Age of Minecraft -better-questing;944;695339;betterquesting;更好的任务;Better Questing -;945;606249;;石头工艺;Stone craft -;946;732786;;不要杀戮;Don't Slay -ct-mortar;947;;ctmortar;CT Mortar; -ct-watercan;948;;watercan;CT Watercan; -totemic;949;1073074;totemic;图腾;Totemic -grimoire-of-alice;950;;;爱丽丝的魔法书;Grimoire of Alice -journey-to-gensokyo;951;;;幻想乡之旅;Journey to Gensokyo -danmakucore;952;;;弹幕核心;DanmakuCore -angel-of-vengeance;953;;aov;复仇天使;Angel of Vengeance -tammodized;954;;tammodized;TamModized; -ex-nihilo-creatio;955;727225;exnihilocreatio;无中生有: 创世;Ex Nihilo: Creatio -thaumcraft;956;776706;thaumcraft;神秘时代6;Thaumcraft 6 -colossal-chests;957;;colossalchests;巨型箱子;Colossal Chests -auto-pickup;958;;autopickup;自动拾取;Auto Pickup -all-u-want;959;;;背包编辑器;All-U-Want -potion-core;960;;PotionExtensionCore,potioncore;药水核心;Potion Core -solar-expansion;961;541525;SolarExpansion;Solar Expansion; -blue-power;962;501014;bluepower;蓝石力量;Blue power -redstone-armory;963;600195;RArm;红石军械库;Redstone Armory -qmunitylib;964;; qmunitylib;QmunityLib; -;;;;Quest Name For Blue; -the-last-smith;966;710736;lastsmith;最后的太刀匠人;The Last Smith -mineamp;967;;;我的音乐;MineAmp -quiverbow;968;;quiverchevsky;Quiver Bow; -cookiecore;969;;cookiecore;Cookie Core; -farseek;970;;farseek;Farseek; -meecreeps;971;;;使命必达先生;MeeCreeps -streams;972;;streams;溪流;Streams -;973;;;音符盒显示器;Note Block Display -blockcraftery;974;;blockcraftery;方块工匠;Blockcraftery -bedrockores;975;['776822'];bedrockores;基岩矿簇;Bedrock Ores -chat-bubbles;976;;chatbubbles;聊天泡泡;Chat Bubbles -refined-storage-addons;977;;refinedstorageaddons;精致存储附属;Refined Storage Addons -foamfix-for-minecraft;978;678442;foamfix,foamfixcore;泡沫修复;FoamFix -industrial-foregoing;979;;industrialforegoing;工业先锋;Industrial Foregoing -expanded-armory;980;;exparmory;扩展装备;Expanded Armory -voxelmap;981;473187;VolexMap;体素地图;VoxelMap -;982;;rwbyCraft;四色战记;RWBY Craft -;983;;grim3212core;Grim3212Core;Grim3212Core -mowzies-mobs;984;;mowziesmobs;Mowzie的生物;Mowzie's Mobs -thaumcraft-mob-aspects;985;;polybius;更多要素;More Aspects/Polybius -magical-psi;986;;magipsi;Magical Psi; -starcraft-mod-scmc;987;;Starcraft;星际争霸2;StarCraft II in MineCraft -covens-reborn;988;;covens;Covens Reborn; -grappling-hook-mod;989;;grapplemod;抓钩;Grappling Hook Mod -tabbychat-2;990;;;TabbyChat 2; -;991;;MineCameraDummy,minecamera;摄影工艺;MineCamera -yoyos;992;932192;yoyos;悠悠球;Yoyos -cd4017be-library;993;;cd4017be_lib;CD4017BE Library; -iberia;994;;;Iberia; -reforged;995;774739;reforged;重铸;Reforged -cavern;996;775036;cavern;洞穴;Cavern -block-drops-jei-addon;997;;;Block Drops; -iron-tanks;998;776893;irontank,irontanks;铁储罐;Iron Tanks -colorutility;999;;ColorUtility;颜色代码;ColorUtility -digimobs;1000;;digimobs;数码宝贝;Digimobs -storage-boats-mod;1001;798267;storageboats;存储船;Storage Boat Mod -mo-withers;1002;;;更多凋灵;Mo' Withers -;1003;;;火影忍者C;Naruto C -the-autologin-mod-for-authme-server;1004;;;自动登录;AutoLogin -ROOST;1005;;roost;鸡窝;Roost -croparia;1006;657509;croparia,Croparia;矿石作物/魔种之咏;Croparia -simple-corn;1007;778746;;简单玉米;Simple Corn -thaumic-jei;1008;;thaumicjei;Thaumic JEI; -;1009;440616;;匠魂炼钢厂;Tinkers' Steelworks -unicode-font-extension;1010;733474;;Unicode字体扩展;Unicode Font Extension -placeable-items;1011;775353;placeableitems;可放置物品;Placeable Items -tinkers-compendium;1012;686520;tinkerscompendium,tinkersdefense;工匠防御;Tinkers' Compendium (Tinkers' Defense) -stargate-network;1013;319182;SGCraft;格雷的星门;Greg's SG Craft -damage-indicators-mod;1014;137281;;伤害显示;Damage Indicators -torohealth-damage-indicators;1015;628833;torohealth;伤害显示;ToroHealth Damage Indicators -omni-ocular;1016;;OmniOcular;Omni Ocular; -wrapup;1017;;wrapup;WrapUp; -nuclear-physics;1018;;nuclearphysics;Nuclear Physics; -wither-skeleton-tweaks;1019;;witherskelefix;凋灵骷髅调整;Wither Skeleton Tweaks -heat-and-climate;1020;;dcs_climate;热量与气候;Heat And Climate -customthings;1021;;customthings;自定义物品;CustomThings -exgregilo;1022;;;格雷矿筛;ExGregilo -placebo;1023;;placebo;Placebo; -plants;1024;;plants2,plants;Plants; -chinjufumod;1026;776626;chinjufumod;镇守府;ChinjufuMod +JapaneseBlock -track-api;1027;;trackapi;Track API; -immersive-railroading;1028;783016;immersiverailroading;沉浸铁路;Immersive Railroading -;1029;['733160'];foodcraftreloaded;食物工艺重置版;FoodCraft Reloaded -custom-main-menu;1030;769607;custommainmenu;自定义主菜单;Custom Main Menu -;1031;706022;TacticalFrame;战术框架;Tactical Frame -wildycraft;1032;526348;;Wildycraft:Runescape Dimension; -;1033;;;我的信条;MineCreed -;1034;782745;heartwork;心血结晶;The Heartwork -my-little-mob-grinder;1035;783333;;小怪物粉碎机;My Little Mob Grinder -resource-loader;1036;670173;resourceloader,ResourceLoader;资源加载;Resource Loader -no-sleeping-allowed;1037;784121;nsa;禁止睡觉;No Sleeping Allowed -playersdropheads;1038;783991;playersdropheads;玩家掉落头颅;PlayersDropHeads -memory-bar;1039;;memorybar;内存条;Memory Bar -toxicrain;1040;783727;toxicrain;有毒的雨;ToxicRain -;;;;快乐的PVP;Happy PVP -;1042;;molten;炽热基岩;Melten Bedrockium -cannibalism;1043;381013;cannibalism;割肉小刀/同类相食;Cannibalism -quick-consume;1044;784670;;快速消耗;Quick Consume -planting-dirt-for-saplings;1045;784640;autoplanter;自动植树机;Planting dirt for saplings -;1046;783000;phtage;幻影时代;PhantomAge -custom-crosshair-mod;1047;607354;custom-crosshair-mod;自定义准心;Custom Crosshair -better-blink;1048;785164;betterblink;更好的传送;Better Blink -biobomb;1049;785148;;生物炸弹;BioBomb -ender-hopper;1050;784833;enderhopper;末影漏斗;Ender Hopper -mine-souls;1051;683570;;黑魂战斗;Mine Souls -radixcore;1052;;radixcore;RadixCore; -familiar-fauna;1054;785558;familiarfauna;熟悉的动物;Familiar Fauna -tinkers-tool-leveling;1056;646118;tinkertoolleveling;匠魂工具升级;Tinkers' Tool Leveling -;1057;529452;gibby_dungeons;神秘RPG;Arcana RPG -ingame-info-xml;1058;;ingameinfoxml,InGameInfoXML;游戏信息显示;InGame Info XML -;1059;771670;peachwoodsword;桃木剑;PeachWoodSword -lovelyrobot;1060;680093;LovelyRobot,lovely_robot;萌化机器人;LovelyRobot -tameable-arachne;1061;925238;TameableArachneMod,tameable_arachne;萌化女妖;TameableArachneMod -skillable;1062;;;Skillable; -lunatriuscore;1063;;lunatriuscore,LunatriusCore;LunatriusCore; -spin-to-win;1064;;;旋转剑技;Spin to Win -soft-blocks;1065;785967;;柔软方块;Soft Blocks -heartblock;1066;786355;;生命方块;HeartBlock -spawncontroller;1067;786558;;自定义怪物生成;SpawnController -wearable-backpacks;1068;664777;wearablebackpacks,Backpack;可穿戴背包;Wearable Backpacks -heart-drop;1069;;;生命汲取;Heart Drop -omlib;1070;;omlib;开放式炮台库;OMLib -dynamictrees;1071;771545;dynamictrees,dynamictreestc,growingtrees;动态的树/有活力的树;Dynamic Trees -merry-christmas;1072;786210;;圣诞箱子;Merry Christmas! -cloud-control;1073;785903;;可控制的云;Cloud Control -zombie-ore;1074;786883;;矿石僵尸;Zombie ore -meanmobs;1075;786377;meanmobs;残忍怪物;MeanMobs -zyins-hud;1076;;;Zyin's HUD; -;;;negorerouse;尼格洛兹·无尽曈曚;NegoreRouse -rough-tweaks;1078;;roughtweaks;难度调整;Rough Tweaks -;1079;;;厨艺大师;Master Chef -the-disenchanter-mod;1080;;disenchanter;祛魔台;The Disenchanter -carry-on;1081;;carryon;搬运;Carry On -better-than-llamas;1082;;;更好看的羊驼;Better Than Llamas -dynamic-surroundings;1083;813490;dsurround,dsurroundcore;动态环境/动态环绕;Dynamic Surroundings -alfheim;1084;809440;alfheim;亚尔夫海姆;Alfheim -mob-battle-mod;1085;582695;;怪物大乱斗;Mob Battle Mod -smooth-font;1086;781290;smoothfont,smoothfontcore;平滑字体;Smooth Font -dude-wheres-my-blocks;1087;;;谁动了我的合成表;Dude where's my blocks -reskillable;1088;;reskillable;Reskillable; -betteroffhand;1089;788841;;更好的副手;BetterOffhand -entity-spring;1090;788317;entityspring;实体弹簧;Entity Spring -compatskills;1091;;compatskills;CompatSkills; -avaritia-tweaks;1092;;avaritiatweaks;Avaritia Tweaks; -mjrlegendslib;1093;;mjrlegendslib;MJRLegends Lib; -dye-it-yourself;1094;789349;diy;自动染色;Dye It Yourself -piston-expansion;1095;789538;;活塞拓展;Piston Expansion -underwater-rails;1096;789443;underwaterrails;水下铁轨;Underwater Rails -trebuchet;1097;;trebuchet;Trebuchet; -particlelib;1098;;particlelib;粒子库;ParticleLib -;1099;470421;modJ_StarMiner;星际矿工;Starminer -;1100;776133;flammpfeil.slashblade.zxsa;迷之刀技;AbbySA -jglrxavpoks-uncrafting-table;1101;;uncraftingTable,jordy141minecraftmagicwrench;jglrxavpok的拆解台;jglrxavpok's Uncrafting Table -rustic;1102;;rustic;乡村;Rustic -netherutils;1103;;netherutils;​NetherUtils; -bonsai-trees;1104;785239;bonsaitrees;盆栽;Bonsai Trees -;1105;;;量子工程;Quantum Engineering -binnies-mods;1106;;Genetics,genetics;基因工程;Genetics -misty-world;1107;;mist;朦胧世界;Misty World -;;;binniecore;Binnie核心;Binnie Core -binnies-mods;1109;;Botany,botany;植物学;Botany -beta-kathairis;1110;865377;kathairis;卡塞瑞斯;Kathairis/Kether -;1111;812890;manametalmod;魔法金属;ManaMetalMod -avaritiaddons;1112;922743;avaritiaddons;无尽收容 / 更多空间箱子;Avaritiaddons -base;1113;;base;B.A.S.E; -immersive-cables;1114;;immersivecables;沉浸线缆;Immersive Cables -;1115;788554;darksword;黑暗剑;Darksword -better-title-screen;1116;594778;;更好的标题页;Better Title Screen -sound-filters;1117;;soundfilters;音效过滤;Sound Filters -;1118;176855;lambdacraft;半条命;LambdaCraft -vivecraft-forge-extensions;1119;;vivecraftforgeextensionscore,vivecraftforgeextensions;Vivecraft; -super-sound-muffler;1120;;supersoundmuffler;超级消音器;Super Sound Muffler -armorplus;1121;;armorplus;装备扩充;ArmorPlus -inspirations;1122;940567;inspirations;灵感;Inspirations -tree-growing-simulator;1123;;treeGrowingSimulator;跳舞树成长;Tree Growing Simulator -;1124;328818;flammpfeil.extrascepterstaff;独角兽权杖;ExtraScepterStaff -personal-cars;1125;;personalcars;Personal Cars; -thermal-innovation;1126;;thermalinnovation;热力革新;Thermal Innovation -bewitchment-legacy;1127;;bewitchment;Bewitchment; -better-foliage;1128;;betterfoliage;更好的树叶;Better Foliage -creative-plus;1129;;creativeplus;创造+;Creative Plus -just-a-few-fish;1130;529165;jaff;只是一些鱼;Just a Few Fish -ynot;1131;;ynot;YNot; -serene-seasons;1132;849266;sereneseasons;静谧四季/季节;Serene Seasons -realm-of-the-dragons-rotd;1133;;;龙之领域;Realm Of The Dragons -rockhounding-mod-core;1134;;rockhounding_oretiers,rockhounding_rocks,rockhounding_surface,globbypotato_rockhounding,rockhounding_chemistry,rockhounding_core;地质探秘/岩石狩猎;RockHounding -fancy-block-particles;1135;['678541'];fbp;梦幻方块效果;Fancy Block Particles -thaumic-katana;1136;;thaumkatana;神秘之日本刀;Thaumic Katana -the-aether-ii;1137;797818;aether;天境二(以太2/天堂);The Aether II -visibleraygenerator;1138;785459;VisibleRayGenerator,vrgenerator;永久光发电机;VisibleRay Generator -mmmmmmmmmmmm;1139;708291;testdummy;试验假人;MmmMmmMmmMmm -aromabackup;1140;;AromaBackup,aromabackuprecovery,aromabackup;存档备份;AromaBackup -;1141;809235;;NameWakander; -orbis-lib;1142;;orbis-lib;Orbis; -the-eight-fabled-blades;1143;794723;theeightfabledblades;八大传说之刃;The Eight Fabled Blades -malisisblocks;1144;;malisisblocks;Malisisblocks; -useful-interior;1145;793625;of;有用的内饰;Useful Interior -taiga-tinkers-alloying-addon;1146;['670143'];taiga;匠魂合金附加;Tinkers Alloying Addon -version-checker;1147;;;模组更新检测;Version Checker -planar-artifice-unofficial;1148;;planarartifice;镜面艺术;Planar Artifice -;1149;;;沃普综合;WOP Mixed -Requiem;1150;843736;requiem;安魂曲;Requiem/Dissolution -slashblade-in-tfc;1151;789943;slashblade_tfc;古刀传;Slash Blade in TFC -mlp-mythical-creatures;1152;;MLPMod;神话生物;Mythical Creatures -metamorph;1153;723273;metamorph;变形;Metamorph -reactioncraft-3-rebirth;1154;;;世界反应3:重置;Reactioncraft 3: Rebirth -pewter;1155;;pewter;魔法匠魂;Pewter -redstone-repository-revolved;1156;;;红石军械库重制版;Redstone Repository Revolved -spawncommands-spawn-commands-teleport;1157;830035;spawncommands;传送指令;Spawn Commands Teleport -server-properties-for-lan;1158;781904;;简单联机;Server.Properties for LAN -jaopcaadditions;1160;;;JAOPCA附属;JAOPCAAdditions -cloche-call;1161;;;Cloche Call; -mouse-tweaks;1162;69677;mousetweaks;鼠标手势;Mouse Tweaks -jaopcaagriculture;1163;;jaopca,oredictinit;JAOPCA神秘农业附属;JAOPCA Agriculture -sky-resources;1164;817623;skyresources;空岛资源;Sky Resources -hexxit-gear;1165;;;Hexxit装备;Hexxit Gear -;1166;;itemrender;渲染图片导出续作;Item Render Rebirth -magic-clover;1167;;;幸运四叶草;Magic Clover -inventory-crafting-grid;1168;;;背包工作台;Inventory Crafting Grid -kleeslabs;1169;;kleeslabs;更好地破坏半砖;KleeSlabs -gregtechce;1171;818575;gregtech;格雷科技社区版;GregTech Community Edition -blur;1172;;blur;界面背景模糊;Blur -fast-leaf-decay;1173;;fastleafdecay;树叶快速腐烂;Fast Leaf Decay -enable-cheats;1174;798217;;开启作弊模式;Enable Cheats -findit;1175;798212;findit;找到它;Findit! -wearable-blocks;1176;; wearableblocks;可穿戴的方块;Wearable Blocks -;1177;639194;weaponmod;更多武器·改造版;Balkon's WeaponMod -;;;;MC百科资料搜索;MCMOD Item Search -swissarmyknife;1179;;;瑞士军刀;SwissArmyKnife -ender-io-addons;1180;545556;enderioaddons;末影接口拓展;Ender IO Addons -historicized-medicine;1181;;historicizedmedicine;历史化医学;Historicized Medicine -infinity-item-editor;1182;791937;;无尽物品编辑器;Infinity Item Editor -extra-rails;1183;607938;extrarails,ExtraRails;更多功能铁轨;Extra Rails -gregtania;1184;;;Gregtania; -origin;1185;;;Origin; -minecraft-transport-simulator;1186;;mts,mtsofficialpack;沉浸车辆;Immersive Vehicles -chest-transporter;1187;467680;ChestTransporter,chesttransporter;搬箱器;Chest Transporter -i18nupdatemod;1188;805273;i18nmod;自动汉化更新;I18nUpdateMod -realistic-item-drops;1189;;realdrops;真实物品掉落;Realistic Item Drops -pixelmon;1190;291020;pixelmon;宝可梦 重铸;Pixelmon Reforged -controlling;1191;713187;controlling;键位冲突显示;Controlling -;1192;782476;saligia;炼金重铸计划-七宗罪;PROJECT_saligia -memory-cleaner-mod;1193;;MemoryCleaner;内存清理;Memory Cleaner -simpleleather;1194;660382;simpleleather;腐肉烧皮革;SimpleLeather -sync;1195;300110;sync;克隆;Sync -chiseled-me;1196;;chiseled_me;超级变变变;Chiseled Me -progressive-automation-early-miner;1197;;progressiveautomation;进阶自动化;Progressive Automation -matmos;1198;;;真实环境音效;MAtmos -ye-olde-tanks;1199;;YeOldeTanks;水箱;Ye Olde Tanks -improving-minecraft;1200;;imc;改善的世界;Improving Minecraft -wawla;1201;;wawla;Wawla高亮显示;What Are We Looking At -lightarea;1202;806149;lightarea;点亮区域;LightArea -;1203;952909;replaymod;录像回放;Replay Mod -stellar-sky;1204;502403;stellarium;群星璀璨;Stellar Sky -stellar-api;1205;;;恒星API;Stellar API -nei-addons;1206;;NEIAddons,NEIAddons|Developer,NEIAddons|AppEng,NEIAddons|Botany,NEIAddons|Forestry,NEIAddons|CraftingTables,NEIAddons|ExNihilo;NEI扩充;NEI Addons -cucumber;1207;;cucumber;Cucumber Library; -hunting-dimension;1208;800351;huntingdim;狩猎维度;Hunting Dimension -runes-of-wizardry;1209;;runesofwizardry;符文魔法;Runes-of-Wizardry -coffee-workshop;1211;808472;coffeework;咖啡工坊;Coffee Workshop -in-game-account-switcher;1212;1211916;ias;游戏内账号切换;In-Game Account Switcher -consecration;1213;849160;consecration;圣化;Consecration -ignite-hud;1214;;;燃点HUD;Ignite HUD -mrcrayfishs-gun-mod;1215;;cgm;MrCrayfish的枪;MrCrayfish's Gun Mod -bloodmoon;1216;904325;bloodmoon;血月;bloodmoon -obfuscate;1217;;obfuscate;Obfuscate; -runic-dungeons;1218;402813;runicdungeons;符文地牢;Runic Dungeon -poop;1219;610472;;屎;Poop Mod -slurp;1220;;slurp;啜饮;Slurp -tough-expansion;1221;;tanaddons;意志坚定:热力附属;Tough Expansion -mystical-agradditions;1222;;mysticalagradditions;神秘农业扩展;Mystical Agradditions -vanillafix;1223;792493;vanillafix;原版修复;VanillaFix -just-enough-harvestcraft;1224;725038;jehc;更多潘马斯配方查询;Just Enough HarvestCraft -charcoal-pit;1225;818165;charcoal_pit;Charcoal Pit; -uncomplication;1226;471928;;IC2exp还原;Uncomplication -the-wings-of-alfheim-1-7-10;1227;499629;alfheimwings;亚尔夫海姆之翼;The Wings of Alfheim -;1228;321216;;逆向合成台;ReverseCraft -mubble;1230;;mubble;Mubble; -libraryex;1231;;libraryex;MineEx通用库;LibraryEx -industrial-wires;1232;;industrialwires;工业线缆;Industrial Wires -mystagrad-cloche-compat;1233;;mystagradcompat;MystAgrad Cloche Compat​; -waitingtime;1234;774325;;加载页面游戏;WaitingTime -dragontech;1235;;dragontech,DragonScalesEX;龙之科技/龙鳞实验版;DragonTech/Dragon Scales EX -;1236;;;EMC; -gravityfalls-mod;1237;;;怪诞小镇;Gravity Falls -tfcbotania;1238;;;TFC植物魔法;TFCBotania -no-recipe-guide;1239;811530;;没有合成指南;No Recipe Guide -takumi-craft;1240;;takumicraft;爬行者世界/苦力怕世界;Takumi Craft -the-mists-of-riov;1241;;;神秘世界;The Mists of RioV Mod -;1242;810516;kyokainokanata;境界的彼方;KyokaiNoKanata -nsr-no-respawn-screen;1243;793776;;无重生屏幕;No Respawn Screen -more-bees;1244;777452;morebees;蜜蜂拓展;More Bees -evilnotchlib;1245;;;EvilNotch Lib; -tpalette;1246;;;调色板;TPalette -;1247;;gtweapons;格雷武器扩展;GregTech WeaponWorks -career-bees;1248;;careerbees;职业蜜蜂;Career Bees -;1249;;;升级!;Level Up! -level-up;1250;;levelup2;升级!重置;Level Up!Reloaded -level-up-legacy;1251;;;升级!前版;Level Up!Legacy -moar-boats;1252;;moarboats;模块化船;Moar Boats -numina;1253;;numina;模块化动力装甲前置;Numina -tinkers-complement;1254;;tcomplement;匠魂补充;Tinkers' Complement -everlastingabilities;1255;;everlastingabilities;永恒能力;Everlasting Abilities -abyssalcraft-heads;1256;673330;acheads;深渊国度头颅;AbyssalCraft Heads -overlord;1257;657071;;不死者之王;Overlord -multifarm-crops;1258;; multifarmcrops;多功能农场兼容;Multifarm Crops -forestry-fermenter-addon;1259;;;更多生物质;Forestry Fermenter Addon -dakimakura-mod;1260;816801;dakimakuramod;抱枕;Dakimakura Mod -rift;1262;814764;;Rift; -crop-eating-animals;1263;;;动物自动喂食;Crop-Eating Animals -refraction;1264;;refraction;折射;Refraction -;1265;;;真实火车附加包:上海地铁包; -librarianlib;1266;;librarianlib;图书馆;LibrarianLib -creeper-confetti;1267;775377;creeperconfetti;烟花苦力怕;Creeper Confetti -funnels;1268;;funnels;液体漏斗;Funnels -advent-of-ascension-nevermine;1269;;aoa3;虚无世界3;Advent of Ascension 3 -toroquest;1270;818183;toroquest;托罗探索;Toro Quest -;1271;;nutrition;营养学;Nutrition -rikmulds-core-mod;1272;;;Rikmulds Core Mod; -just-enough-pattern-banners;1273;;jepb;Just Enough Pattern Banners; -primitive-mobs;1274;;primitivemobs;远古生物/原始生物;Primitive Mobs -realistic-cobwebs;1275;;;燃烧的蛛网;Realistic Cobwebs -simpleharvest;1276;1089377;simpleharvest;简单收获;Simple Harvest -mrcrayfishs-device-mod;1277;830159;;MrCrayfish的设备;MrCrayfish's Device Mod -block-armor;1278;;blockarmor;方块盔甲;Block Armor -stockpile;1279;818298;stockpile;储物桶;Stockpile -loot-slash-conquer;1280;['805062'];;Loot Slash Conquer; -candy-world;1281;812603;candymod;糖果世界;Candy World -;1282;778805;slimecraft;史莱姆工艺;SlimeCraft -creativecore;1283;;creativecoredummy,creativecore;CreativeCore; -instantunify;1284;816966;instantunify;瞬间统一;InstantUnify -;1285;811810;lostblade;遗忘之刃;LostBlade -mobdrops;1286;;;更多掉落;MobDrops -states;1287;819991;states;城邦;States -modular-machinery;1288;;modularmachinery;模块化机械;Modular Machinery -compositegear;1289;;compositegear;复合齿轮/复合装甲;Composite Gear -kiwi;1290;;kiwi;Kiwi 🥝; -cuisine;1291;821999;cuisine;料理工艺 🍳;Cuisine 🍳 -world-control;1292;;worldcontrol;世界控制;World Control -tree-chopper;1294;630864;treechopper;砍树;Tree Chopper -the-lost-cities;1295;833685;lostcities;失落的城市;The Lost Cities -;1296;;usernamemod;游戏内更改玩家名称;Ingame Username Changer -;1297;696861;cpp;更多的合成;Crafting++ -;1298;;dmp;装饰品合集;Decorations Mega Pack -simple-underground-biomes;1299;;simpleundergroundbiomes;简单地下生物群系;Simple Underground Biomes -zen-foundry;1300;;foundry;禅:金属工坊 🌋;Zen: Foundry 🌋 -;1301;;ExtendedPlanets;扩展行星;Extended Planets -;1302;['267417'];;TheCatacyst's Palindel; -galaxyadditions;1303;1103561;;Galaxy Additions/Beyond Space; -animationapi;1304;;AnimationAPI;AnimationAPI; -realbench;1305;;;更好的工作台;RealBench -primalcore;1306;;primal;原始核心;PrimalCore -primal-tech;1307;;primal_tech;原始科技;Primal Tech -antique-atlas;1308;;antiqueatlas;古式地图;Antique Atlas -;1309;822226;hmggirlfront;少女前线;Girls' Frontline / ドールズフロントライン/ HMGDollsFrontLine -xray-1-13-rift-modloader;1310;;atianxray;Xray Mod; -overloaded;1311;817115;overloaded;超限存储;Overloaded -power-tools;1312;;;现代工具;Power Tools -enchanting-plus;1314;;eplus;高级附魔台;Enchanting Plus -stick-of-death;1315;;stickofdeath;死亡之棍;The Stick Of Death -godweapons;1316;;godweapons;神的武器;Gods' Weapons -sekwah41s-naruto-mod;1317;;narutomod;sekwah41的火影忍者;sekwah41's Naruto Mod -constructs-armory;1318;786419;conarm;匠魂盔甲;Construct's Armory -;1319;474041;rivalrebels;未来战争;Rival Rebels -undertale-mod;1320;;;传说之下;UNDERTALE Mod -globe;1321;789706;;水晶球;Globe -super-stick-sword;1322;;supersticksword;超级木棍剑;Super Stick sword -mekanism-generators;1323;;mekanismgenerators;通用机械发电机;Mekanism Generators -spider-queen;1324;525087;;蜘蛛女王;Spider Queen -baublelicious;1325;553597;baublelicious;美妙饰品;Baublelicious -void-monster;1326;;;Void Monster; -shields-plus;1327;;;更多盾牌;Shields Plus -ghost-buster;1328;;ghost_buster;Ghost Buster; -culinary-construct;1329;;culinaryconstruct;自定义三明治;Culinary Construct -armoreablemobs;1330;;armoreablemobs;怪物装备自定义;ArmoreableMobs -;1332;426875;;矿物嗅探器;Ore Sniffer -advanced-inventory;1333;;advInv;Advanced Inventory; -;1335;787127;Unsheathe;利刃出鞘;Sword Unsheathe -pollution-of-the-realms;1336;;adpother;环境污染;Pollution of the Realms -heat-and-climate-lib;1338;;;Heat And Climate Lib; -waystones;1339;638823;waystones;传送石碑;Waystones -thaumic-calculations;1340;;thaumic_calculator;神秘计算器;Thaumic Calculations -pams-weee-flowers;1341;;;潘马斯花园;Pam's Weee! Flowers -;;;mistraven;寒鸦;MistRaven -;1343;;;Gamemode 4; -paragliders;1344;1246990;paraglider;滑翔伞;Paragliders -ender-io-endergy;1345;843550;;末影接口:管道拓展;Ender IO:Endergy -bwm-suite;1346;;betterwithmods;Better With Mods; -ambience-music-mod;1347;711711;ambience;环境音乐;Ambience -almost-enough-items;1348;812644;;AEI物品管理器;Almost Enough Items -mtutils;1349;;;MTUtils;MTUtils -gravestone-mod;1350;772774;gravestone;墓碑;GraveStone -atlas-extras;1351;;;Atlas Extras; -horse-power;1352;;horsepower;马力;Horse Power -better-with-addons;1353;; betterwithaddons;Better with Addons; -tesla-core-lib;1354;;teslacorelib,teslacorelib_registries;特斯拉核心;Tesla Core Lib -voidscape;1355;825777;voidcraft,vc;虚空工艺;VoidCraft -stygian-end-biome-expansion;1356;;stygian;末地:生物群系扩展;Stygian End: Biome Expansion -wooden-furnace;1357;827260;woodenfurnace;木制熔炉;Wooden Furnace -moreplates;1358;;moreplates;更多金属板;More Plates -morelibs;1359;;;More Libs; -game-stages;1360;854578;gamestages;游戏阶段;Game Stages -the-building-game;1361;;;建筑游戏;The Building Game -silents-gems;1362;;silentgems;寂静宝石;Silent's Gems -silent-lib;1363;;silentlib;Silent Lib; -silents-gems-tic-support;1364;;;寂静宝石:匠魂支持;Silent's Gems: TiC Support -lit-little-insignificant-things;1365;;lit;Little Insignificant Things; -gemulation;1366;;;Gemulation; -silents-gems-extra-parts;1367;;sgextraparts;寂静宝石:额外部件;Silent's Gems: Extra Parts -fun-ores;1368;;funores;趣味矿石;Fun Ores -solar-furnaces;1369;;;简易太阳能;Simple Solar Panels -vanilladeathchest;1370;825450;vanilladeathchest;原版死亡箱子;Vanilla Death Chest -arachnophobia;1371;784755;arachnophobia;蜘蛛恐惧症;Arachnophobia -abyssalcraft-integration;1372;672323;acintegration;深渊国度联动;AbyssalCraft Integration -prefab;1373;;prefab;预制建筑;Prefab -haunch-hud;1374;818937;;Haunch HUD; -absent-by-design;1375;;absentbydesign;Absent by Design; -no-night-vision-flashing;1376;984741;;无夜视闪烁;No Night Vision Flashing -arcade-mod;1377;826772;arcademod;街机;Arcade Mod -asmodeuscore;1378;;asmodeuscore;Asmodeus Core; -building-gadgets;1379;806768;buildinggadgets;建筑小帮手;Building Gadgets -dooglamoo-worlds;1380;;;Dooglamoo的世界;Dooglamoo Worlds -scp-lockdown;1381;807971;scp;SCP基金会:封锁;SCP: Lockdown -middle-earth-thaumaturgy;1382;867665;;中土神秘学;Middle-Earth Thaumaturgy -structpro-mod-fast-schematic-spawning-system;1383;827204;structpro;自然神殿;Structpro -betterfps;1384;539780;betterfps;更好的FPS;BetterFPS -sky-compression;1385;;sc;Sky Compression; -reap-mod;1386;;reap;收获;Reap -geolosys;1387;935361;geolosys;地质矿脉;Geolosys -patchouli;1388;;patchouli;帕秋莉手册;Patchouli -jeid;1389;;jeid;JustEnoughIDs; -gases-framework;1390;;;Gases Framework; -ranged-pumps;1391;668293;rangedpumps;远程泵;Ranged Pumps -223005-bagginses;1392;628505;bagginses;背包;Bagginses -ic2-classic;1393;810416;IC2-Classic-Spmod;工业时代2经典版;IC2 Classic -opencubicchunks;1394;;cubicchunks;Open Cubic Chunks; -cubicworldgen;1395;;;CubicWorldGen; -rally-health;1396;;rallyhealth;Rally Health; -open-terrain-generator;1397;;openterraingenerator;开放地形生成器;Open Terrain Generator -;1398;;elementtimes;元素时代;ElementTimes -noshelter;1399;;;无庇护所;NoShelter -epic-siege-mod;1400;725125;epicsiegemod;史诗攻城;Epic Siege -furnace-overhaul;1401;; furnaceoverhaul;熔炉改革;Furnace Overhaul -;1402;832060;;灰烬凋零;EmberWither -architecturecraft-tridev;1403;;architecturecraft;建筑师工艺重置版;ArchitectureCraft - TridentMC Version -ore-farm;1404;;orefarm;矿石农场;Ore Farm -;1406;676189;soundphysics;物理声效;Sound Physics -plethora-peripherals;1407;;plethora;Plethora Peripherals; -simple-flight;1408;;DP_SimpleFlight;简单的飞行;Simple Flight -factory-tech;1409;;factorytech;工厂科技;FactoryTech -;1411;;fabricloader;Fabric-Loader; -mysticallib;1412;;mysticallib,elulib;MysticalLib; -crissaegrim;1413;;crissaegrim;Crissaegrim; -;1414;834193;xcustomizedblade;可视化 X-客制化拔刀剑;XCustomizedBlade -traverse-legacy-continued;1416;;traverse;遍历;Traverse -winter-wonder-land;1417;;winterwonderland;霏雪寄语之地;Winter Wonder Land -road-stuff;1418;609045;roadstuff;道路2;Road Stuff2 -ae2wtlib;1419;;ae2wtlib;AE2 Wireless Terminal Library; -real-filing-cabinet;1420;;realfilingcabinet;仿真档案柜;Real Filing Cabinet -hycrafthds-wtf-ic2-addon;1421;;wtfic2addon;WTF 工业拓展;WTF Ic2 Addon -u-team-core;1422;;;U Team Core; -ftb-quests;1423;849746;ftbquests;FTB任务;FTB Quests -texfix;1424;771588;texfix;材质修复;TexFix -mapmakers-gadgets;1425;;;Mapmaker's Gadgets; -travellers-gear;1426;;TravellersGear;旅者之器;Traveller's Gear -ceramics;1427;;ceramics;陶瓷器;Ceramics -slashblade-japanese-addon-pack;1428;['836114'];slashblade_addon,slashblade.addonpack,flammpfeil.slashblade;拔刀剑日系附属包;SlashBlade Japanese Addon Pack -;1429;;;4-Space; -planet-progression;1430;;planetprogression;星球研究;Planet Progression -space-advanced-addon-for-galactic-craft-3;1431;;;Space Advanced; -decimation-zombie-apocalypse;1432;878571;deci;僵尸启示录;Decimation -rift-mod-list;1433;;;Rift Mod List; -forgeendertech;1434;;EnderTech,forgeendertech;ForgeEndertech; -new-tardis-mod;1435;;tardis;New TARDIS Mod; -;1436;;;时区;Time Zone -advanced-chimneys;1437;673890;;高级烟囱;Advanced Chimneys -regeneration;1438;;regeneration;Doctor Who - Regeneration​; -stevekungs-lib;1439;;stevekung's_lib;SteveKunG's Lib; -make-zoom-zoom;1440;;;更快的加载;MakeZoomZoom -minecraft-virtual-machines;1441;;;Minecraft虚拟机;Minecraft Virtual Machines -cavern2;1442;782780;;洞穴 II;Cavern II -notenoughids;1443;;neid;增加ID上限;NotEnoughIDs -avaritia-recipe-generator;1444;;avaritiarecipemaker;可视化无尽配方编辑器;Avaritia Recipe Generator -trapcraft;1445;260090;;陷阱;Trapcraft -mod-name-tooltip;1446;;modnametooltip;模组名称显示;Mod Name Tooltip -gpick-2;1447;795644;gpick;进化之镐2;GPickaxe 2 -cxlibrary;1448;;cxlibrary;CXLibrary; -;1449;771076;glasshearts;玻璃心;GlassHearts -integrated-tunnels;1450;944541;integratedtunnels,integratedtunnelscompat;集成管道;Integrated Tunnels -unmending;1451;;;经验不修补;Unmending -the-creeping-nether;1452;;creepingnether;腐化蠕动的下界;The Creeping Nether -random-psideas;1453;;rpsideas;Psi随想;Random PSIdeas -expetrum;1454;818194;exp;真实世界;ExPetrum -equivalent-energistics;1455;;equivalentenergistics;等价能源学;Equivalent Energistics -thedragonlib;1456;;thedragonlib;TheDragonLib; -repose;1457;;;自动上坡;Repose -botanic-additions;1458;;botanicadds;植物学拓展;Botanic Additions -;1459;;spongeforge,spongeapi,sponge;海绵端插件支持Forge版;SpongeForge -the-veggie-way;1460;;;素食主义者;The Veggie Way -gargoyles-mod;1461;;gargoyles;石像鬼;Gargoyles -hydrophobia;1462;;;恐水之症;Hydrophobia -dimensional-edibles;1463;;dimensionaledibles;维度食物;Dimensional Edibles -passable-leaves;1464;799088;passableleaves,passableleavescore;叶间穿行;Passable Leaves -swingthroughgrass;1465;691271;swingthroughgrass;穿草攻击;SwingThroughGrass -steves-bizarre-adventure;1466;839550;jojobadv;史蒂夫的奇妙冒险;Steve's Bizarre Adventure -animania;1467;817915;animania;动物谷:基础;Animania Base -endertweaker;1468;;endertweaker;Ender Tweaker; -cofh-vanilla-tools;1469;;vanillatools;CoFH: Vanilla+ Tools; -;;;Yamazakura;山樱之刃;Yamazakura -rarmor;1471;;rarmor;功能装甲;Rarmor -immersive-io;1472;839807;;沉浸接口;Immersive IO -tickratechanger;1473;731107;tickratechanger;运算变速;TickrateChanger -botania-needs-these-things;1474;838714;botanianeedsit;植物魔法需要它!;Botania Needs These Things! -nocubes;1475;;;NoCubes; -orelib;1476;;orelib;OreLib; -tick-dynamic;1477;;tickdynamic;动态Tick;Tick-Dynamic -surge;1478;923335;surge;潮涌;Surge -more-avaritia;1479;;moreavaritia;More Avaritia; -ai-improvements;1480;;aiimprovements;AI改进;AI Improvements -project-ex;1481;838230;projectex;等价交换升级;Project EX -industrial-sorcery-mod;1482;;;Industrial Sorcery; -xaeros-world-map;1483;;xaeroworldmap_core,xaeroworldmap;Xaero的世界地图;Xaero's World Map -wizardry-mod;1484;910980;wizardry;巫师艺术;Wizardry -fastfurnace;1485;;fastfurnace;熔炉性能优化;FastFurnace -fastworkbench;1486;;fastbench;工作台性能优化;FastWorkbench -unbreaken;1487;;unbreaken;工具保护;UnbreakEn -bitcoin;1488;;;比特币;Bitcoin -hungering-darkness;1489;;;Hungering Darkness; -roots-classic;1490;;rootsclassic;根源魔法经典版;Roots Classic -embers-rekindled;1491;681929;embers;余烬复刻版;Embers Rekindled -vending-machines-revamped;1492;482613;aziasvendingmachine;自动贩卖机;VendingMachinesRevamped -thaumic-alchemy;1493;713264; thaumicalchemy,thaumicalchemy;神秘炼金学;Thaumic Alchemy -;1494;;thebestchristmas;最好的圣诞节;THE BEST CHRISTMAS MOD -move-plus;1495;;;移动方式增强;Move Plus -future-minecraft;1496;;futureminecraf;未来的版本;FutureVersions -contenttweaker;1497;;contenttweaker;ContentTweaker; -from-the-ground-up;1498;830883;ftgumod;白手起家;From The Ground Up -clumps;1499;769015;clumps;经验机制改革;Clumps -dynamic-surroundings-huds;1500;;dshuds;动态环境:信息显示;Dynamic Surroundings: HUDs -crafting-tweaks;1501;682072;craftingtweaks;合成辅助;Crafting Tweaks -limelib;1502;;limelib;LimeLib; -sparks-hammers;1503;658384;sparkshammers;重锤火花;Sparks Hammers -deadly-monsters;1504;666749;dmonsters;致命怪物;Deadly Monsters -vanillaautomation;1505;;va;原版自动化;VanillaAutomation -;1506;;tickprofiler;Tick分析器;TickProfiler -vanilla-immersion;1507;726263;;立体工具方块;Vanilla Immersion -earthworks;1508;;earthworks;土方工程;Earthworks -terraqueous;1509;;terraqueous;地灵云心/海树山花;Terraqueous -initial-inventory;1510;1037306;;自定义初始物品;Initial Inventory -interaction-wheel;1511;;;Interaction Wheel;Interaction Wheel -water-strainer;1512;;waterstrainer;滤水器;Water Strainer -tinkers-skyblock;1513;;tinkerskyblock;匠魂空岛;Tinkers' Skyblock -diet-hoppers;1514;;diethopper;漏斗碰撞箱修复;Diet Hoppers -xl-food-mod;1515;;xlfoodmod;超多食物;XL Food Mod -soot;1516;;soot;烟尘;Soot -hp-spells;1517;843371;;哈利·波特:法术;Harry Potter Spells -recurrent-complex;1518;['923814'];reccomplex;自然建筑生成;Recurrent Complex -capabilityproxy;1519;;capabilityproxy;功能代理;CapabilityProxy -reauth;1520;;reauth;ReAuth; -autoverse;1521;; autoverse;Autoverse; -transprot;1522;;transprot;运输;Transprot -default-world-generator-port;1523;;;Default World Generator (port);Default World Generator (port) -better-questing-standard-expansion;1524;;bq_standard;更好的任务-基础扩展;Better Questing - Standard Expansion -exchangers;1525;;exchangers;方块交换器;Exchangers -flexible-tools;1526;;flexibletools;灵活的工具;Flexible Tools -dimensional-control;1527;;dimensionalcontrol;维度控制;Dimensional Control -valkyrien-warfare;1528;804503;valkyrienskies,vs_world,vs_control;瓦尔基里天空/瓦尔基里战争;Valkyrien Skies/Valkyrien Warfare -item-scroller;1529;;itemscroller;Item Scroller; -better-advancements;1530;1109188;betteradvancements;更好的进度;Better Advancements -lucraft-core;1531;;;Lucraft: Core; -progressive-bosses;1532;843928;progressivebosses;进化的BOSS;Progressive Bosses -persistent-bits;1533;;persistentbits;Persistent Bits; -rc-roads;1534;; rcroads;真实公路;RC Roads -emoticons;1535;831515;emoticons;动作表情;Emoticons -simple-diving-gear;1536;;simpledivegear;简单的潜水装备;Simple Diving Gear -just-enough-energistics-jee;1537;;jee;Just Enough Energistics; -ironman;1538;;ironman;钢铁侠;IronMan -chunk-animator;1539;;chunkanimator;区块加载动画;Chunk Animator -craftstudio-api;1540;;craftstudioapi;CraftStudio API; -;1542;806138;fiskheroes;菲斯克的超级英雄;Fisk's Superheroes -;1543;843912;ultimatestack,ultimatestackplugin;终极堆叠;UltimateStack -aiot-botania;1544;;aiotbotania;AIOT Botania; -botania-tweaks;1545;;botania_tweaks,botania_tweaks_core;植物魔法调整;Botania Tweaks -albedo;1546;;;Albedo; -natures-aura;1547;;naturesaura;自然灵气;Nature's Aura -;1548;803768;;RF的原版工艺;RFTR's Craft -void-island-control;1549;;voidislandcontrol;Void Island Control; -ic2-nei-crop-plugin;1550;;;IC2育种模拟器/杂交模拟器;IC2 Crop-Breeding Plugin -better-storage-too;1551;;betterstorage;更好的储存2;Better Storage Too -manaita-plus;1552;900754;ManaitaPlus;更好的砧板;Manaita Plus -bartworks;1553;;bartworks;巴特的作品;bartworks -;;;;放射性同位素温差供能喷气背包;Radioisotope Thermoelectric Jetpack -placeable-motor;1555;;;可放置马达;Placeable Motor -exo-craft;1556;;;EXO-Craft; -simple-login;1557;;simplelogin;简单登录;Simple Login -grim-pack;1558;;;Grim的Mod整合;Grim Pack -artisan-worktables;1559;819099;artisanworktables;工匠之作/工匠工作台;Artisan Worktables -ptrlib;1560;;PTRModelLib;PTRLib; -creeper-awareness;1561;;;爬行者意识;Creeper Awareness -what-fluid-fix;1562;;what;WHAT - Fluid Fix; -blue-skies;1563;1240276;blue_skies;蔚蓝天空;Blue Skies -project-vibrant-journeys;1564;;projectvibrantjourneys,pvj;活力之旅;Project: Vibrant Journeys -bed-bugs;1565;;bedbugs;修复卡床;Bed Bugs -biometweaker;1566;;biometweaker;生物群系修改器;BiomeTweaker -actuallycomputers;1567;;actuallycomputers;实用电脑;ActuallyComputers -fence-overhaul;1568;;fenceoverhaul;斜栅栏;Fence Overhaul -zombie-players;1569;;zombie_players;僵尸玩家;Zombie Players -exotic-birds;1570;;exoticbirds;珍奇鸟类;Exotic Birds -charset;1571;;charset;Charset; -biometweakercore;1572;;biometweakercore;生物群系修改器扩展;BiomeTweakerCore -trashcans-reborn;1573;;trashcansreborn;Garbage Bins; -compactdrawers;1574;;compactdrawers;Compact Drawers; -blockdispenser;1575;;;发射器放置方块;BlockDispenser -redstone-paste;1576;;redstonepaste;爬墙红石/粘性红石;Redstone Paste -dynamic-trees-traverse-compat;1577;;;动态的树:遍历附属;Dynamic Trees - Traverse Compat -charset-lib;1578;;;Charset Lib; -betternether;1579;859523;betternether;更好的下界;BetterNether -time-machine-mod;1580;;timemachine;时光机;Time Machine -;1581;831089;AnotherStarAntiCheat,AnotherStar,anotheranticheat,AnotherStarByMiracle,AntiCheat3;另一个反作弊;AnotherAntiCheat -upsizer-mod;1582;;upsizer;更大的堆叠数量;Upsizer Mod -fence-jumper;1583;783865;fencejumper;越过栅栏;Fence Jumper -enchantments-exchanger;1584;823400;;便携附魔替换台;Enchantments Exchanger -additional-enchanted-miner;1585;;quarryplus;Additional Enchanted Miner; -treasure-bags;1586;;treasurebags;藏宝袋;Treasure Bags -stevecraft-by-owenpsteve2;1587;;;史蒂夫工艺;SteveCraft -hunger-games;1588;;;饥饿游戏;The Hunger Games -tfctech-addon;1589;;tfctech;群峦工业;TFCTech Addon -yunomakegoodmap;1590;;;YUNoMakeGoodMap; -organic-creepers;1591;;organiccreepers;苦力怕蕨;Organic Creepers -;1592;;flammpfeil.nihil;似蛭;Nihil -;1593;;;西风太刀;Blade of the Zephyr -;;;;洞爷湖;toyako -industrial-renewal;1595;;industrialrenewal;工业复兴;Industrial Renewal -draconicadditions;1596;914734;draconicadditions;龙之进化拓展;Draconic Additions -;1597;;;孔明灯/天灯;Sky Lanterns -hated-mobs;1598;;hatedmobs;令人讨厌的生物;Hated Mobs -;1599;;tfcprimitivetech;原始技术;Primitive Technology -mekanica;1600;;;通用机械:DZ版;Mekanica -littletiles;1601;726890;littletiles;LT小方块;LittleTiles -extended-crafting;1602;947515;extendedcrafting;合成拓展;Extended Crafting -prodigy-tech;1603;['909679'];;奇才妙械;Prodigy Tech -;1604;812890;;RPGapi; -item-filters;1605;;itemfilters;物品过滤器;Item Filters​ -eblib;1606;;;EBlib; -notenoughcodecs;1607;;;NotEnoughCodecs; -future-mc;1608;913598;futuremc,minecraftfuture;未来的MC;Future MC -rope-bridge;1609;;;索桥;Rope Bridge -sbm-oil-ore;1610;;sbmoilore;油矿石;Oil Ore -redstone-minus-redstone;1611;;;红石减红石;Redstone Minus Redstone -more-furnaces;1612;;morefurnaces;更多熔炉;More Furnaces -integrated-crafting;1613;;;集成合成学;Integrated Crafting -integrated-terminals;1614;;integratedterminals;集成终端;Integrated Terminals -mekanism-tools;1615;;mekanismtools,MekanismTools;通用机械工具;Mekanism Tools -roboticparts;1616;;;机械改造1.12+;Robotic Parts -rewired;1617;;rewired;ReWIRED; -oh-the-biomes-youll-go;1618;;byg;你将去的生物群系;Oh The Biomes You'll Go -vertically-stacked-dimensions;1619;;dimstack;垂直堆叠的世界;Vertically Stacked Dimensions -;1620;786171;UraniumPlus;UraniumPlus; -malisisswitches;1621;;;MalisisSwitches; -automated-redstone;1622;;;自动化红石;Automated Redstone -thuts-elevators;1623;692866;;Thutmose的电梯;Thut's Elevators -additional-resources;1624;;;Additional Resources; -sky-orchards;1625;;;天空果园;Sky Orchards -mdxlib;1626;;mdxlib;Minecraft Development Library X; -wireless-utilities;1627;;;无线设备;Wireless Utilities -tometinkers;1628;;tometinkers;ToMeTinkers; -tinkers-slashblade;1629;846907;slashbladetic;刀锻冶匠魂;Tinker's SlashBlade -audio-death;1630;;;死亡音效;Audio Death -deep-mob-learning;1631;;deepmoblearning;深度怪物学习;Deep Mob Learning -;1632;;;Automated Bellows Addon; -tofucraftreload;1633;946310;;豆腐工艺重置版;TofuCraftReload -electroblobs-wizardry;1634;894070;ebwizardry;巫术学;Electroblob's Wizardry -moarsigns;1635;547700;moarsigns;更多牌子;MoarSigns -kamen-rider-craft;1636;;kamenridercraft4th;假面骑士工艺;KamenRiderCraft -avaritia-io;1637;;avaritiaio;无尽贪婪:接口;Avaritia IO -dense-neutron-collectors;1638;;denseneutroncollectors;致密中子态素收集器;Dense Neutron Collectors -pubgmc-mod;1639;;pubgmc;PUBGMC; -mobultion;1640;783073;mobultion;进化怪物;mobultion -waddles;1641;;waddles;Waddles; -project-intelligence;1642;;;PI文档;Project Intelligence -thutcore;1643;;thutcore_compat,thutcore;ThutCore; -resource-pack-organizer;1644;721005;;资源包管理器;Resource Pack Organizer -morcant-ore;1645;;;莫桑矿石;Morcant Ore -force-void-world;1646;;;强制虚空世界;Force Void World -i-am-very-smart;1647;;;我很聪明;I Am Very Smart -far-from-home;1648;;farfromhome;背井离乡;Far from Home -cotton;1649;;;Cotton; -teleportation;1650;;;Teleportation; -oxygen-core;1651;;;氧气核心;Oxygen Core -lead-villagers;1652;;leadvillagers;带领村民;Lead Villagers -delta-hard-mode;1653;868260;;Delta困难模式;Delta Hard Mode -id-squeezer-tweak;1654;;squeezerpatch;ID Squeezer Tweak; -food-ores;1655;853666;;食物矿石;Food Ores -sit;1656;1088610;sit;席地而坐;Sit -;1657;861017;;DIO招式还原; -;1658;830253;;新世代生存助手;Miobot -;1659;;;优辛记忆;YOUXIN Memory -cplpibalds-tweaks;1660;;pitweaks;CplPibald的微调;CplPibald's Tweaks -ore-biome;1661;;;矿石生态群系;Ore Biome -farmadventure;1662;;;农场冒险;Farm Adventure -;1663;518901;;暗影世界;Shadow World -japaricraftmod-2;1664;;japaricraftmod;加帕里公园;JapariCraftMod -mchorses-mclib;1665;;mclib;McHorse's McLib; -musiccraft-mod;1666;276475;;音乐工艺;MusicCraft mod -hardcore-darkness;1667;;hardcoredarkness;真实的黑夜;Hardcore Darkness -cola-craft;1668;;colacraft;可乐工艺;Cola Craft -;1669;;;粒法杖;Particle Wands -backstab;1670;;backstab;背刺;BackStab -dynamic-stealth;1671;840795;dynamicstealth;动态潜行;Dynamic Stealth -;1673;;infinitesimalzeros;Infinitesimal Zeros; -roughly-enough-items;1674;1112931;roughlyenoughitems;REI物品管理器;Roughly Enough Items -modmenu;1675;;;模组菜单;Mod Menu -rei-addons;1676;;reiaddons;REI插件;REI Addons -illuminations;1677;;illuminations;Illuminations 🔥; -mappy;1678;;;Mappy; -mouse-wheelie;1679;;;急速滚轮;Mouse Wheelie -mrcrayfishs-vehicle-mod;1680;867766;vehicle;MrCrayfish的载具;MrCrayfish`s Vehicle Mod -cc-tweaked;1681;;cctweaked,computercraft;CC: Tweaked; -aliensvspredator;1682;;;异形大战铁血战士;AliensVsPredator -dragon-murder;1683;;dragonmurder;Dragon Murder; -birds-nests;1685;;birdsnests;鸟巢;Birds Nests -minecraft-animated;1686;;;Minecraft Animated; -Refined-Machinery;1687;867043;;精致机械;Refined Machinery -magicalsculpture;1689;['868224'];;魔法雕像;MagicalSculpture -ash-another-simple-hud;1690;;;另一个简单的HUD;Another Simple HUD -custom-selection-box-port;1691;;csb;自定义选择框;Custom Selection Box -librikka-api;1692;;;Librikka API; -not-enough-wands;1693;;notenoughwands;更多魔杖;Not Enough Wands -deep-mob-learning-blood-magic-addon;1694;;deepmoblearningbm;深度怪物知识-血魔法插件;Deep Mob Learning - Blood Magic Addon -informed-load-fabric;1695;;;更多加载信息;Informed Load -huajiage-infinite-galaxy;1696;862800;;滑稽纪元II:无尽星河;Huaji Age II:Infinite Galaxy -;1697;857865;anothercommonbugfix;另一个通用Bug修复;Another Common Bug Fix -cqrepoured;1698;;cqrepoured;寻找巧克力重铸版;Chocolate Quest Repoured -fabricproxy;1699;;;FabricProxy; -ex-sartagine;1700;780936;;锅具;Ex Sartagine -xaeros-minimap;1701;545145;xaerominimap,xaerominimap_core;Xaero的小地图;Xaero's Minimap -everlastingabilities-potioncore;1702;;;永恒能力-药水核心;EverlastingAbilities-PotionCore -optifabric;1703;;;OptiFabric; -the-emerald-haven;1704;908155;;翡翠天堂;The Emerald Haven -simple-grinder;1706;801070;;简易研磨机;Simple Grinder -redstone-gauges-and-switches;1707;;;红石测量与开关;Redstone Gauges and Switches -apotheosis;1708;905214;apotheosis;神化;Apotheosis -lighting-wand;1709;;lightingwand;照明魔杖 🌟;Lighting Wand 🌟 -terrarium;1710;;;地球;Terrarium -climatic-biomes;1711;;climaticbiomesjbg;Climatic Biomes 2; -howling-moon;1712;;;狼人;Howling Moon -hostile-worlds-invasions;1713;;hw_inv;敌对世界-入侵;Hostile Worlds - Invasions -simple-storage-network;1714;;storagenetwork;简单存储;Simple Storage Network -;1715;290532;;虚无世界1;Eternal Isles 1 -scaling-health;1716;;scalinghealth;Scaling Health; -minecoprocessors;1717;;minecoprocessors;微处理器;Minecoprocessors -;1718;;;挖矿争霸;Dig Craft -difficult-life;1719;;difficultlife;Difficult Life; -mekanismores;1720;;mekores;通用机械矿石;MekanismOres -pyrotech;1721;;pyrotech;火种科技;Pyrotech -rats;1722;1117540;rats;老鼠;Rats -serversync;1723;1140732;serversync;服务器同步;ServerSync -;1724;872714;fisma;渔师与渔火;Fisma -auxilium-equivalence;1725;1124866;auxiliumequivalence;等价交换辅助;Auxilium Equivalence / Auxilium -bionisation-3;1726;784253;bionisation3;细菌病毒3;Bionisation 3 -tiny-mob-farm;1727;838630;tinymobfarm;迷你刷怪场;Tiny Mob Farm -soulus;1728;;;Soulus; -sanlib;1729;;;SanLib; -;1730;808785;bloodblade;炼狱刀「血腥」;BloodBlade -;1731;170843;;延时摄影;Camera Studio -travelers-backpack;1732;;travellersbackpack,travelersbackpack;旅行者背包;Traveler's Backpack -gregtech-classic;1733;968064;gregtech;格雷科技经典版;GregTech Classic -aperture;1734;705836;aperture;Aperture; -combo-armors;1735;497761;IC2CA;组合装甲;IC2ComboArmors -;1736;869708;;源质罐子统计;Thaumcraft Jar Checker -nonausea;1737;;nonausea;没有反胃;NoNausea -communism-mod;1738;;;苏维埃工坊;Communism Mod -mirror;1739;;;Mirror; -ping;1740;;ping;Ping; -the-legends-mod;1741;;legends;Legends; -bad-wither-no-cookie-reloaded;1742;734965;badwithernocookie;Bad Wither No Cookie; -giacomos-fishing-net;1743;;giacomos_fishing_net;Giacomo's Fishing Net; -hospital-mod-pharmacy-pack;1744;873210;;医院Mod;The Hospital Mod -more-charcoal;1745;;morecharcoal;更多木炭;More Charcoal -born-in-a-barn;1746;;;Born in a Barn; -better-animations-collection-2;1748;;;更好的动物动作2;Better Animations Collection 2 -;1749;;flysword;御剑飞行;Fly Sword -quality-tools;1750;;qualitytools;工具品质;Quality Tools -toolscombine;1751;;;工具组合;Tools Combine -pollutant-pump;1752;;pollutantpump;污染泵;Pollutant Pump -infinite-pollution-filter;1753;;infilter;无限污染过滤器;Infinite Pollution Filter -jei-hider;1754;;;JEI Hider; -fastflyblockbreaking;1755;;;飞行速破;Fast Fly Block Breaking -planttech-2;1757;905616;planttech2;植物科技2;PlantTech 2 -toast-control;1758;;toastcontrol;消息框控制;Toast Control -;1759;;;渲染图片导出暗黑版;Item Render Dark -cocoa-magic;1760;1145375;cbcraft;可可工艺;Cocoa Magic -betterportals;1761;;;更好的传送门;Better Portals -classic-combat;1762;;;经典战斗;Classic Combat -;1763;727204;AM;火影忍者;NarutoAnimeMod -less-lag;1764;785968;lesslag;较少的滞后;Less Lag -goodbye-grass;1765;;;没有草丛;Grassta la Vista -phosphor;1766;1081821;phosphor-lighting;磷;Phosphor -clay-bucket;1767;632083;claybucket;粘土桶;Clay Bucket -extra-anvils;1768;;extraanvils;更多铁砧/更多砧;Extra anvils -glassential;1769;1098398;glassential;精致玻璃;Glassential -tinkers-addons;1770;;tinkersaddons,TinkersAddons;匠魂拓展;Tinkers' Addons -barrels-drums-storage-more;1771;;bdsandm;桶,圆桶,存储及其它;Barrels, Drums, Storage & More -wings;1772;;wings;翅膀;Wings -up-and-down-and-all-around;1773;;mysttmtgravitymod;颠倒世界;Up And Down And All Around -lost-souls;1774;;lostsouls;失落的灵魂;Lost Souls -intelligent-energistics;1775;;;智能能源;Intelligent Energistics -ender-compass;1776;785069;;末影指南针;Ender Compass -ic2-tweaker;1777;;;IC2 Tweaker; -thaumic-gadgets;1778;;tg;神秘宝具;Thaumic Gadgets -multi-mine;1779;;multimine;多人开采;Multi Mine -extra-foam-for-liteloader;1780;982739;;Liteloader修复;Extra Foam For LiteLoader -embersified;1781;;embersified;余烬能量转换;Embersified -thaumic-grid;1783;;thaumicgrid;神秘网络;Thaumic Grid -back-tools;1784;;;工具后置/后背工具展示;Back Tools -mapwriter-2;1785;680409;MapWriter;Mapwriter 2;Mapwriter 2 -dartcraft-reloaded;1786;;dartcraftreloaded;达特工艺重置版;Dartcraft Reloaded -;1787;906895;mi;更多物品;More Item -ceu;1788;;ceu;CEU; -fantastic-lib;1789;;;Fantastic Lib; -dm2;1790;;;龙骑士2;Dragon Mounts 2 -tiquality;1791;;;Tiquality; -loot-capacitor-tooltips;1792;888624;lootcapacitortooltips;电容信息显示;Loot Capacitor Tooltips -classic-bars;1793;;;经典状态条;Classic Bars -overground-ores;1795;;;地表矿石;Overground Ores -touhou-little-maid;1796;1015497;touhou_little_maid;车万女仆;Touhou Little Maid -;1797;['776186'];;万物皆可为兵刃;Allweapon -eureka;1798;;eureka;Eureka; -lazy-ae2;1799;;threng;懒人AE2;Lazy AE2 -libnine;1800;;libnine;LibNine; -equaldragons;1801;;;EqualDragons; -berries;1802;;berriespp;Crops++; -infinity-gauntlet-mod;1803;;infinitygauntlet;无限手套;Infinity Gauntlet -mighty-ender-chicken;1804;;mightyenderchicken;强大的末影鸡;Mighty Ender Chicken -malisisadvert;1805;;malisisadvert;广告牌;MalisisAdvert -ido;1806;;ido;移动;Idō -bat-happy-mod;1807;;bathappymod;🦇蝙蝠快乐MOD;🦇 Bat Happy Mod -viescraft-airships;1808;;vc;维斯工艺-飞艇!;ViesCraft - Airships! -the-ultimate-dimension;1809;885906;;究极次元;The Ultimate Dimension -advanced-mortars;1810;;;更好的研钵;Advanced Mortars -;1811;['890370'];;史诗征程;Epic Journey -crafttweaker-utils;1812;;ctutils;CraftTweaker Utils; -;1814;;elementcore;元素核心;ElementCore -fps-reducer;1815;;fpsreducer;FPS减速器;FPS Reducer -freelook;1816;;freelook;自由视角;FreeLook -spacecraftx;1817;;;航天高科X;SpaceCraftX -;1818;;micdoodlecore;MicdoodleCore; -bamboo-everything-forge;1819;;;竹子制品;Bamboo Everything -nofog;1820;;;没有雾;NoFog -essentia-brazier;1821;;brazier;源质火盆;Essentia Brazier -antipotionmod-1-12-2;1822;;;无药水效果;AntiPotionMod -quark-oddities;1823;;quarkoddities;夸克-奇思妙想;Quark Oddities -fast-food;1824;;fastfood;快餐;Fast Food -more-carrots;1825;;;更多的萝卜;More Carrots -d-maneuver-gear;1826;;3DManeuverGear;3D立体机动装置;3D Maneuver Gear -weapon-craftery;1827;;weapon_craftery;武器工匠;Weapon Craftery -bobos-supermarket;1828;;bobossupermarket;Bobo的超市;Bobo's supermarket -more-apples-mod-official;1829;;mam;更多的苹果;More Apples -lucky-beans;1830;;;幸运豆;Lucky Beans -cooked;1831;;;Cooked!; -afaoe;1832;;afaoe;Amazing FoodStuffs; -birds-foods;1833;807358;birdsfoods;Bird's Foods; -morexfood;1834;;morexfood;More XFood; -yummy;1835;;;美味;Yummy -spice-of-life-carrot-edition;1836;772478;solcarrot;生活调味料:胡萝卜版;Spice of Life:Carrot Edition/solcarrot -refined-exchange;1837;;;Refined Exchange; -rs-requestify;1838;1098079;refinedstoragerequestify;精致存储:请求者;Refined Storage: Requestify -pizzacraft;1839;;pizzacraft;披萨工艺;PizzaCraft -super-factory-manager;1840;;superfactorymanager,sfm;超级工厂管理;Super Factory Manager -sakura;1841;895337;sakura;樱;Sakura -sips;1842;;sips;更多液体容器;Sips -gregs-construct;1843;;gtconstruct;格雷与匠魂;Greg's Construct -;1844;887912;stm;超级工具;Super Tools -;1845;;;Galacticraft Planets; -locks;1846;;locks;锁;Locks -special-mobs;1847;;specialmobs;特殊怪物;Special Mobs -adorn;1848;;adorn;Adorn; -missingbits;1849;;;MissingBits; -;1850;;;QuickCarpet; -;1851;898170;cli;物品分类器;Classifier for Items -locky;1852;;;Locky; -baubleshud;1853;;baubleshud;BaublesHud; -landcore;1855;;;陆地工艺核心;LandCore -;1856;;;陆地工艺;Land Craft -extra-golems;1858;;golems;更多傀儡;Extra Golems -craftablecreativemodifier;1859;;;可合成的创造模式强化头颅;CraftableCreativeModifier -ruins-structure-spawning-system;1860;771602;ruins;遗迹;Ruins -armory-expansion;1861;;;匠魂盔甲扩展;Armory Expansion -wg-block-replacer;1862;785486;wgblockreplacer;方块生成替换器;WorldGen Block Replacer -multi-mob-core;1863;;multimob;Multi Mob Library; -structurize;1865;;structurize;结构化;Structurize -improvable-skills;1867;;improvableskills;技能进阶;Improvable Skills 3 -;1868;900320;;更多合成;MoreCrafting -bounding-box-outline-reloaded;1869;;bbor;自然生成建筑结构显示;Bounding Box Outline Reloaded -sauceconstruct;1870;;;Sauce Construct; -health-overlay-fabric;1871;;healthoverlay;更美观的血条;Health Overlay -auto-feeder-helmet;1872;;feederhelmet;自动进食头盔;Auto Feeder Helmet -cc-tweaked-fabric;1873;;;CC: Tweaked for Fabric; -simple-farming;1874;;simplefarming;简单农业;Simple Farming -bigger-packets-please;1875;;biggerpacketsplz;Bigger Packets Please; -lockyz-extra-dimensions-mod;1876;;lockyzextradimensionsmod;更多维度世界;Lockyz Extra Dimensions -psi-combat-magic;1877;;psiaddons;Psi:Combat Magic; -dtphc;1878;;dynamictreesphc;动态的树:潘马斯附属;Dynamic Trees - Pam's Harvestcraft Compat -largefluidtank;1879;;fluidtank;大型储罐;Large Fluid Tank -tumbleweed;1880;;tumbleweed;风滚草;Tumbleweed -cubicdynamictreescompat;1881;;;Cubic Chunks Dynamic Trees Addon; -thermallogistics;1882;;thermallogistics;热力物流学;Thermal Logistics -bithop;1883;;bithop;BitHop; -swordskillsapi;1884;;;SwordSkillsAPI; -dynamic-sword-skills;1885;906987;;动态剑技;Dynamic Sword Skills -magical-instruments;1886;['450164'];minst;魔法乐器;Magical Instruments -enderspawn;1887;501726;;末影龙再生成;EnderSpawn -animus;1888;;animus;Animus; -scootys-scp-lockdown-extras;1889;;;scp重型收容区扩展;SCP: Lockdown Heavy Containment Zone Expansion -modern-glass-doors;1890;886035;;时尚玻璃门;Modern Glass Doors -lemonlib;1891;;lemonlib;柠檬库;lemonlib -statues-rechiseled;1892;;statues;雕像:重置;Statues: Rechiseled -trashslot;1893;;;生存背包垃圾桶;TrashSlot -player-plates-forge;1894;;playerplates;更多压力板;Player Plates -just-sleep;1895;;;我就睡个觉;Just Sleep -auto-network-lib;1896;;autonetworklib;Auto Network Lib; -click-machine;1897;;clickmachine;自动连点器;Click Machine -mystical-adaptations;1898;887221;mysticaladaptations;更好的神秘农业;Mystical Adaptations -reinforcedtools;1899;674729;;强化工具;ReinforcedTools -killing-fall;1900;;;Killing Fall; -more-dogs;1901;;;更多狗狗;More Dogs -snow-variants;1902;;snowvariants;更好的雪;Snow Variants -searchable-chests;1903;;;箱子搜索栏;Searchable Chests -bad-mobs;1904;568141;;Bad Mobs; -mc-paint;1905;;mcpaint;涂鸦;MC Paint -goprone;1906;1107815;goprone;匍匐前进;GoProne -ceiling-torch;1907;885948;ceilingtorch;倒置火把;Ceiling Torch -air-hop;1908;;airhop;多段跳;Air Hop -better-combat-mod;1909;;bettercombatmod;更好的战斗;Better Combat Mod -ftb-money;1910;;ftbmoney;FTB交易;FTB Money -restricted-portals;1911;;restrictedportals;传送门限制;Restricted Portals -vampirelib;1912;;;VampireLib; -ingameconfigmanager;1913;;igcm;游戏内配置器;InGameConfigManager -playerrevive;1914;;playerrevive;玩家救援;PlayerRevive -farlands;1915;;farlanders;边境之地;FarLands -inworldcrafting;1916;;inworldcrafting;世界合成;InWorldCrafting -food-editor;1917;;;食物编辑器;Food Editor -custom-starter-gear;1918;;;自定义初始装备;Custom Starter Gear -ct-tinycoal;1919;;cttinycoal;CT 小型煤炭;CT TinyCoal -tweaker-gui;1920;816003;tweakergui;TweakerGUI; -crafttweaker-editor;1921;;;CraftTweaker 编辑器;CraftTweaker Editor -unforgiving-void;1922;;unforgivingvoid;不那么仁慈的虚空;Unforgiving Void -moretweaker;1923;;moretweaker;MoreTweaker; -riteclicker-mod;1924;;riteclicker;小石子;RiteClicker Mod -forgiving-void;1926;;forgivingvoid;仁慈的虚空;Forgiving Void -bread-craft;1927;;mrgw_bread_craft_mod;面包工艺;Bread Craft -alchemistry;1928;;alchemistry;炼金化学;Alchemistry -damage-control;1929;;dmgcontrol;伤害控制;Damage Control -prestige;1930;;prestige;成就点;Prestige -;1931;;;原版技能升级;Vanilla MMO+ -energy-converters;1933;;energyconverters;能量桥接器;EnergyConverters -signpost;1934;;signpost;路标;Signpost -diagonal-panes;1935;;;对角线玻璃板;Diagonal Panes -forgelin;1936;;;Forgelin; -a-lib;1937;;alib;ALib; -exp-ore-block-mod;1938;;;经验矿石;Exp Ore -more-glowstone;1939;873535;moreglowstone;更多萤石;More Glowstone -yukarilib;1940;;;YukariLib; -gregic-additions;1941;;gtadditions;Gregic Additions; -instantlava;1942;684726;instantlava;无限岩浆;InstantLava -;1944;912852;snowpack;积雪;Snowpack -enchantment-descriptions;1945;;enchdesc;附魔描述;Enchantment Descriptions -streak;1946;;streak;残影;Streak -dttc;1947;;dynamictreestc;动态的树:神秘时代附属;Dynamic Trees - Thaumcraft Compat -dtbop;1948;798337;dynamictreesbop;动态的树:超多生物群系附属;Dynamic Trees - Biomes O' Plenty Compat -dynamic-trees-compatibility-for-climatic-biomes;1949;;;动态的树:气候生态群系附属;Dynamic Trees Compatibility for Climatic Biomes -capability-adapter;1950;;rf-capability-adapter;ME功能适配器;ME Capability Adapter -tf2-stuff-mod;1951;887461;rafradek_tf2_weapons;军团要塞2;TF2 stuff mod -mob-control-wands;1952;;micwands;怪物控制魔杖;Mob Control Wands -;1953;315162;statues;雕像模组;Statues Mod -athenaeum;1954;;athenaeum;Athenaeum; -ore-excavation;1955;702872;oreexcavation;矿石挖掘;Ore Excavation -stone-chests;1956;;;石箱子;Stone Chests -kjlib;1957;;kjlib;KJ库;KJLib -iron-chest-minecarts;1958;;ironchestminecarts;更多箱子矿车;Iron Chest Minecarts -nether-chest;1959;;netherchest;下界箱子;Nether Chest -mob-kill-messages;1960;;;击杀信息通知;Mob Kill Messages -betterdispenser;1962;;;能喂食的发射器;BetterDispenser -shulkerboxdisplay;1963;912440;;潜影盒显示器;ShulkerBoxDisplay -mycommands;1964;['588293'];mycommands;我的命令;MyCommands -;1966;905998;;羊羊工艺;Miecraft -hearth-well;1968;['909385'];;Hearth Well; -;1969;915931;;苹果科技;Apple Tech -tea-and-biscuits;1970;820208;;茶和饼干;Tea And Biscuits -controllable;1971;;;手柄控制;Controllable -genetic-animals;1972;;;遗传动物;Genetic Animals -stone-chest;1973;;stonechest;石头箱子;Stone Chest -iron-shulker-boxes;1974;;ironshulkerbox;更多潜影盒;Iron Shulker Boxes -mob-dismemberment;1975;;;怪物肢解;Mob Dismemberment -zoo-wild-animals-rebuild;1976;;zawa;野生动物园:重制版;Zoo & Wild Animals Rebuilt -kottle;1977;;;Kottle; -customdrones;1978;['608228'];;自定义无人机;Custom Drones -call-to-battle-2-authentic-world-war-2-experience;1979;;ctb;战争召唤2;Call To Battle 2 -some-like-it-dry;1980;;;Some Like It Dry; -yungs-better-caves;1981;;bettercaves;YUNG的洞穴优化;YUNG's Better Caves -resynth;1982;916667;resynth;神农科技;Resynth -flatworld;1983;675894;;开山棒;Flat World -pymtech;1984;;;皮姆科技;PymTech -corail-tombstone;1985;913702;tombstone;Corail的墓碑;Corail's Tombstone -;1986;419657;;消失的物品;Missing Things -;1987;;;Maple Lib; -arcane-archives;1988;1006624;arcanearchives;奥术档案馆;Arcane Archives -divineweapon;1989;;dweapon;神兵;DivineWeapon -camera-obscura;1990;;cameraobscura;朝花夕拾;Camera Obscura -animales;1991;;tfa;动物扩充;Animales -armor-underwear-mod;1992;;armorunder;盔甲内衬;Armor Underwear Mod -assisted-progression;1993;;;进度小助手;Assisted Progression -more-buckets;1994;;morebuckets;更多桶;More Buckets -laggoggles;1995;785024;laggoggles;延迟监视;LagGoggles -the-weirding-gadget;1996;;weirdinggadget;The Weirding Gadget; -energysynergy;1997;;;能源协同;EnergySynergy -mine-and-slash-reloaded;1998;869674;mmorpg;挖矿与砍杀;Mine and Slash -;1999;;;群峦冰窖;TFC Cellars Addon -monster-swarm;2000;439839;;怪物云集;Monster Swarm -SimplePipes;2001;;;Simple BC Pipes; -;2002;;;Wool; -amecs;2003;;amecs;Amecs; -world-primer;2004;;;World Primer; -;2005;345260;;自动收获;AutoHarvest -bookworm;2006;;;Bookworm;Bookworm -openeye;2007;;;错误报告器;OpenEye -let-sleeping-dogs-lie;2008;;;嘘,别吵醒狗狗;Let Sleeping Dogs Lie -bspkrscore-updated;2009;;;bspkrsCore Updated; -super-ores;2010;704620;superores;超级矿石;Super Ores -gravelminer;2011;1126578;;砂砾终结者;GravelMiner -client-tweaks;2012;915029;clienttweaks;客户端微调;Client Tweaks -single-use-crafting-table-mod;2013;;otc;一次性工作台;Single-Use Crafting Table Mod -get-back-to-home;2014;;;回家;Get Back to Home -expanded-equivalence;2015;;expequiv;等价扩展;Expanded Equivalence -schematica;2016;893275;;Schematica; -scp-craft-decline;2017;;scpcraft;SCPCraft - 下降;SCPCraft - Decline -tetra;2018;804377;tetra;Tetra; -minestrappolation-5;2019;;minestrapp;Minestrappolation 5; -underwater-biome;2020;923907;;深海生态;Underwater Biome -create;2021;1088970;create;机械动力;Create -;2022;;;超级TNT;Super TNT -;2023;449923;;坦桑石;Tanzanite -energeticsheep;2024;;energeticsheep;脉冲羊;EnergeticSheep -ensorcellation;2025;1016362;ensorcellation;万象;Ensorcellation -inventory-sorter;2026;;;物品分拣;Inventory Sorter -speedster-heroes;2027;685240;speedsterheroes;闪电侠;Speedster Heroes -;2028;922918;;地狱门输入补丁;Solid Command UI -curios;2029;;curios;Curios API; -village-spawn-point;2030;;villagesp;村庄出生点;Village Spawn Point -spawnercraft;2031;692662;;刷怪笼合成;SpawnerCraft -openfm;2032;522352;openfm;开放电台;OpenFM -the-dalek-mod;2033;;thedalekmod;神秘博士;The Dalek Mod -modular-diversity;2034;;modulardiversity;模块化多样性;Modular Diversity -botanic-bonsai;2035;;;植物魔法盆栽;Botanic Bonsai -modular-magic;2036;;modularmagic;模块化魔法;Modular Magic -;2037;;portalsupercache;传送门超级缓存;Portal Super Cache -magic-kingdoms-mod;2038;;som;魔法王国;Magic Kingdoms Mod/Schools of Magic Mod -zollern-galaxy;2039;;zollerngalaxy;卓伦星系;Zollern Galaxy -macaws-bridges;2040;;mcwbridges;Macaw的桥梁;Macaw's Bridges -trample-stopper;2042;803109;;防止踩踏;Trample Stopper -macaws-roofs;2043;;mcwroofs;Macaw的屋顶;Macaw's Roofs -shadows-of-greg;2044;;gtadditions,gregtech;格雷之影;Shadows of Greg -loottabletweaker;2045;;lttweaker;LootTableTweaker; -rockycore;2046;;;RockyCore; -tree-tweaker;2047;;;Tree Tweaker; -worleys-caves;2048;;worleycaves;沃利的洞穴;Worley's Caves -additional-structures;2049;;additionalstructures;失落废墟;Additional Structures/Rex's Additional Structures -;2050;601358;customtrees;自定义树木;Custom Trees -;2051;909441;mcmooncake;MC牌月饼;MC Moon Cake -;2052;800981;dao_za_vanillaplus;稻砸原版增强;Dao_Za_Vanillaplus -;2053;;;Fabric OBJ Model Loader; -enhancedvisuals;2054;;enhancedvisuals;增强视觉效果/拓展视觉效果;EnhancedVisuals -potion-fingers-redux;2055;;potionfingers;药剂环;Potion Rings -balloon-sheep;2056;900147;balloonsheep;气球羊;Balloon Sheep -farming-for-blockheads;2057;;farmingforblockheads;傻瓜式农贸市场;Farming for Blockheads -oreexcavation-integration;2058;;oeintegration;矿物开凿;Ore Excavation Integration -engineers-workshop;2059;;engineersworkshop;工程师工作站;Engineers Workshop -the_legend_of_the_brave;2060;916377;thelegendofthebraveii;勇者传说;The Legend of The Brave -twerk-sim-2k16;2061;;;Twerk Sim 2K16; -fart-generator;2062;;;屁能发电机;Fart Energy Generator -ex-nihilo-fabrico;2063;;;无中生有:Fabrico;Ex Nihilo Fabrico -holoinventory;2064;;holoinventory;物品显示/物品清单;HoloInventory -reactor-stuff;2065;927559;reactor_stuff;反应堆材料;Reactor Stuff -traitors-better-swampland-mod;2066;;swampland;更好的沼泽;Traitor's Better Swamplands Mod -soviet-abandoned-lab-mod;2067;;soviet;苏维埃风格装饰;Soviet Era Mod(earlier Soviet Lab) -;2068;;;生存必备;Survival_Essentials -charm;2069;;charm;Charm; -village-names;2070;;villagenames;村庄名;Village Names -advanced-rocketry-tweaker;2071;;;Advanced Rocketry Tweaker; -alternating-flux;2072;;alternatingflux;交变磁通;Alternating Flux -projectextended;2073;;projectextended;等价交换扩展;ProjectExtended -tfc-metallum;2074;;tfcmetallum;群峦合金;TFC:Metallum -reactor-turbines-mod-for-ic2;2075;;reactor_turbines;Reactor Turbines Mod for IC2; -mutant-beasts;2076;;mutantbeasts;突变生物重置版;Mutant Beasts -jei-integration;2077;1101324;jeiintegration;JEI扩展;JEI Integration -funny-fruit;2078;;funnyfruit;滑稽果;FunnyFruit -life-tech;2079;;;生命工艺;Life Tech -exponential-power;2080;;exponentialpower;Exponential Power; -girl-armor-mod;2081;;vgirlarmor;女式盔甲;V-Girl Armor Mod -;2082;;theworlddisintegratespickaxe;瓦解世界的镐子;The World Disintegrates Pickaxe -nomadic-tents;2083;;yurtmod;游牧帐篷;Nomadic Tents -zetta-industries;2084;;zettaindustries;泽它重工;Zetta Industries -kekztech;2085;;;KekzTech; -by-the-gods;2086;;btg;神迹;By The Gods -bee-angry-est;2087;;;愤怒的蜜蜂;Bee Angry-est -titanium;2088;;titanium;钛;Titanium -chemlib;2089;;;Chem Lib; -carrots-lib;2090;;carrots;胡萝卜库;Carrots Library -no-hostiles-around-campfire;2091;;nhacampfire;围火无怪;No Hostiles Around Campfire -healing-campfire;2092;;regrowth;治愈营火;Healing Campfire -minetunes;2093;;;我的歌曲;MineTunes -jetif;2094;;jetif;物品丢入流体;Just Enough Throwing In Fluids -rftools-base;2095;;rftoolsbase;RF工具:基础;RFTools Base -flopper;2096;;flopper;流体漏斗;Flopper -exhausted-stamina;2097;;;竭力攻击;Exhausted Stamina -staminaplus;2098;;;耐力值;StaminaPlus -enhanced-armaments;2099;898546;;增强装备;Enhanced Armaments -spatialcompat;2100;;spatialservermod;空间兼容;SpatialCompat -extended-reach;2101;;;Extended Reach; -no-recipe-book;2102;;norecipebook;没有配方书;No Recipe Book -darknesslib;2103;;darknesslib;DarknessLib; -tfcraft;2104;887732;tfc;群峦传说:次世代;TerraFirmaCraft: The Next Generation -redstone-control;2105;;rs_ctr;红石控制;Redstone Control -snow-real-magic;2106;871191;snowrealmagic;雪!真实的魔法!⛄;Snow! Real Magic! ⛄ -comforts;2107;;comforts;舒适用品;Comforts -plasmacannon;2108;930033;;等离子炮;PlasmaCannon -plasmaengines;2109;930034;;等离子引擎;PlasmaEngines -bonny-food;2110;;;Bonny Food; -emerging-technology-hydroponics;2111;934929;emergingtechnology;新兴技术;Emerging Technology -;2112;934380;ej2,epicjourney;史诗征程2;Epic Journey2 -twilightopia-phantasy;2114;977230;twilightopia;暮托邦之梦;Twilightopia -engineers-decor;2115;;;工程师的装饰;Engineer's Decor -engineers-tools;2116;;engineerstools;工程师的工具;Engineer's Tools -wesleys-roguelike-dungeons;2117;;wrd;Wesley的冒险地牢;Wesley's Roguelike Dungeons -xp-tome;2118;;xpbook;Xp Tome; -varied-commodities;2119;;variedcommodities;Varied Commodities; -tinkers-things;2120;;tiths;匠魂扩增;Tinkers' Things -just-enough-buttons;2121;678566;;更多的按钮;Just Enough Buttons -clock-hud;2122;;;时间显示器;ClockHUD -tektopia;2123;980572;tektopia;桃花源记/特克托皮亚;TekTopia -;2125;;lolipickaxe;氪金萝莉;LoliPickaxe -fabric-language-kotlin;2126;;fabric-language-kotlin;Fabric Language Kotlin; -ftb-backups;2127;;ftbbackups;FTB备份;FTB Backups -cyclopstek;2128;;cyclopstek;独眼巨人;CyclopsTek -;2129;941275;;健康生活;Stay Healthy -champions;2130;998116;champions;冠军/强敌;Champions -danger-lies-ahead;2131;['905359'];;前路危机;Danger Lies Ahead -croploadcore;2132;;croploadcore;CropLoadCore; -defiled-lands;2133;965119;defiledlands;污秽之地;Defiled Lands -arcanum;2134;804291;arcanum;奥秘;Arcanum -random-enchants;2135;963657;;随机附魔;Random Enchants -much-more-spiders-v2;2136;521013;;更多种类的蜘蛛;Much More Spiders -compressed-items;2137;;ci;Compressed Items; -no-tree-punching;2138;1066911;notreepunching;无树可撸;No Tree Punching -harvest-festival-legacy;2139;;harvestfestival;丰收物语移植版;Harvest Festival Legacy -friendlymobs;2140;['698723'];;友好的怪物;FriendlyMobs -simplecore-api;2141;;;简单前置;SimpleCore API -topography;2142;926097;topography;地形;Topography -jei-villagers;2143;772483;jeivillagers;JEI村民交易查看;JEI Villagers -bnbgamingcore;2144;;bnbgamingcore;BnBGamingCore; -igauntlet;2145;;;灭霸手套;IGauntlet -alcatrazcore;2146;;alcatrazcore;Alcatraz Core; -debugserverinfo;2147;;debugserverinfo;DebugServerInfo; -the-midnight;2148;['943646'];midnight;午夜;The Midnight -moolands;2149;;moolands;奶牛世界;Moolands -egg-craft;2150;952118;;蛋工艺;Egg Craft -tinkersextras;2151;;tinkersextras;Tinkers Extras; -poke-lucky;2152;791757;pokelucky;宝可梦幸运方块;PokeLucky -usefultnt;2153;;UsefulTNT;更有用的TNT;UsefulTNT -;2154;948910;;更好的特性;Better Features -crow-flight;2155;;crowflight;乌鸦坐飞机;Crow Flight -findme;2156;;findme;FindMe; -minecraft-transit-railway;2157;1173523;mtr;我的世界铁路;Minecraft Transit Railway -random-loot-mod;2158;;randomloot;随机战利品;Random Loot Mod -;2159;521061;;超级过山车;ExRollerCoaster -tinkers-aether;2160;;;天境工匠;Tinkers Aether -mine-and-slash-auto-compatibility;2161;;azurecompat;挖矿与砍杀自动兼容;Mine and Slash Auto Compatibility -metallurgy-core;2162;;MetallurgyCore;冶金核心;MetallurgyCore -blank-planet;2163;;;BlankPlanet; -betterachievements;2164;;;更好的成就;Better Achievements -extra-bows;2165;891607;extrabows;更多的弓;Extra Bows -forgotten-relics;2166;937895;;失落遗物学;Forgotten Relics -ore-core;2167;;;矿石核心;Ore Core -ordinary-coins;2168;;ordinarycoins;普通硬币;Ordinary Coin -peanut-mod;2169;;peanutmod;花生!;Peanuts! -;2170;943580;;蝙蝠耳;Bat's Ear -in-game-wiki-mod;2171;;igwmod;In Game Wiki; -betterbedrockgen;2172;1109812;;更好的基岩;Better Bedrock Gen -wsbim-legacy-blocks-and-items;2173;;;WSBIM: Legacy Blocks and Items; -storage-items-mod;2174;;;Storage Items Mod; -what-should-be-in-mc-wsbim;2175;;;What Should Be in MC; -bluestone;2176;;;Bluestone; -effortless-building;2177;;;Effortless Building; -ic2-classic-tweaker;2178;;;IC2 Classic Tweaker;IC2 Classic Tweaker -Ic2c-Crop-Overrides;2179;;;IC2经典版作物覆盖;IC2C Crop Overrides -ic2c-extras;2180;;;工业时代2经典版拓展;IC2C Extras -advanced-solars-classic;2181;;;高级太阳能经典版;Advanced Solars Classic -power-chisels;2182;;;能量凿子;Power Chisels -ic2c-custom-soils;2183;;;IC2C Custom Soils; -homing-exp-orbs;2184;;homingexporbs;经验球归航;Homing Exp Orbs -enchantmentglint;2185;;enchantmentglint;自定义附魔光效;Jabelar's Truly Magical Enchantment Glints -floricraft;2186;674160;;花卉工艺;Floricraft -weisscore;2187;;;WeissCore; -glibys-physics;2188;;glibysphysics;Gliby的物理;Gliby's Physics -electro-magic-tools-ic2-classic;2189;;;电子神秘工具;Electro-Thaumic Tools - IC2 Classic -forceasciifont;2190;;;强制ASCII字体;ForceASCIIFont -skewers;2191;962626;;撸串;Skewers -get-in-the-bucket-mod;2192;;getinthebucketmod;进入水桶;Get In The Bucket Mod -fertilization;2193;;;施肥;Fertilization -additional-banners;2194;;;更多旗帜;Additional Banners -dropt;2195;;dropt;Dropt; -the-elven-forest;2196;;the_elven_forest;精灵森林;The Elven Forest​ -the-beneath;2197;;beneath;深渊世界;The Beneath -not-enough-characters;2198;614246;nechar;NEI 拼音搜索;Not Enough Characters -;2199;;cookingwithtfc;Cooking with TFC; -mine-addons-2;2200;;;Mine Addons 2;Mine Addons 2 -terrafirmacraftplus;2201;1043715;;群峦传说 +;Terrafirmacraft + -quick-consume-2;2202;;;快速摄入2;Quick Consume 2 -mctitle;2203;725545;;MCTitle; -mgui;2204;;mgui;mGui; -sublib;2205;;;SubLib; -dense-ores;2206;522248;;致密矿石;Dense Ores -archisections;2207;;;ArchiSections; -cavecontrol;2208;;;洞穴控制;Cave Control -expandedredstone;2209;;;红石扩展;Expanded Redstone -legacycraft;2210;;;传统工艺;LegacyCraft -geostrata;2211;;;GeoStrata; -territoryzone;2212;;;TerritoryZone; -loottweaks;2213;;;LootTweaks; -critterpet;2214;;;CritterPet; -condensedores;2215;;CondensedOres;Condensed Ores; -treeclimbing;2216;;;Tree Climbing; -more-electric-tools;2217;970021;mets;更多电力装置;MoreElectricTools -wireless-fluid-terminal;2218;;wft;无线流体终端;AE2 Wireless Fluid Terminal -wireless-interface-terminal;2219;;wit;无线接口终端;AE2 Wireless Interface Terminal -wireless-pattern-terminal;2220;;wpt;无线样板终端;Wireless Pattern Terminal -better-questing-rf-expansion;2221;;bq_rf;更好的任务-RF拓展;Better Questing - RF Expansion -hurt-animation-remover;2222;;hurtanimationremover;Hurt Animation Remover; -more-cauldrons;2223;;morecauldrons;更多炼药锅;More Cauldrons -parabox;2224;;parabox;Parabox; -sky-grid;2225;;;Sky Grid; -forbidden-arcanus;2226;;forbidden_arcanus;禁忌与奥秘;Forbidden and Arcanus -mysticalmechanics;2227;;mysticalmechanics;Mystical Mechanics API; -backpacked;2228;;backpacked;MrCrayfish的背包;MrCrayfish's Backpacked -starship;2229;692838;;星舰;StarShip -tweakeroo;2230;973508;tweakeroo;Tweakeroo; -integrated-rest;2231;;integratedrest;Integrated REST; -citadel;2232;;citadel;Citadel; -screenshot-browser;2233;;;内置截图管理器;Screenshot Browser -inventory-tweaks-renewed;2235;;;R键整理复兴版;Inventory Tweaks Reborn -curio-of-undying;2236;;curioofundying;不死图腾插槽;Curio of Undying -explorercraft-worldexpansion;2237;980848;explorercraft;探险者;Explorercraft -chinese-new-year-mod-2019;2238;;;粉尘力量;Chinese New year -enigmatic-legacy;2239;958575;enigmaticlegacy;神秘遗物;Enigmatic Legacy -end-reborn;2240;846012;endreborn;末地:重生;End: Reborn -;2241;488345;eternalfrost;永恒的冰霜;Eternal Frost -ezstorage-2;2242;;;EZ存储2;EZStorage 2 -more-chickens;2243;;morechickens;更多鸡扩展;More Chickens -the-first-age-submod;2244;;;魔戒:第一纪元;LOTR: Frist Age -the-rc-mod;2245;;thercmod;The RC Mod; -rubybyimxiaoanag;2246;949124;;红宝石;Ruby -jojo-hamon-era;2247;;;JoJo-Hamon Era;JoJo-Hamon Era -;2248;981091;horodimensionweapons;次元装备;Horo's Dimension Weapons -OpenSecurity;2249;;;开放式防卫;Open Security -;;;legendera;传说纪元;The Legend Era -level-up-hp;2251;1036332;;生命提升;Level Up HP -more-planet-extras;2252;;;More Planets Extras; -randompatches;2253;;randompatches;随意修复;RandomPatches -ships-mod;2254;;;船;Ships Mod -tfc-metric;2255;;tfcmetric;公制重量转换;TFC Metric -;2256;;;TerraMisc; -;2257;;;群峦水袋;Leather Water Sac for TFC -;2258;;;群峦贸易;Merchants Addon for TFC -tfc-additions;2259;;;群峦附加;TFC-Additions -raolcraft-w;2260;;;RaolCraft Ω; -litematica;2261;1015510;litematica;投影;Litematica -telepastries;2262;;telepastries;传送蛋糕;TelePastries -heroesexpansion;2263;963046;;超级英雄拓展;HeroesExpansion -attributefix;2264;939188;attributefix;属性修复;AttributeFix -dynamic-transport;2265;428517;dynamictransport;动态运输;Dynamic Transport -tool-builder;2266;967559;;铸器师;Tool Builder -bountifulbaubles;2267;;bountifulbaubles;丰富的饰品;Bountiful Baubles -;2268;;;生命的真谛;The meaning of life -manacraft;2269;841528;;魔能工艺;ManaCraft -;2270;973659;;明月合成;MoreCraftingMoon -;2271;['963896'];monsterlegend;怪物传说;monsterlegend -;2273;977630;ic2_money;真·工业货币;ICMoney -forge-backpacks;2274;;;更多背包;Backpacks -repurpose;2275;;;Repurpose; -unlimited-chisel-works;2276;;;Unlimited Chisel Works; -kfc;2277;['805566'];thekfcmod;The KFC Mod; -rainbow-oak-trees;2278;;rainboaks;彩虹橡树;Rainbow Oak Trees -spawntabletweaker;2279;;;生成调整;SpawnTableTweaker -large-ore-deposits;2280;;;大型矿床;Large Ore Deposits -gregtech6-unofficial;2281;1038500;gregtech;格雷科技6非官方版;GregTech 6 Unofficial -mahou-tsukai;2282;929252;mahoutsukai;魔法使;Mahou Tsukai -;2283;;;自定义事件;Custom Events -moar-tinkers;2284;;moartinkers;Moar Tinkers; -baubley-heart-canisters;2285;795294;bhc;心之容器;Baubley Heart Canisters -jaopcasingularities;2286;958964;;JAOPCA的奇点;JAOPCA Singularities -;2288;807291;labymod;LabyMod; -;2289;938747;mcty;MC牌汤圆;Tangyuan In MineCraft -guidebook;2291;;;Guidebook; -lithium;2292;;lithium;锂;Lithium -left-2-mine;2293;;;求生之路;Left 2 Mine -worldeditcui-forge-edition-2;2294;;;WorldEditCUI Forge Edition 2; -world-book;2295;;worldbook;World Book; -uppers;2296;;uppers;倒置漏斗;Uppers -spartan-weaponry;2297;798723;spartanweaponry;斯巴达的武器;Spartan Weaponry -malilib;2298;;;MaLiLib; -infraredstone;2299;;;InfraRedstone; -incorporeal;2300;;incorporeal;幻想多媒体;Incorporeal -amun-ra;2301;;GalacticraftAmunRa;Amun-Ra; -;2302;;;虚拟歌姬;Vocaloid Mod -mysterious-mountain-lib;2303;;mmlib;妖怪之山通用库;MysteriousMountainLib -loottweaker;2304;;loottweaker;LootTweaker; -rediscovered;2305;323152;rediscovered;特性重现;Rediscovered -;2307;;;GVClib; -baubles-reborn;2308;;;饰品栏重置版;Baubles Reborn -pams-brewcraft;2309;;;潘马斯·酿造工艺;Pam's Brewcraft -dirtcraft;2310;;;泥土工艺;DirtCraft -minihud;2311;;minihud;迷你HUD;MiniHUD -potato-craft;2312;['604304'];;土豆工艺;Potato Craft -;2313;990119;;自定义矿脉生成器;Ore Generator -bed-patch;2314;;;Bed Patch; -;2315;;crafttweakersync;CT脚本同步;CraftTweakerSync -data-loader-forge;2316;;;Data Loader; -level-up-hp-easy-start;2317;;;Level Up HP Easy Start; -simply-light;2318;;;更好的灯;Simply Light Mod -lightning-bolt-mod;2319;;;雷电攻击;Lightning Bolt Mod -spartan-and-fire;2320;;spartanfire;斯巴达之冰与火;Spartan and Fire -;2321;219229;;光影模组核心;ShadersModCore -beacons-for-all;2322;;;Beacons For All; -;2323;963241;;混沌凋零;Chaos Wither -more-flowers;2324;;moreflowers;更多功能花;More Flowers -buzzier-bees;2326;;buzzier_bees;Buzzier Bees; -;2327;951560;plne;原版一键整理;Vanilla Mod Neat -lollipop;2328;;lollipop;棒棒糖;Lollipop -enemyz;2329;;;敌意显示;Enemyz -thaumic-restoration;2330;;thaumicrestoration;Thaumic Restoration; -;2331;843464;vimi;连锁矿工;Vein Miner -;2332;919479;;快速落叶(伪);Fast Leaf Decay -primal-boat;2333;;primalboat;原始船舶;Primal Boat -eyes-in-the-darkness;2334;;;Eyes in the Darkness; -thaumic-augmentation;2335;1063250;thaumicaugmentation;神秘进阶;Thaumic Augmentation -lost-magic;2336;;lostmagic;失落的魔法;Lost Magic -thaumic-arcana;2337;;thaumic_arcana;Thaumic Arcana; -thaumic-wonders;2338;920375;thaumicwonders;神秘奇境;Thaumic Wonders -crimson-warfare;2339;;crimsonwarfare;Crimson Warfare; -terra-1-to-1-minecraft-world-project;2340;;;Terra 1 to 1; -multiverse-pouch;2341;;qwebnm_multiversepouch;多元宇宙袋;Multiverse Pouch -electroblobs-wizardry-twilight-forest-spell-pack;2343;1001020;tfspellpack;巫术学:暮色森林法术包;Electroblob's Wizardry: Twilight Forest Spell Pack -blockbuster;2344;;blockbuster;Blockbuster; -fishs-undead-rising;2345;984184;mod_lavacow;Fish的不死崛起;Fish's Undead Rising -cloth-config;2346;;cloth-config;Cloth Config API; -just-map;2347;;;Just Map; -too-realistic-inventory;2348;;;真实背包;Realistic Inventory -mob-farm;2349;;mobfarm;生物农场;Mob farm -acceleratorcraft;2350;;acceleratorcraft;加速器工艺;AcceleratorCraft -minecraft-spongebob-squarepants-mod-for-the-1-7-10;2351;;SpongebobModAddONTwo;Minecraft Spongebob Mod 2018 New; -utility-worlds;2352;1009400;utilityworlds;实用世界;Utility Worlds -goblin-traders;2353;;goblintraders;哥布林商人;Goblin Traders -divine-favor;2354;;divinefavor;神的恩惠;Divine Favor -volumetric-flask;2355;;volumetricflask;量瓶;Volumetric Flask -loot-bag-mod;2356;;lootbagmod;战利品包;Loot Bag Mod -;2357;979548;customnpcsfix;自定义NPC补丁;CustomNPCsFix -minecraft-dungeons-mod;2358;;duneons;我的世界地下城;Minecraft Dungeons Mod -;2359;795073;;音乐控制;MusicSetting -seasonal-bees;2360;799196;;季节性蜜蜂;Seasonal Bees -carpet;2361;1098345;;Carpet; -;2362;853957;handmadeguns;自定义枪械;HandmadeGun's2 -equivalent-additions;2363;838238;equivadditions;等价拓展;Equivalent Additions -mixinbootstrap;2364;;;MixinBootstrap; -powah;2365;1000888;powah;Powah!; -natural-pledge;2366;1010943;;自然誓约;Natural Pledge -more-berries;2367;;;更多浆果;More Berries -zeiyocraft;2368;;zeiyocraft;ZeiyoCraft; -time-stages;2369;;timestages;阶段时间;Time Stages -additional-events;2370;;;Additional Events; -artemislib;2371;;artemislib;ArtemisLib; -pams-harvestcraft-2-food-core;2372;1000336;;潘马斯农场2;Pam's HarvestCraft 2 -easy-retrogen;2373;793640;;简易重生成;Easy Retrogen -extraplayerrenderer;2374;;explayerenderer;额外玩家渲染;ExtraPlayerRenderer -rwbym;2375;['998968'];;RWBY Mod; -libnonymous;2376;;libnonymous;Libnonymous; -shattered-moon;2377;;;Shattered Moon; -tinkersurvival;2378;811651;Tinkers' Survival;匠魂生存;Tinkers' Survival -portablecraft;2379;784442;;便携物品;PortableCraft -;2380;;;方程式配平;Balance Equations -better-than-bunnies;2381;769012;betterthanbunnies;给兔子戴上礼帽;Better Than Bunnies -arcane-essentials;2382;['878611'];;奥术精要;Arcane Essentials -the-aurorian;2383;;theaurorian;极光幽境;The Aurorian -egg-auto-hatch;2384;;;鸡蛋自动孵化;Egg Auto Hatch -performant;2385;;performant;性能优化;Performant -tube-transport-system;2386;;tts;管道传输系统;Tube Transport System -;2387;1013205;dyntranslation;动态翻译;DynTranslation -transmutation-alchemy;2388;;;Transmutation Alchemy; -extra-spells-electroblobs-wizardry;2389;;;额外咒语;Extra Spells -ancient-spellcraft;2390;;ancientspellcraft;古代咒法;Ancient Spellcraft -moving-elevators;2391;1009680;;Moving Elevators; -interstellar-exoplanets;2392;1105540;exoplanets;星际:系外行星;Interstellar: Exoplanets -infini-tic;2393;;;Infini-TiC; -extra-disks;2394;;extradisks;更多磁盘;Extra Disks -optiforge;2395;;;OptiForge; -magic-seeds-for-electroblobs-wizardry;2396;;;巫术学魔法种子;Magic seeds for Electroblobs Wizardry -extra-alchemy;2397;871236;;扩展炼药;Extra Alchemy -beyond-the-veil;2398;1109481;beyondtheveil;帷幕彼端;Beyond The Veil -maple-syrup;2399;1014291;;枫糖;Maple Syrup -blood-particles;2400;990913;;血液粒子效果;Blood Particles -nyx;2401;;nyx;Nyx; -lieutenant;2402;;lieutenant;Lieutenant; -matthews-difficulty-mod;2403;;difficultymod;Matthew's Difficulty Mod; -old-combat-system;2404;983861;;旧版战斗系统;Old Combat System -vampires-need-umbrellas;2405;;;Vampires Need Umbrellas; -hypnotics;2406;;;安眠药;hypnotics -villager-market;2407;;villagermarket;村民市场;Villager Market -;2408;;;生存挑战;Survival Challenge -linear;2409;817264;linear;线性放置;Linear -immersive-portals-mod;2410;1177771;immersive_portals;沉浸式传送门;Immersive Portals -universalbestiary;2411;;universalbestiary;Universal Bestiary; -autumnity;2412;1021372;autumnity;秋原;Autumnity -worldgeneration-profiler;2413;;;Worldgeneration Profiler; -chunk-in-a-globe;2414;;;方块地球;Chunk In A Globe -dragon-mounts-legacy;2415;;dragonmounts;龙骑士重置版;Dragon Mounts: Legacy -fruit-trees;2416;976516;fruittrees;果树 🍊;Fruit Trees 🍊 -journey-into-the-light-mod;2417;1128195;journey;光明之旅·神之本质;Journey Into the Light · Essence of the Gods -kitchen-mod;2418;['295019'];kitchen;厨房;The Kitchen Mod -more-dungeons;2419;;;更多地牢;More Dungeons -voyage;2420;;;Voyage; -idealland;2421;1051328;idealland;理想境;Idealland -;2422;1015975;;简便合成;EazyCrafting -;2423;;;MattCore; -second-screen;2424;;;Second Screen; -;2425;1018291;scpex;SCP轻型扩展;SCP Expansion -;2426;808184;;FastAsyncWorldEdit; -arcanecraft;2427;1022110;;奥法工艺;ArcaneCraft -retrobees;2428;;retrobees;RetroBees; -beebetteratbees;2429;;;育蜂指南;BeeBetterAtBees -inverted-enchantments;2430;1003938;ivrench;负魔书;InvertedEnchantments -general-laymans-aesthetic-spying-screen-glass;2431;;;General Laymans Aesthetic Spying Screen Glass; -diy_title;2432;998747;;自定义名称前后缀;diy_title -tooltweaks;2433;['773523'];tooltweaks;禁用原版工具;ToolTweaks -atop;2434;;ATOP,atop;超多生物群系护甲;Armor for Biomes O' Plenty -tinkers-forging;2435;;tinkersforging;工匠锻造;Tinker's Forging -gravity-gun;2436;;gravitygun;Gravity Gun; -mekanism-additions;2437;;;通用机械附加;Mekanism Addition -signpicture;2438;698600;;木牌图片;Sign Picture -vampirism-integrations;2439;;vampirism_integrations;吸血鬼联动;Vampirism Integrations -gottschcore;2440;;;GottschCore; -not-enough-crashes;2441;1097535;notenoughcrashes;崩溃优化;Not Enough Crashes -crash-to-main-menu;2442;;;崩溃返回主菜单;Crash To Main Menu -tinkers-jei;2443;;tinkersjei;Tinker's JEI; -better-questing-quest-book;2445;;questbook;更好的任务 - 任务书;Better Questing - Quest Book -engineers-doors;2446;;;工程师的门;Engineer's Doors -tps-generator;2447;;tpsgenerator;TPS发电机;TPS Generator -better-drowning;2448;;;更好的溺水;Better Drowning -bibliotheca;2449;;;Bibliotheca; -kubejs;2450;;kubejs;KubeJS; -tickcentral;2451;;tickcentral;TickCentral; -lowocalizatiwn;2452;;;lOwOcalizatiωn; -redlib;2453;;;RedLib; -modern-ui;2454;;modernui;现代化UI;Modern UI -auto-config-updated-api;2455;;;Auto Config Updated API; -medieval-madness;2456;;the_medieval_times;中世纪的疯狂;Medieval Madness -caelus;2458;;caelus;Caelus API; -xeocore;2459;;;XeoCore; -wtbw_lib;2460;;;WTBW Lib; -dev-world-fabric;2461;;devworld;Dev World; -threecore;2462;;;ThreeCore; -moddirector;2463;;;ModDirector; -function-api;2464;;;Function API; -targetingapi;2465;;;TargetingAPI; -re-targetingapi;2466;;;Re-TargetingAPI; -dominionlib;2468;;;DominionLib; -;2469;1011791;;咸鱼工艺;Salt Fish Craft -endergetic;2470;;endergeticexpansion,endergetic;末地拓展;The Endergetic Expansion -swamp-expansion;2471;;swampexpansion;Swamp Expansion; -galactictweaks;2472;;gctweaks;GalacticTweaks; -dungeon-tactics;2473;945504;dungeontactics;地牢战术;Dungeon Tactics -villagers-nose;2474;['320049'];VillagersNose;村民的鼻子;Villager's Nose -dungeons2;2475;;;自定义地牢2;Dungeons2 -lang_tool;2476;;;加长工具;lang_tool -;2477;;;Plans API; -;2478;;;Labyrinths API; -emojiful;2479;;emojiful;Emojiful; -item-compatibility;2480;;;Item Compatibility; -aether-lost-content;2481;;lost_aether;天境: 遗失之物;Aether: Lost Content -gunpowderlib;2482;;gunpowderlib;GunpowderLib; -nuclearcraft-overhauled;2483;1077507;nuclearcraft;核电工艺:重制版;NuclearCraft: Overhauled -nei-lotr;2484;;;魔戒NEI插件;LotR Mod NEI Plugin/NEI LotR -adventure-backpack;2486;;adventurebackpack;探索者背包;Adventure Backpack -speed-illusion;2487;;;Speed Illusion; -supertic;2488;;gk_super_tic;匠魂药水效果;SuperTiC -the-bumblezone-forge;2489;998154;the_bumblezone;蜂巢世界;The Bumblezone -beesourceful;2490;;beesourceful;BeeSourceful; -middle-earth-industry;2491;;mei;Middle-Earth Industry; -thut-wearables;2492;;;Thut Wearables; -after-the-drizzle;2493;1038199;afterthedrizzle;细雨田园;After the Drizzle -cmdcam;2494;1034801;;CMD指令摄影机;CMDCam -climate-control-geographicraft;2495;833208;geographicraft;气候控制/地理世界;Climate Control/Geographicraft -;;;promised_land,tpl;应许之地;The Promised Land -cosmetic-armor-reworked;2497;;cosmeticarmorreworked;时装盔甲重置版;Cosmetic Armor Reworked -;2498;993044;moegadd;月蛋拓展;MoegAddon -efab;2499;;efab;EFab; -potion-of-bees;2500;;potionofbees;蜂群药水;Potion of Bees -wyrmroost;2501;;wyrmroost;Wyrmroost; -productivebees;2502;1088015;productivebees;资源蜜蜂;Productive Bees -gkolivers-super-tic;2503;;gk_super_tic;Gkoliver's Super TiC; -;2504;;;Loot Table Randomizer; -songs-of-war-mod;2505;1003372;sow;战争之歌;Songs of War -fluidict;2506;;fluidict;FluiDict; -squidcraft;2507;1025201;squidcraft;鱿鱼工艺;SquidCraft -clothesline;2508;1037838;clothesline;晾衣绳;ClothesLine -siege;2509;;siege;Siege; -fermion-core;2510;;;Fermion Lib; -omnitranslation;2511;1007862;ot;万能翻译;OmniTranslation -the-egg-came-first;2512;;;先有蛋;The Egg Came First -nuclearcraft-helper;2513;;nuclearcraft_helper;核电助手;NuclearCraft Helper -the-hive-more-bee-content;2514;;thehive;The Hive! More Bee Content; -tinkersmiddleearth;2515;1040428;;Tinker's Middleearth; -inventory-pause;2516;;;Inventory Pause; -snowy-leaves;2517;;;Snowy Leaves; -materialis;2518;;materialis;Materialis; -tesseract;2519;1117511;tesseract;超立方体;Tesseract -carrier-bees;2520;;carrierbees;物流蜜蜂;Carrier Bees -tinkers-reforged;2521;;tinkers_reforged;工匠再锻;Tinkers' Reforged -mystical-world;2522;991631;mysticalworld;魔幻世界;Mystical World -recipes-for-all;2523;795776;;配方书全解锁;Recipes for All -gregicality;2524;;gtadditions;Gregicality; -the-lord-of-the-rings-mod-renewed;2525;363128;lotr;魔戒:复兴;The Lord of the Rings Mod: Renewed -modelloader;2526;;modelloader;ModelLoader; -animal-crops;2527;;animalcrops;动物作物;Animal Crops -terrafirmacraftneiplugin;2528;;;Terra Firma Craft Plus NEI Plugin; -furenikusroads;2529;;furenikusroads;Fureniku的路;Fureniku's Roads -patchouli-quests;2530;1046562;patchoulitask;帕秋莉任务手册;Patchouli Quests -;2531;925975;exac;学园附属;ExtraAcademy -iitemrenderer-reborn;2532;;;IItem Renderer Reborn; -time-overhaul;2533;;;时间改革;Time Overhaul -steamweapon;2534;932419;stemweapon;梗多武器;StemWeapon -counter-guns;2535;;;Counter Guns; -thaumcraft;2536;776706;;神秘时代2;ThaumCraft 2 -gregtech-chill-edition;2537;;gregtech;格雷科技轻松版;GregTech: Chill Edition -custom-player-model-cpm;2538;950601;;自定义玩家模型;Custom Player Model -roughly-enough-resources;2539;1046041;roughlyenoughresources;Roughly Enough Resources; -so-many-enchantments;2540;927418;somanyenchantments;更多附魔;So Many Enchantments -sisser;2542;;;Sisser; -hxcenchants;2543;;;多样化附魔;HxCEnchants -better-dropped-items;2544;1125352;;更好的掉落物;Better Dropped Items -hxc-core;2545;;;HxC Core; -surrounding-indicators;2546;;;Surrounding Indicators; -gobber;2547;967993;gobber2;戈伯2;Gobber2 -gobber;2548;967993;gb;戈伯;Gobber -iblis;2549;1025597;iblis;恶魔;iblis -;2550;1097387;;万能篝火;What's wrong with the campfire -the-king-of-the-villagers;2551;;kingvillager;村民之王;The King of the Villagers -bring-me-the-rings;2552;;;Bring Me The Rings; -bloomful;2553;;bloomful;Bloomful; -pick-pocketer;2554;;;扒手;Pick Pocketer -terraforged;2555;1157666;terraforged;TerraForged; -rad-metabolosis;2556;;ncradmetabolosis;Rad Metabolosis; -mmd-orespawn;2557;;;MMD OreSpawn; -tragicmc3;2558;1233212;tragicmc;悲惨世界3;TragicMC 3 -;2559;;;神秘时代1;Thaumcraft 1 -not-enough-rtgs;2560;;notenoughrtgs;更多RTG;Not Enough RTGs -qmd;2561;;qmd;量子块动力学;Quantum Minecraft Dynamics -environmental-rads;2562;;ncenvironmentalrads;Environmental Rads; -fission-based-neutron-collector;2563;;fbnc;裂变能中子素收集器;Fission Based Neutron Collector -trinity;2564;;trinity;三位一体;Trinity -macaws-windows;2565;;mcwwindows;Macaw的窗户;Macaw's Windows -music-player;2566;;musicplayer;Music Player; -csokicraftutil;2567;;;CsokiCraftUtil; -large-enchants;2568;;;Large Enchants; -angrysun;2569;797244;angrysun;炙热太阳;AngrySun -its-not-long-enough;2570;807281;itsnotlongenough;与现实相同的昼夜交替;It's Not Long Enough -sunscreen-gel;2571;797343;sunscreen;防晒霜;Sunscreen Gel -;2572;;Muya;姆亚核心;MuyaCore -macaws-furniture;2573;;mcwfurnitures;Macaw的家具;Macaw's Furniture -macaws-doors;2574;1098241;mcwdoors;Macaw的门;Macaw's Doors -abnormals-core;2575;;abnormals_core;Abnormals Core; -geyser-mod;2576;;geysermod;Geyser Mod; -not-enough-pets;2577;1007471;notenoughcats;更多宠物;Not Enough Pets -potionextension;2578;;PotionExtension;PotionExtention; -torchslabs-mod;2579;1098447;torchslabmod;更好的火把放置;Torch Slabs Mod -routerrebornlib;2580;;routerrebornlib;RouterReborn Lib; -the-magic-doorknob;2581;;magic_doorknob;The Magic Doorknob; -ultimate-skyblock-generator;2582;;ultimatecobblegen;Ultimate Skyblock Resource Generator; -everyone-poops-dung-fertilizer;2583;838650;everyonepoops;肥料;Everyone Poops - Dung Fertilizer -ascension-of-the-divine;2584;;crustyburritosalotofstuffmod;Ascension of the Divine; -nebulaecraft;2585;;;Nebulaecraft; -tab-overlay;2586;807811;inventoryoverlay;背包显示;Inventory Overlay -ic2magma;2587;;;IC2Magma; -iridium-source;2588;;iridiumsource;铱矿产;Iridium Source -frogcraft-rebirth;2589;;frogcraftrebirth;青蛙化工:重生;FrogCraft:Rebirth -coaxium-mod-1-12-2-ic2-addon;2590;;fm;Coaxium Mod; -energy-control;2591;;energycontrol;能源控制;Energy Control -gulliver-reborn;2592;;gulliverreborn;Gulliver Reborn; -;2593;428702;;可驯服的怪物;Tamed mobs -rationcraft;2594;;rationcraft;Rationcraft; -default-options;2595;;defaultoptions;Default Options; -ender-mail;2596;1037597;endermail;末影邮递;Ender Mail -more-overlays;2597;784302;moreoverlays;More Overlays; -stefinus-3d-guns-mod;2598;441094;stefinusguns;3D枪械;New Stefinus Guns -;2599;964874;movement;运动渲染;Movement -moderncraft-core;2600;;;ModernCraft|Core; -lang_magic;2601;;;言灵;lang_magic -noexpensive;2602;1055512;noexpensive;不昂贵;NoExpensive -rough-mobs-revamped;2603;;;粗暴的怪物重置版;Rough Mobs Revamped -fullbright;2604;803202;;充满光明;Fullbright -backpacks;2605;423986;backpacks16840;背包!;backpacks! -;2606;952972;slashfortifier;拔刀强化器;Slash Fortifier Plus -living-enchantment;2607;932961;livingenchantment;生命附魔;Living Enchantment -karat-garden;2608;663378;karatgarden;克拉的花园;Karat Garden -;2609;;cocricotmod;Cocricot; -bard-mania;2610;;bard_mania;Bard Mania; -shulkerboxtooltip;2611;;shulkerboxtooltip;潜影盒工具提示;Shulker Box Tooltip -;2612;;ism;瞬时建造;InstantStructures Mod -crafting-dead-official;2613;;craftingdead;行尸走肉;Crafting Dead -lord-craft;2614;;lordcraft;Lord Craft; -;2615;899962;MoreSA;大牛的SA;DaNiu`s SA -stupid-things;2617;;stupidthings;Stupid Things; -more-gems-fabric;2618;;more_gems;更多宝石;More Gems -minewars;2619;;minewars;MineWars; -gregicadditionscompatibility;2620;;;Gregic Additions Compatibility; -combined-potions;2621;785942;compot;组合药水;Combined Potions -plusticminusbad;2622;;;xXx_MoreToolMats_xXx; -baileys-dailies;2623;1047464;dailies;Bailey's Dailies; -joshuas-christmas-mod;2624;;joshxmas;Joshua's Christmas Mod; -enderio-fluxified;2625;;enderiofluxified;EnderIO Fluxified; -skizzik;2626;;skizzik;Skizzik; -;2627;203005;miners;矿工天堂;Miner's Heaven -;2628;1057123;zongzi;粽子;ZongZi -sandbag;2629;;sandbag;沙袋;Sandbag -tinkers-arsenal;2630;;tinkersarsenal;Tinkers' Arsenal; -garbage-energy;2631;;GarbageEnergy;废品能源炉;Garbage Energy -quirky-generators;2632;;quirkygenerators;Quirky Generators; -megaloot;2633;1014884;megaloot;超级战利品;MegaLoot -;2634;;;Kradxn's X-Ray; -mad-villagers;2635;785126;;疯狂的村民;Mad Villagers -logical-drops;2636;1022032;;逻辑工艺;Logical Craft -drone-craft;2637;;dronecraft;Dronecraft; -water-source;2638;1057153;watersource;水源;Water Source -;;;tn;火鸡面;Turkey Noodle -hungteens-plants-vs-zombies-mod;2640;1052460;pvz;HungTeen的植物大战僵尸;HungTeen's Plants vs Zombies Mod -pams-desertcraft;2641;;desertcraft;潘马斯的沙漠工艺;Pam's DesertCraft -pams-bonecraft;2642;;bonecraft;Pam的骨头工艺;Pam's BoneCraft -thermal-singularities;2643;;thermsingul;热力奇点;Thermal Singularities -minejurassic;2644;;minejurassic;MineJurassic; -terraria-craft;2645;953855;terraria;泰拉瑞亚世界;Terraria Craft -colytra;2646;;colytra;鞘翅胸甲;Colytra -insects;2647;;insects;昆虫;Insects -sound-reloader;2648;732142;soundreloader;声音重载;Sound Reloader -tool-belt;2649;677629;toolbelt;工具皮带;Tool Belt -argentina-food-mod;2650;;argentina_food_mod;阿根廷的食物;Argentina Food Mod -pet-names;2651;;;宠物名字;Pet Names -collective;2652;;collective;Collective; -giselbaers-durability-viewer;2653;1007803;durabilityviewer;耐久信息显示;Giselbaer's Durability Viewer -more-cookies;2654;;morecookies;更多饼干;More Cookies -apple-carrot;2655;;applecarrot;苹果胡萝卜;Apple Carrot -eat-yo-veg;2656;;eatveg;Eat Yo' Veg!; -bountiful;2657;1172239;bountiful;赏金;Bountiful -betterenchantment;2658;;;更好的附魔;BetterEnchantment -purified-flesh-mod;2659;;purifiedfleshmod;纯净的腐肉;Purified Flesh Mod -gotminecraftmod;2660;;;权力的游戏;Game of Thrones Mod -nosleep;2661;;;禁止睡觉;No Sleep -minersadvantage;2662;845552;minersadvantage;矿工的优势;MinersAdvantage -;2663;942256;mobbottle;生物展示瓶;MobBottle -simple-backpack-fabric;2664;;;简单背包;Simple Backpack -gas-conduits;2666;;gasconduits;气体导管;Gas Conduits -handgun-from-terraria;2667;;mod;Handgun From Terraria; -more-discs-mod;2668;;more_music_disc;更多唱片;More discs mod -edible-honeycombs;2669;;;Edible Honeycombs; -emerald-and-ruby;2670;;emeraldandruby;Emerald And Ruby; -craftable-nametag;2671;1103800;craftable_nametag;可合成的命名牌;Craftable Nametag -dyeable-flower-pots;2672;;dyeable_flower_pots;染色花盆;Dyeable Flower Pots -graffiti;2673;;graffiti;涂鸦;Graffiti -bunny-boots;2674;;bunnyboots;Bunny Boots; -backported-flora;2675;;backportedflora;Backported Flora; -eat-eggs;2676;;eateggs;Eat Eggs; -wool-plates;2677;;;羊毛压力板;Wool Plates -more-berry-uses;2678;;sweetberryuses;更多浆果用途;More Berry Uses -elemental-blades;2679;1012675;elemental_blades;元素之刃;Elemental Blades -space-bosstools;2680;;boss_tools;Space-BossTools; -simple-planes;2681;;simpleplanes;简单飞机;Simple Planes -world-tooltips;2682;678452;;显示掉落信息;World Tooltips -extra-arcane-knowledge-electroblobs-wizardry;2683;;ghostspells;额外巫术知识;Extra Arcane Knowledge -bacterium;2684;;bacterium;细菌重置版;Bacterium -pillagers;2685;786310;pillagers;掠夺者;Pillagers -guard-villagers;2686;995876;guardvillagers;警卫村民;Guard Villagers -simple-machinery;2687;;simplemachinery;简单机器;Simple Machinery -;2688;996667;;更困难的生存; -bridge-maker;2689;;bridge_maker;桥梁制造者;Bridge Maker -craft-your-saddle;2690;;;HorseCrafting; -;2691;;;No PVP Cooldown; -never-break;2692;;;损坏防护;Never Break -simple-villager-spawn-egg;2693;;;Simple Villager Spawn Egg; -banana-decor-forge;2694;;bananadecor;Banana Decor; -immersive-metal;2695;;immersivemetal;沉浸金属;Immersive Metal -coffee-time;2696;;coffeetime;Coffee Time!; -drink-mod;2697;;drinksmod;饮料模组;Drink Mod -more-zombie-villagers;2698;;morezombievillagers;More Zombie Villagers; -naturally-charged-creepers;2699;;;Naturally Charged Creepers; -skinport;2700;;skinport;SkinPort; -dynamic-surroundings-soundcontrol;2701;;sndctrl;动态环境:音效控制;Dynamic Surroundings: SoundControl -;2702;1060595;cheat_ban;无盐:创造毁灭者;No More Salt:Cheat Ban -chop-down-updated;2703;789214;chopdownupdated;Chop Down Updated; -aegis-weapon-system-mod;2704;;AegisSystemMod;宙斯盾作战系统-战舰模组;Aegis Weapon System -Warship's Mod -advanced-hook-launchers;2705;673881;adhooks;高级钩爪发射器;Advanced Hook Launchers -vampire-magic;2706;;;Vampire Magic; -fantasyunderworld;2707;;fantasyunderworld;江湖行;fantasyunderworld -stacc;2708;;;Stacc; -a-riot-of-colour-craft;2709;982406;shui;五彩斑斓工艺;a riot of colour craft -crop-dusting;2710;965619;cropdusting;排气施肥;Crop Dusting -dynamic-surroundings-mobeffects;2711;;mobeffects;动态环境:生物效果;Dynamic Surroundings: MobEffects -dynamic-surroundings-environs;2712;;environs;动态环境:周边环境;Dynamic Surroundings: Environs -recipe-stages;2713;;recipestages;配方阶段;Recipe Stages -attack-on-minecraft;2714;1071695;aom;Wings of Freedom; -cavern-miner;2715;;cavern;洞穴:矿工;Cavern: Miner -vanilla-tools;2716;;supertools;原版工具+;Vanilla Plus Tools -server-tab-info;2717;790756;servertabinfo;Server Tab Info; -letsencryptcraft;2718;;;LetsEncryptCraft; -creeperhost-minetogether;2719;;;MineTogether; -;2720;1061428;ilib;又一个优化Mod;ImproveLib -fullscreen-windowed-borderless-for-minecraft;2721;678406;fw;窗口化全屏;Fullscreen Windowed (Borderless) for Minecraft -nocurse;2722;1066483;nocurse;不诅咒;NoCurse -pretty-beaches;2723;1113121;;Pretty Beaches; -qing_gong;2724;1065957;;轻功;qing_gong -remnants;2725;;;腐败;Remnants -pane-in-the-glass;2727;;pitg;Pane In The Glass; -dynamic-dynamos;2728;;dyndyn;能源炉动画;Dynamic Dynamos -trophy-slots;2729;;;Trophy Slots; -;2730;;magicwithdrinks;魔法与饮料;Magic With Drinks -replanting-crops;2731;;replantingcrops;补种农作物;Replanting Crops -complex-crops;2732;873934;complexcrops;Complex Crops; -screenshot-to-clipboard;2733;;screenshotclipboard;截图到剪贴板;Screenshot to Clipboard -hide-armor;2734;;hidearmor;隐藏盔甲;Hide Armor -hunterillager;2735;936480;hunterillager;邪猎者;HunterIllager -;2736;;;僵尸启示录:语音聊天;DecimationVoiceChat -pocket-apocalypse-mod;2737;;;便携式天灾;Pocket Apocalypse mod -compass;2738;1067220;compass;指南针;compass -tinkers-evolution;2739;1118159;tconevo;匠魂进化;Tinkers' Evolution -tinkers-exporter;2740;1071348;tic_exporter;匠魂数据导出器;Tinkers Exporter -farlanders;2741;425192;;更多末影人;The Farlanders -vials;2742;;vials;瓶瓶罐罐;Vials -advanced-lightsabers;2743;;lightsabers;高级光剑;Advanced Lightsabers -fall_attack;2744;1068034;;下落击杀;fall_attack -swimsuit;2745;1069305;swimsuit;泳装;swimsuit -more-overlays-updated;2746;;moreoverlays;More Overlays Updated; -dothack-hack-weapons;2747;;dothack;Dothack Weapons; -immersive-energy;2748;;immersive_energy;沉浸能源;Immersive Energy -crimson-moon;2749;;;绯红之月;Crimson Moon -mobs-attempt-parkour;2750;;;Mobs Attempt Parkour; -identity;2751;1097458;identity;变形;Identity -industrial-revolution;2752;1069869;indrev;工业革命;Industrial Revolution -art-of-alchemy;2753;1017647;artofalchemy;炼金艺术;Art of Alchemy -lan-server-properties;2754;1056335;;自定义局域网联机;LanServerProperties -;2755;770911;;自定义武器;Custombuki -immersive-intelligence;2756;;immersive-intelligence,immersiveintelligence;沉浸智能;Immersive Intelligence -analyzeio;2757;;analyzeio;AnalyzeIO; -wool-buttons;2758;;sbmwoolbuttons;羊毛按钮;Wool Buttons -total-tinkers;2759;;totaltinkers;统合匠艺;Total Tinkers -;;;BSRTV,bsrt;滨蜀地铁标志色; -thaumic-wands;2761;1082168;thaumicwands;神秘法杖;Thaumic Wands -japanese-food-mod;2762;1089344;japanese_food_mod;日式料理;Japanese Food Mod -pandoras-creatures;2763;944141;pandoras_creatures;潘多拉生物;Pandoras Creatures -status-tags;2764;;;名称标签状态栏;Status Tags -just-enough-dimensions;2765;;;维度配置;Just Enough Dimensions -multishot;2766;;;延时摄影;Multishot -tweakers-construct;2767;;;匠魂调整;Tweakers Construct -valhelsia-structures;2768;;valhelsia_structures;Valhelsia Structures; -;2769;1074127;yvanchuxiuzhen;原初修真;yvanchuxiuzhen -;2770;1074127;initial;原初修真前置;Initial Immortal -just-enough-reactors;2771;;justenoughreactors;Just Enough Reactors; -aoa-infobundle;2772;;aoainfo;虚无世界信息包;AoA InfoBundle -mana-and-artifice;2773;;mana-and-artifice;魔法艺术3:巧工魔艺;Mana and Artifice -;2774;1076451;;远程强度工艺 前置模组;RICraft API -slab-helper;2776;1075292;slabhelper;半砖小帮手;Slab Helper -no-jumping-allowed;2777;;nojumpingallowed;禁止跳跃;No Jumping Allowed -swan-boats;2778;;swanboat;天鹅船;Swan Boats -primal-winter;2779;;;初冬;Primal Winter -better-burning;2780;;;更好的燃烧机制;Better Burning -compact-void-miners;2781;;compactvoidminers;紧凑型虚空采矿机;Compact Void Miners -probe;2782;;;Probe; -mekanism-fluxified;2783;;mekanismfluxified;“通量”机械;Mekanism Fluxified -stepup;2784;;stepup;平滑自动上坡;StepUp -sodium;2785;1079347;sodium;钠;Sodium -;2786;1050121;sv;月光树林;Moon Woods -netherlicious;2787;1104913;netherlicious;Netherlicious; -yungs-better-mineshafts-forge;2788;;bettermineshafts;YUNG的矿井优化;YUNG's Better Mineshafts -terrible-chest;2789;922554;terrible_chest;可怕的箱子;Terrible Chest -spartan-shields;2790;672959;spartanshields;斯巴达之盾;Spartan Shields -silent-gear;2791;;silentgear;寂静装备;Silent Gear -;2792;1075802;watersprayer;喷雾瓶;Water Sprayer -simple-smeltery-accelerator;2793;;simplesmelteryaccelerator;匠魂冶炼炉加速器;Simple Smeltery Accelerator -portality;2794;963035;portality;Portality; -natural-absorption;2795;;naturalabsorption;伤害吸收天赋;Natural Absorption -unique-enchantments;2796;;uniquee;独特的附魔;Unique Enchantments -tombstone-revived;2797;;tombstone;墓碑:复生;Tombstone: Revived -travelers-backpack-integrations;2798;;tbintegration;旅行者背包集成;Traveler's Backpack Integrations -Baby-Mobs;2799;;babymobs;Baby生物;Baby Mobs -compressedblock;2800;;compressedblock;压缩方块;Compressed Block -wildnature;2801;;wildnature;狂野自然;Wild Nature -novam-terram;2802;;nt;Novam Terram; -terrafirmathings;2803;1155379;tfcthings;群峦作品;Terra Firma Things -;2804;1085049;;机械工厂;Mechanization -simpledifficulty;2805;1105340;simpledifficulty;坚定意志;SimpleDifficulty -;2806;;minema;Minema; -tfctech-unofficial;2807;;tfctech;群峦工业非官方版;TFCTech Unofficial -;2808;;ee;等价交换;Equivalent Exchange -invmove;2809;;invmove;边拿边走;InvMove -autofish-for-forge;2810;;forgeautofish;自动钓鱼Forge版;AutoFish for Forge -industrial-upgrade;2811;['1038987'];super_solar_panels;工业升级;Industrial Upgrade -rpgstats;2812;;rpgstats;RPGStats; -datapackrecipemaker;2813;1087231;dprm;数据包配方助手;Datapack Recipe Maker -never-needed-or-wanted;2814;;nnow;Never Needed Or Wanted; -ama-damage-indicator;2815;;damage_indicator;Ama's Damage Indicator; -;2816;;wlgr;伍德的美食红宝书;Woody's Le Guide Rouge -magic-circle;2817;929326;magiccircle;阵法;Magic Circle -crash-utilities;2818;;;Crash Utilities; -eldritch-mobs;2819;;;Eldritch Mobs; -farmers-delight;2820;;farmersdelight;农夫乐事;Farmer's Delight -artifacts;2821;;artifacts;奇异饰品;Artifacts -dynamictreestfc;2823;;dynamictreestfc;动态的树:群峦传说附属;Dynamic Trees-TFC -lucky-block-avaritia;2824;;;无尽幸运方块;Lucky block avaritia -dynamic-trees-the-twilight-forest;2825;;dynamictreesttf;动态的树:暮色森林附属;Dynamic Trees-The Twilight Forest -drp-global-datapack;2826;;drpglobaldatapack;全局数据包;DRP - Global Data Pack -mob-farm-nerfer;2827;;mob_farm_nerfer;Mob Farm Nerfer; -blood-in-the-water;2828;;;Blood in the Water; -bio-technik;2829;;biotechnik;Bio Technik; -;2830;;;Tinkers' Guns Construction; -;2831;1117278;germplasm;种质工艺;Germplasm -astromine-fabric;2832;1068634;astromine;天体矿工;Astromine: Complete -rustic-thaumaturgy;2833;;rusticthaumaturgy;神秘乡村;Rustic Thaumaturgy -;2834;1074208;gasterblaster;龙骨炮;gasterblaster -thallium;2835;1088212;;铊;Thallium -haema;2836;;haema;Haema; -evil-ores;2837;;evil-ores;Evil Ores; -unsuspicious-stew;2838;;;炖菜解迷;Unsuspicious Stew -tfc-seasonal;2839;;tfcseasonal;TFC Seasonal; -imblockerfabric;2840;1090731;IMBlockerFabric;输入法冲突修复;IMBlockerFabric -saomclib;2841;;;saomclib; -survival-utilities;2842;;svutils;生存工具;Survival Utilities -slashblade;2843;;slashblade;拔刀剑2;SlashBlade 2 -portal-blocks-2-0;2844;1077770;portalblocks;传送门方块;Portal Blocks -slimecraft-add-tools-etc;2845;;slimecraft;SlimeCraft; -mechanized-steam-power;2846;;mechanized;机械化蒸汽动力;Mechanized Steam Power -moreswordonline;2847;;swordcraftonline;动漫神域;MoreSwordOnline -Camera-mod;2848;1162901;camera;照相机;Camera Mod -heartdrops;2849;;heartdrops;生命汲取重制版;Heart Drops -observerlib;2850;;;ObserverLib; -zen-summoning;2851;;zensummoning;Zen Summoning; -campanion;2852;;campanion;野营物品;Campanion -wolves-with-armor;2853;;wolveswitharmor;狼铠;Wolves With Armor -get-exp-for-everything;2854;;;万物皆可获得经验;Get exp for everything -jei-enchantment-info;2855;;;JEI附魔信息;JEI Enchantment Info -project-red-core;2856;;projectred-core;红石计划:核心;Project Red - Core -project-red-fabrication;2857;;projectred-fabrication;红石计划:制作;Project Red - Fabrication -project-red-integration;2858;;projectred-integration,projectred-transmission;红石计划:集成;Project Red - Integration -project-red-lighting;2859;;projectred-illumination;红石计划:照明;Project Red - Lighting -project-red-world;2860;;projectred-exploration;红石计划:探索;Project Red - World -project-red-compat;2861;;;红石计划:兼容性;Project Red - Compat -canvas-renderer;2862;;canvas;Canvas Renderer; -coolfood;2864;;kur;冷饮;CoolFood -infinitevillagertrading;2865;;infinitevillagertrading;无限村民交易;InfiniteVillagerTrading -infinite-trading;2866;;infinitetrading;无限交易;Infinite Trading -better-loading-screen;2867;970911;customloadingscreen;自定义加载画面;Custom Loading Screen -extended-lights-mod;2868;903904;extlights;灯具拓展;Extended Lights -more-swords-legacy;2869;;msmlegacy;更多剑:传承;More Swords Legacy -the-undergarden;2870;;undergarden;深暗之园;The Undergarden -allure;2871;1094606;;诱惑;Allure -;2872;1094472;honkaiimpact;崩坏;Honkai Impact -glibys-voice-chat-reloaded;2873;832155;;Gliby的语音聊天重置版;Gliby's Voice Chat Reloaded -greater-eye-of-ender-fabric;2874;1022292;greater_eye;高级末影之眼;Greater Eye of Ender -project-red-mechanical;2875;;projectred-expansion,projectred-relocation,projectred-transportation;红石计划:机械;Project Red - Mechanical -neon-craft-mod;2876;;neoncraft;霓虹灯艺;Neon Craft Mod -arrows-ignite-tnt;2877;;;Arrows Ignite TNT; -enderite-mod-for-fabric;2878;;enderitemod;末影合金;Enderite Mod -dynamic-trees-industrial-craft-2;2879;;dynamictreesic2;动态的树:工业2附属;Dynamic Trees - Industrial Craft 2 -dynamic-trees-tinkers-construct;2880;;dynamictreestconstruct;动态的树:匠魂附属;Dynamic Trees - Tinker's Construct -ex-nihilo-sequentia;2881;;exnihilosequentia;无中生有:传承;Ex Nihilo: Sequentia -toms-storage;2882;1085400;toms_storage;汤姆的简易存储;Tom's Simple Storage Mod -fishing-real;2883;;fishingreal;更真实的钓鱼;Fishing Real -maessentials;2884;;;Ma Essentials; -lingering-loot;2885;;lingeringloot;Lingering Loot; -ugraded-netherite;2886;;upgradednetherite;下界合金增强;Upgraded Netherite -;2887;1095660;dreamer;空想家;Dreamer -inventory-profiles;2888;920520;inventoryprofiles;一键背包整理;Inventory Profiles -slimevoid-library;2889;;;Slimevoid Library; -kotlin-for-forge;2890;;;Kotlin for Forge; -fabric-zero;2891;;;Fabric Zero; -towers-of-the-wild;2892;1098534;;旷野之塔;Towers Of The Wild -sausagecore;2893;;sausage_core;香肠核心;SausageCore -shadowlands;2894;;;暗影之地;Shadowlands -polymorph;2895;;polymorph;多态合成;Polymorph -scalable-cats-force;2896;;scala-library-object;Scalable Cat's Force; -otyacraft-engine;2897;;;Otyacraft Engine; -omega-craft-mod;2898;;omegacraft;Omega Craft Mod; -custom-ports;2899;;;自定义局域网端口;Custom LAN Ports -decorative-blocks;2900;1099281;decorative_blocks;装饰方块;Decorative Blocks -music-layer;2901;;musiclayer;Music Layer; -colored-lux;2902;;lux;彩色照明;Colored Lux -corsair-mccue;2903;;mccue;Corsair McCUE; -right-click-clear;2904;;right-click-clear;右键文本清除;Right Click Clear -wtfs-expedition-cavebiomes-ores-trees-and-tweaks;2905;;;WTF's Expedition: CaveBiomes, Ores, Trees, and Tweaks; -guide-api-village-and-pillage;2906;;;Guide-API Village and Pillage; -;2907;406482;;可拾取尸体;Dr. Cyano's Lootable Bodies -simply-cats;2908;;simplycats;Simply Cats; -pams-harvestcraft-2-crops;2909;;pamhc2crops;潘马斯农场2 - 作物;Pam's HarvestCraft 2 - Crops -base-metals;2910;;basemetals;基础金属;Base Metals -mmdlib;2912;;mmdlib;MMDLib; -just-poop-mod;2913;;poop,pm;屎!;Poop Mod! -costumes;2914;;costumes;服装;Costumes -;2915;913253;eyemod;EyeMod; -upgrade-aquatic;2916;962459;upgrade_aquatic;碧海新生;Upgrade Aquatic -tfc-ambiental;2917;;tfcambiental;TFC Ambiental; -macaws-trapdoors;2918;;mcwtrpdoors;Macaw的活板门;Macaw's Trapdoors -zenutil;2919;;zenutils;Zen Utils; -better-beacon-effect;2921;;;更好的信标效果;Better Beacon Effect -netherite-horse-armor;2922;;;下界合金马铠;Netherite Horse Armor -tacocraft-fabric;2923;;tacocraft;TacoCraft; -lootr;2924;;lootr;Lootr; -biolib;2925;;biolib;Bio Library; -scavenge;2926;;scavenge;Scavenge; -;2927;456383;WLM;不毛之地;Wasteland -heaven-earth-ring;2928;1113665;heavenearthring;乾坤戒指;Heaven Earth Ring -;2929;1104570;hnkinvention;以太木与角川烈的奇妙发明;HoshTimber & Kadokawa Wonderful Invention -pams-harvestcraft-2-food-extended;2930;;pamhc2foodextended;潘马斯农场2 - 食物拓展;Pam's HarvestCraft 2 - Food Extended -pams-harvestcraft-2-trees;2931;;pamhc2trees;潘马斯农场2 - 果树;Pam's HarvestCraft 2 - Trees -minecart-direction-follow;2933;;lock_minecart_view;Better Minecart Rotation; -modern-metals;2934;;modernmetals;现代金属;Modern Metals -block-renderer;2935;;block_renderer,blockrenderer;Block Renderer; -blockus;2936;;blockus;Blockus; -conjurers-cookbook;2937;;conjurerscookbook;Conjurer's Cookbook; -color-unchained;2938;;colorunchained;Color Unchained; -aportingcore;2939;1106002;;移植核心;APortingCore -ywlib;2940;;ywlib;YWlib; -sweet-potato;2941;1132119;sweet_potato;烤地瓜;Sweet Potato Mod -redstone-lantern;2942;;;红石灯笼;Redstone Lantern -culinaire;2943;;ce_foodstuffs;通用扩展:食物;Culinaire -furbishcraft;2944;;lizardfurnituremod;FurbishCraft; -;2945;489118;storageSilo;存储仓;StorageSilo -plural-lucky-block;2946;1153085;;复数幸运方块;Plural Lucky Block -ambientsounds;2947;780518;ambientsounds;自然音效;AmbientSounds -ordinary-firearms;2948;1107541;ordinary_firearms;普通枪械2;Ordinary Firearms 2 -territory;2949;;territory;领地;MineTerritory -better-ping-display;2950;;betterpingdisplay;更好的延迟显示;Better Ping Display -turned-the-changed-mod;2951;;turned_remaster;Turned: The Changed Mod; -survival-tweaks;2952;1050858;survivaltweaks;生存微调;Survival Tweaks -melon-slabs;2953;;melonslabs;西瓜台阶;Melon Slabs -lambdynamiclights;2954;;lambdynlights;Lambda的动态光源;LambDynamicLights -realistic-torches;2955;566201;realistictorches;真实火把;Realistic Torches -;2956;1008631;;跳舞的线;Dancing Line For Mincraft -durability-viewer;2957;1086168;Durability Viewer;耐久显示器;Durability Viewer -lucky-block-bow;2959;;;Lucky Block Bow; -;2960;770071;flammpfeil.slashblade;狐月刀改;FoxBlade Extra -ground-item-highlighting;2961;1084931;;地面物品高光显示;Ground Item Highlighting -;2962;;opengldrawing;绘画;OpenGL Drawing -real-survivor;2963;1093190;;幸存者;RealSurvivor -armor-toughness-bar;2964;;toughnessbar;盔甲韧性显示;Armor Toughness Bar -block-meter;2965;;;Block Meter; -time-to-live;2966;;;Time To Live; -dual-hotbar-1-12-2;2967;986000;dualhotbar;双重快捷栏1.12.2;Dual Hotbars1.12.2 -cha-s;2968;;craftablehorsearmour;可合成的马铠和鞍;Craftable Horse Armour & Saddle -dual-hotbar;2969;320409;;双重快捷栏;Dual Hotbars -travellers-boots;2970;;travellersboots;Traveller's Boots; -;2971;;wfs;伍德的时装精选;Woody's Fashion Selection -cofh-vanilla-satchels;2972;;vanillasatchels;CoFH:Vanilla+ Satchels; -betteranimalsplus;2973;861155;betteranimalsplus;更多动物;Better Animals Plus -packagedauto;2974;;packagedauto;封包合成;PackagedAuto -packagedexcrafting;2975;;packagedexcrafting;封包合成拓展;PackagedExCrafting -;2976;376293;tnb_gildedarmor;Gilded Armor; -compactstorage;2977;;compactstorage;紧凑存储;compactstorage -useful-backpacks;2978;;usefulbackpacks;实用背包;Useful Backpacks -conquest-reforged;2979;637804;conquest,blockpalette,connect;征服者;ConquestReforged -steelseries-gamesense;2980;;gamesense;Steelseries Gamesense; -pizzaatimes-timber-mod;2981;;timber;pizzaatime's Timber Mod; -tellme;2982;;tellme;TellMe; -minerva-library;2983;;;Minerva library; -;2984;;chromeball;土球;ChromeBall -;2985;;godblessing;神佑;God Blessing -;2986;1104504;hamburger;老八秘制小汉堡;The Hamburger Of LaoBa -edit-sign;2987;;signedit;编辑告示牌;Edit Sign -logistical-automation;2988;;logisticalautomation;Logistical Automation; -dynamic-view;2989;;dynview;动态视距;Dynamic View -;2990;1111967;portalcraft;传送门工艺;PortalCraft -instrumental-mobs;2991;;instrumentalmobs;Instrumental Mobs; -finder-compass;2992;;findercompass;Finder Compass; -spacering;2993;;spacering;储物戒;SpaceRing -doot;2994;;trumpetskeleton,trumpet-skeleton;Trumpet Skeleton; -;;;loaded_mod_exporter,Loaded Mod Exporter;加载模组导出;Loaded Mods Exporter -emotes;2996;;Emotes;Emotes; -oc-sensors;2997;;ocsensors;OC Sensors; -fabric-for-fabric;2998;;fabricforfabric;Fabric for Fabric; -storage-tech;2999;;storagetech;Storage Tech; -thaumic-periphery;3000;;thaumicperiphery;神秘外饰;Thaumic Periphery -embellishcraft;3001;;embellishcraft;装饰工艺;EmbellishCraft -open-loader;3002;;openloader;开放式加载;Open Loader -deep-mob-learning-refabricated;3003;;dml-refabricated;深度怪物学习:重制版;Deep Mob Learning: Refabricated -ftb-ultimine-forge;3004;;ftbultimine;连锁破坏;FTB Ultimine -server-translations;3005;;;Server Translations; -image2map;3006;;image2map;Image2Map; -corpse;3007;;corpse;遗体;Corpse -ring-of-the-miner-fabric;3008;;;矿工之戒;Ring of the Miner -instant-bubble-studio;3009;1103368;instantbubblestudio;瞬息气泡工坊;Instant Bubble Studio -;3010;;rpgmaths;RPG数学家;RPG Maths -;3011;1197155;unexpectedteleport;未曾设想的传送方式;Unexpected Teleport -;3012;1103091;vacation_diary;度假日记·随想;Vocation Diary -;3013;;bananacraft;香蕉工艺;BananaCraft -;3015;;kaleido;Kaleido; -;3016;;arcaneart;奥法艺术;Arcane Art -crock-pot;3017;;crockpot;烹饪锅;Crock Pot -;3020;;abouttea;AboutTea; -;3021;;vida;生命;Vida -;3022;;throwable;投掷物;Throwable -;3023;;icycream;冰激凌;IcyCream -;3024;;suuuuuuuper_herbal_tea;超级凉茶;Suuuuuuuper herbal tea -;3025;;sinocraft;华夏工艺;SinoCraft -together-forever;3026;;togetherforever;Together Forever; -iron-furnaces;3027;;ironfurnaces resources;更多熔炉;Iron Furnaces -;3028;1112054;jutsubag;忍术手袋;JutsuBag -lenient-creepers;3029;811522;;仁慈的苦力怕;Lenient Creepers -treasure2;3030;;treasure2;寻宝记2;Treasure2! -;3031;;;自动断线重连;AutoReconnector-Fabric -;3032;;jigsaw;Jigsaw Lib; -structure-gel-api;3033;;structure_gel;Structure Gel API; -the-conjurer;3034;1122250;conjurer_illager;魔术师;The Conjurer -ganys-nether;3035;;ganysnether;Gany的下界;Gany's Nether -ganys-end;3036;;ganysend;Gany的末地;Gany's End -epic-fight-mod;3037;1115564;epicfight;史诗级战斗;Epic Fight Mod -attack-missed;3038;1115551;Attack Missed;攻击闪避;Attack Missed -lava-monsters;3039;;lava_monster;熔岩怪;Lava Monsters -tumat;3040;;tumat;TUMAT; -riddle-chests;3041;;riddlechests;谜题箱;Riddle Chests -;3042;;cinfinitelib;CinfiniteLib; -totem-plus;3043;;;Totem Plus; -blockmeterfabric;3044;;;方块计量表;BlockMeterFabric -;3045;;kamenrider3dmod;假面骑士(3D版);KamenRider3D -fluid-drawers;3046;;fluiddrawers;储液抽屉;Fluid Drawers -creepypastacraft-reborn;3047;;creepypastacraft;蠕动意面重置版;CreepyPastaCraft Reborn -itemzoom;3048;;;物品缩放;ItemZoom -light-overlay;3049;;lightoverlay;Light Overlay; -smallerfpsincrements;3050;;;SmallerFPSIncrements; -regex-filters;3051;;regexfilters;正则表达式过滤器;Regex Filters -;3052;;realworld;真实的世界;RealWorld -fluidsystem;3053;;fluidsystem;流体系统;FluidSystem -falling-tree;3054;;falling_tree;FallingTree; -untranslated-items;3055;;untranslateditems;物品名称双语同屏;Untranslated Items -particle-culling;3056;;particleculling;粒子渲染机制优化;Particle Culling -aggressive-chickens;3057;;;Aggressive Chickens; -entity-culling;3058;;;实体渲染机制优化;Entity Culling -hammerandvil;3059;;hammerandvil;锻造锤与锤锻台;HammerAndVil -;3060;1046859;arclight;Arclight; -simply-backpacks;3061;;simplybackpacks;简易背包;Simply Backpack -mermaid-tail-mod;3062;;mermaidtail;Mermaid Tail Mod; -better-placement;3063;730136;;更好的放置;Better Placement -fat-cat;3064;;fat_cat;大资本家;Fat Cat -waystones2waypoints;3065;;;传送石碑路径点;Waystones2Waypoints -beta-days;3066;;beta_days;B测往昔;Beta Days -trajectory-preview;3067;;trajectory_preview;弹道预览;Trajectory Preview -xp-spawner-control;3068;;;刷怪笼经验控制;Xp Spawner Control -mob-spawner-control;3069;;;刷怪笼控制与修改;Mob Spawner Control -refined-pipes;3070;;refinedpipes;精致管道;Refined Pipes -singularities;3071;;singularities;奇点;Singularities -better-spawner-control;3072;;;更好的刷怪笼控制;Better Spawner Control -crying-ghasts;3073;;cryingghasts;哭泣的恶魂;Crying Ghasts -dynamic-fps;3074;;dynamicfps;动态FPS;Dynamic FPS -compact-ores;3075;;compactores;致密矿石;Compact Ores -thaumic-additions;3076;;thaumadditions;神秘领域:重构;Thaumic Additions:Reconstructed -fabric-disable-custom-worlds-advice;3077;;;禁用自定义世界警告;Disable Custom World Advice -leaf-decay;3078;;;树叶速腐Fabric版;Leaf Decay -fast-furnace-for-fabric;3079;;;熔炉性能优化Fabric版;Fast Furnace for Fabric -diggus-maximus;3080;;diggusmaximus;连锁挖掘;Diggus Maximus -super-sentai-craft;3081;;supersentaicraft;超级战队工艺;Super Sentai Craft -wildly-eat;3082;;wildly_eat;狼吞虎咽;Wildly Eat -gotta-climb-fast;3083;;;快速爬梯;Gotta Climb Fast! -can-i-mine-this-block;3084;;can-i-mine-this-block;我­­ 能 挖 它 吗?;cAn i MiNe thIS bLOCk? -rotten-creatures;3085;1094419;rotten_creatures;腐烂生物;Rotten Creatures -fairy-lights;3086;1167478;fairylights;圣诞彩灯;Fairy Lights -packmode;3087;;packmode;PackMode; -dank-null;3088;;danknull;/dank/null; -avaritia-complement;3089;;avaritiatweaks;Avaritia's Complement; -better-questing-triggerer;3090;;bqt;Better Questing Triggerer; -Broken-Wings;3091;;brokenwings;Broken Wings; -;3092;;;ChickenASM; -Compacter;3093;;compacter;压缩者;Compacter -simple-cc;3094;;;简单清除聊天;Simple Clear Chat -not-enough-potions;3095;;nep;Not Enough Potions; -framed-compacting-drawers;3096;;framedcompactdrawers;镶框压缩抽屉;Framed Compacting Drawers -discordsuite;3097;;discordsuite;DiscordSuite; -mikes-mods-library;3098;;mikesmodslib;Mike's Mods Lib; -Teslafied;3099;;teslafied;Teslafied; -shurlin;3100;;shurlin;仙灵;Shurlin -mob-amputation;3101;;;怪物截肢;Mob Amputation -packguard;3102;;packguard;PackGuard; -wtfs-texturegeneratorlib;3103;;;WTF's TextureGeneratorLib; -more-totems-of-undying;3104;1120388;moretotems;更多的不死图腾;More Totems Of Undying -dungeon-crawl;3105;;;Dungeon Crawl; -tesslocator;3106;;tesslocator;超立方转运器;Tesslocator -iblis-headshots;3107;963706;iblis_headshots;爆头击杀;Iblis Headshots -bee-barker;3108;812120;beebarker;Bee Barker; -sky-bonsais;3109;;skybonsais;天空盆景;Sky Bonsais -;3110;1126399;the_golden_autumn;黄金之秋;The Golden Autumn -origins;3111;1081026;origins;起源;Origins -alexiillib;3112;;alexiillib;AlexiiLLib; -feed-a-friend;3113;;;Feed A Friend; -;3114;1117895;;斗地主;Minecraft Dou Dizhu -;3115;;;Item Render Async Reloaded; -the-legend-of-herobrine;3116;;herobrine;The Legend of Herobrine; -extra-origins;3117;;;起源扩展;Extra Origins -caves-and-cliffs;3118;;caves_and_cliffs,cavesandcliffs;Caves and Cliffs Mod, 1.17 concept; -miner-golems;3119;;minergolems;矿工傀儡;Miner Golems -;3120;825439;bakadanmaku;直播弹幕模组;BakaDanmaku -online-card;3121;;onlinecard;网络卡片; -felling;3122;;felling;连锁砍树;Felling -extra-player-render;3123;1118280;extra_player_renderer;额外玩家渲染;Extra Player Renderer -fabric-api;3124;;fabric;Fabric API; -coloredlanterns;3125;;coloredlanterns;多彩灯笼;ColoredLanterns -ae2-fluid-crafting;3126;;ae2fc;AE2流体合成套件;AE2 Fluid Crafting -cardinal-energy;3127;;;能量基本;Cardinal Energy -travel-anchors;3128;;travel_anchors;旅行锚;Travel Anchors -bnbgaminglib;3129;;bnbgaminglib;BnBGamingLib; -triumph;3130;;;Triumph; -overloaded-armor-bar;3131;1027870;overloadedarmorbar;护甲上限突破;Overloaded Armor Bar -toomanydanyores;3132;;TooManyDanyOres;TooManyDanyOres; -glass-pipe;3133;;;玻璃管道;Glass Pipe -origins-classes;3134;1129492;origins-classes;起源:职业;Origins: Classes -plonk;3135;1155521;;世界内物品放置;Plonk -baritone;3136;;baritoe;baritone; -potionsmaster;3137;1002297;potionsmaster;魔药大师;Potions Master -tinkered-hegemony;3138;;tinkeredhegemony;匠器主导;Tinkered Hegemony -better-impaling;3139;;betterimpaling;更好的穿刺附魔;Better Impaling -caliper;3140;;caliper;Caliper; -botanical-machinery;3141;;botanicalmachinery;植物机械;Botanical Machinery -demagnetize;3142;;demagnetize;消磁;Demagnetize -;3143;;;格雷科技1;GregTech 1 -;3144;;;格雷科技2;GregTech 2 -;3145;;;格雷科技3;GregTech 3 -controlling-for-fabric;3146;;controlling;键位冲突显示(Fabric);Controlling For Fabric -cinderscapes;3147;;cinderscapes;余烬奇景;Cinderscapes -tfc-storage;3148;;tfcstorage;TFC Storage; -tfctinkers;3149;;tfc_tinkers;群峦与匠魂;TFC Tinkers -thick-font-fix;3150;;thick;Thick Font Fix; -;3151;;;LEGENDS CORE; -dynamic-trees-traverse;3152;;dttraverse;动态的树 - 遍历;Dynamic Trees - Traverse -mcmt-multithreading;3153;1126026;jmt_mcmt;Minecraft Multi-Threading; -bwm-core;3154;;;Better With Lib (BWM - Core); -ice-ice-baby;3155;;ice_ice_baby;冰术师;Iceologer -hardlib;3156;;;HardLib; -bilingualname;3157;;bilingualname;物品名称双语显示;BilingualName -chlorine;3158;1120009;chlorine;氯;Chlorine -bedrock-miner;3160;789614;bedrockminer;基岩矿工;Bedrock Miner -reasonable-realism;3161;997171;ReasonableRealism,HarderOres,ExpandedIndustry,HarderWildlife,HarderUnderground;合理的现实主义;Reasonable Realism -passable-foliage;3162;;passablefoliage;叶间穿行 🌳;Passable Foliage 🌳 -betterend;3163;;betterend;更好的末地;BetterEnd -armor-chroma;3164;772358;armorchroma;盔甲颜色显示;Armor Chroma -interactions;3165;;interactions;自定义交互事件;Interactions -lods-of-emone;3166;;lodsofemone;很多钱;Lods of Emone -fabric-language-scala;3167;;;Fabric Language Scala; -fluid-physics-forge;3168;;fluidphysics;流体物理;Fluid Physics -zettai-grimoires;3169;;zettaigrimoires;Zettai Grimoires; -runorama;3170;910751;runorama;全景截图背景;Runorama -item-stages;3171;;itemstages;物品阶段;Item Stages -rocksalt;3172;;rocksalt;Rocksalt; -cazfps-the-dead-sea;3173;;cazfps_the_dead_sea;CAZfps The Dead Sea; -pouch-of-unknown;3174;;pouchofunknown;未知之袋;Pouch of Unknown -wizardry-fates;3175;;wizardryfates;Wizardry - Fates; -the-mighty-architect;3176;;mightyarchitect;The Mighty Architect; -phosphophyllite;3177;;phosphophyllite;Phosphophyllite; -biggerreactors;3178;;biggerreactors;Bigger Reactors; -ftb-teams;3179;;ftbteams;FTB Teams; -waveaway;3180;;;挥挥手;WaveAway -no-advancements;3181;;;移除进度机制;No Advancements -tfc_rocksplus;3182;;tfc_rocksplus;群峦岩石;TFC Rocksplus -mars-mod-reborn;3183;;mars_mod_reborn;Mars Mod Reborn Mod; -ftb-library-forge;3184;;ftbguilibrary,ftblibrary;FTB Library/FTB GUI Library; -crossroads-mc;3185;;crossroads;交错道途;Crossroads -config-checker;3186;;concheckrmd;整合包配置检测;Modpack Configuration Checker -thaumic-speedup;3187;;thaumicspeedup;Thaumic Speedup; -armor-curve;3188;;armorcurve;盔甲曲线修改;Armor Curve -ambience-extras;3189;;ambience;环境音乐:附加;Ambience - Extras -additions-mod;3190;;additions;Additions Mod; -extracpus;3191;;extracpus;Extra CPUs; -extra-crafting-storage;3192;;ExtraCraftingStorage;Extra Crafting Storage; -underground-city-engineering;3194;943842;underground_city_engineering,uce;地下城市工程;Underground City Engineering -essentials;3195;;essentials;Essentials; -soul-shards-respawn;3196;;soulshardsrespawn;Soul Shards Respawn; -soul-shards-the-old-ways;3197;;soulshardstow;Soul Shards: The Old Ways;Soul Shards-TOW -;3198;;mwaw;元素女巫;Elemental Witches -the-flying-things;3199;;flying_things;The Flying Things; -ftb-ranks;3200;;ftbranks;FTB Ranks; -ftb-chunks-forge;3201;;ftbchunks;FTB Chunks; -ftb-essentials;3202;;ftbessentials;FTB Essentials; -silveroak-outpost;3203;;silveroakoutpost;银橡前哨;Silveroak Outpost -pehkui;3204;;;Pehkui; -jeitweaker;3205;;jeitweaker;JEITweaker; -yungs-law;3206;;yungslaw;YUNG's Law; -libx;3207;;libx;LibX; -atmospheric;3208;;atmospheric;悠然一派;Atmospheric -monospace-font;3209;;;等宽字体;Monospace font -;3210;1137086;mbg;武德;wude -mana-liquidizer;3211;;manaliquidizer;魔力液化器;Mana Liquidizer -neapolitan;3212;;neapolitan;那不勒斯风味;Neapolitan -clear-despawn-fabric;3213;;cleardespawn;Clear Despawn (Fabric); -tinkers-modifier-modifier;3214;;tconmodmod;匠魂强化修改;Tinkers' Modifier Modifier -randomtweaks;3215;776232;;随意微调;Random Tweaks -zettai-magic;3216;;zettaimagic;Zettai Magic; -strawgolem-reborn;3217;;strawgolem;稻草傀儡重制版;Straw Golem Reborn -rare-ice;3218;;rare-ice;Rare Ice; -create-integration;3219;;createintegration;Create Integration; -the-magic-mirror;3220;;magic_mirror;魔镜;The Magic Mirror -;3221;795335;qemenu;QE菜单;Quick Easy Menu -extra-boats;3222;;extraboats;额外船只;Extra Boats -outvoted;3223;1144693;outvoted;落选生物;Outvoted -;3224;;collision;粒子碰撞;Collision -attribute;3225;;;属性修复 - Fabric版;Attribute Fix {FABRIC} -packmodemenu;3226;;;PackMode菜单;PackModeMenu -simple-gamemodes;3227;;;游戏模式短指令;Simple Gamemodes -uniq;3228;;;流体统一/物品统一;UniQ -;3229;;;Render Layer Transformer; -harder-ores;3230;;harderores;更难的矿物处理;Harder Ores -rune-craft;3231;;runecraft;Rune Craft; -geckolib;3232;;geckolib3;GeckoLib; -memory-cleaner-mod;3233;;memorycleaner;内存自动清理;Memory Cleaner Mod -ore-flowers;3234;;oreflowers;矿物花卉;Ore Flowers -aqua-creepers;3235;;;水下苦力怕;Aqua Creepers! -extrastorage;3236;;extrastorage;ExtraStorage; -thermal-locomotion;3237;;thermal_locomotion;Thermal Locomotion; -external-tweaker;3238;;externaltweaker;External Tweaker; -morebiomesxl;3239;;extrabiomesxl;MoreBiomesXL; -notes;3240;;notes;笔记;Notes -stare-till-they-grow;3241;;;盯到它们熟为止!;Stare Till They Grow! -vm-computers;3242;;;虚拟电脑;VM Computers -inventory-free;3243;;;无物品栏;Inventory-Free -;3244;1140133;oreplus;矿物加强;OrePlus -randompatches-integration;3245;;rpintegration;RandomPatches Integration; -bubble-column-elevator-backport;3246;;113_water_mechanics;1.13水域机制;1.13 Water Mechanics -basic-nether-ores;3247;;bno;Basic Nether Ores; -nuclearcraft-reactor-builder;3248;;reactorbuilder;核电工艺反应堆建造机;NuclearCraft Reactor Builder -pams-harvestcraft-2-food-core;3249;;pamhc2foodcore;潘马斯农场2 - 食物核心;Pam's HarvestCraft 2 - Food Core -eki-lib;3250;;eki_lib;Eki Lib; -;3251;;ImmibisCore;Immibis Core; -nodami;3252;;nodami;伤害免疫机制移除;No Damage Immunity -astrological-sorcery;3253;;astrosorc;星占魔法;Astrological Sorcery -efab-ct-bindings;3254;;efabctbindings;EFab CT Bindings; -golden-hopper;3255;1109760;goldenhopper;金漏斗;Golden Hopper -wizardry-golems;3256;;wizardrygolems;巫术傀儡;Wizardry Golems -;3257;1142237;autoclick;连点器;AutoClick -;3258;1142092;rpgtool;RPG时代;RPGEra -devtech;3259;;devtech;GTCE-CrT 开发套件;Devtech -;3260;1142244;customenchanttable;自定义附魔台;CustomEnchantTable -;3261;1142287;mengsword2;神剑养成(二)-魔兵养成;MengSword2 -;3262;1142277;mengsword;神剑养成(一);MengSword1 -;3263;1142114;preemptiveedition;1.17“抢先版”;PreemptiveEdition17 -;3264;1142228;ff;快餐食物;FastFood -jurassic-world-reborn-mod;3265;;rebornmod;侏罗纪世界重生;Jurassic World Reborn Mod -;3266;1034847;keystrokesmod;按键显示;Keystrokes -cardboard;3267;;bukkitfabric;Cardboard/Bukkit4Fabric; -enchanting-with-thaumcraft;3268;;enchantingwiththaumcraft;神秘附魔学;Enchanting With Thaumcraft -crimson-revelations;3269;;crimsonrevelations;血腥启示;Crimson Revelation -environmental-core;3270;;envirocore;Environmental Core; -bigger-crafting-tables;3271;;biggercraftingtables;Bigger Crafting Tables; -covers-everywhere;3272;;covers_everywhere;万用覆盖板;Covers Everywhere -mo-villages;3273;814563;movillages;更多村庄;Mo' Villages -inventoryneko;3274;;inventoryneko;InventoryNeko; -loading-screens;3275;;loadingscreens;自定义加载画面;Loading Screens -ofms-crisis-ridden;3276;;ofms_crisis_ridden,ofms_crisisridden;OFMS:危机重重;OFMS:crisis-ridden -dupefix-project;3277;;;DupeFix Project; -ore-control;3278;;orecontrol;矿物控制;Ore Control -twitch-chat-integration;3279;;twitchintegration;Twitch信息显示;Twitch Chat Integration -;3280;1143052;time;时间传说:重生;The Tale Of The Infinite Macrocosm's Universe And Time:Reborn -;3281;;binshufangkuaixiuanji;滨蜀方块; -avaritia-lite;3282;;avaritia;无尽贪婪精简版;Avaritia Lite -packmenu;3283;;packmenu;PackMenu; -console-hud;3285;;consolehud;原主机版界面特性;Console Experience -;3286;;such_metal,such_metal_;晶体;Crystal -;3287;;legendarybeasts;Legendary Beasts; -mite-reborn;3288;;fiveminsurvival;MITE:重生;MITE:Reborn -detailed-technology;3289;1145905;dt;细节科技;Detailed Technology -oreberries;3290;;oreberries;矿莓;Oreberries -stone-block-utilities;3291;;stoneblockutilities;StoneBlock Utilities; -mystical-creations;3292;;mysticalcreations;Mystical Creations; -multiconnect;3293;;;multiconnect; -art-of-alchemy-memoriam;3294;1017647;artofalchemy;炼金艺术:纪念版;Art of Alchemy: Memoriam -blockphysics;3295;;BlockPhysics;方块物理;BlockPhysics-1.7.10 -stoneblock-dimensions;3296;;stoneblockdimensions;StoneBlock Dimensions; -charging-gadgets;3297;;charginggadgets;建筑小帮手充电模组;Charging Gadgets -integration-foregoing;3298;937389;integrationforegoing;工业先锋集成附属;Integration Foregoing -enderfuge;3299;;enderfuge;末影熔炉;Enderfuge -calm-down-zombie-guy;3300;;calmdownzombieguy;Calm Down Zombie Guy; -universal-mod-core;3301;;;Universal Mod Core; -suspended-server;3302;;suspendedserver;挂起服务器;Suspended Server -starlight;3303;;starlight;星光;Starlight -research-table;3304;871188;researchtable;研究台 🔬;Research Table 🔬 -shoulder-surfing-reloaded;3305;985499;shouldersurfing;越肩视角重制;Shoulder Surfing Reloaded -aqua-acrobatics;3306;;aquaacrobatics;水游技艺;Aqua Acrobatics -silents-mechanisms;3307;;silents_mechanisms;寂静机械;Silent Mechanisms -project-potman;3308;;proj_pot;背锅人计划;ProjectPotman -nbt-crafting;3309;;nbtcrafting;数据包NBT合并;Nbt Crafting -diregoo;3310;;diregoo;DireGoo; -ogdragon;3311;;ogdragon;OG龙+;OGDragon+ -sevtweaks;3312;;sevtweaks;SevTweaks; -journeymapstages;3313;;jmapstages;旅行地图阶段控制;JourneyMapStages -textile-backup;3314;;;Textile备份;Textile Backup -goopers;3315;;goopers;Goopers; -mob-drops;3316;;;自定义生物战利品;Mob Drops Your Way -;3317;;gtcefe;GTCE/BC能源拓展;Gregic Power -alexs-mobs;3318;1185939;alexsmobs;Alex的生物;Alex's Mobs -all-stackable;3319;;allstackable;可堆叠物品自定义;All Stackable -thermal-mj;3320;;thermal_mj;热力MJ支持;Thermal MJ -ctd-core;3321;;;CTD Core; -time-speed-mod;3322;;B3M;Minecraft地球自转/真实昼夜循环;Вращение Земли Майнкрафтская (Accurate day/night-cycles Mod) -;3323;1147849;devops;冒险岛;Maple Story -mineral-tracker;3324;;mineraltracker;Mineral Tracker; -carpet-extra;3325;;;Carpet拓展;carpet-extra -;3326;898591;ctrl;热加载合成表;CraftTweakerReload -viafabric;3327;;viafabric;ViaFabric; -double-slabs;3328;;doubleslabs;双重台阶;Double Slabs -tools-and-armor-bop;3329;;toolsandarmorbop;超多生物群系:旧工具和装甲;Tools And Armor - BOP -centralized-materials;3330;;centralizedmaterials;集中材料;Centralized Materials -server-sided-chunk-loader;3331;;server_side_chunk_loader;服务器端区块加载器;Server Sided Chunk Loader -fluid-cows;3332;;fluidcows;流体牛;Fluid cows -shulkerboxviewer;3333;;shulkerboxviewer;ShulkerBoxViewer; -gameinfo;3334;;gameinfo;游戏信息;GameInfo -arcaea;3335;;mukaimods;Arcaea韵律源点;Arcaea -advanced-tfc-tech;3336;;att;进阶群峦科技;Advanced TFC Tech -vanilla-enhanced;3337;;;原版增强;Vanilla Enhanced -satisforestry;3338;;Satisforestry;Satisforestry; -asmc;3339;;asmc;ASMC; -simple-generators;3340;;simplegenerators;简易发电机;Simple Generators -tfc-bonsai;3341;;;群峦盆栽;TFC Bonsai -tfc-drying-rack;3342;;tfc_drying_rack;群峦晾干架;TFC Drying Rack -;3343;1156129;mcbbswiki;MCBBS Wiki 模组;MCBBS Wiki Mod -lumen;3344;;lumen;流明;Lumen 🔥 -openblocks-elevator;3345;;elevatorid;开放式电梯;OpenBlocks Elevator -crafttweaker-integration;3346;;ctintegration;CrT集成;CraftTweaker Integration -spiders-2-0;3348;;;蜘蛛行为增强;Spiders 2.0 -hammer-metals;3350;;hammermetals;锤子材料;Hammer Metals -bunch-of-biomes;3351;;bunchofbiomes;生物群系扩充;Bunch Of Biomes! -;3352;;sword_shura,swordshura;修罗之剑;Sword:Shura -better-slimes;3353;890364;betterslimes;更多史莱姆;Better Slimes -windowlogging;3354;;windowlogging;玻璃板贴合;Windowlogging -the-time-stop-mod;3355;;vm;时间静止;The Time Stop Mod -;3356;1148699;coals_crafting,coals_crafting_lite;煤炭工艺;Coals Crafting -vanilla-hammers;3357;;vanillahammers;原版材质锤;Vanilla Hammers -imblocker;3358;935619;imblocker;输入法冲突修复;IMBlocker -hardcore-map-reset;3359;;;HardCore Map Reset; -tfc-aged-drinks;3360;;aged_drinks;群峦陈酿;TFC Aged Drinks -buildcraft-rf;3361;;;BuildCraft RF; -youtubers-lucky-blocks;3362;;ytluckyblocks;Youtuber幸运方块;Youtuber's Lucky Blocks -wandering-trapper;3363;;wandering_trapper;流浪猎人;Wandering Trapper -chocolate-fix;3364;;chocolate;Chocolate Fix; -thaumcraft-4-scrolling;3365;;tc4tweak,tcscrolling;Thaumcraft 4 Tweaks; -orderly;3366;996563;orderly;Orderly; -water-control-extreme;3367;;watercontrolextreme;Water Control Extreme; -variant16x;3368;;variant16x;Variant16x; -endremastered;3369;;endrem;末地:创世;End Remastered -;3370;838798;spedosketeleportationcommands;传送指令;Teleportation Commands -unique-crops;3371;910420;uniquecrops;独特作物;Unique Crops -yungs-api;3372;;yungsapi;YUNG's API; -dawn;3373;;dawn;Dawn API; -assembly-line-machines;3374;;assemblylinemachines;装配线;Assembly Line Machines -netherending-ores;3375;;netherendingores;Netherending Ores; -flex-fov;3376;;flexfov;扭曲视野;Flex FOV -hooked;3377;;hooked;抓钩;Hooked -createtweaker;3378;;createtweaker;CreateTweaker; -iTorch;3379;;itorch;iTorch; -;3380;;quantummeteorology;量子气象学;QuantumMeteorology -gullivern;3381;;gulliver;Gullivern; -nbt-manipulator;3382;;;NBT Manipulator; -netherending-ores-configs;3383;;;Netherending Ores - Configs; -;3384;;undiedtale;不死传说;undiedtale -sulfur-and-potassium-make-more-gunpowder;3385;;sulfurpotassiummod;Sulfur And Potassium - More Gunpowder; -statues;3386;1119703;statues;雕像;Statues -advanced-mining-dimension;3387;1157631;mining_dimension;先进的采矿维度;Advanced Mining Dimension -time-travel-mod;3388;;timetravelmod;时间旅行;Time Travel Mod -backslotaddon;3389;;backslotaddon;背用武器拓展;BackSlotAddon -optifabric-1-8-9;3390;;optifabric;OptiLegacy; -;3391;;fabric;Legacy-Fabric; -gt6-ore-helper;3392;;gt6orehelper;GT6矿石助手;GT6 Ore Helper -applied-integrations;3393;;appliedintegrations;应用集成;Applied Integrations -;3394;;noitemrest;不剩魔法;NoItemRest -inventory-hud-forge;3395;1116793;InventoryHUD;物品栏HUD+;Inventory HUD+ -prehistoric-flora;3396;;lepidodendron;Prehistoric Flora; -langsplit;3397;;langsplit;LangSplit; -legacy-fabric-api;3398;;fabric;Legacy Fabric-Api; -krypton;3399;;krypton;氪;Krypton -mana-gear;3400;;;Mana Gear; -not-enough-enchantments;3401;;nee;Not Enough Enchantments; -bon-appetit-forge;3402;;bonappetit;祝您好胃口;Bon Appetit -;3403;1150397;gugu-utils;咕咕工具;GuGu Utils -scuba-gear;3404;;scuba_gear;潜水装备;Scuba Gear -avatar-mod-2-out-of-the-iceberg;3405;;avatarmod;降世神通:突破冰山;Avatar Mod 2: Out of the Iceberg -;3406;1192876;hydrogen;氢;Hydrogen -lazydfu;3407;;lazydfu;LazyDFU; -;3408;;tic-tacs;井字棋;tic-tacs -ridable-ender-pearls;3409;1126706;;可骑乘末影珍珠;Ridable Ender Pearls -gildedarmor;3410;1126586;gildedarmor;镀金盔甲;GildedArmor -deadly-book;3411;;deadlybook;致命书本;Deadly Book -speedy-hoppers;3412;;speedyhoppers;极速漏斗;Speedy Hoppers -indium;3413;;indium;铟;Indium -;3414;;cadmium;镉;Cadmium -go-fish;3416;;;Go Fish; -more-player-models;3417;;moreplayermodels;更多玩家模型;More Player Models -loot-overhaul;3418;;;Loot Overhaul; -miners-helmet;3419;;mining_helmet;矿工头盔;Miner's Helmet -lightweight-blood-mechanics;3420;;lbm;Lightweight Blood Mechanics; -kbackup-fabric;3421;;;KBackup-Fabric; -smooth-boot;3422;;smoothboot;流畅加载;Smooth Boot -;3423;;;Minecraft Thread Pool Agent; -netherite-plus-mod;3424;;netherite_plus;下界合金拓展;Netherite Plus Mod -chunkpregenerator;3425;1015490;chunkpregen;区块预生成器;Chunk-Pregenerator -antighost;3426;;antighost;方块同步修复;AntiGhost -;;;abyssaltweaker;深渊修改器;AbyssalTweaker -backslot;3428;;backslot;背用武器;BackSlot -minecraftcapes-mod;3429;;;MinecraftCapes Mod; -spartan-weaponry-arcana;3431;;spartanweaponryarcana;斯巴达奥法;SpartanWeaponryArcana -;;;xzhlpe;原初修真属性重置;XiuZhenHelper -greek-fantasy;3433;1143037;greekfantasy;希腊幻想;Greek Fantasy -architectury-forge;3434;;architectury;Architectury API; -;3435;825592;miac;MI反作弊;MIAntiCheat -fantastic-beasts-and-how-to-eat-them-butchercraft;3436;;butchercraft;Butchercraft/Fantastic Beasts and How to Eat Them; -createaddition;3437;;createaddition;Create Crafts & Additions; -smithee;3438;;smithee;Smithee; -dragon-egg-replicator;3439;;dd;龙蛋复制器;Dragon Egg Replicator -assassins-creed-blocklegend;3440;1168306;acbl;刺客信条:方块传奇;Assassin's Creed Blocklegend -elemental-ingots-ei;3441;;elemental_ingots;元素锭;Elemental Ingots -solargeneration;3442;;solargeneration;太阳能发电机;Solar Generation -enchant-with-mob;3443;;enchantwithmob;Enchant With Mob; -;3444;308340;gibby_pun;The Ultimate Pun Mod!; -worldstatecheckpoints;3445;;WorldStateCheckpoints;WorldStateCheckpoints; -dungeons-plus;3446;;dungeons_plus;Dungeons Plus; -liquid-enchanting;3447;844632;liquidenchanting;药水附魔;Liquid Enchanting -shutup-experimental-settings;3448;;shutupexperimentalsettings;禁用实验性设置警告;Shutup Experimental Settings! -datafixerslayer;3449;;datafixerslayer;DataFixerSlayer; -hexcraft;3450;;HexCraft,hexcraft;HEXCraft; -police-mod;3451;;policemod;警察;Police Mod -enhanced-celestials;3452;;;月亮事件;Enhanced Celestials -resourceful-bees;3453;;resourcefulbees;缤纷蜜蜂;Resourceful Bees -held-item-info;3454;977835;held-item-info;手持物品信息;Held Item Info -cleancut;3455;;cleancut;干净利落;CleanCut -plus-tweaks;3456;;plustweaks;Plus Tweaks; -global-gamerules;3457;;globalgamerules;全局游戏规则;Global GameRules -;3458;476294;mineshot;高清截图;Mineshot -save-my-stronghold-fabric;3459;;savemystronghold;Save My Stronghold!; -physics-mod;3460;;physicsmod;真实物理;Physics mod -bluemap;3461;;;Bluemap; -dregora;3462;;dregora;Dregora; -k4lib;3463;;k4lib;K4Lib; -deadly-end-phantoms;3464;;deadlyendphantoms;Deadly End Phantoms; -spice-of-life-potato-edition;3465;;solpotato;生活调味料:马铃薯版;Spice of Life: Potato Edition -easiervillagertrading;3466;;easiervillagertrading;简单村民交易;EasierVillagerTrading -wwta;3467;;wwta;When Was That Again; -ars-nouveau;3468;;ars_nouveau;新生魔艺;Ars Nouveau -eidolon;3469;;eidolon;幻梦;Eidolon -rats-ratlantis;3470;;ratlantis;老鼠:鼠西洲;Rats: Ratlantis -wthit;3471;1200908;wthit;What The Hell Is That; -modern-industrialization;3472;;modern_industrialization;现代工业化;Modern Industrialization -chunk-pregenerator-fabric;3473;1167231;chunkpregen;区块预生成器(Fabric);Fabric Chunk Pregenerator -jumploader;3474;;jumploader;Jumploader; -unloader;3475;;unloader;Unloader; -better-animal-models;3476;;betteranimals;更真实的动物;Better animal models -;3477;;minelp;我的小马驹:友谊就是合成;Mine Little Pony: Friendship is Crafting -druidcraft;3479;1162793;druidcraft;德鲁伊工艺;Druidcraft -berry-good;3480;;berry_good;Berry Good; -savage-and-ravage;3481;;savageandravage;残暴与掠夺;Savage & Ravage -jade;3482;;jade;玉 🔍;Jade 🔍 -somnia;3483;;somnia;梦醒时分;Somnia Awoken -industrial-reborn;3484;;indreb;Industrial Reborn; -mo-structures;3485;;mostructures;更多自然生成结构;Mo' Structures -wallpapercraft-a-fresh-roll;3486;;wallpapercraft;墙纸创造;Wallpapercraft - A Fresh Roll -clear-despawn;3487;;cleardespawn;Clear Despawn (Forge); -;3488;1167509;moddd;Overlord in Minecraft; -;3489;;bedrockworkshop;基岩工坊;Bedrock Workshop -unionlib;3490;;unionlib;UnionLib; -botany-trees;3491;;botanytrees;Botany Trees; -better-third-person;3492;;betterthirdperson;Better Third Person; -survive;3493;;survive;生存要素;Survive -wallpapercraft-a-fresh-roll-stairs;3494;;wallpapercraftstairs;墙纸创造:楼梯;Wallpapercraft - A Fresh Roll (Stairs!) -wallpapercraft-a-fresh-roll-slabs;3495;;wallpapercraftslabs;墙纸创造:台阶;Wallpapercraft - A Fresh Roll (Slabs!) -wallpapercraft-a-fresh-roll-walls;3496;;wallpapercraftwalls;墙纸创造:围墙;Wallpapercraft - A Fresh Roll (Walls!) -compact-crafting;3497;;compactcrafting;Compact Crafting; -assembly-lines;3498;;assemblyline;装配线;Assembly Lines -botany-pots;3499;;botanypots;植物盆栽;Botany Pots -callable-horses;3500;;;Callable Horses; -;3501;;;Kibble Patcher; -ultimate-solar-panels;3502;;ultimatesolarpanels;Ultimate Solar Panels; -slight-gui-modifications;3503;1148951;slight-gui-modifications;界面微调;Slight Gui Modifications -elemental-craft;3504;;elementalcraft;元素工艺;Elemental Craft -just-another-rotten-flesh-to-leather-mod;3505;;jrftl;腐肉换皮革;Just Another Rotten Flesh to Leather Mod -spatial-harvesters-forge;3506;;spatialharvesters;Spatial Harvesters; -emotecraft;3507;;emotecraft;表情工艺;Emotecraft -pattysmorestuff;3508;;pattysmorestuff;PattysMoreStuff; -hats;3509;;hats;帽子;Hats -smoother-bedrock;3510;;smootherbedrock;平滑基岩层;Smoother Bedrock -;3511;1188136;c2me;C^2M 引擎;C^2M-Engine -datapack-anvil;3512;;;DataPack Anvil; -nuclear-science;3513;;nuclearscience;核科学;Nuclear Science -glaretorch;3514;;glaretorch;强光火把;Glare Torch -mrcrayfishs-jumping-castle-mod;3515;;cjcm;MrCrayfish的充气城堡;MrCrayfish's Jumping Castle -exposer;3516;;exposer;Exposer; -to-the-bat-poles;3517;;adpoles;"To the Bat Poles!"; -cc-restitched;3518;;;CC: Restitched; -wearables;3519;;wearables;可穿戴设备;Wearables -;3520;1172580;advancedfurnace;先进熔炉;Advanced Furnace -;3521;1124743;arkitems;明日方舟物品;ArkItems -better-weather;3522;;betterweather;更好的天气;Better Weather -ultimate-car-mod;3523;938477;car;终极汽车;Ultimate Car Mod -craft-time;3524;1159911;timecraft;耗时合成;Craft Takes Time -betterf3;3525;;;更好的F3;Better F3 -;3526;['1168625'];ArknightsBlade,arknightsblade;方舟拔刀;ArknightsBlade -the-abyss-chapter-ii;3527;;theabyss;深渊:第二章;The Abyss: Chapter II -mapper-base;3528;;mapperbase;Mapper Base; -bedrockify;3529;;bedrockify;BedrockIfy; -;3530;;minecraft_tag;Minecraft-凝胶测试轨道;Minecraft Tag-Gel test track -rftools-power;3531;;rftoolspower;RF工具:能量;RFTools Power -pipez;3532;;pipez;Pipez; -coins-je;3533;;coins;Coins JE; -;3534;;tlm;最后的时刻;The Last Mod -beenfo;3535;;beenfo;Beenfo; -chest-building-blocks;3536;;chestblocks;Chest Building Blocks; -zycraft;3537;;zycraft;ZYCraft; -quitconfirm;3538;1116784;quitconfirm;退出前确认;QuitConfirm -ruined-equipment;3539;;ruined_equipment;Ruined Equipment; -clickthrough;3540;;clickthrough;ClickThrough; -dynamic-sound-filters;3541;;dynamicsoundfilters;动态音效过滤;Dynamic Sound Filters -binniepatcher;3542;;BinniePatcher;BinniePatcher; -subterranean-wilderness;3543;;subwild;Subterranean Wilderness; -;;;dynamic;科能工程1;Technical Engineering -construction-wand;3545;;constructionwand;建筑之杖;Construction Wand -squeedometer;3546;;Squeedometer,squeedometer;Squeedometer; -forgery;3547;;fabrication;Forgery; -fabrication;3548;;fabrication;Fabrication; -mcdj;3549;;mcdj;MCDJ; -boost-boots;3550;;boostboots;Boost Boots; -better-sodium-video-settings-button;3551;;bettersodiumvideosettingsbutton;更好的钠视频设置按钮;Better Sodium Video Settings Button -;3552;;difficult_minecraft;困难的Minecraft;Difficult Minecraft -artisan-worktables-1-16;3553;;artisanworktables;工匠之作2 / 工匠工作台2;Artisan Worktables 2 / Artisan Worktables 1.16 -thermal-solars;3554;;thermalsolars;Thermal Solars; -supplementaries;3555;;supplementaries;Supplementaries; -more-fuels-mod;3556;;morefuelsmod;More Fuels Mod; -;3557;665738;flammpfeil.slashblade.exsa;更多超强SA;SlashBlade-ExSA -pointless-tech-collective;3558;;pointless_tech_collective;Pointless Tech Collective; -revampedwolf;3559;;revampedwolf;RevampedWolf; -bedrock-b-gone;3560;;betterbedrock;Bedrock B Gone; -;3561;;last_minute;最后时刻;Lastminute -elemental-creepers;3562;;elementalcreepers;元素爬行者;Больше Криперов -gymcraft;3563;;gymcraft;GymCraft; -infernal-expansion;3564;;infernalexp;Infernal Expansion; -;3565;;ng;更多装备与工具; -;3566;1176542;Manymonsters;独立:更多妖怪;Manymonsters -configurable-mob-potion-effects;3567;;configurablemobpotioneffects;怪物药水效果自定义;Configurable Mob Potion Effects -sapience;3568;;;Sapience; -netherite-nuggets-fabric;3569;;netherite_nugget;下界合金粒;Netherite Nuggets -eroding-stone-entities;3570;;erodingstoneentities;Eroding Stone Entities; -direbats-forge;3571;;direbats;Direbats; -advanced-electric-tools;3572;;advancedelectrictools;高级电动工具;Advanced Electric Tools -;3573;['1202132'];slashblade.housamo;犬仕双刃;Slashblade-Housamo -backpacker;3574;;backpacker;Backpacker; -;3575;;improvedwolves;改进的狼;Improved Wolves -ynet;3576;;ynet;YNet; -simple-drawers;3577;;simpledrawers;简单的抽屉;Simple Drawers -charmonium;3578;;charmonium;Charmonium; -xnicex;3579;;nice;NICE; -krate;3580;;krate;Krate; -chickensshed;3581;;chickensshed;ChickensShed; -chickenshed;3582;;ChickenShed;ChickenShed; -expanded-storage-fabric;3583;;expandedstorage;扩展存储;Expanded Storage -project-mmo;3584;;pmmo;Project MMO; -abnormals-delight;3585;;abnormals_delight;Abnormals Delight; -jojos-bizarre-survival;3586;;jojomod;JoJo's Bizarre Survival; -;3587;;PlayerContainerFix;背包合成修复;Gambiarra -somnus;3588;;somnus;Somnus API; -lost-trinkets;3589;;losttrinkets;Lost Trinkets; -lookingglass;3590;;LookingGlass;LookingGlass; -environmental;3591;;environmental;自然环境;Environmental -;3592;;slashblade.qian;魔刀千刃;Qian The mighty Blade -golden-airport-pack-immersive-vehicles-content;3593;;;Golden Airport Pack; -hole-filler-mod;3595;;hole_filler_mod;洞口填充器;Hole Filler -;3596;;gdzb;更多装备;Moreequipment -simply-tea;3597;699389;simplytea;简单的茶!;Simply Tea! -buttermilk;3598;;buttermilk;Buttermilk; -diet;3599;;diet;饮食;Diet -brazilian-fields;3600;;brazilian_fields;巴西风情;Brazilian Fields -ae2-extras;3601;;ae2extras;AE2附加;AE2 Extras -animalium;3602;;animalium;动物;Animalium -mob-origins;3603;;moborigins;生物起源;Mob Origins -better-default-biomes;3604;;betterdefaultbiomes;更好的默认生物群系;Better Default Biomes -kaimyentity;3605;1170874;kaimyentity;KAI我的实体;KAIMyEntity -tablechair;3606;;tablechair;桌椅;TableChair -when-dungeons-arise;3607;;dungeons_arise;地牢浮现之时;When Dungeons Arise -animal-feeding-trough;3608;;animal_feeding_trough;动物喂养槽;Animal Feeding Trough -wiki-zoomer;3609;;wikizoomer;Wiki Zoomer; -personality;3610;;personality;Personality; -allurement;3611;;allurement;Allurement; -dwarf-miner-totem;3612;;dwarf_miner;矮人矿工;Dwarf Miner Totem -yungs-better-portals;3613;;betterportals;YUNG的传送门机制重构;YUNG's Better Portals -german-road-signs-mod;3614;;schildermod;德国交通标志;German Road Signs Mod -iguana-in-a-blanket;3615;;iguana-blanket;真实调整;Iguana in a Blanket -anthill-inside;3616;;anthillinside;蚂蚁物流;Anthill Inside -nei-integration;3617;;neiintegration;NEI Integration; -uncrafting-grinder;3618;;uncraftingtable;分解磨床;Uncrafting Grinder -emendatus-enigmatica;3619;;emendatusenigmatica;Emendatus Enigmatica; -;3620;;slashblade.kitsunekamuya;拔刀剑附属:御神刀「神狐」;SlashBlade-KitsuneKamuya -;3621;;slashblade.shinkuofuda;拔刀剑附属:炼狱刀「真红」;Slashblade-ShinkuOfuda -;3622;;ryuichimonji;龙一文字;RyuIchimonji -jousting;3623;;jousting;马术;Jousting -bamboo-blocks;3624;;bamboo_blocks;Bamboo Blocks; -scape-and-run-parasites;3625;;srparasites;逃逸:寄生虫;Scape and Run: Parasites -just-enough-drags;3626;1179845;justenoughdrags;更多JEI拖拽;Just Enough Drags -exnihilo-automation;3627;;exnihiloauto;无中生有:自动化;Exnihilo: Automation -world-handler-command-gui;3628;;worldhandler;世界管理器:图形交互;World Handler - Command GUI -entityculling;3629;;entityculling;实体渲染机制优化;Entity Culling Fabric/Forge -;3630;557276;halocraft;光环;HaloCraft mod -tea-kettle;3631;;tea_kettle;茶壶;Tea Kettle -enhanced-block-entities;3632;;enhancedblockentities;方块实体优化;Enhanced Block Entities -gun-customization-infinity;3633;;guncus;Gun Customization:Infinity; -dungeons-gear;3634;;dungeons_gear;地下城装备;Dungeons Gear -integrated-nbt;3635;;integratednbt;Integrated NBT; -pillagers-plus;3636;;pillagertrust;Pillagers Plus; -;3637;1180817;PotionMosaic,potionmosaic_;药水镶嵌宝石;PotionMosaic -;3638;1180973;PotionEnchanting;趣味药水附魔;PotionEnchanting -;3639;1181930;StubbornMonster;怪物的倔强;StubbornMonster -abundance;3640;;abundance;Abundance; -;3641;1177375;workbenchfc;开局三子;WorkbenchFC -;3642;1180743;ultracraft;奥特曼工艺;UltraCraft -just-enough-calculation;3643;561503;jecalculation;Just Enough Calculation; -mythicbotany;3644;1190745;mythicbotany;神话植物学;MythicBotany -improved-mobs;3645;;improvedmobs;怪物增强;Improved Mobs -limitless;3646;1118079;;无上限附魔;Limitless -vpn-blocker;3647;;vpnblocker;禁用VPN;VPN Blocker -premium-wood;3648;;premium_wood;Premium Wood; -tenshilib;3649;;;Tenshilib; -randomportals;3650;;randomportals;随意传送门;RandomPortals -configured;3651;;configured;配置界面;Configured -;3652;1049760;siwangyinyve;专业团队music;siwangyinyve -jellyfishing;3653;;jellyfishing;抓水母;Jellyfishing -accurate-block-placement;3654;;accurateblockplacement;Accurate Block Placement; -pro-placer;3655;;proplacer;放置专家;Pro Placer -farmers-delight-compats;3656;;farmersdelightintegrations;Farmer's Delight Compats; -farmers-tea;3657;;;农夫的茶;Farmer's Tea -farmers-delight-integration;3658;;farmersdelightintegration;Farmer's Delight Integration; -magical-psi-redux;3659;;magipsi;Magical Psi: Redux; -anvil-fix;3660;;anvil_fix;铁砧修复;Anvil Fix -no-increasing-repair-cost;3661;;noincreasingrepaircost;No Increasing Repair Cost; -wool-temples;3662;;wooltemples;羊毛神殿;Wool Temples -exp-bottling;3663;;exp_bottling;经验装瓶;EXP Bottling -buildersaddition;3664;;buildersaddition;Builders Crafts & Additions; -gt-remastered;3665;;gtr;格雷科技重制版;GT: Remastered -tips;3666;;tips;提示;Tips -Interactio;3667;;interactio;Interactio; -advancement-book;3668;;advancementbook;进度之书;Advancement Book -drawers-tooltip;3669;;drawerstooltip;抽屉提示;Drawers Tooltip -aether;3670;;;天境:重生;The Aether Reborn -;3671;;extended;拓展;Extended -;3672;1120123;gregfood;格雷的食物;GregFood -more-jellyfish;3673;;more_jellyfish;更多水母;More Jellyfish -easy-ladders;3674;;;Easy Ladders; -beta-dannys-expansion;3675;;dannys_expansion;Danny's Expansion; -inventory-tweaks-renewed;3676;;invtweaks;Inventory Tweaks Renewed; -;3677;;;Advanced Runtime resource packs; -tougher-glass-forge;3678;;tougherglass;Tougher Glass; -differentiate;3679;;;Differentiate; -cookie-core-fabric;3680;;;Cookie Core; -image-world-generator;3681;;;Image World Generator; -inductive-logistics;3682;;indlog;集成物流;Inductive Logistics -;3683;;crystal_two;晶体2; -automatic-path;3684;;;Automatic Path; -;3685;1183634;useful_coals_2;实用煤炭2;Useful Coals 2 -morevanillalib;3686;;morevanillalib;MoreVanillaLib; -vanilla-excavators;3687;;vanillaexcavators;Vanilla Excavators; -;3688;;dynagear;DynaGear; -morevanillatools;3689;;morevanillatools;更多原版工具;MoreVanillaTools -colorful-health-bar;3690;;colorfulhealthbar;Colorful Health bar; -tipline;3691;;tipline;TipLine; -ultimate-plane-mod;3692;;plane;终极飞机;Ultimate Plane Mod -simple-voice-chat;3693;1232171;voicechat;简单的语音聊天;Simple Voice Chat -not-enough-milk;3694;;notenoughmilk;Not Enough Milk; -ewewukeks-musket-mod;3695;;musketmod;ewewukek的火枪模组;ewewukek's Musket mod -irisshaders;3697;1161271;iris;Iris Shaders; -;3698;;dimthread;世界多线程化;DimensionalThreading -chambers;3699;;chambers;处理仓;Chambers -;3700;;nokiamod;诺基亚模组;Nokia Mod -sodium-extra;3701;;sodium-extra;钠 · 扩展;Sodium Extra -grind-enchantments;3702;;grindenchantments;砂轮增强;Grind Enchantments -voice-chat;3703;;voicechat;语音聊天;Voice Chat -xnet-gases;3705;;xnetgases;XNet Gases; -filing-cabinets-refurbished;3706;;filcabref;Filing Cabinets Refurbished; -;;;magic_maid;魔法女仆教堂遗迹;Magic Maid The Church Ruins -dropz;3708;;;Dropz; -figura;3709;;figura;Figura; -;3710;1186201;phstorage;容积储存;Capacity Storage -autopilot;3711;;autopilot;Autopilot; -applied-energistics-2-wireless-terminals;3712;;ae2wtlib;AE2无线终端;Applied Energistics 2 Wireless Terminals -appliedenergisticstweaker;3713;;appliedenergisticstweaker;AppliedEnergisticsTweaker; -sleeping-bags;3714;;sleeping_bags;睡袋;Sleeping Bags -mass-inscriber;3715;;mass-inscriber;Mass Inscriber; -;3716;;secureexplosion;爆炸保护;SecureExplosion -random-title;3717;980991;randomtitle;随机标题;Random Title -astikorcarts;3718;;astikorcarts;AstikorCarts; -invsync-fabric;3719;;invsync;背包同步;InvSync -jea;3720;;jea;Just Enough Advancements; -et-futurum-requiem;3721;;etfuturum;Et Futurum Requiem; -better-op;3722;;better-op;更好的OP;Better Op -fastworkbench-minus-replacement;3723;;;FastWorkbench Minus Replacement; -crimson-compass;3724;;crimsoncompass;绯红指南针;Crimson Compass -tinkers-construct;3725;661201;tconstruct;匠魂3;Tinkers' Construct 3 -ryoramas-terraria-mod;3726;;trewrite;TerrariaMod; -steves-workshop;3727;;StevesWorkshop;Steve's Workshop; -upgraded-ender-chests;3728;;upgradedechests;高级末影箱;Upgraded Ender Chests -ydm-ygo-dueling-mod-ii;3729;;ydm;YGO Dueling Mod II; -versioner;3730;;versioner;整合包版本工具;Versioner -;3731;;menshi;饭;Meshi -engineers-workshop-reborn;3732;;engineersworkshop;Engineers Workshop Reborn; -;3733;;more_coals;煤炭工艺-更多煤炭;More Coals -;3734;;;沉浸传送门服务端插件;Immersive Cursedness -;;;;刺客信条:方块传奇API;Assassin's Creed Blocklegend API -crimson-xp-charm;3736;;crimsonxp;经验护符;Crimson XP -locatebiome;3737;;locatebiome;LocateBiome; -enderman-evolution;3738;;endermanevo;Enderman Evolution; -sophisticated-backpacks;3739;;sophisticatedbackpacks;精妙背包;Sophisticated Backpacks -age-of-exile;3740;;;Age of Exile; -whoosh;3741;;whoosh;Whoosh; -gregtech-intergalactical;3742;;gti;泛银河系格雷科技;GregTech Intergalactical -catalogue;3743;;catalogue;模组目录;Catalogue -libblockattributes;3744;;libblockattributes;Lib Block Attributes; -balance-of-exile;3745;;;Balance of Exile; -;3746;;;Dungeons of Exile; -more-food-addon-bedrock;3747;;;More Food Addon; -pe-superheroes-mod;3748;;;SuperHeroes Mod; -necromancy;3749;;necromancy;Necromancy; -library-of-exile;3750;;;Library of Exile; -;3751;;;Mite-打破一切; -variegated;3752;;variegated;Variegated; -chest-cavity;3753;;chestcavity;Chest Cavity; -extended-note-block;3754;;noteblockne;音符盒扩展;Extended Noteblocks -hbms-nuclear-tech-mod-reloaded;3755;;hbm;HBM的核科技重制版;Hbm's Nuclear Tech Mod Reloaded -loading-timer;3756;;lt;加载时长显示;Loading Timer -ocrocketry;3757;;ocrocketry;OCRocketry; -chime-fabric;3758;;chime;Chime; -witherite;3759;;witherite;凋灵合金;Witherite -mermod-fabric;3760;;mermod;Mermod; -astromine-core;3761;;astromine;天体矿工:核心;Astromine: Core -dungeondq;3762;;dungeondq;DungeonDQ; -dynamic-trees-integrated-dynamics;3763;;dynamictreesintegrateddynamics;动态的树 - 集成动力支持;Dynamic Trees - Integrated Dynamics -skyblock-builder;3764;;skyblockbuilder;空岛建立者;Skyblock Builder -antiportals;3765;;antiportals;AntiPortals; -trash-cans;3766;;trashcans;垃圾桶;Trash Cans -mattdahepic-core;3767;;mdecore;MattDahEpic Core; -mob-farm-helpers-forge;3768;;mobfarmutilities;刷怪塔小帮手;Mob Farm Helpers -metal-bushes;3769;;metalbushesmod;金属灌木;Metal Bushes -;3770;1181984;no cheating;禁止作弊;No cheating -;3771;;;模板包; -the-vanilla-experience;3772;;thevanillaexperience;The Vanilla Experience; -flower-seeds;3773;;flowerseeds;Flower Seeds; -;3774;;;Impact mod; -;3775;;;Straight Line Minecraft; -astemirs-forest-craft;3777;;forestcraft;Astemir's Forest Craft; -astromine-foundations;3778;;astromine;天体矿工:基础;Astromine: Foundations -create-stuff-additions;3779;;create_stuff_additions;机械动力:物品附加;Create : Stuff Additions -slab-machines;3780;;slabmachines;台阶型设备;Slab Machines -more-create-stuffs;3781;;morecreatestuffs;更多机械动力物品;More Create Stuffs -rsinfinitybooster;3782;;rsinfinitybooster;RSInfinityBooster; -cuneiform;3783;;;Cuneiform; -terraincognita;3784;;terraincognita;Terra Incognita: The Unknown Land; -cloth-api;3785;;;Cloth API; -ingameime;3786;1158421;ingameime;游戏内输入法;IngameIME -yungs-better-strongholds;3787;;betterstrongholds;YUNG的要塞重制;YUNG's Better Strongholds -mojangdark;3788;;mojangdark;暗色加载界面;MojangDark -astromine-technologies;3789;;astromine;天体矿工:科技;Astromine: Technologies -astromine-transportations;3790;;astromine;天体矿工:运输;Astromine: Transportaions -azuredooms-chunk-loader;3791;;chunk;AzureDoom's Chunk Loader; -creeper-spores;3792;;creeperspores;苦力怕孢子;Creeper Spores -more-dragon-eggs;3793;;;更多的龙蛋;More Dragon Eggs -more-red;3794;;More_Red;更多红石;More Red -;3795;;;Herobrine; -craftable-items;3797;1166161;;Un-Craftable; -ex-nihilo-sequentia-mekanism-addon;3798;;exnihilomekanism;无中生有:传承 - 通用机械扩展;Ex Nihilo: Sequentia - Mekanism Addon -panorama;3799;;panorama;全景图;Panorama -bgcore;3800;;bgcore;BGCore; -induction-charger;3801;;InductionCharger;Induction Charger; -tiered;3802;;tiered;Tiered; -c-o-m-b-a-t;3803;;combat;Concept Of Magic Battle And Technology; -burden-of-time;3804;;burdenoftime;Burden Of Time; -gamemenumodoption;3805;;gamemenumodoption;游戏菜单模组设定;Game Menu Mod Option -game-menu-remove-gfarb;3806;;gamemenuremovegfarb;游戏菜单移除GFARB;Game Menu Remove GFARB -randomdeathmessage;3807;;randomdeathmessage;随机死亡消息;RandomDeathMessage -ex-nihilo-sequentia-ae2-addon;3808;;exnihiloae;无中生有:传承 - 应用能源2扩展;Ex Nihilo: Sequentia - AE2 Addon -sweetmagic;3809;;sweetmagic;甜蜜与魔法;SweetMagic -astromine-discoveries;3810;;astromine;天体矿工:探索;Astromine: Discoveries -azuredooms-angel-ring;3811;;doomangelring;AzureDoom的天使指环;AzureDooms Angel Ring -togglelib;3812;1189685;togglelib;列车手柄库;ToggleLib -regrowth;3813;;;再生;Regrowth -mobs-main-menu;3814;;mobsmainmenu;Mobs Main Menu; -chaos-awakens;3816;;chaosawakens;混沌觉醒;Chaos Awakens -hot-or-not;3817;;hotornot;Hot or Not; -playerpig;3818;;ppig;PlayerPig; -tumble-dryer;3819;;tumble_dryer;Tumble Dryer; -cat-jammies;3820;;catjammies;Cat Jammies; -rhino;3821;;rhino;犀牛;Rhino -fastsuite;3822;;fastsuite;配方性能优化;FastSuite -twerkitmeal;3823;;twerkitmeal;TwerkItMeal; -thermal-foundation;3824;;thermal;热力系列;Thermal Series -piggybanks;3825;;piggybanks;存钱罐;Piggybanks -in-control;3826;;incontrol;In Control!; -mystical-agriculture-refabricated;3827;;mysticalagriculture;神秘农业:重制版;Mystical Agriculture: Refabricated -pedestals;3828;;pedestals;Pedestals; -aerial-affinity;3829;;aerialaffinity;Aerial Affinity; -communism-life-and-art;3830;;communism_lifeandart,communism_life_and_art_backtrack;共产主义:生活与艺术;Communism:Life and Art -project-war-dance;3831;1176754;wardance;战舞计划;Project: War Dance -faster-ladder-climbing;3832;;;快速爬梯;Faster Ladder Climbing -infinitymending;3833;;;无限+经验修补;InfinityMending -better-than-mending;3834;;;更好的经验修补;Better Than Mending -elenai-dodge-2;3835;;elenaidodge2;Elenai Dodge 2; -taterzens;3837;;taterzens;Taterzens; -dragons-survival;3838;;dragonsurvival;龙之生存;Dragons Survival -;3839;;modmenu;Legacy Mod Menu; -no-lan-cheats;3840;;nolancheats;禁用局域网作弊;No LAN Cheats -dashloader;3841;;dashloader;疾速加载;DashLoader -caveworld-2;3842;;caveworld;洞穴世界;Caveworld 2 -break-progress;3844;;;破坏进度;Break Progress -item-model-fix;3845;;itemmodelfix;物品模型修复;Item Model Fix -;;;useful_coals_2_integrations;实用煤炭2联动;Useful coals 2 Integrations -additional-pipes-for-buildcraft;3847;;additionalpipes;附加管道;Additional Pipes for Buildcraft -sneedasm;3848;;loliasm;SneedASM; -rftools-utility;3849;;rftoolsutility;RF工具:实用设备;RFTools Utility -ctm-fabric;3850;;;连接材质Fabric版;ConnectedTexturesMod for Fabric -whats-that-slot;3851;;wts;What's That Slot?; -pmmo-and-nbt-compat;3852;;dicemcpmmonbt;PMMO and NBT Compat; -techstacks-heavy-machinery-mod;3853;;machinemod;TechStack's Heavy Machinery Mod; -enhanced-mushrooms;3854;;enhanced_mushrooms;蘑菇增强;Enhanced Mushrooms -versatile-portals;3855;;versatileportals;Versatile Portals; -spawn-egg-recipes;3856;;;刷怪蛋配方注册;Spawn Egg Recipes -configurable-extra-mob-drops;3857;;alllootdrops;可配置的额外怪物掉落;Configurable Extra Mob Drops -enhanced-mob-spawners;3858;;spawnermod;刷怪笼增强;Enhanced Mob Spawners -;3859;;chair;原版椅子;Vanilla Chair -autorun;3860;;simpleautorun;AutoRun; -animania-farm;3861;;animania;动物谷:农场;Animania Farm -animania-extra;3862;;animania;动物谷:额外动物;Animania Extra Animals -animania-cats-dogs;3863;;animania;动物谷:猫猫狗狗;Animania Cats & Dogs -better-foliage-renewed;3864;;betterfoliage;更好的树叶重制版;Better Foliage Renewed -block-swap;3865;;;Block Swap; -basalt-walker;3866;;basalt_walker;玄武岩行者;Basalt Walker -;3867;;doubancraft;豆瓣工艺;DouBan Craft -endless-ocean-adventures;3868;;endlessoceans;无尽海洋:冒险;Endless Ocean: Adventures -bpm;3869;;bpm;BPM; -stone-circles;3870;;magic_stone_circles;Stone Circles; -phase-potion;3871;;phase;相位药水;Phase Potion -marblegates-exotic-enchantment-flowing-agony;3872;1198067;flowingagony;白门的奇异附魔:苦痛长河;MarbleGate's Exotic Enchantment: Flowing Agony -measurements;3873;;measurements;Measurements; -visible-armor-slots;3874;581039;visiblearmorslots,visiblearmorslotslegacy;可见装备槽;Visible Armor Slots -moon-and-space-dimensions-fabric;3875;;agape_space;Moon and Space Dimensions; -;3876;;totem;复活图腾;Totem of Resurrection -winged;3877;;;Winged; -;3878;;slide_show;幻灯片;Slide Show -mob-stages;3879;854619;mobstages;阶段性生物;Mob Stages -refooled;3880;;refooled;Refooled; -;3881;;bnb;更好的下界:Beta版;BetterNether Beta -fabric-seasons;3882;;seasons;Fabric Seasons; -dehydration;3883;;dehydration;脱水;Dehydration -easy-villagers;3884;;easy_villagers;村民物品化/简单村民;Easy Villagers -largebar;3885;;gud_largebar;LargeBar; -tis-3d;3886;;tis3d;TIS-3D; -entity-nan-health-fix;3887;;;Entity NaN Health Fix; -ferritecore;3888;;ferritecore;铁氧体磁芯;FerriteCore -thaumcraft-research-patcher;3889;;tcresearchpatcher;Thaumcraft Research Patcher; -masterful-machinery;3890;1245140;masterfulmachinery;Masterful Machinery; -minecraft-earth-mod;3891;;minecraft_earth_mod;Earth Mobs Mod; -scotts-essential;3892;1151637;scessential;Scott's Essential; -drawerfps;3893;;drawerfps;储物抽屉渲染配置;DrawerFPS -;3894;1055797;touhou_craft;東方幻想鄉;TouhouCraft -cursed-earth;3895;;cursedearth;Cursed Earth; -sll;3896;;villagers;逆向交易;sɹǝƃɐllᴉΛ -lagmeter;3897;;lagmeter;延迟表;LagMeter -hexxit-gear-2;3898;;hexxitgear;Hexxit装备2;Hexxit Gear 2 -scootys-plants-vs-zombies;3899;;scootys_pvz;Scooty的植物大战僵尸;Scooty's Plants Vs. Zombies -;3900;;;BulletCart; -;3901;;;The Quilt Project; -;3902;;;Cursed Legacy Fabric; -custom-machinery;3903;;custommachinery;机器定制;Custom Machinery -bonsai-tree-crops;3904;;arcadialbonsaitrees;Bonsai Tree Crops; -rpgz;3905;;rpgz;RpgZ; -;3907;1195648;xiuxian,xiuxianchengzhen,xiuxianlianqi,xiuxianyaoshou,xiuxianliandan;原初修真1.15.2;xiuxian -;3908;;stationloader,stationapi;Station API / Station Loader; -scavenge-timing-addon;3909;;scavenge_timing;Scavenge Timing Addon; -cull-particles;3910;;cullparticles;粒子渲染机制优化;Cull Particles -majos-broom;3911;1182237;majobroom;魔女的扫帚;Majo's broom -seamless-loading-screen;3912;;seamless_loading_screen;无缝加载界面;Seamless Loading Screen -curios-quark-oddities-backpack;3913;;curiosquarkobp;夸克背包饰品;Curios Quark Oddities Backpack -nature-expansion;3914;;nature_expansion;Nature Expansion; -;3915;;library;Library; -electromagnetic-coherence;3917;;electromagneticcoherence;Electromagnetic Coherence; -amaleafs-expantion-world-mod;3918;;aewmod;Amaleaf's Expantion World mod; -the-elemelon-mod;3919;;elemelon;元素西瓜;The Elemelon Mod -dcsp;3920;;diamondscompressorsp;钻石压缩;Diamonds Compressor SP -corpse-complex;3921;;;Corpse Complex; -modularvoicechat;3922;;;模块化语音聊天;ModularVoiceChat -curious-elytra;3923;;curiouselytra;鞘翅插槽;Curious Elytra -;3924;1204578;our;时间纪元;Time Era -;;;tconstruct_compatible;匠魂兼容;TConstructCompatible -;3926;;;自定义唱片;Your Records Mod -incubation;3927;;incubation;Incubation; -;3929;1201633;abyssmana;奈落魔法学;AbyssMana -;3930;1201718;nanzhi_grave;南织鸽子的坟墓模组; -create-plus;3931;;createplus;Create Plus; -;3932;1204879;strange_ingot;奇奇怪怪的锭;Strange ingot -coloured-tooltips;3933;;;Coloured Tooltips; -magicraft-magic;3934;;magicfoods;魔法材料;Magical Materials -glowstone-ores;3935;;gom;萤石矿石;Glowstone Ores -more-wires;3936;;morewire,morewires;More Wires; -alexandrite-and-more;3937;;;亚历山大石和其它;Alexandrite And More -endgame-materials;3938;;endgamematerials;终局材料;Endgame Materials -more-cobblestone;3939;;cm;更多圆石;More Cobblestone -wild-netherwart;3940;;;野生地狱疣;Wild Netherwart -the-periodic-table-mod;3941;;periodictablemod;元素周期表;The Periodic Table -adamantium-in-minecraft;3942;;adamantiumsword;艾德曼合金矿石;adamantium ores -forgerocks;3943;;forgerocks;ForgeRocks; -ballistix;3944;;ballistix;弹道学;Ballistix -wireless-industry;3945;;wirelesstools;Wireless Industry; -spice-of-life-tonio-edition;3946;;soltonio;生活调味料:托尼欧版;Spice of Life: Tonio Editon -husk-spawn;3947;;huskspawn;Husk Spawn; -artisan-tools-1-16;3948;;artisantools;工匠工具;Artisan Tools -yttr;3949;;yttr;Yttr; -wisla;3950;;wisla;What is Sauron looking at; -mixin-0-7-0-8-compatibility;3951;;mixincompat;兼容Mixin0.7-0.8;Mixin 0.7-0.8 Compatibility -;3952;;fp2;远平面2;Far Plane Two -xenoclus-one;3953;;xenoclus_v;Xenoclus One; -satako-library;3954;;satako;Satako library; -unique-enchantments-utils;3955;;;独特的附魔:效用扩展;Unique Enchantments - Utils -ae2ao;3956;;ae2ao;AE2 Additional Opportunity; -iconexporter;3957;;iconexporter;IconExporter; -curious-shulker-boxes;3958;;curiousshulkerboxes;潜影盒插槽;Curious Shulker Boxes -xenoclus-2;3959;;xenoclustwo;Xenoclus 2; -darker-depths;3960;;darkerdepths;深岩之下;Darker Depths -terracraft-journey;3961;;terracraft;TerraCraft Journey; -solar-cooker;3962;;solarcooker;太阳灶;Solar Cooker -create-addon;3964;;create_addon;Create Addon; -boat-contraptions;3965;;boatcontraptions;Boat Contraptions; -ender-rift;3966;;enderrift;Ender Rift; -;3967;;Mob_time_era;生物时间;Mob Time Era -splashanimation;3968;;;SplashAnimation; -continue-button;3969;;continuebutton;继续按钮;Continue Button -chem-craft;3970;;minecraft_expansions;化学工艺;Chem Craft -time-in-a-bottle-standalone;3971;;tiab;时间之瓶;Time in a bottle standalone -;;;mvp;更多原版药水;More Vanilla Potions -compressed-grass;3973;;gm;压缩草;Compressed Grass -applepie;3974;;ApplePie;苹果派;ApplePie -doles-mod;3975;;;Dole's Mod; -ex-nihilo-sequentia-thermal-addon;3976;;;无中生有:传承 - 热力扩展;Ex Nihilo: Sequentia - Thermal Addon -ex-naturae;3977;;exnaturae;无中生有:传承 - 植物魔法扩展;Ex Naturae -ex-nihilo-sequentia-tinkers-addon;3978;;;无中生有:传承 - 匠魂扩展;Ex Nihilo: Sequentia - Tinkers Addon -iron-jetpacks;3979;;ironjetpacks;Iron Jetpacks; -;3980;1256463;discs;自定义唱片;Custom Discs -playtime-counter-fabric;3981;;playtime_count;游戏时长计数器;Playtime Counter -entity-banners;3982;;entitybanners;实体旗帜;Entity Banners -curious-jetpacks;3983;;curiousjetpacks;Curious Jetpacks; -curious-armor-stands-fabric;3984;;curious_armor_stands;Curious Armor Stands; -trinkets-fabric;3985;;trinkets;Trinkets; -occultism;3986;['1077431'];occultism;神秘学;Occultism -stray-spawn;3987;;strayspawn;Stray Spawn; -mooshroom-spawn;3988;;mooshroomspawn;Mooshroom Spawn; -cardinal-components;3989;;cardinal-components;Cardinal Components; -;3990;;ember_top_and_waila;余烬高亮支持;Ember Top and Waila -;3991;;nsn;不那么新;Not So New -integrated-proxy;3992;;integrated_proxy;集成代理器;Integrated Proxy -a-cobblestone-crafting-table;3993;;;圆石工作台;A Cobblestone Crafting Table -colored-iron;3994;;;Colored Iron; -final-kobold;3995;;fk;Final Kobold; -ears;3996;;ears;耳朵;Ears -wildfires-female-gender-mod-forge;3997;;wildfire_gender;Wildfire's Female Gender Mod; -;3998;;consistency_plus;Consistency+; -modularwarfare;3999;;modularwarfare;模块化战争/模块化枪械;ModularWarfare -mputils-basic-tools;4000;;mpbasic;MPUtils Basic Tools; -the-agartha-mod;4001;;agartha,conranel;The Agartha Mod; -falling-with-style;4002;;fallingwithstyle;花式降落;Falling With Style -valhelsia-core;4003;;valhelsia_core;Valhelsia Core; -;4004;;minecrafttagreborn;Minecraft凝胶测试轨道:重生;MinecraftTag:Reborn -alwayseat;4005;;salwayseat;吃饱了还要吃;AlwaysEat -;4006;688825;examplemod;游戏中中文输入法冲突修复;InputMethodBlocker -;4007;1205424;theballofhelp;帮助之球;Ball Help -;4008;;scp_chamber;SCP-Chamber; -aquarium;4009;;aquarium;深海;Aquarium -mixin-booter;4010;;前置;MixinBooter; -;;;;一个物品格的生存;One Item Only -jrds-moneymod;4012;;;jrd's MoneyMod; -skeletdimension;4013;;SkeletonModID;骷髅维度;SkeletDimension -sushigocrafting;4014;;sushigocrafting;巧制寿司;Sushi Go Crafting -shrines-structures;4015;;shrines;Shrines Structures; -valhelsia-tweaks;4016;;valhelsia_tweaks;Valhelsia Tweaks; -lazierae2;4017;;lazierae2;懒人AE2 1.16+;LazierAE2 -magical-crops-core;4018;;magicalcrops;Magical Crops: Core; -magical-crops-decorative;4019;;;Magical Crops: Decorative; -magical-crops-armoury;4020;;;Magical Crops: Armoury; -;4021;;rflcmd;反射命令;Reflection Command -simpleeco;4022;;simpleeco;简单经济;SimpleEconomy -vistas;4023;;vistas;Vistas; -;4024;;authforge;锻造:认证;AuthForge -fish-in-planks;4025;;fish_in_planks;Fish In Planks; -fish-on-the-line;4026;;fishontheline;Fish On The Line; -fish-traps;4027;;fishtraps;鱼栅;Fish Traps -combustive-fishing;4028;;combustivefishing;Combustive Fishing; -fabric-survival-island;4029;;survivalisland;Survival island; -sonicraft;4030;;sonicraft;索尼克工艺;SoniCraft -islands;4031;;islands;Islands; -origins-forge;4032;;origins;起源非官方Forge版;Origins (Forge) -magic-feather;4033;;magicfeather;Magic Feather; -alet;4034;;alet;A Little Extra Tiles; -netheriteplus;4035;;netheriteplus;Netherite Plus +; -the-survivalists-mod;4036;;survivalist;The Survivalist's Mod; -campfire-overhaul;4037;;campfire_overhaul;Campfire Overhaul; -shatter;4038;;shatter;Shatter; -electric-self-balance-scooters;4039;;electric_selfbalancing_scooters;电动平衡车;Electric Self-balance Scooters -rats-mischief;4040;;ratsmischief;Rat's Mischief🐀; -dream-rng;4041;;;Dream RNG; -wandering-trader-improvements;4042;;wt_improvements;Wandering Trader Improvements; -wasteland-reborn;4044;;wastelands;不毛之地:重生;Wastland Reborn -skds-core;4045;;;SKDS Core; -endertech;4046;;EnderTech;末影科技;Ender Tech -enderpig-mod;4047;;enderpig;末影猪;Enderpig Mod -;4048;;examplemod;矿石树;TreeOres -;4049;;spider2fix;镇压前端召唤;No No-AI Spawn -atomic-bomb-1-16;4050;;nuclear_craft;枪,炮,原子弹!;Guns, Rockets and Atomic Explosions -se-sign-shop;4051;;sesignshop;简单经济:牌子商店;SE: Sign Shop -;4052;1220885;technical_engineering;科能工程2;Technical Engineering -fancymenu;4053;;;精美菜单;FancyMenu -sodium-reforged;4054;;sodium;卤素;Halogen -zetamod;4055;;zetamod;泽塔;ZetaForged/Zeta's Mod -;4056;;pixelmon;宝可梦 世代;Pixelmon Generation -;4057;1186215;xianjiange;仙剑阁; -wholetreeaxe;4058;;WholeTreeAxe;Whole Tree Axe; -fabrishot;4059;;;高清截图Fabric;Fabrishot -materialisation;4060;;materialisation;物质化;Materialisation -recipebuffers;4061;;recipebuffers;配方缓冲;RecipeBuffers -;4062;;;mineshot revived; -portal-gun-fabric;4063;;;传送枪 Fabric;Portal Gun Fabric -;4064;;;Incendium ~ Nether Expansion; -;4065;;nfc;New Frontier Craft; -cooperative-advancements;4066;;cooperativeadvancements;合作进度;Cooperative Advancements -lightstones;4067;;lightstones;Lightstones; -openbackup;4068;;;OpenBackup; -fat-experience-orbs;4069;;fatxporbs;肥胖经验球;[Fabric] Fat Experience Orbs -better-pipes;4070;;betterpipes;更好的管道;Better Pipes -truetype-font-replacement;4071;616658;BetterFonts;TrueType Font Replacement; -fluidlogged-api;4072;;fluidlogged_api;Fluidlogged API; -spark;4073;;spark;spark; -saoui;4074;;saoui;saoui; -guardians-galore;4075;;guardiansgalore;Guardians Galore; -cogwheel-tweaker;4076;;CogwheelTweaker;Cogwheel Tweaker; -ultra-amplified-mod;4077;;ultra_amplified_dimension;超大群系维度;Ultra Amplified Dimension -classical-art;4078;;classicalart;经典艺术;Classical Art -emc-baubles;4079;;emcbaubles;等价饰品;EMC Baubles -lag-removal;4081;;lag_removal;Lag Removal; -gender;4082;;gender;Gender & Age Mod; -;4083;;mtm;Magical Talismans Mod; -ticktock;4084;;;Server Tick; -;4085;;;行尸走肉弹夹合成配方添加; -fps-reducre-for-fabric;4086;;;FPS减速器(Fabric);FPS Reducer (For Fabric) -art-artillery;4087;;art_artillery;艺术?火炮!;Art? Artillery! -;4088;;;MineMenuFabric; -;4089;;;TabTPS; -afkpeace;4090;;;AFKPeace; -;4091;;;Stop HostName Leak; -secret-rooms-fabric;4092;;;Secret Rooms Fabric; -smooth-chunks;4093;;;Smooth Chunks; -saturationoverflow;4094;838721;zenny3d.saturationoverflow;饱和度溢出;Saturation Over flow -;4095;;;艾玛的起源;Emma's origins -phantom-blood;4096;;phantomblood;幻影之血;Phantom Blood -;4097;;;洞穴与山崖扩展包;Caves & Cliffs Expansion Pack -searchable-containers;4098;;;可搜索容器;Searchable Containers -;4099;;original_development;原版扩展;Original Development -;4100;;conranel;卡莱内尔;Conranel -integrated-additions;4101;;integratedadditions;集成扩展;Integrated Additions -matchlock-guns;4102;;matchlockguns,matchlockweapons;火绳枪;Matchlock Guns -fabric-autoswitch;4103;;;自动切换工具;AutoSwitch -inventory-profiles-next;4104;;inventoryprofilesnext;一键背包整理Next;Inventory Profiles Next -drill;4105;;drill;钻头;Drill -ore-tree;4106;1214379;ore_tree;矿物树;Ore Tree -ferdinands-flowers;4107;;ferdinandsflowers;Ferdinand's Flowers; -clear-water;4108;;;清澈的水;Clear Water -applied-energistics-2-wireless-terminals-forge;4109;;ae2wtlib;AE2无线终端Forge版;Applied Energistics 2 Wireless Terminals Forge -ferroustry;4110;;ferroustry;Ferroustry; -village-employment;4111;;village_employment;村庄就业;Village Employment -;4112;;;20W14✨; -deathlog;4113;;;死亡日志;DeathLog -automatic-elytra;4114;;;自动鞘翅;Automatic Elytra -axolotl-bucket-fix;4115;;axolotlitemfix;美西螈桶修复;Axolotl Bucket Fix -xks-decoration;4116;1214362;xkdeco;XK的装饰;XK's Deco -endgame-materials-addons;4117;;endgamematerialsgalaxyaddon;更多终局材料;Endgame Materials Addons -ravage-and-cabbage;4118;;ravageandcabbage;Ravage & Cabbage; -stackup;4119;1026496;;StackUp!; -simple-anti-x-ray;4120;;;Simple Anti X-Ray; -breakme;4121;;;BreakMe; -mod-info-command;4122;;;Mod Info Command; -hexxit-gear-fabric;4123;;;Hexxit Gear (Fabric); -buffed-tools;4124;;;属性工具;Buffed Tools -thaumcraft-nei-plugin;4125;357554;;神秘时代NEI插件;Thaumcraft NEI Plugin -moarrecipes;4126;;MoarRecipes;更多的配方;MoarRecipes -luminium;4127;;luminium;luminium; -;4128;;nethermap;Better Nether Map; -;4129;;mcs;多重压缩物品;MultipleCompressedStuffs -iguanatweaks-reborn;4130;;iguanatweaks;蜥蜴微调重生;IguanaTweaks Reborn -enter-the-void;4131;;thevoidsshadow;进入虚空;Enter the void -tensura-mod-that-time-i-got-reincarnated-as-a-slime;4132;;ttigraas;关于我转生变成史莱姆这档事;Tensura Mod -That time I got reincarnated as a Slime -;4133;;deep_dark_layer;深暗层;Deep dark layer -speedometer;4134;;speedometer;速度表;Speedometer -falling-leaves-forge;4135;;fallingleaves;Falling Leaves; -;4136;;mcef;MCEF 非官方版本;MCEF-Unofficial -;4137;;god_metal;神之金属;God Metal -custom-entity-models-cem;4138;;;自定义实体模型;Custom Entity Models -tweakmyclient;4139;;;TweakMyClient; -lovely-snails;4140;;lovely_snails;可爱蜗牛;Lovely Snails -ourse-mod;4141;;;Ourse MOD; -clipboard;4142;;clipboard;备忘录;Clipboard -crimson-nbt-tags;4143;;;Crimson NBT Tags; -;4144;1217582;cabo;随意弓;Casual Bow -water-physics-overhaul;4145;;wpo;Water Physics Overhaul; -netherless;4146;;Netherless;Netherless; -auto-ore-dictionary-converter;4147;;autooredictconv;Auto Ore Dictionary Converter; -elytraboosters;4148;;elytraboosters;Elytra Boosters; -cobblegenrandomizer;4149;;cobblegenrandomizer;CobbleGenRandomizer; -unified-resources;4150;;unified_resources;Unified Resources; -wooden-buckets;4151;;woodenbuckets;木桶;Wooden Buckets -no-nether-portals;4152;;nonetherportals;No Nether Portals; -beehivetooltips;4153;;;蜂巢工具提示;BeehiveTooltips -buddycards;4154;;buddycards;巴迪卡牌;Buddycards -extended-caves;4155;;extcaves;Extended Caves; -inventorio;4157;;inventorio;Inventorio; -more-curios-totems-of-undying;4158;;morecuriostotemsofundying:;More Curios Totems of Undying; -selene;4159;;;Selene; -compatibilitylayerforcustomskinloader;4160;1109996;CompatibilityLayerForCustomSkinLoader;万用皮肤补丁兼容层;CompatibilityLayerForCustomSkinLoader -no-potion-shift;4161;;nopotionshift;No Potion Shift; -no-potion-offset;4162;;;No Potion Offset; -demonslayer;4163;1220110;kimetsunoyaiba;鬼灭之刃;Kimetsu no Yaiba -nautilium;4164;;Nautilium;鹦鹉螺;Nautilium -auto-attack;4165;;auto attack;自动攻击;Auto Attack -tamagotti;4166;;tamagottimod;Tamagotti; -;4167;965094;;传送;Teleport -signal;4168;;signal;讯号;Signal -realistic-horse-genetics;4169;;horse_colors;真实马匹遗传;Realistic Horse Genetics -timeless-and-classic;4170;;timeless_and_classic;Timeless and Classics; -tool-progression;4171;;toolprogression;工具进阶;Tool Progression -;4173;;;棘羽「毕方」;BirdBlade -a-paimon;4174;;apaimon;派蒙;A Paimon -;4175;;;Creative; -music-maker-mod;4176;;xercamusic;Music Maker Mod; -penguin-lib;4177;;penguinlib;Penguin-Lib; -flywheel;4178;;flywheel;飞轮;Flywheel -;4179;;stem_further;梗进一步;Stem further -coralreef;4180;;coralreef;珊瑚礁;CoralReef -;4181;;jewelry_bar_core;简易饰品;Simple Accessories -simply-seasons;4182;;;简单季节;Simply Seasons -bclib;4183;;bclib:;BCLib; -actually-baubles;4184;;actuallybaubles;实用拓展饰品;Actually Baubles -alexs-mobs-battle-music;4185;;;♪ Alex's Mobs Battle Music ♪; -lava-waders-bauble;4186;;lavawaderbauble;熔岩魔靴饰品;Lava Waders Bauble -hardcore-revival;4187;;hardcorerevival;硬核复活;Hardcore Revival -additional-guns;4188;;additionalguns;更多的枪;Additional Guns -oh-my-minecraft-client;4189;;;Oh My Minecraft Client; -wooden-armors-stone-armor;4190;;woodarmor;木制盔甲;Wooden Armors Mod -;4191;1223720;cdi;自定义伤害免疫;Custom Damage Immunity -insanelib;4192;;insanelib;InsaneLib; -daydreamer;4193;;daydreamer;Daydreamer; -phantomfaces;4194;;phantomfaces;幻灵接口;Phantomfaces -improved-villagers;4195;;iv;改进的村民;Improved Villager Mod -equipment-compare;4196;;equipmentcompare;Equipment Compare; -;4197;;pca;Plusls Carpet Addition; -PickupWidely;4198;;pickupwidelysmp;PickupWidely; -;4199;;dongdongxiangyaodefasheqi;冬冬想要的发射器;dong dong want the launcher -lilliputian;4200;;lilliputian;Lilliputian; -sampler;4201;;Sampler;Sampler; -custom-splash-screen;4202;;;自定义加载界面;Custom Splash Screen -;4203;;;Masa Gadget; -meet-your-fight;4204;;meetyourfight;Meet Your Fight; -hot-or-not-plus;4205;;hotornot;Hot or Not +; -macaws-furniture-tfc;4206;;mcwfurnituretfc;Macaw's Furniture for TFC; -tfc-florae;4207;;tfcflorae;TFC Florae; -tfc-elementia;4208;;tfcelementia;TFC Elementia; -infinity-water-bucket;4209;;;无限水桶;Infinity Water Bucket -tfc-caffeine-addon;4210;;ca;TFC Caffeine Addon; -tfc-cellars-add-on;4211;;cellars;TFC: TNG Cellars Add-on; -boats-and-beeps;4212;;boats-and-beeps;Boats and Beeps; -konkrete-fabric;4213;;;Konkrete; -xp-from-harvest;4214;930878;;收获经验;XP From Harvest -modern-beta;4215;;modern_beta;Modern Beta; -tfcflux;4216;;tfcflux_core;TFCFlux; -tfc-medicinal;4217;;tfcmedicinal;TFC Medicinal; -water-flasks;4218;;waterflasks;TFC Water Flasks; -markdownmanual;4219;;;MarkdownManual; -structure-world;4220;;structureworld;Structure World; -macaws-lights-and-lamps;4221;;mcwlights;Macaw's Lights and Lamps; -terrarian-slimes;4222;;terrarianslimes;Terrarian Slimes; -create-gears;4223;;creategears;Create Gears; -simple-big-backpack;4224;;big_backpack;Simple Big Backpack; -croptopia-fabric;4225;1192701;croptopia;作物盛景;Croptopia -firmalife;4226;;firmalife;FirmaLife; -supermartijn642s-core-lib;4227;;supermartijn642corelib;SuperMartijn642's Core Lib; -cherished-worlds;4228;1104346;;存档置顶;Cherished Worlds -ironfist;4229;399076;;铁拳;Ironfist -;4230;;mining_dimension_cave_version;挖矿维度(矿洞版);Mining dimension(cave version) -simply-acceleration;4231;;;简单加速;Simply Acceleration -creeper-habitats;4232;;creeperhabitats;Creeper Habitats; -husbandry;4233;;husbandry;Husbandry; -its-the-little-things;4234;;itlt;It's The Little Things; -fruitful;4235;;fruitful;硕果累累;Fruitful -environmental-energy;4236;;enviroenergy;环境科技-发电机;Environmental Energy -nakranoths-herdcraft;4237;;;群兽行为;Nakranoth's Herdcraft -lambdabettergrass;4238;;lambdabettergrass;Lambda的更好的草方块;LambdaBetterGrass -;4239;;clientcommands;clientcommands; -bright-ore;4240;1201226;;矿石高亮;Bright Ore -chinese-style-sword;4241;;chinese_sword;中式剑;Chinese Style Sword -;4242;1227763;fishfish;钓🐟🐠;Fish 🐟🐠 -heroic-armory;4243;;heroicarmory;英雄武器;Heroic Armory -colossal-battery;4244;;colossal_battery;巨型电池;ColossalBattery -industrial-meat;4245;;industrialmeat;Industrial Meat; -biomancy;4246;;biomancy;血肉重铸;Biomancy -extra-generators;4247;;extragenerators;Extra Generators; -horticulture;4248;;horticulture;园艺;Horticulture -mr-pineapples-food-mod;4249;;pinesfoodmod;Mr. Pineapple's Food Mod; -;4250;;herosw;Herobrine JD; -;4251;;pixelmoninfoplus;更多宝可梦信息;Pixelmon Info Plus -legacyvault;4252;;legacyvault;Legacy Vault; -shopaholic;4253;;shopaholic;Shopaholic; -;4254;;mooncake;月饼;Moon Cake -ok-zoomer;4255;;okzoomer;Ok Zoomer; -untitled-duck-mod-forge;4256;;untitledduckmod;无题鸭;Untitled Duck -v-tweaks;4257;;vtweaks;V-Tweaks; -fairenchanting;4258;;;公平附魔;FairEnchanting -bedspreads;4259;;cosmeticbeds,bedspreads;Bedspreads / Cosmetic Beds; -piglib;4260;;piglib;Piglib; -nether-portal-spread;4261;;netherportalspread;Nether Portal Spread; -x-hp;4262;;;x-hp; -;4263;;kaimyentity;KAI我的实体 - 修改版;KAIMyEntity - Modify -mr-pineapples-toy-guns;4264;;toyguns;Mr Pineapple's Toy Guns; -;4265;;magickcore;魔法核心;MagickCore -feywild;4266;;feywild;Feywild; -;4267;1201880;the_ultimate_sword;最终之剑重置版;The final sword -;4268;1180156;;做功台;Benchworks -gog-skybox;4269;;;GoG Skybox; -;4270;;morebarrel;更多桶;More Barrel -lemon-lib;4271;;;Lemon Lib; -custom-entity-models-kaimyentity-reborn;4272;;;KAI我的实体:重生;KAIMyEntity-Reborn -miniutilities;4273;;miniutilities;迷你实用设备;Mini Utilities -stumble-upon-campsites;4274;;stumbleuponcamps;邂逅:营地;Stumble Upon: Campsites -nomad-books;4275;;;游牧之书;Nomad Books -yungs-extras;4276;;;YUNG's Extras; -stoneholm-forge;4277;;;地下村庄;Stoneholm, Underground Villages -;4278;1199290;tlwc;两面包夹芝士;Two loaves with cheese -inspecio;4279;;inspecio;Inspecio; -special-ai;4280;457169;;特殊AI;Special AI -dream-waifu-mod;4281;;waifucraft;Dream Waifu mod; -help-wanted;4282;;helpwanted;求助;Help Wanted -off-hand-combat;4283;;;副手战斗;Off Hand Combat -reaping-mod-fabric;4284;;;收割;Reaping Mod -gilding;4285;;gilding;镀金;Gilding -grims-transportables;4286;;;格里姆的便捷交通工具;Grim's Transportables -reroll;4287;;;刷新附魔;Reroll -tax-free-levels;4288;;;免税附魔;Tax Free Levels -portable-dimensions;4289;;portabledimensions;便携式传送门;Portable Dimensions -stone-age-by-yanny;4290;;stone_age;Yanny's Stone Age; -terra-world-generator;4291;;terra;Terra; -;4292;1231156;morecows;更多牛;MoreCows -omnis;4293;;omnis;全界;Omnis -omnis-backpacks;4294;;omnisbackpacks,omnis_backpacks;Omnis Backpacks; -superhotmc;4295;;superhotmod;SuperhotMC; -bag-of-yurting;4296;1194614;bagofyurting;帐篷袋;Bag of Yurting -better-combat-rebirth;4297;813690;;更好的战斗:重生;Better Combat Rebirth -iron-and-gold-from-1-17;4298;;iron_and_gold;来自 1.17 的铁和金;iron and gold from 1.17 -immersive-cooking;4299;;immersivecooking;沉浸烹饪;Immersive Cooking -structured-crafting;4300;;structuredcrafting;Structured Crafting; -random-shulker-colours;4301;;;随机潜影贝颜色;Random Shulker Colours -create-automated;4302;;createautomated;Create Automated; -random-sheep-colours;4303;;;随机绵羊颜色;Random Sheep Colours -sleep-sooner;4304;;;早点睡;Sleep Sooner -respawning-shulkers;4305;;;潜影贝重生;Respawning Shulkers -respawn-delay;4306;;;延迟重生;Respawn Delay -realistic-bees;4307;;;真实的蜜蜂;Realistic Bees -recast;4308;;;持续钓鱼;Recast -softer-hay-bales;4309;;;柔软的干草块;Softer Hay Bales -portable-jukebox-forge;4310;;portablejukebox;便携式唱片机;Portable Jukebox -spiders-produce-webs;4311;;;蜘蛛吐网;Spiders Produce Webs -assassins-creed-blocklegend;4312;1168306;acbl;刺客信条:方块传奇2;Assassin's Creed Blocklegend II -gravestone-mod-graves;4313;;gravestone;墓碑坟墓;Gravestone mod Graves -the-earth-mod;4314;;earth;地球;The Earth Mod -lifts;4315;;lifts;电梯;Lifts -corail-recycler;4316;;corail_recycler;Corail的回收站;Corail Recycler -move-minecarts;4317;;;可移动的矿车;Move Minecarts -inventory-totem;4318;;;更好的图腾;Inventory Totem -lava-picker-upper;4319;;;熔岩收集器;Lava Picker Upper -nethers-exoticism;4320;;nethers_exoticism;Nether's Exoticism; -everpotion;4321;;everpotion;永恒药水 ⚗️;EverPotion ⚗️ -quick-shulker;4322;;;快捷潜影盒;Quick Shulker -respawnable-pets;4323;;;宠物可重生;Respawnable Pets -schmucks;4324;;;分身傀儡/小阿呆;Schmucks! -automatic-doors;4325;;automaticdoors;自动门;Automatic Doors -configurable-despawn-timer;4326;;configurabledespawntimer;Configurable Despawn Timer; -chunkmap;4327;;;ChunkMap; -inventory-tabs;4328;;inventorytabs;Inventory Tabs; -bottle-your-xp;4329;;bottleyourxp;装瓶你的经验;Bottle Your Xp -gravestone-mod-extended;4330;;gravestone-extended;墓碑坟墓 - 拓展;Gravestone mod - Extended -better-enchanted-books;4331;;;更好的附魔书;Better Enchanted Books -easy-steel-forge;4332;;easy_steel;Easy Steel & More; -fabric-waystones;4333;1129480;;Fabric版传送石碑;Fabric Waystones -;4334;1235624;ire;铁块电梯;Iron Elevators -;4335;;;SeedCracker; -dark-enchanting;4336;;;Dark Enchanting; -;4337;;blocklynukkit;科技黎明;TechDawn -better-wandering-traders;4338;;;更好的流浪商人;Better Wandering Traders -superflat-world-no-slimes;4339;;;没有史莱姆的超平坦世界;Superflat World No Slimes -scorge;4340;;;Scorge; -;4341;;recipedumper;合成表导出;RecipeDumper -beaconoverhaul;4342;;;信标改革;Beacon Overhaul -contact;4343;1233489;contact;往来;Contact -blockshifter;4344;;blockshifter;Blockshifter; -;4345;;fjt;食物工程;foodproject -vanilla-builders-extension;4346;;vbe;Vanilla Builders Extension; -;4347;;Techbottle,techbottle;科技瓶;Techbottle -big-beacons;4348;;;大信标;Big Beacons -wooden-hopper;4349;;woodenhopper;Wooden Hopper; -;4350;1170852;;植物大战僵尸2;Plants vs Zombies 2 -ages-api;4351;;;Ages API; -fancyhud;4352;;fancyhud;FancyHUD; -advanced-compass;4353;;advancedcompass;高级指南针;Advanced Compass -salutem;4354;;salutem;Salutem / Healthbars; -the-sol;4355;;sol;太阳系;The Sol -better-beds;4356;;betterbeds;更好的床;Better Beds -world-lives-mod;4357;;jordan7102_lm;World Lives Mod; -lib;4358;;flytre_lib;FlytreLib; -;4359;;tic_json_generator;匠魂JSON生成器;TConstruct JSON Generator -just-some-chocolate;4360;;chocomod;只是一些巧克力;Just some Chocolate -;4361;1237001;hormone;激素;Hormone -vacuum-horizon;4362;;VacuumHorizon;Vacuum Horizon; -unique-enchantments-battle;4363;;;独特的附魔:战斗扩展;Unique Enchantments - Battle -balanced-enchanting;4364;;;平衡附魔;Balanced Enchanting -pipe;4365;;pipe;管道;Pipe -simple-ambients;4366;;ambients;Simple Ambients; -;4367;;thewanderingearth;流浪地球;The Wandering Earth -;4368;1221380;;乡野与魔法;Countryside And Magic -;4369;;space_craft;太空工艺;Space Craft -modern-loading-screen;4370;1235709;modernloadingscreen;现代加载界面;Modern Loading Screen -;4371;;zyfdroid-myessentialx;MyEssentialX; -;4372;1169366;dongdongmod;冬冬的随意创作;Dong Dong's random creation -;4373;;threebody;三体;ThreeBody -transliterationlib;4374;;transliterationlib;TRansliterationLib; -;4375;1238551;loan;借贷;Loan -rpmtw-update-mod;4376;;rpmtw_update_mod;RPMTW自動中文化模組;RPMTW Update Mod -farsight-spyglasses;4377;;farsight_spyglasses;Farsight: Spyglasses; -not-enough-animations;4378;;notenoughanimations;Not Enough Animations; -better-beacon;4379;;;更好的信标与潮涌核心;Better Beacon / Conduit -;4381;;;Dungeon Now Loading; -easy-emerald-tools;4382;;easy_emerald;Easy Emerald Tools & More; -cold-sweat;4383;;cold_sweat;冷汗;Cold Sweat -witchery-rewitched;4384;;witchery_rewitched;巫术:重生;Witchery: Rewitched -majou-densetsu-3d;4385;;backtones;魔城传说3D;Majou Denetsu 3D -;4386;1240656;locusazzurro_icaruswings;伊卡洛斯之翼;Icarus Wings -keyboard-wizard;4387;695626;keywizard;按键精灵;Keyboard Wizard -piscary;4388;;piscary;Piscary; -storage-cabinet;4390;;;储藏柜;Storage Cabinet -first-person-model;4391;;firstperson;更真实的第一人称模型;First-person Model -randore;4392;;randore;Rand'Ore; -rising-uppercut;4393;1240641;rising_uppercut;上勾拳;Rising Uppercut -jackie-chan-s-weapon;4394;1237674;jackie_chans_weapon;成龙的武器;Jackie Chan`s weapon -explorers-compass;4395;;explorerscompass;探险者指南针;Explorer's Compass -gravestones;4396;;;墓碑;Gravestones -crafting-dead-survival;4397;;craftingdeadsurvival;行尸走肉:生存;Crafting Dead Survival -redstone-control-2;4398;;rs_ctr2;红石控制2;Redstone Control 2 -csenchants;4399;;coldenchants2;Colds: Enchants 2.0; -mystical-customization;4400;;mysticalcustomization;Mystical Customization; -;4401;;;泥土信标;Dirt beacon -lucky-blocks-project-e;4402;1150908;lucky;等价交换幸运方块;Lucky Blocks:ProjectE -fmprojecte-fmpe;4403;;ProjectE;等价交换重制-EMC上限扩展版;FMProjectE -;4404;1232131;flexibag;背包物品备份;Flexibag -ibe-editor;4405;;;IBE Editor; -exotic-critters;4406;;experimental_m;Exotic critters; -archers-paradox;4407;;archers_paradox;弓箭手悖论;Archer's Paradox -dynamic-trees-neapolitan;4408;;;动态的树 -那不勒斯风味附属;Dynamic Trees - Neapolitan -;4409;;soulforging;灵魂锻造;Soul Forging -randomite-classic;4410;;randomite;Randomite Classic; -;4411;;super_tool_reloaded;超级工具重置版;Super Tools Reloaded -wilds;4412;;wilds;Wilds; -roughly-searchable;4413;;roughlysearchable;Roughly Searchable; -cull-leaves;4414;;cullleaves;树叶渲染优化;Cull Leaves -dynamic-trees-atum-2;4415;;;动态的树-阿图姆2附属;Dynamic Trees - Atum 2 -randomtweaker;4416;;randomtweaker;RandomTweaker; -;4417;;bizarre_fans;奇异风扇;Bizarre Fans -iron-chests-fabric;4418;;ironchest;[Fabric] Iron Chests; -steamworld;4419;;steamworld;SteamWorld; -;4420;;;Cyan; -falling-leaves-fabric;4421;;;Falling Leaves (Fabric); -craftable-creative-ability;4422;;craftable_creative_ability;可合成的创造能力强化;Craftable Creative Ability -not-enough-energistics;4423;;neenergistics;Not Enough Energistics; -terracore;4424;;terracore;TerraCore; -;4425;;night;夜;night -seeker-compass;4426;;seeker_compass;Seeker Compass; -ghosts-explosives;4427;;ghostsexplosives;Ghost's Explosives; -power-drop;4428;;powerdrop;蓄力投掷;Power Drop -yungs-better-dungeons;4429;;betterdungeons;YUNG's Better Dungeons; -;4430;;;社会人梗图;peduncle -ore-controller;4431;;ore_controller;Ore Controller; -morechickens;4432;;chickens;更多鸡;More Chickens -ghosts-explosives-2;4433;;ghostsexplosives2;Ghost's Explosives 2; -weapon-throw;4434;;weaponthrow;武器投掷;Weapon Throw -more-villagers;4435;;morevillagers;更多村民;More Villagers -dungeons-mobs;4436;;dungeons_mobs;地下城生物;Dungeons Mobs -;4437;;doraemon_props;哆啦A梦的小道具;Doraemon's Props -;4438;;magic_circle;Magic circle; -;4439;;meteorrandomidea;流年年的随想作;MeteorRandomIdea -;4440;;fortyyears;四十年;Miyazaki Hayao Forty Years -;4441;;flycycle;Flycycle; -;4442;;civilizationswars;三体:文明战争;Civilizations Wars -;4443;;king_and_knight;明日方舟;King and knight -;4444;;ashihara;葦原(序章 ~ 稻生草子);Ashihara -;4445;1236639;uusi-aurinko;新日;Uusi Aurinko -;4446;;serializableconsciousness;Serializable Consciousness; -;4448;;elytra_booster;推进鞘翅;Elytra Booster -;4449;;minecardstouhou;Mine[Touhou]Card; -;4450;;favourite_tags;Favourite Tags; -;4451;;talisman;符·道;Talisman -;4452;;decorations;Rotarism Decorations; -;4453;;teamod;荒野乱斗;Tea Mod -;4454;;the_elixir;不死灵药;The Elixir -;4455;;;Miya World; -chronicler-the-key-of-stellaris;4456;1244435;chronicler_lh;历史记录者·星之匙;Chronicler: The Key of Stellaris -;4457;;goldtoucher;摸金;Gold Toucher -neubulaeko-slime;4458;;neubulaeko_slime;星云子史莱姆;Neubulaeko Slime -;4459;;darksword22;Darksword22; -;4460;;tea_sorcerer;茶叶魔法使;Tea Sorcerer -;4461;;m1917gun;梗系列Mod小合集;MemesP -;4462;;threebodysophon;三体·智子;Threebody Sophon -fantasysoup;4463;;fantasy_soup;FantasySoup; -just-enough-professions-jep;4464;;;Just Enough Professions; -;4465;;norecipebook;没有配方书非官方版;No Recipe Book -;4466;;paimon;应急食品;PaiMonFood -plumed-belt;4467;;plumedbelt;Plumed Belt; -better-with-minecolonies;4468;;;Better With Minecolonies; -calemis-utilities;4469;;calemiutils;Calemi的实用设备;Calemi's Utilities -botanical-cowardice;4470;;botanicalcowardice;Botanical Cowardice; -travelers-titles;4471;;travelerstitles;Traveler's Titles; -expand-chinese-sword;4472;;expand_chinese_sword;中式剑拓展;Expand Chinese Sword -;4473;;;空城魔法; -littleframes;4474;;littleframes;小画;LittleFrames -lavalogged-blocks;4475;;lavalogging;岩浆充填;Lavalogged blocks -awoken-world;4476;;awokenworld;Awoken World; -;4477;;gt4r;格雷科技4:重构想;GregTech 4 Reimagined -camouflaged-creepers;4478;;;Camouflaged Creepers; -ore-tweaker;4479;;oretweaker;Ore Tweaker; -openpython;4480;;OpenPython;OpenPython; -jei-lotr;4481;;;JEI LOTR; -capes;4482;;;Fabric Capes; -attack-speed-enchantment;4483;;attackspeedenchantment;攻击速度附魔;Attack Speed Enchantment -natures-minerals;4484;;natureminerals;Nature's Minerals; -balm-fabric;4485;;balm-fabric;Balm; -resource-hogs;4486;['1037377'];;资源猪;Resourse Hogs -advanced-xray;4487;;;Advanced XRay (Forge Edition); -;4488;;Bontany Ore Trees;植物盆栽矿物树拓展;Bontany Ore Trees -ring-of-attraction-forge;4489;;ring_of_attraction;吸引戒指;Ring of Attraction -customhud;4490;;;自定义HUD;CustomHud -deadly-world;4491;457226;deadlyworld;致命世界;Deadly World -fastdecay;4492;;;FastDecay; -essential-commands;4493;;;Essential Commands; -caves-and-cliffs-backport;4494;;cavesandcliffs;Caves & Cliffs Backport; -that-future-mod-glow-squid-axolotl-moobloom-etc;4495;;minecraft__concept_vicale;That future mod; -diamond-buildcraft;4496;;diamond;钻石装饰;Diamond Buildcraft -apocalypse-rebooted;4497;;apocalypse;启示录重制;Apocalypse Rebooted -mcwifipnp;4498;1244608;mcwifipnp;更高级联机设置;Minecraft WLAN Plug-n-Play -requious-frakto;4499;;requious;Requious Frakto; -;4500;;workmanship01;工匠技艺;Workmanship Mod -;4502;;;切石机增强;Cutter Plus -capsule;4503;;capsule;Capsule; -isometric-renders;4504;;;Isometric Renders; -;4505;;;Abstract's Recraft; -enchanting-secretaire;4506;1250073;enchantnote;附魔记录;Enchanting Secretaire -sync-fabric;4507;;sync;克隆(Fabric);Sync (Fabric) -tale-of-kingdoms-a-new-conquest;4508;;taleofkingdoms;王国:新征程;Tale of Kingdoms: A new Conquest -;4509;;networktitle;网络窗口标题;NetowrkTitle -schwarz;4510;;schwarz;黑;Schwarz -megane;4511;;;megane; -crusade;4512;;crusade;Crusade; -vending-machine;4513;;vm;售货机;Vending Machine -modernxl;4514;;minecraftmodernxl;Modernxl; -taiga2;4515;;taiga;匠魂合金附加2;Tinkers Alloying Addon Port -chunkgenlimited;4516;1041769;chunkgenlimit;区块生成限制;ChunkGenLimiter -more-crafting-tables-for-forge;4517;;mctb;More Crafting Tables for Forge!; -repurposed-structures-fabric;4518;;;结构变体;Repurposed Structures -ezpas;4519;;;EZ Pipes and Stuff; -electrona;4520;;electrona;Electrona; -;4521;;mcg;MCG; -reasonable-sorting;4522;;reasonable-sorting;合理排序;Reasonable Sorting -chat-heads;4523;;;聊天头像;Chat Heads -hidden-armor;4524;;;隐藏盔甲;Hidden Armor -majruszs-progressive-difficulty;4525;;majruszs_difficulty;Majrusz的进阶难度;Majrusz's Progressive Difficulty -pharmacist;4526;;pharmacist;Pharmacist; -kappa;4527;;kappa;Kappa; -equivalent-integrations;4528;;equivalentintegrations;等价集成;Equivalent Integrations -keep-equipment;4529;;;保留装备;Keep Equipment -herobrines-origin;4530;;;Herobrine的起源;Herobrine's Origin -the-abyss;4531;;theabyss;深渊:远古;The Abyss: Legacy -sekiro-sense-symbols;4532;;;Sekiro Sense Symbols; -lurker;4533;;lurkermod;Cold的潜伏者;Colds: Lurker -cavebiomeapi;4534;;cavebiomeapi;CaveBiomeAPI; -extended-block-shapes;4535;;extshape;扩展方块形状;Extended Block Shapes -passive-mobs;4536;;passivemobs;Passive Mobs; -sponsor;4537;1080837;;赞助者;Sponsor -;4538;;minecraftplusplus;我的世界++;MinecraftPlusPlus -;4539;;silver;银世界模组;Silver World Mod -between-ores;4540;;;Between Ores; -black-hole;4541;1179600;;黑洞;Black Hole -more-and-more-minerals;4542;;more minerals,more_mineral;越来越多的矿物;more and more minerals -permafrost;4543;;;Permafrost; -;4544;1253677;ice_and_fire_and_wizardry;冰,火与魔法;Ice,fire and wizardry -scootys-plants-vs-zombies-2;4545;;scootys_pvz2;Scootys Plants Vs. Zombies 2; -better-furnaces-reforged;4546;;betterfurnacesreforged;BetterFurnaces Reforged; -;4547;1167939;mahou_tattoo;画皮;MahouTattoo -;4548;;beyond_the_mineral;超越矿物;beyond the mineral -schools-of-magic-second-semester;4549;;schoolsofmagic;Schools of Magic: Second Semester; -dark-loading-screen;4550;;;Dark Loading Screen; -hals-exploration-mod;4551;;hem;Hals Exploration Mod; -farmers-delight-cookbook-addon;4552;;fd_cookbook;农夫乐事:烹饪书拓展;Farmer's Delight Cookbook Addon -heads-down-display;4553;;;heads down display; -mrcrayfish-more-furniture-mod;4554;;morecfm;MrCrayfish 的更多家具;MrCrayfish's More Furniture Mod -multi-world;4555;;multi_world;Multi world; -;4556;;more bowls;更多碗;more bowls -terralith;4557;;terralith;Terralith ~ Overworld Evolved; -overworld-two;4558;;overworld_two;Overworld Two; -xl-packets;4559;;;XL Packets; -rftools-storage;4560;;rftoolsstorage;RF工具:存储;RFTools Storage -rftools-builder;4561;;rftoolsbuilder;RF工具箱:建造机;RFTools Builder -;4562;;armor_hero;铠甲勇士;Armor Hero -nethers-delight;4563;;nethers_delight;下界乐事;Nether's Delight -farmers-extra-foods;4564;;farmers_extra_foods;农夫的拓展食物;Farmer's Extra Foods -tinkers-delight;4565;;thinkers_delight,tdelight;工匠乐事;Tinker's Delight -;4566;;sic;锻铁工艺;Strike Iron Craft -;4567;;FlashFreeze;FlashFreeze; -majruszs-accessories;4568;;majruszs_accessories;Majrusz的配件;Majrusz's Accessories -water-2-mana;4569;;water2mana;Water 2 Mana; -;4570;;;工程师板鱼;Engineer Slabfish -;4571;;item_export;Item Export; -craft-and-hunt;4572;;craftandhunt;Craft and Hunt; -tmats;4573;;tmats;TMats; -the-afterlight;4574;;the_afterlight;The Afterlight; -tinkers-planner;4575;;tconplanner;Tinker's Planner; -playing-cards;4576;;playingcards;Playing Cards; -rainbow-oak-trees-2;4577;;rainbowoaks;彩虹橡树2;Rainbow Oak Trees 2 -mapfrontiers;4578;;mapfrontiers;地图边界;MapFrontiers -customizable-elytra;4579;;customizableelytra;可自定义鞘翅;Customizable Elytra -puzzles-lib;4580;;puzzleslib;Puzzles Lib; -unique-enchantments-base;4581;;uniquebase;独特的附魔:基础;Unique Enchantments Base -ore-stages;4582;;;Ore Stages; -krays-magic-candles;4583;;krayscandles;Kray's Magic Candles; -thaumcraft-localization-optimizer;4584;;ThaumcraftLocalizationOptimizer;神秘时代本地化优化;Thaumcraft Localization Optimizer -drink-beer-fabric;4585;;drinkbeer;喝啤酒啦;Drink Beer -emerald-tools-armour;4586;;emerald_armor_and_tools;Emerald Tools/Armour; -hidden-recipe-book;4587;;hiddenrecipebook;隐藏配方书;Hidden Recipe Book -kibe;4588;;kibe;羊肉面饼;Kibe -poisoncraft;4589;;poisoncraft;毒药工艺;Poison craft -detail-armor-bar;4590;;detailab;细节盔甲;Detail Armor Bar -wings-horns-hooves-the-ultimate-unicorn-mod;4591;;ultimate_unicorn_mod;Wings Horns & Hooves, the Ultimate Unicorn Mod; -project-rankine;4592;;rankine;Project Rankine; -tinkers-mechworks;4593;;tmechworks,TMechworks;Tinkers' Mechworks; -qdc-quantum-dis-assembly-craft;4594;;qdc_mod;量子拆解工艺;Quantum Dis-Assembly Craft -william-wythers-overhauled-overworld;4595;;william-wythers-overhauled-overworld;William Wythers' Overhauled Overworld; -infinite-music;4596;;infinitemusic;Infinite Music; -cobbler;4597;;cobbler;可靠的潜影贝工厂;Shulker's Faithful Factories/Cobbler -nether-fast-transport-layer;4598;;;Nether Fast Transport Layer; -the-outer-end;4599;;outer_end;The Outer End; -hamncheese;4600;;hamncheese,cheesemod;Ham N' Cheese; -buzzy-drones;4601;;buzzydrones;Buzzy Drones; -morevanillaarmor;4602;;morevanillaarmor;MoreVanillaArmor; -;4603;1252824;drinksaddons;饮品追加;Drinks Addons -eternal-tales;4604;;eternal_tales;Eternal Tales; -oh-the-biomes-youll-go-fixes;4605;;;“你将去的生物群系”修复模组;Oh The Biomes You'll Go Fixes -wild-world;4606;;wildworld;Wild World; -miskatonic-mysteries;4608;;miskatonicmysteries;Miskatonic Mysteries; -harvesters-night;4609;;harvestersnight;收割者之夜;Harvester's Night -slotlock;4610;;slotlock;锁定槽;SlotLock -;4611;;neoultracraft;新·奥特工艺;Neo UltraCraft -panorama-tweaker;4612;;;Panorama Tweaker [Fabric]; -simple-tomb;4613;;simpletomb;简单坟墓;Simple Tomb -modern-life;4614;;modernlife;摩登生活;Modern Life -paxi-fabric;4615;;paxi;Paxi; -;4616;;;元素反应;Elemental_Reaction -waveycapes;4617;;;飘扬披风;Wavey Capes -skin-layers-3d;4618;;;3D皮肤层;Skin Layers 3D -all-the-discs;4619;;;唱片大全;All the Discs -cryptic-cosmos;4620;;crypticcosmos;Cryptic Cosmos; -bayou-blues;4621;;bayou_blues;长沼蓝调;Bayou Blues -hex-lands;4622;;;六边形地貌;Hex Lands -fixrtm;4623;;fix-rtm;FixRTM; -serene-tweaks;4624;;serenetweaks;Serene Tweaks; -ScalingGuis;4625;;ScalingGUIs;ScalingGuis; -;4626;;bettercommandblock;更好的命令方块;Better Command Block IDE -;4627;;breakfree;自由破坏;Break Free -tinkers-mechworks-fork;4628;;tmechworks;Tinkers Mechworks Fork; -extended-nether-backport;4629;;extendednether;Extended Nether Backport; -borderless;4630;;borderlesswindow;无边框全屏;Borderless Window -lifted-restrictions-structure-block;4631;;better_structure;更好的结构方块;Better Structure Block -entity-model-json;4632;;;实体模型JSON;Entity Model JSON -death-coords;4633;;;死亡坐标显示;Death Coords -;4634;;ultimatec;终极合金;ultimatec -never-enough-currency;4635;;currency;货币多多;Never Enough Currency -never-enough-currency-lite;4636;;currency;货币多多:精简版;Never Enough Currency Lite -create-chunkloading;4637;;;Create Chunkloading; -name-pain;4638;;namepain;Name Pain; -wireless-chargers;4639;;wirelesschargers;无线充电器;Wireless Chargers -bouncier-beds;4640;;bouncierbeds;弹力床;Bouncier Beds -hexlands-ii;4641;;;六边形地貌 2;HexLands II -gold-in-river-mod;4642;;;河中淘金;Gold In River Mod -;4643;;imagesign;图片告示牌;Image Sign -lorespawn;4644;;lorespawn;怪物巢穴;Lorespawn -creatuures;4645;;leescreatures;Lee's Creatures; -;4646;;;Fabric's Biome API Reforged; -stalwart-dungeons;4647;;stalwart_dungeons;坚定地牢;Stalwart Dungeons -maidens-marvelous-materials;4648;;maidensmaterials;Maiden's Marvelous Materials; -nekoration;4649;;nekoration;Nekoration; -tomb-many-graves-2;4650;;tombmanygraves;Tomb Many Graves 2; -fins-and-tails;4651;;fins;鳍和尾巴;Fins and Tails -smarter-farmers-farmers-replant;4652;;farmersreplant;Smarter Farmers/Farmers Replant; -peculiars;4653;;peculiars;独特风味;Peculiars -draggable-resource-packs;4654;;draggableresourcepacks;可拖动资源包;Draggable Resource Packs -fastchest;4655;;fastchest;FastChest; -;4656;1255783;;方块小镇;Yuushya Townscape -architects-palette;4657;;architects_palette;Architect's Palette; -whisperwoods;4658;;whisperwoods;低语之森;Whisperwoods -dimensional-dungeons;4659;;dimdungeons;Dimensional Dungeons; -bosses-of-mass-destruction;4660;;bosses_of_mass_destruction;Bosses of Mass Destruction; -neoelfeos-medieval-pub-decoration;4661;;nefdecomod;Nef's Medieval decoration; -dustrial-decor;4662;;dustrial_decor;'Dustrial Decor; -feders-scarecrows;4663;;feders_scarecrows;Feder的稻草人;Feder's Scarecrows -zetter;4664;;;Zetter; -mystical-pumpkins;4665;;mystical_pumpkins;神秘南瓜;Mystical Pumpkins -skinned-lanterns;4666;;skinnedlanterns;灯笼皮肤;Skinned Lanterns -scarecrows;4667;;;稻草人;Scarecrows -seasonals;4668;;seasonals;季节风味;Seasonals -mimi-mod;4669;;mimi;Musical Instrument Minecraft Interface; -;4670;1253993;blocktuner;音符盒调音助手;BlockTuner -caged-mobs;4671;;cagedmobs;Caged Mobs; -advanced-rifles;4672;;advancedrifles;Advanced Rifles; -tome-of-blood;4673;;tomeofblood;血之宝典;Tome of Blood -blockfront-world-war-ii;4674;;bf;BlockFront; -archaic-guns;4675;;archaicguns;Archaic Guns; -blockcarpentry;4676;;blockcarpentry;BlockCarpentry; -survival-overhaul;4677;;survivaloverhaul;Survival Overhaul; -raining-cats-and-dogs;4678;;;猫狗雨;Raining Cats and Dogs -melt;4679;;;Melt; +industrial-craft;2;515771;IC2,ic2;工业时代2;Industrial Craft 2;IC2 +;3;;RedPowerCore,RedPowerBase;红石力量2;RedPower2;RP2 +BuildCraft;4;884720;BuildCraft|Core,buildcraftlib,buildcraftcore,buildcraftbuilders,buildcrafttransport,buildcraftsilicon,buildcraftfactory,buildcraftrobotics,buildcraftenergy,BuildMod,kamenridercraft4th,BuildCraft|Energy,BuildCraft|Transport,BuildCraft|Factory,BuildCraft|Silicon,BuildCraft|Builders,BuildCraft|Robotics;建筑;BuildCraft;BC +forestry;5;708812;Forestry,forestry;林业;Forestry;FR +railcraft;6;603270;Railcraft,railcraft;铁路;Railcraft;RC +minefactory-reloaded;7;693826;MineFactoryReloaded|CompatVanilla,MineFactoryReloaded|CompatAppliedEnergistics,MineFactoryReloaded|CompatForgeMicroblock,MineFactoryReloaded|CompatThaumcraft,MineFactoryReloaded|CompatThermalExpansion,MineFactoryReloaded|CompatIC2,MineFactoryReloaded|CompatForestry,MineFactoryReloaded|CompatMagicalCrops,MineFactoryReloaded|CompatBuildCraft,MineFactoryReloaded|CompatRailcraft,MineFactoryReloaded,MineFactoryReloaded|CompatAtum,MineFactoryReloaded|CompatBackTools,MineFactoryReloaded|CompatChococraft,MineFactoryReloaded|CompatExtraBiomes,MineFactoryReloaded|CompatForestryPre,MineFactoryReloaded|CompatMystcraft,MineFactoryReloaded|CompatPams,MineFactoryReloaded|CompatRP2,MineFactoryReloaded|CompatSufficientBiomes,minefactoryreloaded;我的工厂重置版;MineFactory Reloaded;MFR +;9;;;等价交换2;Equivalent Exchange 2;EE2 +;10;;ForgottenNature;被遗忘的大自然;Forgotten Nature;FN +;11;250249;THKaguyaMod;辉夜姬的五难题;五つの難題MOD+ ~ Touhou Items; +secretroomsmod;12;;secretroomsmod;密室;SecretRooms;SR +the-camping-mod;13;;;野营;The Camping Mod; +usefulfood;14;;;有用的食物;UsefulFood;UF +powerconverters-portablejims-fork;15;;PowerConverters;能源转换;PowerConverters;PC +;16;;snyke7_Transformers;变压器;Transformers; +;17;407949;jammyfurniture,JammyFurniture;吉米的家具;Jammy Furniture;JF +modular-forcefield-system;18;;modularforcefieldsystem;模块化力场系统;Modular Force Field System;MFFS +minechem;19;;minechem;化学;MineChem;CH +iron-chests;20;372723;IronChest,ironchest;更多箱子;Iron Chests; +balkons-weaponmod;21;;;更多武器;Balkon's WeaponMod;BWM +advanced-machines;22;;AdvancedMachines,advanced_machines;高级机械;AdvancedMachines; +advanced-solar-panels;23;;AdvancedSolarPanel,advanced_solar_panels;高级太阳能;AdvancedSolarPanel;ASP +nuclear-control-2;24;;IC2NuclearControl;核电控制2;Nuclear Control 2;IC2NC +;25;;;魔法艺术;Ars Magica;AM +better-dungeons;26;418940;chocolateQuest;更好的地牢/寻找巧克力;Better Dungeons; +flans-mod-5-5-2;27;494675;flansmod;Flan的枪械;Flan's Mod; +;29;776706;Thaumcraft;神秘时代3;Thaumcraft 3;TC3 +;30;;Forge,forge;Minecraft Forge;;Forge +ee3;31;;EE3;等价交换3;Equivalent Exchange 3;EE3 +minefactory-reloaded;32;;MineFactoryReloaded;我的工厂2;MineFactoryReloaded 2;MFR2 +;33;;;Risugami's ModLoader;; +render-player-api;34;;;玩家渲染API;Render Player API; +player-api;35;;PlayerAPI;玩家API;Player API; +;36;606019;optifine;高清修复;OptiFine;OF +not-enough-items-1-8;41;389937;NotEnoughItems,nei;NEI物品管理器;Not Enough Items;NEI +;42;120501;;TMI内置修改器;TooManyItems;TMI +inputfix;43;83941;InputFix;中文输入修复补丁;Minecraft Language InputFix; +;44;71955;;更多语言;MoLanguage; +custom-npcs;45;936521;customnpcs,AdvNPCs;自定义NPC;Custom Npcs; +millenaire;46;812961;millenaire;千年村庄;Millénaire; +clay-soldiers-mod;47;;claysoldiers;粘土士兵;Clay Soldiers Mod; +mo-creatures;48;836997;mocreatures;更多生物;Mo' Creatures;MOC +;49;291020;pixelmon;精灵宝可梦;Pixelmon;PM +extrabiomesxl;50;;ExtrabiomesXL,extrabiomesxl;更多生态群系;ExtraBiomesXL;EBXL +;51;;gregtech;格雷科技4;GregTech 4;GT4 +tale-of-kingdoms;55;;taleofkingdoms;王国;Tale Of Kingdoms; +;56;;;守护精灵;familiars; +;58;;;正版皮肤显示修正;AntiSteve; +tfcraft;59;887732;terrafirmacraft;群峦传说;TerraFirmaCraft;TFC +;60;;;灵魂碎片;Soul Shards;SS +the-twilight-forest;61;733312;twilightforest;暮色森林;The Twilight Forest;TF +binnies-mods;62;;ExtraBees,extrabees;更多蜜蜂;Extra Bees;EB +portal-gun;63;777495;PortalGun,portalgun;传送枪;Portal Gun; +simpleores;64;;simpleores;简单矿石;SimpleOres; +smart-moving;65;;SmartMoving;灵活动作;Smart Moving; +easycrafting;66;;;轻松合成;Easy Crafting; +;67;;;热力膨胀3;Thermal Expansion 3;TE3 +;68;;;费如罗的枪械;Ferullo's Guns; +;69;;compactkineticgenerators;压缩风电阵列;Compact Windmills; +;70;;;元素魔法;Manasys; +computercraft;71;473694;ComputerCraft;电脑;Computer Craft;CC +;72;['313835'];SpecialArmor;特殊防具;Special Armor; +inventory-tweaks;73;877466;inventorytweaks;R键整理;Inventory Tweaks; +;74;;;更多弓;More Bows; +;75;;;召唤奴仆;Minions; +ender-storage;76;870812;enderstorage;末影存储;Ender Storage; +;77;521541;DQMV;勇者斗恶龙;Dragon Quest Monster;DQM +;78;;;内置音乐播放器;MCMP-1; +;80;800848;NBTEdit,nbtedit;内置NBT编辑器;In-Game NBTEdit;IGN +extra-utilities;81;377817;ExtraUtilities;更多实用设备;Extra Utilities;ExU +;84;126486;;立体机动装置;フックショット; +rotarycraft;85;;RotaryCraft;旋转工艺;RotaryCraft;RoC +;86;132684;;万用工具;OmniTools; +applied-energistics-1;87;;AppliedEnergistics;应用能源;Applied Energistics;AE +;88;;;奥法卷轴;Arcane Scroll; +;89;;HarkenScythe_Core;死神之镰;Harken Scythes; +;90;;;巨剑与大盾;Asgard Shield; +;91;;;锁链;CHAINZ: THE -MISSING- IRON LINK; +Universal-Electricity;92;405261;;通用电力;Universal Electricity;UE +;93;;;比狼好;Better Than Wolves;BTW +the-aether;94;797941;aether,aether_legacy;天境;The Aether; +;95;;;电脑外设;MiscPeripherals; +;96;216074;;高级核电;Advanced Reactors;AR +assassincraft-assassins-creed-mod;97;334358;AssassinCraft;刺客信条;AssassinCraft; +;98;;RWG;更真实的地图生成;Realistic World Gen;RWG +custom-recipes;99;;;自定义合成表;Custom Recipes; +minecraft-comes-alive-mca;100;727273;mca;虚拟人生/凡家物语;Minecraft Comes Alive;MCA +tinkers-construct;101;;TConstruct;匠魂;Tinkers' Construct;TiC +;102;;;BukkitForge;; +forge-essentials-74735;103;;;ForgeEssentials;; +;104;;palaria;帕拉瑞亚;Palaria; +translocators;105;;Translocator,translocators;转运器;Translocators; +craftguide;106;723306;craftguide;G键合成指南;CraftGuide; +;107;;mobdictionary;生物图鉴;Mob Dictionary; +biomes-o-plenty;108;814732;biomesoplenty;超多生物群系;Biomes O' Plenty;BOP +;109;588294;BambooMod;竹;Bamboo; +;110;;;立体机动装置(Ibemu版);立体機動装置MOD;TDMG +enhanced-portals-3;111;;enhancedportals;增强传送门3;Enhanced Portals 3; +compact-solars;112;807551;compactsolars,CompactSolars;压缩太阳能阵列;CompactSolars; +bibliocraft;113;;BiblioCraft,bibliocraft;收藏馆;BiblioCraft; +natura;114;;Natura,natura;自然;Natura; +atomic-science;115;;atomicscience;原子科学;Atomic Science; +;116;985499;shouldersurfing;越肩视角;Shoulder Surfing; +atum;117;;atum;阿图姆:沙漠之旅/亚图姆:金沙之旅;Atum 2: Return to the Sands;atum2 +blockphysics_by_id_miner;118;;BlockPhysics;方块物理学;BlockPhysics; +;119;;;火箭科技;Rocket Science;RS +;120;;grimoireofgaia;盖亚魔典2;GRIMOIRE OF GAIA 2;GOG2 +remain-in-motion;121;;JAKJ_RedstoneInMotion;运动红石机构;Redstone in motion; +;122;;;开放式电脑传感器;OpenCCSensors;OpenCCS +;123;;OpenPeripheral;开放式电脑外设;OpenPeripheral; +modular-powersuits;124;;powersuits;模块化动力套装;Modular Powersuits;MPS +;129;;immibis_microblocks;Immibis的小方块;Immibis's Microblocks; +;132;;RedLogic;红石逻辑;RedLogic; +;;;;能量工厂;Power Craft; +;134;;ObsidiPlates;黑曜石压力板;ObsidiPlates; +;135;;InfiniTubes;终极管道;InfiniTubes; +flatsigns;136;;FlatSigns;平置牌子;FlatSigns; +switches;137;;switches;按钮开关;Switches; +artifice;138;;Artifice;工匠的手艺;Artifice; +archimedes-ships;140;;ArchimedesShipsPlus,ArchimedesShips;阿基米德之舟;Archimedes' Ships; +cubebots;141;;;魔方机器人;CubeBots;CB +truss-mod;142;;TrussMod;桁架;TrussMod; +mutant-creatures-mod;143;;MutantCreatures;突变生物;Mutant Creatures; +;144;;;魔能II;Minegicka2; +logistics-pipes;145;;LogisticsPipes,logisticspipes;物流管道;Logistics Pipes;LP +binnies-mods;146;;ExtraTrees,extratrees;更多树;Extra Trees; +magic-bees;148;;MagicBees,magicbees;魔法蜜蜂;Magic Bees;MB +carpenters-blocks;149;461134;CarpentersBlocks;木匠方块;Carpenter's Blocks; +mystcraft;150;;mystcraft;神秘岛;Mystcraft; +;151;;;牛仔帽;Cowboy Hat Mod; +;152;127877;;英文显示默认字体;FontsFix; +;153;354477;;达特工艺;DartCraft;DC +minesweeper-mod;154;;MinesweeperMod;扫雷;Minesweeper; +minechess;155;;MineChess;国际象棋;MineChess; +;156;143601;MineCharacter;职业;MineCharacter; +;157;;tennox_bacteria;细菌;Bacteria; +;158;145719;;贝爷;BearGrylls;BG +;159;;factorization;因式分解;Factorization;FZ +;160;;;我的幻想;MineFantasy;MF +;161;;;机关;UgoCraft; +;162;;ColoredWool;真彩色羊毛;Full RGB Colored Wool; +;163;;;你是苦力怕;You Are The Creeper; +project-red-base;164;;ProjRed|Core,projectred-integration,projectred-transmission,projectred-expansion,projectred-relocation,projectred-transportation,projectred-fabrication,projectred-exploration,projectred-compat,projectred-illumination,ProjRed|Transmission,ProjRed|Integration,ProjRed|Illumination,ProjRed|Expansion,ProjRed|Exploration,ProjRed|Transportation,ProjRed|Fabrication,ProjRed|Compatibility,projectred-core;红石计划;ProjectRed;PR +;165;;OpenXP;开放式经验;OpenXP; +dimensionaldoors;166;896027;dimdoors;次元门;Dimensional Doors; +chickenchunks;167;;chickenchunks;区块载入器;ChickenChunks; +dlt2;168;;dynamictanks;动态蓄水槽;Dynamic Liquid Tanks;DLT +;169;;;海绵科技;Technical Vanilla; +;170;778743;webdisplays,WebDisplay;内置网页浏览器;WebDisplays;WD +morph;171;;Morph;变身;Morph; +;172;;;自定义旗帜;Custom Flags; +;173;['953855'];;泰拉瑞亚3D;Terraria 3D;T3D +extracells2;174;;extracells;更多存储单元2;Extra Cells 2;EC2 +;175;;itemrender;渲染图片导出;Item Render;IR +;;;;齐柏林;Zeppelin; +;177;;;乐高;Billund; +;178;;AlchemyPlusPlus;炼金++;Alchemy++; +better-bows;179;;;更好弓箭系统;Better Archery Mod; +mumblelink;180;;mumblelink;Mumble语音链接;Mumblelink; +ender-io;181;677063;enderioconduitsappliedenergistics,enderiointegrationforestry,enderioconduitsopencomputers,enderioconduitsrefinedstorage,enderioendergy,enderiobase,enderioconduits,enderiointegrationticlate,enderiomachines,enderiopowertools,enderiointegrationtic,enderio,EnderIO;末影接口;Ender IO;EIO +;184;;LevelStorage;等级存储;LevelStorage; +electrodynamics;185;;electrodynamics;电动力学;Electrodynamics; +elite-armageddon;186;;;太阳启示录;Elite Armageddon; +mekanism;187;654082;Mekanism,mekanism;通用机械;Mekanism;Mek +;188;;;吹熄火焰!;Blow Me!; +;189;;Somnia;梦短人生长/真实睡眠;Somnia; +magic-crusade-rpg-mod;190;;;魔法远征:魔法十字军;Magic Crusade; +invasions;191;;Invasion,mod_Invasion;入侵;Invasion; +mb-battlegear-2;192;;battlegear2;挖矿与砍杀:双持与战备2;Mine & Blade: Battlegear 2; +;193;;;青蛙化工;FrogCraft;FC +;194;802464;GalacticraftCore,galacticraftplanets,GalacticraftMars,galacticraftcore;星系;GalactiCraft;GC +;195;;dungeonpack;地牢拓展;DungeonPack; +;196;;LittleBlocks;小方块;Little Blocks; +;197;;CustomStuff2;自定义物品2;Custom Stuff 2;CS2 +journeymap;198;612917;JourneyMapServer,journeymap;旅行地图;Journey Map;JM +;199;;;线程优化;TickThreading; +underground-biomes;201;;;科学地质;Underground Biomes;UB +fpsplus-lagfixes;202;;;FPS优化;FPS Plus; +ars-magica-2;203;;arsmagica2;魔法艺术2;Ars Magica 2;AM2 +thaumcraft;204;776706;Thaumcraft;神秘时代4;Thaumcraft 4;TC4 +highlands;205;;;高地;Highlands; +doggy-talents;206;713458;doggytalents;小狗天才;Doggy Talents;DT +plasmacraft;207;;plasmacraft;电浆工艺;PlasmaCraft;PC +;208;;;更多生命;More Health ENHANCED; +fossils;209;;HungerOverhaul;考古与化石;Fossils and Archeology Revival;F/A +glenns-gases;210;;gasesFrameworkCore,gasesFramework,gases;格林的气体;Glenn's Gases; +the-lord-of-the-rings-mod-legacy;211;363128;lotr;魔戒:传承;The Lord of the Rings Mod: Legacy;LotR +thaumic-tinkerer;212;;ThaumicTinkerer,ThaumicTinkerer-preloader,thaumictinkerer;神秘工匠;Thaumic Tinkerer;TT +;213;;Paleocraft;古生代;Paleocraft; +metallurgy;214;;;冶金3;MetallurgyIII; +;216;;xycraft;XyCraft;; +chococraft;217;;chococraft;陆行鸟;ChocoCraft; +pams-harvestcraft;218;669856;harvestcraft;潘马斯农场;Pam's HarvestCraft;PHC +blood-magic;219;566726;AWWayofTime,bloodmagic;血魔法;Blood Magic;BM +opis;220;;Opis;Opis;; +;221;169093;;世界树/巨树;Yggdrasill; +openblocks;222;;OpenBlocks,openblocks;开放式方块;OpenBlocks;OB +;223;;TinyCarts;微型矿车;TinyCarts; +;225;;;冒险;AdventureCraft;AC +;226;;MITE;MC实在是太简单了;Minecraft Is Too Easy;MITE +randomcraft-v0-1-0;227;;RandomCraft;随机工艺;RandomCraft; +;228;;DragonMounts;龙坐骑/龙骑士;Dragon Mounts;DM +animal-bikes;229;;animalbikes;动物坐骑;Animal Bikes;AB +;230;165454;BetterGrassAndLeavesMod;更好的草地和树叶;Better Grass & Leaves; +electro-magic-tools;232;;EMT;电力魔法工具;Electro-Magic Tools;EMT +forbidden-magic;233;;ForbiddenMagic;禁忌魔法;Forbidden Magic;FM +mobtalker2;234;;mobtalker2;怪物交谈2;MobTalker 2; +icbm-classic;235;;;洲际导弹;ICBM;ICBM +thaumic-infusion;236;; thaumicinfusion,thaumicinfusion;神秘注魔;Thaumic Infusion;TI +thaumic-exploration;237;;ThaumicExploration;神秘探险;Thaumic Exploration; +deconstruction-table;238;;deconstruction;解构工作台;Deconstruction Table; +;240;;;岩浆工具;The Magma Items; +b0bgarys-growable-ores;241;;B0bGrowsOre;可生长矿石;B0bGary's Growable Ores;BGO +;242;;;基础ID修复工具;Idfix; +;243;;;高级ID修复工具;IdfixMinus; +;244;296056;;远陆时代2;Far Land Era2;FLE2 +;245;;CompactEngine;高效率引擎;Compact Engine; +waila;246;;Waila,waila;高亮信息拓展;What am I looking at;Waila +chaoscraft-2;247;; Chaos_Technology;混沌工艺;ChaosCraft;CC +scenter-mod;248;;;矿物追踪;Scenter; +;249;401486;otaku_craft;御宅工艺;Otaku Craft;OtC +ex-nihilo;250;195925;exnihilo;无中生有;Ex Nihilo;ExN +reactorcraft;251;;ReactorCraft;反应堆工艺;ReactorCraft;ReC +bctools;252;;;BC扩展:更多工具;Buildcraft Tools; +additional-buildcraft-objects;253;;;更多管道;Additional Buildcraft Objects; +foundry;254;;foundry;金属工坊;Foundry; +gravitation-suite;255;734193;GraviSuite,gravisuite;重力装甲;Gravitation Suite; +redstone-arsenal;256;;RedstoneArsenal,redstonearsenal;红石兵工厂;Redstone Arsenal;RSA +big-reactors;257;348989;BigReactors;大型反应堆;Big Reactors;BR +;258;;;谐振感应;Resonant-Induction;RI +endertanks;259;;endertanks;末影水槽;Ender Tanks; +applied-energistics-2;260;798231;appliedenergistics2,appliedenergistics2-core;应用能源2;Applied Energistics 2;AE2 +hopper-ducts;261;;HopperDuctMod,hopperducts;漏斗管道;Hopper Ducts; +autofish;262;;;自动钓鱼;Autofish; +mrcrayfish-furniture-mod;263;321693;cfm;MrCrayfish 的家具;MrCrayfish's Furniture Mod;CFM +wireless-redstone-cbe;264;621428;WR-CBE,WR-CBE|Logic,WR-CBE|Addons,WR-CBE|Core,wrcbe;无线红石;Wireless Redstone;WR-CBE +;265;;;终极农业;Agent's Agriculture; +;266;;;异次元物品存储;Extradimensional Item Storage;EIS +per-fabrica-ad-astra-geologica;267;;PFAAGeologica;自合成至星辰:真实地理;Per Fabrica Ad Astra: Geologica;PFAA +;268;;;更好的矿物挖掘;Better Mining;BM +redstone-furnace;269;;;红石炉;Redstone Furnace; +pneumaticcraft;270;;PneumaticCraft,PneumaticCrap,pneumaticcraft;气动工艺;PneumaticCraft: Repressurized;PnC +;271;;;能源转换器;Transducers; +thirst-mod;272;78952;thirstmod;饮水;Thirst Mod; +tubes;273;;tubes;管道;Tubes; +pchan3-steamship-steamboat-pirates;274;;;飞艇与汽船;SteamShip - SteamBoat and Pirates;PChan3 +;275;;powersuits;模块化动力装甲扩展;Modular Powersuits Addons;MPSA +betterfarming;276;;;农业增强;Better Farming; +;277;;AdvancedTools;IC扩展:高级工具;Advanced Tools; +lots-of-food;278;73013;LotsOfFood;更多的食物;Lots Of Food; +;279;;FoodPlus;更多食物;Food Plus; +aquaculture;281;;aquaculture;水产养殖2;Aquaculture 2; +project-bench;282;;;高级工作台;Project Bench; +;283;;extendedWorkbench;扩展工作台;Extended Workbench; +apples-plus;284;;apples;更多苹果;Apples+; +;285;165727;;啤酒;Beer Mod; +qcraft;286;;qCraft;量子物理;QCraft;QC +;287;;enderCraft;末影工艺;EnderCraft; +mad-science;288;;;疯狂科学;Mad Science; +;289;;;采石场增强;Quarry Plus; +enviromine;290;;enviromine;更多生存要素;EnviroMine; +;291;;;群峦扩展;ExtraFirma;EF +the-erebus;292;856406;erebus;混沌之地;The Erebus; +emerald-mod;293;282677;emeraldmod;绿宝石Mod;Emerald Mod; +configuration;294;;lucky;幸运方块;Lucky Block;LB +dynamic-lights;295;593066;DynamicLights,DynamicLights_onFire,DynamicLights_creepers,DynamicLights_dropItems,DynamicLights_entityClasses,DynamicLights_mobEquipment,DynamicLights_thePlayer,DynamicLights_otherPlayers,DynamicLights_flameArrows;动态光源;Dynamic Lights;DL +yarr-cute-mob-models-remake;296;;yarr_cutemobmodels;怪物娘化;Yarr Cute Mob Models - Remake; +monster-hunter-frontier-craft;297;;mhfc;怪物猎人边境工艺;Monster Hunter Frontier Craft;MHFC +zombie-awareness;298;;zombieawareness;僵尸意识;Zombie Awareness;ZA +remote-io;299;;RIO;远程接口;Remote IO;RIO +electrical-age;300;;Eln;电力时代;Electrical Age;ELN +;301;;;可升级机器;Upgradable Machines; +;302;;PowerUtils;电力转换;Power Utilites; +minor-alchemy;303;;;小型炼金术;Minor Alchemy; +;304;;;更多TNT;TooMuchTNT; +;305;;;更多爆炸物;More Explosives Mod; +;306;;;生物病毒;MineInfection; +;307;;;高级能量工具;Advanced Flux Tools; +;308;;;自然工艺;Natural Craft;NC +mcicraft;309;;mcicraft,mcicraft_machines,mcicraft_redstone,mcicraft_farming;MCI工艺;MCI Craft; +;310;;;能源操纵;Energy Manipulation; +;311;;Lantern;手电与照明;Lanterns and Flashlights; +engineers-toolbox;312;;eng_toolbox;工程师工具箱;Engineer's Toolbox; +e-tools-redstone-powered-tools;313;;;电子工具:红石供电工具;E-Tools: Redstone Powered Tools; +;314;;AppliedThermodynamics;应用热力学;Applied Thermodynamics; +modular-systems;315;;modularsystems;模块化熔炉2;Modular Furnaces 2/Modular Systems; +;316;;;原子科技;Atomicraft; +Traincraft;317;;;火车工业;Traincraft;TC +hydraulicraft;318;;HydCraft;液压工艺;Hydraulicraft;HC +utilities3;319;;;流体能量;Utilities³; +;320;;;科学;The Science Mod;TSM +;321;;;和平工艺;InspiritCraft; +metallurgy;322;273214;MetallurgyCore,Metallurgy,metallurgycm,metallurgy;冶金4;Metallurgy 4;ML4 +school-mod-forge-1-14;324;;;学校;School Mod; +witchery;325;314815;witchery;巫术;Witchery; +growthcraft-community-edition;326;;Growthcraft,growthcraft_rice,growthcraft_milk,growthcraft_hops,growthcraft_grapes,growthcraft_fishtrap,growthcraft_bees,growthcraft_cellar,growthcraft_bamboo,growthcraft_apples,Growthcraft|Rice,Growthcraft|Milk,Growthcraft|Hops,Growthcraft|Grapes,Growthcraft|Fishtrap,Growthcraft|Bees,Growthcraft|Bamboo,Growthcraft|Apples,Growthcraft|Cellar;生长工艺;GrowthCraft;GC +gregtech-5-unofficial;327;352465;gregtech_addon;格雷科技5;GregTech 5;GT5 +mantle;329;;Mantle,mantle;地幔;Mantle; +customoregen;330;;CustomOreGen;自定义矿物生成;Custom Ore Generation;COG +littlemaidmobx;331;932911;MMMLibX,lmmx;女仆;LittleMaidMob;LMM +botania;332;722470;botania,Botania;植物魔法;Botania;BOT +alternate-terrain-generation;333;;atg;交替性地形生成;Alternate Terrain Generation;ATG +gendustry;334;441078;gendustry;基因工业;Gendustry; +;336;199037;;更多的配方;NotEnoughRecipes;NER +;337;;CrossbowMod2;十字弩2;Crossbow2; +;338;;mario;超级马里奥;SuperMario; +betterfonts;339;187674;BetterFonts;更好的字体;BetterFonts;BF +zelda-sword-skills;340;;zeldaswordskills;塞尔达剑技;ZELDA SWORD SKILLS;ZSS +minemenu;342;302947;minemenu;我的菜单;MineMenu; +symcalc;343;;symcalc;对称度运算仪;Symcalc; +;344;['302178'];mod_ecru_MapleTree;枫树;MapleTree;MT +iguanas-tinker-tweaks;345;425981;;匠魂强化;TiC Tweaks; +jabba;346;;JABBA;更好的储物桶;Just Another Better Barrel Attempt;JABBA +mcheli-minecraft-helicopter-mod;347;;mcheli;MC直升机;MC Helicopter MOD;MCheli +ex-aliquo;348;;exaliquo;Ex Aliquo;; +steves-carts-2;350;;StevesCarts;史蒂夫矿车2;Steve's Carts 2;SC2 +mariculture;351;321251;Mariculture;海洋物语;Mariculture; +evilcraft;352;;evilcraft,evilcraftcompat;邪恶工艺;EvilCraft;EC +projecte;353;1109380;ProjectE,projecte;等价交换重制版;ProjectE;PE +falling-meteors-mod;354;;meteors;陨石;Falling Mateors; +thermal-expansion;357;805200;ThermalExpansion;热力膨胀4;Thermal Expansion 4;TE4 +;358;;;控制包/更方便快捷的控制;ControlPack;CP +glacia-dimension;360;;;冰河时代;Glacia; +water-power;361;190676;WaterPower,waterpower;水力科技;Water Power;WP +realtrainmod;362;781058;rtm;真实火车模组;RealTrainMod;RTM +applemilktea2;363;464690;DCsAppleMilk;苹果奶茶2;Apple&Milk&Tea! ver2;AMT2 +;364;;ihouse;我的房屋;iHouse; +flaxbeards-steam-power;365;315722;Steamcraft;FSP蒸汽动力;Flaxbeard's Steam Power;FSP +slashblade;366;726664;flammpfeil.slashblade;拔刀剑;SlashBlade; +steves-factory-manager;367;;StevesFactoryManager;史蒂夫工厂管理;Steve's Factory Manager;SFM +;369;296193;;神秘管道;Thaumic Pipes; +thaumcraftgates;370;;thaumiumPipe;神秘管道;ThaumcraftGates; +;371;;;神秘合成;Thaumcraft Recipes; +;372;;;玩家死亡掉头;Player Heads; +notenoughkeys;373;;;更好的按键控制;Not Enough Keys; +;374;273086;;更深的雪;Snow Deeper; +pet-bats;375;295007;petbat;宠物蝙蝠;Pet Bat Mod; +;376;241681;;光桥和门;Light Bridges and Doors; +crafting-pillar-mod;377;;craftingpillars;合成柱;Crafting Pillar Mod;CPM +ultratech;378;;UltraTech;次元科技;UltraTech;UT +;379;;;高级排斥系统;Advanced Repulsion Systems;ARS +atomicstrykers-infernal-mobs;380;592395;InfernalMobs,infernalmobs;稀有精英怪;Infernal Mobs; +applecore;381;;AppleCore,applecore;苹果核;AppleCore; +thaumic-energistics;385;791638;thaumicenergistics;神秘能源;Thaumic Energistics; +;386;172867;TofuCraft;豆腐工艺;TofuCraft; +chisel;387;641383;chisel;凿子;Chisel; +nuclearcraft-mod;388;;nuclearcraft;核电工艺;NuclearCraft;NC +opencomputers;389;618383;OpenComputers,OpenComputers|Core,opencomputers,opencomputers|core;开放式电脑;Open Computers;OC +elemental-stones;390;;;元素之石;Elemental Stones;ES +waila-nbt;392;;WailaNBT;万用高亮显示;Waila NBT; +thaumcraft-node-tracker;393;;;神秘节点追踪;Thaumcraft Node Tracker; +geochests;394;;;箱载世界;Geochests; +parachutemod;395;;parachutemod;降落伞;Parachute; +gem-buffs-infinite-potion-effects;396;;;宝石效果/增益宝石;Gem Buffs;GB +rftools;397;416167;rftools;RF工具箱;RFTools; +;398;;MagicYarn;AtomicStryker的魔法线;AtomicStryker's Magic Yarn; +grimoire-of-gaia;399;679274;GrimoireOfGaia,grimoireofgaia;盖亚魔典3;Grimoire of Gaia 3;GOG3 +;400;;;怀旧地形;Old World Gen;OWG +advent-of-ascension-nevermine;401;325420;nevermine;虚无世界2;Nevermine 2;AoA2 +academycraft;402;421967;academy-craft,academy;超能力/学园都市;AcademyCraft;AC +the-spice-of-life;404;722595;SpiceOfLife,spiceoflife;生活调味料;The Spice of Life;SOL +;405;;;更好的载入界面;Minecraft Loader; +automagy;407;;Automagy;自动化魔法;Automagy; +storage-drawers;408;798307;StorageDrawers,storagedrawers;储物抽屉;Storage Drawers; +wintercraft-gruntpie224;409;;;冬天的世界;Wintercraft; +;410;441072;FoodCraft;食物工艺;FoodCraft;FC +;411;610367;;缝合玻璃;Pane In The Glasses; +shincolle;412;420381;shincolle;深海舰队收藏;ShinColle; +;413;;;猫之手;猫の手 ~Hand of Cats~; +unicode-font-fixer;414;398402;UnicodeFontFixer;Unicode字体修复;UnicodeFontFixer;UFF +lanteacraft;415;;LanteaCraft;星际之门;LanteaCraft; +matteroverdrive-17-edition;416;802474;matteroverdrive,mo;超能物质;Matter Overdrive;MO +tainted-magic;417;807351;TaintedMagic;污秽魔法;Tainted Magic;TM +minetweaker3;418;;MineTweaker3;MineTweaker 3;;MT +treecapitator;419;;Treecapitator;砍树;Tree Capitator; +;420;;;即时建造;Insta House; +multi-page-chest;421;142597;MultiPageChest,multipagechest;多页箱子;Multi-Page Chest;MPC +;422;410261;;凋零蛋原创不科学和平包;WESPP; +draconic-evolution;423;724610;draconicevolution;龙之进化/龙之研究;Draconic Evolution;DE +galacticraft-add-on-more-planets;424;453885;MorePlanet,moreplanets;更多行星;More Planets; +thermal-foundation;425;;ThermalFoundation,thermalfoundation;热力基本;Thermal Foundation;TF +;426;463431;colourfulsurvivalmod;多姿多彩的生存;Colourful Survival Mod; +;427;461268;;基岩破坏法杖;Bedrock Breaker; +ding;428;;ding;界面进入提醒;Ding; +ender-utilities;429;;enderutilities;末影设备;Ender Utilities; +magical-crops;430;440898;magicalcrops,magicalcropsarmour;魔法作物;Magical Crops; +headcrumbs;431;;headcrumbs;更多头颅;Headcrumbs; +ex-astris;432;;exastris;星辉生万物;Ex Astris;EA +xelitez-frostcraft;433;;XEZFrostcraft;冰冻工艺;FrostCraft; +hardcore-ender-expansion;434;456093;HardcoreEnderExpansion;极限末地生存;Hardcore Ender Expansion;HEE +more-fun-quicksand-mod;435;449666;MFQM;更多流沙;More Fun Quicksand Mod;MFQM +fastcraft;436;343542;FastCraft;快速工艺;FastCraft; +forgeautoshutdown-1-12-2;437;;forgeautoshutdown;Forge Auto Shutdown;; +;438;120571;;行动助手;Movement Assistant; +sao-ui;439;473756;saoui;刀剑神域UI;Sword Art Online UI;SAOUI +extratic;440;;ExtraTiC;匠魂扩展;Extra TiC; +dimensional-pockets;441;;dimensionalPockets;四次元口袋;DimensionalPockets;DP +;442;631110;modJ_JBRobot,modJ_JointBlock,modj_jointblock;机器方块;JointBlock; +security-craft;443;774616;securitycraft;安全工艺;Security Craft;SC +buildcraft-additions;444;;bcadditions;建筑扩充;Buildcraft Additions; +bedrockium-mod;445;;be;基岩工艺;Bedrockium Mod;BE +blocksteps;446;;blocksteps;Blocksteps;; +thaumic-horizons;447;;ThaumicHorizons;神秘视界;Thaumic Horizons;TH +modtweaker;448;;modtweaker2,modtweaker;ModTweaker;;MoT +lootbags;449;720841;enhancedlootbags,lootbags;战利品;Loot Bags;LB +compact-lava-generator;450;522808;CLG;高级地热发电机;Compact Lava Generator;CLG +project-zulu;451;;ProjectZulu|Core;祖鲁;Project Zulu; +;452;;;许多生物;LotsOMobs;LOM +chinacraft;453;518660;chinacraft;华夏文明;ChinaCraft;CC +thaumcraft;454;776706;;神秘时代5;Thaumcraft 5;TC5 +;455;681514;gregtech;格雷科技6;GregTech 6;GT6 +betterbeginnings-mod;456;;;更好的开局;Better Beginnings;BB +utility-mobs;457;;;工具怪物;Utility Mobs; +hunger-overhaul;458;785119;;饥饿改革;Hunger Overhaul;HO +jei;459;1175372;jei,JEI;JEI物品管理器;Just Enough Items;JEI +jeiaddons;460;;;JEI Addons;; +magneticraft;461;;Magneticraft;磁场工艺;MagnetiCraft;MAGC +chromaticraft;462;;ChromatiCraft;缤纷纪元;ChromatiCraft;ChC +immersive-engineering;463;450097;ImmersiveEngineering,immersiveengineering;沉浸工程;Immersive Engineering;IE +armourers-workshop;464;382319;armourersWorkshop,armourers_workshop,plushieWrapper;时装工坊;Armourer's Workshop; +;465;;plo;植物矿石;Plants To Ores; +;466;;;命令强化;Slash; +et-futurum;467;459404;etfuturum;把未来带回现实;Et Futurum; +cooking-for-blockheads;468;545680;cookingforblockheads,cookingbook;懒人厨房;Cooking for Blockheads;CB +;469;485184;nstd;不要饿死;No Starve To Death; +psi;470;;psi,Psi;Psi;; +good-nights-sleep;471;965322;good_nights_sleep;晚安的梦境;Good Night's Sleep;GNS +binnies-mods;472;;;Binnie's Mods;; +baubles;473;;Baubles,baubles;饰品栏;Baubles; +more-swords-mod;474;;;更多剑;MoreSwords; +thaumic-bases;475;;thaumicbases;神秘基础学;Thaumic Bases;TB +essentialcraft-3;476;;essentialcraft;源质魔法3;EssentialCraft 3;EC3 +;477;;Wa;和风;和風;Wa +hardcore-questing-mode;478;1101667;HardcoreQuesting,hardcorequesting;困难任务;Hardcore Questing Mode;HQM +unidict;479;600649;unidict;矿辞统一;UniDict;UD +thermal-dynamics;480;;ThermalDynamics,thermaldynamics;热动力学;Thermal Dynamics;TD +zoology;481;;;动物学;Zoology; +;482;;pmp,plantmegapack;植物世界;Plant Mega Pack;PMP +thaumic-revelations;483;;trevelations;神秘启示录;Thaumic Revelations; +;484;604292;;更多燃料;MoreFuel; +warp-book;485;;warpbook;传送书;Warp Book;WB +ex-compressum;486;676165;excompressum;压缩工具;Ex Compressum; +simply-jetpacks;487;;simplyjetpacks;简易喷气背包;Simply Jetpacks;SJ +blood-arsenal;488;958995;BloodArsenal,bloodarsenal;血液兵工厂;Blood Arsenal; +sim-u-kraft;489;530048;ashjacksimukraftreloaded;模拟城市;Sim-U-Kraft Reload;Sim-U +superheroes-unlimited;490;693397;;超级英雄无限;Superheroes Unlimited;SU +;491;;Oceancraft;海洋世界;Oceancraft; +;492;;;能源链接;BC-IC2 Crossover; +;493;618763;AencEx,MoreEnchants;更多附魔;More Enchantments; +witching-gadgets;494;;WitchingGadgets,WitchingGadgetsCore;巫师宝具;Witching Gadgets;WG +buildcraft-compat;496;;BuildCraft|Compat,buildcraftcompat;建筑兼容;Buildcraft Compat; +extrabotany;497;596279;ExtraBotany,extrabotany;额外植物学;ExtraBotany;EXBOT +botania-unofficial;498;;;植物魔法非官方版;Botania Unoffical; +angry-pixel-the-betweenlands-mod;499;804242;thebetweenlands;交错次元/黑暗沼泽;The Betweenlands;BL +real-first-person-render;500;773042;;真实的第一人称;Real First-Person Render; +;501;610780;;丹药笔记;PillNote;PN +;502;;;TW-信息;TW-Info;TW-Info +custom-stuff-3;503;;CustomStuff3;自定义物品3;Custom Stuff 3;CS3 +lockdown;504;;lockdown;地图生成锁定;Lockdown; +avaritia;505;734399;Avaritia,avaritia;无尽贪婪;Avaritia; +minecraft-flight-simulator;506;;mfs;飞行模拟;Minecraft Flight Simulator;MFS +essential-thaumaturgy;507;;essenthaum;源质神秘学;Essential Thaumaturgy; +abyssalcraft;508;664279;abyssalcraft;深渊国度;AbyssalCraft;AC +calculator;509;440074;calculator;运算工艺;Calculator;CC +sextiarysector2;510;;;农业黑科技;Sextiary Sector 2;SS2 +warpdrive;511;713261;WarpDrive;曲率驱动;WarpDrive;WD +futurepack;512;1102237;fp.api;飞向未来;Futurepack Mod;FP +hbms-nuclear-tech-mod;513;;hbm;HBM的核科技;HBM's Nuclear Tech;NTM/HBM +agricraft;514;;AgriCraft,agricraft;农业工艺;AgriCraft;AC +arcane-engineering;515;;arcane_engineering;奥法工程学;Arcane Engineering; +immersive-integration;516;;immersiveintegration;Immersive Integration;; +ae2-stuff;517;;ae2stuff;AE2 Stuff;; +minetweaker-recipemaker;518;;MTRM;可视化合成表编辑器;MineTweaker RecipeMaker;MTRM +thaumic-dyes;519;;thaumicdyes;神秘染料;Thaumic Dyes; +gadomancy;520;;gadomancy;魔像秘经;Gadomancy; +inventory-pets;521;437983;inventorypets;背包宠物;Inventory Pets; +levels;522;;;装备等级;Levels; +keeping-inventory;523;592605;keepinginventory;Keeping Inventory;; +orespawn;524;464954;OreSpawn,orespawn;矿石菌种;OreSpawn;OS +reliquary-v1-3;525;;xreliquary;圣遗物;Reliquary; +mo-bends;526;729115;mobends;更多弯曲;Mo' Bends; +quark;527;1155355;quark,Quark;夸克;Quark; +blood-magic;528;566726;bloodmagic,BloodMagic;血魔法2;Blood Magic 2;BM2 +official-divinerpg;529;1080271;divinerpg;神圣RPG;DivineRPG; +harvest-festival;530;658968;festival;丰收物语;Harvest Festival;HF +tough-as-nails;531;849264;toughasnails;意志坚定;Tough As Nails;TAN +non-update;532;;non_update;不再有更新;Non Update; +clayium;533;;clayium;粘土工业;Clayium; +better-storage;534;;betterstorage;更好的储存;Better Storage; +davincis-vessels;535;475292;davincisvessels;达芬奇之舟/达芬奇的船;Davincis Vessels; +bspkrscore;536;430478;bspkrsCore;bspkrs核心;bspkrsCore; +techguns;537;['631578'];Techguns,techguns_core;科技枪;Techguns;TG +Iron-Backpacks;538;;ironbackpacks;特殊背包;Iron Backpacks;IB +openmodularturrets;539;;openmodularturrets;开放式炮台;OpenModularTurrets;OMT +technomancy;540;;technom;量子魔法;Technomancy; +quantumflux;541;668576;quantumflux;量子通量;QuantumFlux;QF +blocksniffer;542;;sniffer;方块探测;Block Sniffer; +dragonapi;543;;;Dragon API;; +electricraft;544;;ElectriCraft;电力工艺;ElectriCraft;EC +candycraft;545;459723;candycraftmod;糖果世界;CandyCraft; +;546;694067;ihl;IHL Tools & Machines;;IHL +minefantasy2;547;;minefantasy2;我的幻想2;MineFantasy2;MF2 +;548;;;更高的世界;TallWorlds;TW +rails-of-war;549;;;铁路战争;Rails of War;RoW +actually-additions;550;841281;ActuallyAdditions,actuallyadditions;实用拓展;Actually Additions;AA +galaxy-space-addon-for-galacticraft;551;857805;GalaxySpace,galaxyspace;星空;Galaxy Space;GS +latiao-craft;552;720880;latiaocraft;辣条工艺;Latiao Craft;LTC +;553;;TofuFactory;豆腐工厂重置版;Tofu Factory Reloaded;TFR +meteorcraft;554;;;陨石工艺;MeteorCraft; +iguanas-tinker-tweaks;555;425981;IguanaTweaksTConstruct;匠魂增强;Iguanas Tinker Tweaks; +arrow-cam;556;;;箭矢视角;Arrow Cam Mod;ACM +tea-the-story;557;562372;teastory;茶风·纪事;Tea the Story;TS +techreborn;558;777062;techreborn,techreborn_compat;科技复兴;Tech Reborn;TR +infusinbrewing;559;;InfusionBrewing;注魔酿造;Infusion Brewing;IB +jurassicraft;560;831791;jurassicraft;侏罗纪时代;JurassiCraft;JC +eternal-singularity;561;;eternalsingularity;永恒奇点;Eternal Singularity;ES +codechicken-lib-1-8;562;;codechickenlib,ccl-entityhook,CodeChickenLib;CodeChicken Lib;;CCL +codechicken-core-1-8;563;;CodeChickenCore;鸡块核心;CodeChickenCore;CCC +;564;;;自动化魔法2;Automagy 2; +aobd-singularities;565;;aobdsingularities;AOBD Singularities;; +universal-singularities;566;;universalsingularities;通用奇点;Universal Singularities;US +academy-monster;567;['677849'];academymonster;超能力怪物;Academy Monster;AM +sonar-core;568;;sonarcore;声呐核心;Sonar Core; +armorstatushud-updated;569;138426;armorstatushud;耐久信息显示;ArmorStatusHUD; +wanionlib;570;;wanionlib;Wanion Lib;; +llibrary;571;;llibrary;LLibrary;; +;575;;gtextras;GTExtras;; +environmental-tech;583;644622;environmentaltech;环境科技;Environmental Tech;ET +magic-cookies;585;710008;MagicCookie;魔法饼干;Magic Cookies; +thaumic-potatoes;586;;;神秘土豆;Thaumic Potatoes;TP +torcherino;587;788894;Torcherino,torcherino;加速火把;Torcherino; +craftable-nether-star;588;;craftnstar;Craftable Nether Star +;; +veinminer;589;387183;veinminer,VeinMinerModSupport;连锁采矿/矿脉矿工;Vein Miner; +;590;;iridiummod;铱矿Mod;Iridium Mod; +another-one-bites-the-dust;591;;aobd;Another One Bites the Dust;;AOBD +;592;;MCEF;Minecraft Chromium嵌入式框架;Minecraft Chromium Embedded Framework;MCEF +mine-mine-no-mi;593;['828931'];mineminenomi;恶魔果实;Mine Mine no Mi; +advanced-rocketry;594;671760;advancedRocketry,advancedrocketrycore,advancedrocketry,AdvancedRocketryCore;高级火箭;Advanced Rocketry;AR +vics-modern-warfare-mod;595;692842;mw;维克的现代战争;Vic's Modern Warfare Mod;VMW +chance-cubes;596;;chancecubes;机会方块;Chance Cubes; +gun-customization;597;;;Gun Customization;; +endercore;598;;endercore;末影核心;EnderCore; +brandons-core;599;;brandonscore;Brandon's Core;; +cofh-core;600;;CoFHCore,cofh_core,cofhcore;CoFH核心;CoFH Core; +statuseffecthud;601;63123;;状态信息显示;StatusEffectHUD; +lambdalib;602;;LambdaLib,LambdaLib|Core,lambdalib2;LambdaLib;; +redstonic;603;623471;Redstonic,redstonic;红石电子;Redstonic; +libvulpes;604;;libVulpes,libvulpes;Libvulpes;; +ye-gamol-chattels;605;617588;yegamolchattels;伊加墨的财产;Ye Gamol Chattels;YGC +ivtoolkit;606;;ivtoolkit;IvToolkit;; +wolf-armor-and-storage;607;672655;wolfarmor;狼铠;Wolf Armor and Storage; +better-records;608;;betterrecords;更好的播放器;Better Records; +worldedit;609;;worldedit;创世神;WorldEdit;WE +;610;;;LiteLoader;; +;611;;;单机创世神;WorldEdit Wrapper; +worldeditcui;612;1013295;;WorldEdit CUI;; +ztones;613;;Ztones;Ztones;Ztones; +;614;;ppapmod;笔菠萝苹果笔;Pen Pineapple Apple Pen Mod;PPAP +dummycore;615;;DummyCore,fc-dummy;DummyCore;; +extra-utilities;616;868981;extrautils2;更多实用设备2;Extra Utilities 2;ExU2 +openmodslib;617;;OpenMods,OpenModsCore,openmodscore,openmods;开放式模组库;OpenModsLib;OML +embers;618;;embers;余烬;Embers; +neat;619;938958;neat,Neat;极简血量显示;Neat; +mob-properties;620;;MobProperties,mob_properties;怪物属性;Mob Properties;MP +ganys-surface;621;450171;;Gany的世界;Gany's Surface; +;622;244871;;遗忘的火光;Amnesia Lights;AL +ezstorage;623;;ezstorage;EZ存储;EZStorage;EZ +ichunutil;624;;ichunutil;iChunUtil;; +intangible;625;;;Intangible;; +;626;522654;;灵魂森林;Soul Forest; +forge-multipart-cbe;627;;ForgeMultipart,forgemultipartcbe,microblockcbe,minecraftmultipartcbe;Forge Multipart CBE/ForgeMultipart;; +the-titans-mod;628;730072;TitansAnimationAPI,thetitans;泰坦生物;The Titans; +enchiridion;629;;Enchiridion,Enchiridion2;Enchiridion;; +stimmedcow-nomorerecipeconflict;630;705241;recipemod,recipehandler;合成冲突消除;NoMoreRecipeConflict; +tinker-i-o;631;727609;tinker_io;工匠接口;Tinker I/O; +woot;632;;woot,Woot;生物工厂;Woot; +;633;578416;;滑稽纪元;Huaji Age; +thermal-expansion;634;805200;thermalexpansion;热力膨胀5;Thermal Expansion 5;TE5 +realistic-terrain-generation;635;681294;RTG,rtg;真实地形生成;Realistic Terrain Generation;RTG +mob-rebirth;636;519229;mobrebirth;怪物重生;Mob Rebirth; +diseasecraft;637;406682;DiseaseCraft;疾病;Disease Craft; +zombie-infection;638;410512;ZombieInfection;僵尸感染;Zombie Infection;ZI +astral-sorcery;639;;astralsorcery;星辉魔法;Astral Sorcery;AS +neotech;640;;neotech;全新科技;NeoTech;NT +apocalypse-mod;641;433738;Apocalypse;启示录;Apocalypse; +bookshelf-api-library;642;;;Bookshelf API Library;; +;643;;;以太;The Ether; +movingworld;644;;MovingWorld;MovingWorld;; +botania-garden-of-glass;645;['541959'];GardenOfGlass,gardenofglass;水晶花园;Garden of Glass; +;646;;Tubestuff;RP增强;Tube Stuff; +tiny-progressions;647;;tp;微型自动化;Tiny Progressions; +thaumic-additions;648;;;神秘领域;Thaumcraft Addition; +baubles-stuff;649;620576;baublesstuff;更多首饰;Baubles Stuff;BS +thaumaturgical-knowledge;650;690813; benway_knowledge;神秘奥义;Thaumaturgical Knowledge;TK +advanced-thaumaturgy-2;651;;AdvancedThaumaturgy;高等神秘学;Advanced Thaumaturgy 2;AT2 +INpureCore;652;;inpure|core;INpureCore;; +atomicstrykers-battle-towers;653;142832;battletowers;战斗高塔;AtomicStryker's Battle Towers; +reborncore;654;;reborncore,reborncore-mcmultipart;重生核心;Reborn Core; +steves-carts-reborn;655;728591;stevescarts;史蒂夫矿车:重生;Steve's Carts Reborn;SCR +refined-relocation;656;;ForgeRelocation;简单分类;Refined Relocation; +gilded-games-util;657;;gilded-games-util;Gilded Games Util;;GGU +dangerrpg;658;;dangerrpg;危险RPG;Danger RPG; +malisisdoors;659;;malisisdoors;更多门;MalisisDoors;MD +;;;;YMC科技公司的录像室;[YMC.Inc]Video Studio Room;YMC-VSR +jaffa-foods-a-harvestcraft-addon;661;500121;jaffa;更多有趣的食物;Just Another Fun Food Addon;JAFFA +thermal-smeltery;662;;ThermalSmeltery,thermalsmeltery;热力冶炼厂;Thermal Smeltery; +;663;439135;torchLevers;火把拉杆;Torch Levers; +malisiscore;664;;malisiscore;MalisisCore;; +valkyrielib;665;;valkyrielib,universalmodifiers,valkyrie;ValkyrieLib;; +waila-harvestability;666;;WailaHarvestability,wailaharvestability;Waila Harvestability;; +236768-mixed-magic;667;;;混合魔法;Mixed Magic; +hwyla;668;['648893'];waila;Here's What You're Looking At;;Hwyla +crafttweaker;669;769481;crafttweaker,ctgui,crafttweakerjei;CraftTweaker;;CrT +plusticminusbad;670;;plustic;匠魂扩充;PlusTiC; +real-time-chat-translation-mod;671;;;实时聊天翻译;Real Time Chat Translation Mod;RTCT +;672;230546;;自定义史蒂夫;CustomSteve;CS +practical-logistics-2;673;;practicallogistics2;实用物流监控2;Practical Logistics 2;PL2 +energyadditions;674;;;高级能源;EnergyAdditions; +advanced-generators;675;;advgenerators;模块化发电机;Advanced Generators;ADVG +bdlib;676;;bdlib;BDLib;; +;677;350131;FLabsBF;更好的熔炉;Better furnace; +pressure-pipes;678;;pressure;压力管道;Pressure Pipes;PP +onlinepictureframe;679;;opframe;在线相框显示;OnlinePictureFrame; +super-circuit-maker;680;;rscircuits;超级电路;SuperCircuitMaker;SCM +switch-bow;681;;switchbow;Switch-Bow;; +minecolonies;682;1052010;minecolonies;模拟殖民地;Minecolonies; +tinkers-construct;683;661201;TConstruct,tconstruct;匠魂2;Tinkers' Construct 2;TiC2 +mcjtylib;684;;mcjtylib_ng,mcjtylib;McJtyLib;; +mcmultipart;685;;mcmultipart;MCMultiPart;;MCMP +aroma1997s-dimensional-world;686;;aroma1997sdimension,Aroma1997sDimension;Aroma1997的维度世界;Aroma1997's Dimensional World; +;687;;;超级合成框架;Super Crafting Frame;SCF +akashic-tome;688;805606;akashictome,AkashicTome;阿卡什宝典;Akashic Tome; +morph-o-tool;689;;morphtool,Morphtool;变形工具;Morph-o-Tool; +decocraft;690;;props;装饰工艺;Decocraft; +refined-storage;691;612538;refinedstorage,refinedreborn;精致存储;Refined Storage;RS +deep-resonance;692;;deepresonance;深度共振;Deep Resonance; +;693;;GollumCoreLib;Gollum Core Lib;; +;694;;MorePistons;更多活塞;More Pistons; +;695;;itemsaver;物品存储器;ItemSaver; +clockwork-phase;696;;;时之沙;Clockwork Phase; +;697;695905;;镐子养成;Growable Pickaxe;GP +autoreglib;698;;autoreglib,AutoRegLib;AutoRegLib;;ARL +roots;699;;crafttweakersync,roots;根源魔法;Roots; +guide-api;700;;guideapi;指南;Guide-Api; +fraghappy-reborn;701;;fraghappy;FragHappy Reborn;; +genetics-reborn;702;;geneticsreborn;基因重生;Genetics Reborn; +router-reborn;704;;routerreborn;路由重生;Router Reborn; +;705;614246;neieasysearch;NEI中文快捷搜索;NEI Easy Search; +coroutil;706;;coroutil,CoroAI,CoroPets;CoroUtil;; +vanilla-magic;707;;vanillamagic2;原生魔法;Vanilla Magic; +taoism;708;['668355'];;御灵;Taoism; +254817-essentialcraft-4-unofficial;709;;;源质魔法4非官方版;EssentialCraft 4 Unofficial; +celestial-craft;710;;;天体;Celestial Craft; +lost-thaumaturgy;711;;;失落神秘;Pengu's Lost Thaumaturgy; +compact-machines;712;;compactmachines3,cm2;更多空间/压缩空间;Compact Machines;CM +;713;466581;uc;实用煤炭;UsefulCoals;UfC +ex-nihilo-omnia;714;631637;exnihiloomnia;无中生有-世间万物;Ex Nihilo Omnia; +last-sword-you-will-ever-need-mo;715;;theonlychaosmodforyou;最终之剑;The Last Sword You Will Ever Need Mod; +the-last-sword-you-will-ever-need-reboot;716;;;最终之剑:重生;The Last Sword You Will Ever Need Reboot; +ftb-library-legacy-forge;718;;ftblib,FTBL,ftbl;FTB Library(旧版);FTB Library (Forge) (Legacy);FTBL +;719;;;库存扫描;InventoryScan;IS +;720;;;哥斯拉;Godzilla; +thaumic-potatoes-2;721;;thaumicpotatoes;神秘土豆2;Thaumic Potatoes 2;TP2 +extraplanets;722;799074;extraplanets;额外行星;Extra Planets; +xtracraft-mod;724;;xtracraftmod;X工艺;XtraCraft Mod;XC +;725;;DefenseTech;防御科技;DefenseTech;DT +;726;;CARuins,GreatWallMod,WalledCityMod;城墙城市生成;Cellular Automata Generator/Great Wall Mod/Walled City Generator; +icbm-classic;727;;icbmclassic;洲际导弹经典版;ICBM - Classic; +voltz-engine;728;;;Voltz Engine;;VE +blocklings;729;831446;blocklings;方块酱;Blocklings; +;730;;ThaumicMachina;神秘力学;Thaumic Machina; +;731;;;巫媒;Shamanry; +;732;; ThaumicDarkness;黑暗神秘学;Thaumic Darkness;TD +;733;;;自然魔法;Magia Naturalis; +sbm-wooden-shears;734;;woodenshears;木剪刀;Wooden Shears; +;735;;;神秘史记;Thaumic History; +schools-of-magic;736;;;魔法学院;Schools of Magic; +aether-aspects;737;;;天境要素扫描;Aether Aspects; +arcane-arteries;738;;arcanearteries;奥法献祭学;Arcane Arteries; +thaumic-palmistry;739;;thaumicpalmistry;Thaumic Palmistry;; +one-click-crafting;740;943364;oneclickcrafting;一键合成;One click crafting;OCC +essential-thaumaturgy-unofficial;741;;;源质神秘学(非官方版);Essential Thaumaturgy Unofficial; +wireless-crafting-terminal;742;;wct,ae2wct;无线合成终端;Wireless Crafting Terminal;WCT +waila-plugins;743;;wailaplugins;Waila插件;Waila Plugins;WP +appleskin;744;1141428;appleskin;苹果皮;AppleSkin;AS +tcbotaniaexoflame;745;;TCBotaniaExoflame;奥术投射;TCBotaniaExoflame;TCBE +thaumic-equivalence;746;;;奥法置换;Thaumic Equivalence; +thaumcraft-research-helper;747;;;神秘研究小助手;Thaumcraft Research Helper; +thaumic-upholstry;748;;;神秘装饰;Thaumic Upholstry; +thaumic-expansion;749;;;神秘膨胀;Thaumic Expansion; +nodal-mechanics;750;;NodalMechanics;节点力学;Nodal Mechanics;NM +transmute-liquids-addon-for-thaumcraft-4;751;;;液体嬗变;Transmute Liquids; +thaumores;752;;;奥能矿物;ThaumOres;TO +notenoughthaumcrafttabs;753;;;无限神秘标签页;Not Enough Thaumcraft Tabs;NETCT +natures-compass;754;977694;naturescompass;自然罗盘/生物群系指南针;Nature's Compass; +warp-theory;755;;WarpTheory;神秘扭曲学;Warp Theory; +hammer-lib;756;;hammercore;锤子核心;Hammer Core/Hammer Lib; +;757;;MiningTools;采掘工具;Mining Tools; +thermal-casting;758;;;热力铸造室;Thermal Casting; +thermal-smeltery-redux;759;;;热力冶炼厂重置版;Thermal Smeltery Redux; +brcore;760;;BRCore;BRCore;; +industrial-expansion-te-addon;761;;industrialexpansion;工业扩充(TE附属);Industrial Expansion [TE Addon]; +;762;;gtveinlocator,detravscannermod;格雷科技矿脉定位器;GTVeinLocator; +;763;;gtneioreplugin;格雷矿物NEI插件;GTNEIOrePlugin;GTNOP +;764;;spmodapi;SpmodAPI;; +quantum-pack;765;;quantumpack;量子工具包;Quantum Pack; +netherores;766;;NetherOres;下界矿石;NetherOres; +tesla;767;;tesla;特斯拉;TESLA;TESLA +vanillafoodpantry-mod;768;683091;vanillafoodpantry;食品储藏室;VanillaFoodPantry Mod;VFP +the-elysium;769;;elysium;极乐世界;The Elysium; +ice-and-fire-dragons;770;847008;iceandfire;冰火传说 / 冰与火之歌;Ice and Fire;IAF +yabba;772;;yabba;YABBA;; +useful-nullifiers;773;;usefulnullifiers;实用销毁器;Useful Nullifiers; +xtones;774;;xtones;Xtones;; +xnet;775;;xnet;XNet;; +wireless-crafting-grid;776;;wcg;无线合成网络;Wireless Crafting Grid;WCG +top-addons;778;;topaddons;TOP Addons;; +torchmaster;779;;torchmaster;火炬大师;Torchmaster; +zerocore;780;;zerocore;ZeroCore;; +sleeping-bag;781;;SleepingBag;睡袋;Sleeping Bag; +the-one-probe;782;1155343;theoneprobe;检测器;The One Probe;TOP +simply-jetpacks-2;784;;simplyjetpacks;简易喷气背包2;Simply Jetpacks 2;SJ2 +snad;785;;snad;子沙;Snad; +storage-drawers-extras;786;;storagedrawersextra;Storage Drawers Extras;; +solar-flux-reborn;787;;solarflux;日光通量:重制版;Solar Flux Reborn;SFR +simple-void-world;788;1089311;simplevoidworld;简单虚空世界;Simple Void World;SVW +shetiphiancore;789;;shetiphiancore;ShetiPhianCore;; +shadowmc;790;;shadowmc;ShadowMC;; +scannable;791;['692037'];scannable;扫描器;Scannable; +rebornstorage;792;;rebornstorage;存储重置;Reborn Storage; +quantumstorage;793;;quantumstorage;量子存储;QuantumStorage; +p455w0rds-library;794;;p455w0rdslib;p455w0rd's Library;; +mtlib;795;;mtlib;MTLib;; +;796;;;光滑的地形;No Cubes Mod; +open-glider;797;;openglider;滑翔翼;Open Glider; +mputils;798;;mputils;MPUtils;; +shadowfacts-forgelin;799;;forgelin;Shadowfacts' Forgelin;; +eleccore;800;;eleccore;ElecCore | Rendering Library;; +infinitylib;801;;infinitylib;Infinity Lib;; +dark-utilities;802;;darkutils;Dark Utilities;; +flux-networks;803;;fluxnetworks;通量网络;Flux Networks;FN +flat-colored-blocks;804;;flatcoloredblocks;平滑色块;Flat Colored Blocks;FCB +jei-bees;805;;jeibees;JEI Bees;; +chisels-bits;806;;chiselsandbits;雕凿工艺;Chisels & Bits;C&B +architecturecraft;807;;ArchitectureCraft;建筑师工艺;Architecture Craft; +chameleon;808;;chameleon,Chameleon;变色龙;Chameleon; +mrtjpcore;809;;MrTJPCoreMod,mrtjpcore;MrTJPCore;; +cyclops-core;810;;cyclopscore;Cyclops Core;; +netherportalfix;811;1004332;netherportalfix;下界传送门修正;NetherPortalFix; +rftools-dimensions;812;;rftoolsdim;RF工具:维度;RFTools Dimensions; +signals;813;;signals,Signals;信号;Signals; +extreme-reactors;814;841782;bigreactors;极限反应堆;Extreme Reactors;ER +et-lunar-environmental-tech-addon;815;;etlunar;ET:月光发电;ET Lunar; +angel-ring-to-bauble;816;;flyringbaublemod;Angel Ring To Bauble;; +mob-grinding-utils;817;;mob_grinding_utils;刷怪塔实用设备;Mob Grinding Utils; +rftools-control;818;;rftoolscontrol;RF工具:控制;RFTools Control; +immersive-petroleum;819;;immersivepetroleum;沉浸原油;Immersive Petroleum; +more-shearables;820;;shear;更多的剪刀用途;More Shearables; +gregtech-gt-gtplusplus;821;;miscutils, GT++_Preloader;Gregtech++;;GT++ +;822;;GTTweaker;GTTweaker;; +;823;;TGregworks;Tinkers' Gregworks;; +;824;;galacticgreg;GalacticGreg;; +;825;;tectech;TecTech;; +;826;;YAMCore;YAMCore;; +;828;;;自然灾害;NaturalDisasters;ND +teletoro;829;;teletoro;远程传送;TeleToro; +;830;244572;touhou_alice_core,touhou_alice_dolls,touhou_alice_extras;爱丽丝人偶;Alice's Doll; +re-zero-kara-hajimeru-isekai-seikatsu;831;;ReZero;RE:从零开始的异世界;Re: Zero kara hajimeru isekai seikatsu;Re0 +minewatch;832;730508;minewatch;Minewatch;; +thaumcraft-inventory-scanning;833;;tcinventoryscan;神秘时代物品栏扫描;Thaumcraft Inventory Scanning;TCIS +cyclic;834;648189;cyclicmagic,cyclic;循环;Cyclic; +redstoneplusplus;836;;;红石++;Redstone++; +ctm;837;;ctm;连接材质;ConnectedTexturesMod;CTM +simulated-nights;838;;simulatednights;夜晚模拟;Simulated Nights; +ftb-utilities;839;;FTBU,ftbutilities,ftbu;FTB 实用工具;FTB Utilities;FTBU +just-enough-characters;840;639271;jecharacters,je_characters;通用拼音搜索;Just Enough Characters;JECh +redstone-flux;842;;redstoneflux;Redstone Flux API;;RFAPI +cofh-world;843;;cofhworld;CoFH World;; +ancient-warfare-2;844;['665422'];AncientWarfareAutomation,AncientWarfare,ancientwarfare,ancientwarfarestructure,ancientwarfarevehicle,ancientwarfarenpc,ancientwarfareautomation;古代战争2;Ancient Warfare2;AW2 +integrated-dynamics;845;;integrateddynamics,integrateddynamicscompat;动态联合/集成动力;Integrated Dynamics;ID +common-capabilities;846;;commoncapabilities;Common Capabilities;; +;847;715486;jinryuudragonblockc;龙珠 C;Dragon Block C;DBC +tan-campfire-spit;848;; tanspit;意志坚定-篝火烤架;TAN Campfire Spit; +super-solar-panels;849;699953;supersolarpanel;超级太阳能发电机;Super Solar Panels;SSP +ngtlib;850;;ngtlib;NGTLib;; +geomastery;851;;;征服大地;Geomastery; +afsu-mod;852;;AFSU;AFSU;; +;853;;NyankoMod;猫;Nyanko; +lightningcraft;854;['692998'];LightningCraft,lightningcraft;雷电工艺;LightningCraft;LC +just-enough-resources-jer;855;;jeresources;Just Enough Resources;;JER +morpheus;856;;Morpheus,morpheus;Morpheus;; +wall-jump;857;;walljump;飞檐走壁;Wall Jump; +condensed-block-mod-reborn;858;;CBMReborn;凝结成块;Condensed Block Mod Reborn; +refined-avaritia;859;;refined_avaritia;Refined Avaritia;; +weather-storms-tornadoes;860;;weather2;局部气候&风暴;Weather, Storms & Tornadoes; +new-things;861;;newthings;New Things;; +survivalist;862;;survivalist;生存主义;Survivalist; +mystic-divination;863;;;秘契占星术;Mystic Divination; +cofh-lib;864;;;CoFH Lib;; +tabula-rasa;865;;;Tabula Rasa;; +cofhtweaks;866;;;CoFHTweaks;; +ender-io-zoo;867;;EnderZoo;末影动物园;Ender IO Zoo; +simple-usage-log;868;;;简易日志;Simple Usage Log;SUL +omnis-core;869;;;Omnis Core;; +auto-paths;870;;;自动路径;Auto Paths; +react;871;;react;React;; +shared-resource-packs;872;;;共享材质包;Shared Resource Packs;SRP +i-know-what-im-doing;873;;ikwid;我知道我在干什么;I Know What I'm Doing;IKWID +Leather-Works;874;;leatherworks;皮革加工厂;Leather Works; +cyberware;875;['618353'];cyberware;机械改造;Cyberware; +thermal-cultivation;876;;thermalcultivation;热力农业;Thermal Cultivation; +better-builders-wands;877;831822;betterbuilderswands;更好的建筑之杖;Better Builder's Wands; +jaopca;878;;jaopca;Just A Ore Processing Compatibility Attempt;;JAOPCA +chickens;879;570570;chickens;更多鸡;Chickens; +tragicmc2;880;304696;;悲惨世界2;TragicMC2;TMC2 +mobdrip;881;;;MobDrip;; +;882;697804;custommc;自定义MC;CustomMc; +customskinloader;883;269807;customskinloader;万用皮肤补丁;CustomSkinLoader;CSL +saltymod;884;562144;saltmod;盐;SaltyMod; +immersive-tech;885;724918;immersivetech;沉浸科技;Immersive Technology; +;886;526067;DQMIIINext;勇者斗恶龙R;Dragon Quest Respect;DQR +funky-locomotion;887;;funkylocomotion;Funky Locomotion;;FL +compatlayer;888;;compatlayer;版本兼容;CompatLayer; +wopper;889;;wopper;木制漏斗;Wopper; +gorgecore;890;;;食用强化;GorgeCore; +chineseworkshop;891;639428;chineseworkshop;中式工坊;Chinese Workshop;CW +modular-routers;892;;modularrouters;模块化路由器;Modular Routers; +darkcore;893;;;暗黑核心;Darkcore; +tardis-mod;894;;;时间和空间的相对维度;TARDIS MOD; +;895;362797;ProjectBlue;蓝石计划;Project Blue; +;;;herowatch;守望先锋;HeroWatch; +another-one-bites-the-dust-berry-bushes;897;;aobdbb;AOBD Berry Bushes;Another One Bites the Dust: Berry Bushes;AOBDBB +gokistats;898;805910;gokistats,gokiStats;天赋技能树;Goki Stats; +;899;691969;scraft;SC科学创造;Scientific Craft;SC +tropicraft;900;;tropicraft;热带世界;Tropicraft; +;901;709216;DanmakuCraft;弹幕工艺;DanmakuCraft; +;902;;exastrisrebirth;星辉生万物·重制;Ex Astris Rebirth; +sumsang;903;;sumsang;亖圼;Sumsang; +moblocks;904;;;Mo' Blocks;; +creepypasta-1-0-0;905;;;蠕动意面;CreepyPasta; +grue;906;;grue;Grue;; +;907;;;亡兄;The Dead Brother; +googlyeyes;908;;googlyeyes;金鱼眼;GooglyEyes; +lycanites-mobs;909;980282;lycanitesmobs,swampmobs,saltwatermobs,plainsmobs,mountainmobs,junglemobs,infernomobs,freshwatermobs,forestmobs,desertmobs;恐怖生物;Lycanites Mobs;LM +back-to-eco;910;;backtoeco;生态回归;Back to Eco; +world-of-warcraft;911;;;魔兽世界;World Of Warcraft; +the-witcher-adventure;912;;;猎魔人;The Witcher Adventure; +fancy-battleaxes;913;;;华丽战斧;Fancy Battleaxes; +zora-no-densha;914;1085883;zoranodensha;Zora的电车;Zora no Densha; +roguelike-dungeons;915;300785;roguelike;冒险地牢;Roguelike Dungeons; +first-aid;916;850687;firstaid;医疗护理;First Aid; +bonfires;917;772983;bonfires;篝火;Bonfires; +immersive-craft;918;;immcraft;沉浸工艺;Immersive Craft; +aroma1997core;919;;Aroma1997Core,Aroma1997CoreHelper,aroma1997core;Aroma1997Core;; +tatw;920;;tatw;TATW;; +;921;;hmag;敌对生物和女孩们;Hostile Mobs and Girls;HMaG +better-hud;922;;hud,betterhud;更好的HUD;Better HUD; +custom-stuff-4;923;;;自定义物品4;Custom Stuff 4;CS4 +powered-thingies;924;;teslathingies;特斯拉科技;Tesla Powered Thingies;TPT +;925;;xaerobetterpvp;更好的PVP;Better PVP; +mcmusicplayer;926;;;MCMusic player;; +obsidian-suite;927;;;Obsidian Animation Suite;;OAS +wizards-of-lua;928;;wol;Lua魔导师;Wizards of Lua;WoL +mystical-agriculture;929;707360;mysticalagriculture;神秘农业;Mystical Agriculture; +vampirism-become-a-vampire;930;982006;vampirism;吸血鬼/血族传说;Vampirism; +;931;; plants2;植物大战僵尸;Plants V.S. Zombies;PVZ +itemphysic-lite;932;;itemphysic;物品物理掉落;ItemPhysic; +minenautica;933;;Minenautica;Minenautica;; +improved-extraction;934;;improvedextraction;矿物获取改进;Improved Extraction; +ecology-mod;935;;;生态学;Ecology Mod; +cakeisalie-mod;936;;CakeIsALie;蛋糕是个谎言;CakeIsALie; +ex-nihilo-adscensio;937;;;无中生有:Adscensio;Ex Nihilo Adscensio; +bookshelf;938;;bookshelf,bookshelfapi;Bookshelf;; +;939;732164;mooncakecraft;月饼工坊;Mooncake Craft; +random-things;940;938101;randomthings,RandomThings;随意作品;Random Things;RT +;941;613218;;SCP基金会2;SCP Craft 2;SCPC2 +netherex;942;918772;nex,netherex;下界拓展;NetherEX;NEX +engender-mod;943;796593;;召唤师;Engender - The Age of Minecraft; +better-questing;944;695339;betterquesting;更好的任务;Better Questing;BQ +;945;606249;;石头工艺;Stone craft; +;946;732786;;不要杀戮;Don't Slay; +ct-mortar;947;;ctmortar;CT Mortar;; +ct-watercan;948;;watercan;CT Watercan;; +totemic;949;1073074;totemic;图腾;Totemic; +grimoire-of-alice;950;;;爱丽丝的魔法书;Grimoire of Alice; +journey-to-gensokyo;951;;;幻想乡之旅;Journey to Gensokyo; +danmakucore;952;;;弹幕核心;DanmakuCore; +angel-of-vengeance;953;;aov;复仇天使;Angel of Vengeance;AoV +tammodized;954;;tammodized;TamModized;; +ex-nihilo-creatio;955;727225;exnihilocreatio;无中生有: 创世;Ex Nihilo: Creatio;ExNC +thaumcraft;956;776706;thaumcraft;神秘时代6;Thaumcraft 6;TC6 +colossal-chests;957;;colossalchests;巨型箱子;Colossal Chests; +auto-pickup;958;;autopickup;自动拾取;Auto Pickup; +all-u-want;959;;;背包编辑器;All-U-Want; +potion-core;960;;PotionExtensionCore,potioncore;药水核心;Potion Core; +solar-expansion;961;541525;SolarExpansion;Solar Expansion;; +blue-power;962;501014;bluepower;蓝石力量;Blue power; +redstone-armory;963;600195;RArm;红石军械库;Redstone Armory;RArm +qmunitylib;964;; qmunitylib;QmunityLib;; +;;;;Quest Name For Blue;; +the-last-smith;966;710736;lastsmith;最后的太刀匠人;The Last Smith;TLS +mineamp;967;;;我的音乐;MineAmp; +quiverbow;968;;quiverchevsky;Quiver Bow;; +cookiecore;969;;cookiecore;Cookie Core;; +farseek;970;;farseek;Farseek;; +meecreeps;971;;;使命必达先生;MeeCreeps; +streams;972;;streams;溪流;Streams; +;973;;;音符盒显示器;Note Block Display; +blockcraftery;974;;blockcraftery;方块工匠;Blockcraftery; +bedrockores;975;['776822'];bedrockores;基岩矿簇;Bedrock Ores; +chat-bubbles;976;;chatbubbles;聊天泡泡;Chat Bubbles; +refined-storage-addons;977;;refinedstorageaddons;精致存储附属;Refined Storage Addons; +foamfix-for-minecraft;978;678442;foamfix,foamfixcore;泡沫修复;FoamFix; +industrial-foregoing;979;;industrialforegoing;工业先锋;Industrial Foregoing;IF +expanded-armory;980;;exparmory;扩展装备;Expanded Armory;EA +voxelmap;981;473187;VolexMap;体素地图;VoxelMap; +;982;;rwbyCraft;四色战记;RWBY Craft;RWBYC +;983;;grim3212core;Grim3212Core;Grim3212Core; +mowzies-mobs;984;;mowziesmobs;Mowzie的生物;Mowzie's Mobs;MMobs +thaumcraft-mob-aspects;985;;polybius;更多要素;More Aspects/Polybius; +magical-psi;986;;magipsi;Magical Psi;; +starcraft-mod-scmc;987;;Starcraft;星际争霸2;StarCraft II in MineCraft;SCMC +covens-reborn;988;;covens;Covens Reborn;; +grappling-hook-mod;989;;grapplemod;抓钩;Grappling Hook Mod; +tabbychat-2;990;;;TabbyChat 2;; +;991;;MineCameraDummy,minecamera;摄影工艺;MineCamera; +yoyos;992;932192;yoyos;悠悠球;Yoyos; +cd4017be-library;993;;cd4017be_lib;CD4017BE Library;; +iberia;994;;;Iberia;; +reforged;995;774739;reforged;重铸;Reforged; +cavern;996;775036;cavern;洞穴;Cavern; +block-drops-jei-addon;997;;;Block Drops;; +iron-tanks;998;776893;irontank,irontanks;铁储罐;Iron Tanks; +colorutility;999;;ColorUtility;颜色代码;ColorUtility; +digimobs;1000;;digimobs;数码宝贝;Digimobs; +storage-boats-mod;1001;798267;storageboats;存储船;Storage Boat Mod; +mo-withers;1002;;;更多凋灵;Mo' Withers; +;1003;;;火影忍者C;Naruto C; +the-autologin-mod-for-authme-server;1004;;;自动登录;AutoLogin; +ROOST;1005;;roost;鸡窝;Roost; +croparia;1006;657509;croparia,Croparia;矿石作物/魔种之咏;Croparia; +simple-corn;1007;778746;;简单玉米;Simple Corn; +thaumic-jei;1008;;thaumicjei;Thaumic JEI;; +;1009;440616;;匠魂炼钢厂;Tinkers' Steelworks;TiS +unicode-font-extension;1010;733474;;Unicode字体扩展;Unicode Font Extension;UFEX +placeable-items;1011;775353;placeableitems;可放置物品;Placeable Items; +tinkers-compendium;1012;686520;tinkerscompendium,tinkersdefense;工匠防御;Tinkers' Compendium (Tinkers' Defense); +stargate-network;1013;319182;SGCraft;格雷的星门;Greg's SG Craft;GSGC +damage-indicators-mod;1014;137281;;伤害显示;Damage Indicators; +torohealth-damage-indicators;1015;628833;torohealth;伤害显示;ToroHealth Damage Indicators; +omni-ocular;1016;;OmniOcular;Omni Ocular;;OO +wrapup;1017;;wrapup;WrapUp;; +nuclear-physics;1018;;nuclearphysics;Nuclear Physics;; +wither-skeleton-tweaks;1019;;witherskelefix;凋灵骷髅调整;Wither Skeleton Tweaks; +heat-and-climate;1020;;dcs_climate;热量与气候;Heat And Climate;H&C +customthings;1021;;customthings;自定义物品;CustomThings; +exgregilo;1022;;;格雷矿筛;ExGregilo; +placebo;1023;;placebo;Placebo;; +plants;1024;;plants2,plants;Plants;; +chinjufumod;1026;776626;chinjufumod;镇守府;ChinjufuMod +JapaneseBlock; +track-api;1027;;trackapi;Track API;; +immersive-railroading;1028;783016;immersiverailroading;沉浸铁路;Immersive Railroading;IR +;1029;['733160'];foodcraftreloaded;食物工艺重置版;FoodCraft Reloaded;FCR +custom-main-menu;1030;769607;custommainmenu;自定义主菜单;Custom Main Menu;CMM +;1031;706022;TacticalFrame;战术框架;Tactical Frame; +wildycraft;1032;526348;;Wildycraft:Runescape Dimension;; +;1033;;;我的信条;MineCreed; +;1034;782745;heartwork;心血结晶;The Heartwork;THW +my-little-mob-grinder;1035;783333;;小怪物粉碎机;My Little Mob Grinder; +resource-loader;1036;670173;resourceloader,ResourceLoader;资源加载;Resource Loader;RL +no-sleeping-allowed;1037;784121;nsa;禁止睡觉;No Sleeping Allowed; +playersdropheads;1038;783991;playersdropheads;玩家掉落头颅;PlayersDropHeads; +memory-bar;1039;;memorybar;内存条;Memory Bar; +toxicrain;1040;783727;toxicrain;有毒的雨;ToxicRain; +;;;;快乐的PVP;Happy PVP; +;1042;;molten;炽热基岩;Melten Bedrockium; +cannibalism;1043;381013;cannibalism;割肉小刀/同类相食;Cannibalism; +quick-consume;1044;784670;;快速消耗;Quick Consume; +planting-dirt-for-saplings;1045;784640;autoplanter;自动植树机;Planting dirt for saplings; +;1046;783000;phtage;幻影时代;PhantomAge;PHTAGE +custom-crosshair-mod;1047;607354;custom-crosshair-mod;自定义准心;Custom Crosshair; +better-blink;1048;785164;betterblink;更好的传送;Better Blink; +biobomb;1049;785148;;生物炸弹;BioBomb; +ender-hopper;1050;784833;enderhopper;末影漏斗;Ender Hopper; +mine-souls;1051;683570;;黑魂战斗;Mine Souls;MS +radixcore;1052;;radixcore;RadixCore;; +familiar-fauna;1054;785558;familiarfauna;熟悉的动物;Familiar Fauna; +tinkers-tool-leveling;1056;646118;tinkertoolleveling;匠魂工具升级;Tinkers' Tool Leveling; +;1057;529452;gibby_dungeons;神秘RPG;Arcana RPG; +ingame-info-xml;1058;;ingameinfoxml,InGameInfoXML;游戏信息显示;InGame Info XML; +;1059;771670;peachwoodsword;桃木剑;PeachWoodSword;PeachWS +lovelyrobot;1060;680093;LovelyRobot,lovely_robot;萌化机器人;LovelyRobot; +tameable-arachne;1061;925238;TameableArachneMod,tameable_arachne;萌化女妖;TameableArachneMod; +skillable;1062;;;Skillable;; +lunatriuscore;1063;;lunatriuscore,LunatriusCore;LunatriusCore;; +spin-to-win;1064;;;旋转剑技;Spin to Win; +soft-blocks;1065;785967;;柔软方块;Soft Blocks; +heartblock;1066;786355;;生命方块;HeartBlock; +spawncontroller;1067;786558;;自定义怪物生成;SpawnController; +wearable-backpacks;1068;664777;wearablebackpacks,Backpack;可穿戴背包;Wearable Backpacks; +heart-drop;1069;;;生命汲取;Heart Drop; +omlib;1070;;omlib;开放式炮台库;OMLib; +dynamictrees;1071;771545;dynamictrees,dynamictreestc,growingtrees;动态的树/有活力的树;Dynamic Trees;DT +merry-christmas;1072;786210;;圣诞箱子;Merry Christmas!; +cloud-control;1073;785903;;可控制的云;Cloud Control; +zombie-ore;1074;786883;;矿石僵尸;Zombie ore; +meanmobs;1075;786377;meanmobs;残忍怪物;MeanMobs; +zyins-hud;1076;;;Zyin's HUD;; +;;;negorerouse;尼格洛兹·无尽曈曚;NegoreRouse;NR +rough-tweaks;1078;;roughtweaks;难度调整;Rough Tweaks; +;1079;;;厨艺大师;Master Chef; +the-disenchanter-mod;1080;;disenchanter;祛魔台;The Disenchanter; +carry-on;1081;;carryon;搬运;Carry On; +better-than-llamas;1082;;;更好看的羊驼;Better Than Llamas; +dynamic-surroundings;1083;813490;dsurround,dsurroundcore;动态环境/动态环绕;Dynamic Surroundings; +alfheim;1084;809440;alfheim;亚尔夫海姆;Alfheim; +mob-battle-mod;1085;582695;;怪物大乱斗;Mob Battle Mod; +smooth-font;1086;781290;smoothfont,smoothfontcore;平滑字体;Smooth Font; +dude-wheres-my-blocks;1087;;;谁动了我的合成表;Dude where's my blocks; +reskillable;1088;;reskillable;Reskillable;; +betteroffhand;1089;788841;;更好的副手;BetterOffhand; +entity-spring;1090;788317;entityspring;实体弹簧;Entity Spring; +compatskills;1091;;compatskills;CompatSkills;; +avaritia-tweaks;1092;;avaritiatweaks;Avaritia Tweaks;; +mjrlegendslib;1093;;mjrlegendslib;MJRLegends Lib;; +dye-it-yourself;1094;789349;diy;自动染色;Dye It Yourself; +piston-expansion;1095;789538;;活塞拓展;Piston Expansion; +underwater-rails;1096;789443;underwaterrails;水下铁轨;Underwater Rails; +trebuchet;1097;;trebuchet;Trebuchet;; +particlelib;1098;;particlelib;粒子库;ParticleLib; +;1099;470421;modJ_StarMiner;星际矿工;Starminer; +;1100;776133;flammpfeil.slashblade.zxsa;迷之刀技;AbbySA; +jglrxavpoks-uncrafting-table;1101;;uncraftingTable,jordy141minecraftmagicwrench;jglrxavpok的拆解台;jglrxavpok's Uncrafting Table; +rustic;1102;;rustic;乡村;Rustic; +netherutils;1103;;netherutils;​NetherUtils;; +bonsai-trees;1104;785239;bonsaitrees;盆栽;Bonsai Trees; +;1105;;;量子工程;Quantum Engineering;QE +binnies-mods;1106;;Genetics,genetics;基因工程;Genetics; +misty-world;1107;;mist;朦胧世界;Misty World;MW +;;;binniecore;Binnie核心;Binnie Core; +binnies-mods;1109;;Botany,botany;植物学;Botany; +beta-kathairis;1110;865377;kathairis;卡塞瑞斯;Kathairis/Kether; +;1111;812890;manametalmod;魔法金属;ManaMetalMod;M3 +avaritiaddons;1112;922743;avaritiaddons;无尽收容 / 更多空间箱子;Avaritiaddons; +base;1113;;base;B.A.S.E;; +immersive-cables;1114;;immersivecables;沉浸线缆;Immersive Cables; +;1115;788554;darksword;黑暗剑;Darksword; +better-title-screen;1116;594778;;更好的标题页;Better Title Screen;BTS +sound-filters;1117;;soundfilters;音效过滤;Sound Filters; +;1118;176855;lambdacraft;半条命;LambdaCraft;λC +vivecraft-forge-extensions;1119;;vivecraftforgeextensionscore,vivecraftforgeextensions;Vivecraft;; +super-sound-muffler;1120;;supersoundmuffler;超级消音器;Super Sound Muffler; +armorplus;1121;;armorplus;装备扩充;ArmorPlus; +inspirations;1122;940567;inspirations;灵感;Inspirations; +tree-growing-simulator;1123;;treeGrowingSimulator;跳舞树成长;Tree Growing Simulator;TGS +;1124;328818;flammpfeil.extrascepterstaff;独角兽权杖;ExtraScepterStaff; +personal-cars;1125;;personalcars;Personal Cars;; +thermal-innovation;1126;;thermalinnovation;热力革新;Thermal Innovation;TI +bewitchment-legacy;1127;;bewitchment;Bewitchment;; +better-foliage;1128;;betterfoliage;更好的树叶;Better Foliage;BF +creative-plus;1129;;creativeplus;创造+;Creative Plus; +just-a-few-fish;1130;529165;jaff;只是一些鱼;Just a Few Fish; +ynot;1131;;ynot;YNot;; +serene-seasons;1132;849266;sereneseasons;静谧四季/季节;Serene Seasons; +realm-of-the-dragons-rotd;1133;;;龙之领域;Realm Of The Dragons;ROTD +rockhounding-mod-core;1134;;rockhounding_oretiers,rockhounding_rocks,rockhounding_surface,globbypotato_rockhounding,rockhounding_chemistry,rockhounding_core;地质探秘/岩石狩猎;RockHounding;RH +fancy-block-particles;1135;['678541'];fbp;梦幻方块效果;Fancy Block Particles;FBP +thaumic-katana;1136;;thaumkatana;神秘之日本刀;Thaumic Katana; +the-aether-ii;1137;797818;aether;天境二(以太2/天堂);The Aether II; +visibleraygenerator;1138;785459;VisibleRayGenerator,vrgenerator;永久光发电机;VisibleRay Generator; +mmmmmmmmmmmm;1139;708291;testdummy;试验假人;MmmMmmMmmMmm; +aromabackup;1140;;AromaBackup,aromabackuprecovery,aromabackup;存档备份;AromaBackup; +;1141;809235;;NameWakander;; +orbis-lib;1142;;orbis-lib;Orbis;; +the-eight-fabled-blades;1143;794723;theeightfabledblades;八大传说之刃;The Eight Fabled Blades; +malisisblocks;1144;;malisisblocks;Malisisblocks;; +useful-interior;1145;793625;of;有用的内饰;Useful Interior; +taiga-tinkers-alloying-addon;1146;['670143'];taiga;匠魂合金附加;Tinkers Alloying Addon;TAIGA +version-checker;1147;;;模组更新检测;Version Checker; +planar-artifice-unofficial;1148;;planarartifice;镜面艺术;Planar Artifice;PA +;1149;;;沃普综合;WOP Mixed;WOP +Requiem;1150;843736;requiem;安魂曲;Requiem/Dissolution; +slashblade-in-tfc;1151;789943;slashblade_tfc;古刀传;Slash Blade in TFC;SITFC +mlp-mythical-creatures;1152;;MLPMod;神话生物;Mythical Creatures;MLP +metamorph;1153;723273;metamorph;变形;Metamorph; +reactioncraft-3-rebirth;1154;;;世界反应3:重置;Reactioncraft 3: Rebirth; +pewter;1155;;pewter;魔法匠魂;Pewter; +redstone-repository-revolved;1156;;;红石军械库重制版;Redstone Repository Revolved;RRR +spawncommands-spawn-commands-teleport;1157;830035;spawncommands;传送指令;Spawn Commands Teleport; +server-properties-for-lan;1158;781904;;简单联机;Server.Properties for LAN; +jaopcaadditions;1160;;;JAOPCA附属;JAOPCAAdditions; +cloche-call;1161;;;Cloche Call;; +mouse-tweaks;1162;69677;mousetweaks;鼠标手势;Mouse Tweaks; +jaopcaagriculture;1163;;jaopca,oredictinit;JAOPCA神秘农业附属;JAOPCA Agriculture; +sky-resources;1164;817623;skyresources;空岛资源;Sky Resources;SR +hexxit-gear;1165;;;Hexxit装备;Hexxit Gear; +;1166;;itemrender;渲染图片导出续作;Item Render Rebirth;IRR +magic-clover;1167;;;幸运四叶草;Magic Clover; +inventory-crafting-grid;1168;;;背包工作台;Inventory Crafting Grid; +kleeslabs;1169;;kleeslabs;更好地破坏半砖;KleeSlabs; +gregtechce;1171;818575;gregtech;格雷科技社区版;GregTech Community Edition;GTCE +blur;1172;;blur;界面背景模糊;Blur; +fast-leaf-decay;1173;;fastleafdecay;树叶快速腐烂;Fast Leaf Decay; +enable-cheats;1174;798217;;开启作弊模式;Enable Cheats; +findit;1175;798212;findit;找到它;Findit!; +wearable-blocks;1176;; wearableblocks;可穿戴的方块;Wearable Blocks; +;1177;639194;weaponmod;更多武器·改造版;Balkon's WeaponMod; +;;;;MC百科资料搜索;MCMOD Item Search; +swissarmyknife;1179;;;瑞士军刀;SwissArmyKnife;SAK +ender-io-addons;1180;545556;enderioaddons;末影接口拓展;Ender IO Addons; +historicized-medicine;1181;;historicizedmedicine;历史化医学;Historicized Medicine;HM +infinity-item-editor;1182;791937;;无尽物品编辑器;Infinity Item Editor;IIE +extra-rails;1183;607938;extrarails,ExtraRails;更多功能铁轨;Extra Rails; +gregtania;1184;;;Gregtania;; +origin;1185;;;Origin;; +minecraft-transport-simulator;1186;;mts,mtsofficialpack;沉浸车辆;Immersive Vehicles;IV +chest-transporter;1187;467680;ChestTransporter,chesttransporter;搬箱器;Chest Transporter; +i18nupdatemod;1188;805273;i18nmod;自动汉化更新;I18nUpdateMod;i18n +realistic-item-drops;1189;;realdrops;真实物品掉落;Realistic Item Drops; +pixelmon;1190;291020;pixelmon;宝可梦 重铸;Pixelmon Reforged;PMRE +controlling;1191;713187;controlling;键位冲突显示;Controlling; +;1192;782476;saligia;炼金重铸计划-七宗罪;PROJECT_saligia; +memory-cleaner-mod;1193;;MemoryCleaner;内存清理;Memory Cleaner; +simpleleather;1194;660382;simpleleather;腐肉烧皮革;SimpleLeather; +sync;1195;300110;sync;克隆;Sync; +chiseled-me;1196;;chiseled_me;超级变变变;Chiseled Me; +progressive-automation-early-miner;1197;;progressiveautomation;进阶自动化;Progressive Automation; +matmos;1198;;;真实环境音效;MAtmos; +ye-olde-tanks;1199;;YeOldeTanks;水箱;Ye Olde Tanks; +improving-minecraft;1200;;imc;改善的世界;Improving Minecraft;IPMC +wawla;1201;;wawla;Wawla高亮显示;What Are We Looking At;Wawla +lightarea;1202;806149;lightarea;点亮区域;LightArea; +;1203;952909;replaymod;录像回放;Replay Mod; +stellar-sky;1204;502403;stellarium;群星璀璨;Stellar Sky; +stellar-api;1205;;;恒星API;Stellar API; +nei-addons;1206;;NEIAddons,NEIAddons|Developer,NEIAddons|AppEng,NEIAddons|Botany,NEIAddons|Forestry,NEIAddons|CraftingTables,NEIAddons|ExNihilo;NEI扩充;NEI Addons; +cucumber;1207;;cucumber;Cucumber Library;; +hunting-dimension;1208;800351;huntingdim;狩猎维度;Hunting Dimension; +runes-of-wizardry;1209;;runesofwizardry;符文魔法;Runes-of-Wizardry; +coffee-workshop;1211;808472;coffeework;咖啡工坊;Coffee Workshop; +in-game-account-switcher;1212;1211916;ias;游戏内账号切换;In-Game Account Switcher; +consecration;1213;849160;consecration;圣化;Consecration; +ignite-hud;1214;;;燃点HUD;Ignite HUD; +mrcrayfishs-gun-mod;1215;;cgm;MrCrayfish的枪;MrCrayfish's Gun Mod;CGM +bloodmoon;1216;904325;bloodmoon;血月;bloodmoon;BM +obfuscate;1217;;obfuscate;Obfuscate;; +runic-dungeons;1218;402813;runicdungeons;符文地牢;Runic Dungeon; +poop;1219;610472;;屎;Poop Mod; +slurp;1220;;slurp;啜饮;Slurp; +tough-expansion;1221;;tanaddons;意志坚定:热力附属;Tough Expansion; +mystical-agradditions;1222;;mysticalagradditions;神秘农业扩展;Mystical Agradditions; +vanillafix;1223;792493;vanillafix;原版修复;VanillaFix;VF +just-enough-harvestcraft;1224;725038;jehc;更多潘马斯配方查询;Just Enough HarvestCraft;JEHC +charcoal-pit;1225;818165;charcoal_pit;Charcoal Pit;; +uncomplication;1226;471928;;IC2exp还原;Uncomplication; +the-wings-of-alfheim-1-7-10;1227;499629;alfheimwings;亚尔夫海姆之翼;The Wings of Alfheim; +;1228;321216;;逆向合成台;ReverseCraft; +mubble;1230;;mubble;Mubble;; +libraryex;1231;;libraryex;MineEx通用库;LibraryEx;LibEx +industrial-wires;1232;;industrialwires;工业线缆;Industrial Wires;IW +mystagrad-cloche-compat;1233;;mystagradcompat;MystAgrad Cloche Compat​;; +waitingtime;1234;774325;;加载页面游戏;WaitingTime; +dragontech;1235;;dragontech,DragonScalesEX;龙之科技/龙鳞实验版;DragonTech/Dragon Scales EX; +;1236;;;EMC;; +gravityfalls-mod;1237;;;怪诞小镇;Gravity Falls;GF +tfcbotania;1238;;;TFC植物魔法;TFCBotania; +no-recipe-guide;1239;811530;;没有合成指南;No Recipe Guide; +takumi-craft;1240;;takumicraft;爬行者世界/苦力怕世界;Takumi Craft; +the-mists-of-riov;1241;;;神秘世界;The Mists of RioV Mod;RioV +;1242;810516;kyokainokanata;境界的彼方;KyokaiNoKanata;KNK +nsr-no-respawn-screen;1243;793776;;无重生屏幕;No Respawn Screen;NRS +more-bees;1244;777452;morebees;蜜蜂拓展;More Bees; +evilnotchlib;1245;;;EvilNotch Lib;; +tpalette;1246;;;调色板;TPalette; +;1247;;gtweapons;格雷武器扩展;GregTech WeaponWorks;GTWW +career-bees;1248;;careerbees;职业蜜蜂;Career Bees; +;1249;;;升级!;Level Up!; +level-up;1250;;levelup2;升级!重置;Level Up!Reloaded; +level-up-legacy;1251;;;升级!前版;Level Up!Legacy; +moar-boats;1252;;moarboats;模块化船;Moar Boats; +numina;1253;;numina;模块化动力装甲前置;Numina; +tinkers-complement;1254;;tcomplement;匠魂补充;Tinkers' Complement; +everlastingabilities;1255;;everlastingabilities;永恒能力;Everlasting Abilities; +abyssalcraft-heads;1256;673330;acheads;深渊国度头颅;AbyssalCraft Heads; +overlord;1257;657071;;不死者之王;Overlord; +multifarm-crops;1258;; multifarmcrops;多功能农场兼容;Multifarm Crops; +forestry-fermenter-addon;1259;;;更多生物质;Forestry Fermenter Addon; +dakimakura-mod;1260;816801;dakimakuramod;抱枕;Dakimakura Mod; +rift;1262;814764;;Rift;; +crop-eating-animals;1263;;;动物自动喂食;Crop-Eating Animals; +refraction;1264;;refraction;折射;Refraction; +;1265;;;真实火车附加包:上海地铁包;; +librarianlib;1266;;librarianlib;图书馆;LibrarianLib; +creeper-confetti;1267;775377;creeperconfetti;烟花苦力怕;Creeper Confetti; +funnels;1268;;funnels;液体漏斗;Funnels; +advent-of-ascension-nevermine;1269;;aoa3;虚无世界3;Advent of Ascension 3;AoA3 +toroquest;1270;818183;toroquest;托罗探索;Toro Quest;TQ +;1271;;nutrition;营养学;Nutrition; +rikmulds-core-mod;1272;;;Rikmulds Core Mod;; +just-enough-pattern-banners;1273;;jepb;Just Enough Pattern Banners;;JEPB +primitive-mobs;1274;;primitivemobs;远古生物/原始生物;Primitive Mobs; +realistic-cobwebs;1275;;;燃烧的蛛网;Realistic Cobwebs; +simpleharvest;1276;1089377;simpleharvest;简单收获;Simple Harvest; +mrcrayfishs-device-mod;1277;830159;;MrCrayfish的设备;MrCrayfish's Device Mod;CDM +block-armor;1278;;blockarmor;方块盔甲;Block Armor; +stockpile;1279;818298;stockpile;储物桶;Stockpile; +loot-slash-conquer;1280;['805062'];;Loot Slash Conquer;;LSC +candy-world;1281;812603;candymod;糖果世界;Candy World;CW +;1282;778805;slimecraft;史莱姆工艺;SlimeCraft; +creativecore;1283;;creativecoredummy,creativecore;CreativeCore;; +instantunify;1284;816966;instantunify;瞬间统一;InstantUnify; +;1285;811810;lostblade;遗忘之刃;LostBlade; +mobdrops;1286;;;更多掉落;MobDrops; +states;1287;819991;states;城邦;States; +modular-machinery;1288;;modularmachinery;模块化机械;Modular Machinery;MM +compositegear;1289;;compositegear;复合齿轮/复合装甲;Composite Gear; +kiwi;1290;;kiwi;Kiwi 🥝;; +cuisine;1291;821999;cuisine;料理工艺 🍳;Cuisine 🍳; +world-control;1292;;worldcontrol;世界控制;World Control; +tree-chopper;1294;630864;treechopper;砍树;Tree Chopper;TCH +the-lost-cities;1295;833685;lostcities;失落的城市;The Lost Cities; +;1296;;usernamemod;游戏内更改玩家名称;Ingame Username Changer; +;1297;696861;cpp;更多的合成;Crafting++;CPP +;1298;;dmp;装饰品合集;Decorations Mega Pack;DMP +simple-underground-biomes;1299;;simpleundergroundbiomes;简单地下生物群系;Simple Underground Biomes; +zen-foundry;1300;;foundry;禅:金属工坊 🌋;Zen: Foundry 🌋; +;1301;;ExtendedPlanets;扩展行星;Extended Planets; +;1302;['267417'];;TheCatacyst's Palindel;; +galaxyadditions;1303;1103561;;Galaxy Additions/Beyond Space;; +animationapi;1304;;AnimationAPI;AnimationAPI;; +realbench;1305;;;更好的工作台;RealBench;RB +primalcore;1306;;primal;原始核心;PrimalCore; +primal-tech;1307;;primal_tech;原始科技;Primal Tech; +antique-atlas;1308;;antiqueatlas;古式地图;Antique Atlas; +;1309;822226;hmggirlfront;少女前线;Girls' Frontline / ドールズフロントライン/ HMGDollsFrontLine;GF +xray-1-13-rift-modloader;1310;;atianxray;Xray Mod;; +overloaded;1311;817115;overloaded;超限存储;Overloaded; +power-tools;1312;;;现代工具;Power Tools; +enchanting-plus;1314;;eplus;高级附魔台;Enchanting Plus;EP +stick-of-death;1315;;stickofdeath;死亡之棍;The Stick Of Death; +godweapons;1316;;godweapons;神的武器;Gods' Weapons; +sekwah41s-naruto-mod;1317;;narutomod;sekwah41的火影忍者;sekwah41's Naruto Mod; +constructs-armory;1318;786419;conarm;匠魂盔甲;Construct's Armory;ConArm +;1319;474041;rivalrebels;未来战争;Rival Rebels;RR +undertale-mod;1320;;;传说之下;UNDERTALE Mod; +globe;1321;789706;;水晶球;Globe; +super-stick-sword;1322;;supersticksword;超级木棍剑;Super Stick sword; +mekanism-generators;1323;;mekanismgenerators;通用机械发电机;Mekanism Generators;MekG +spider-queen;1324;525087;;蜘蛛女王;Spider Queen;SQ +baublelicious;1325;553597;baublelicious;美妙饰品;Baublelicious; +void-monster;1326;;;Void Monster;;VM +shields-plus;1327;;;更多盾牌;Shields Plus;SP +ghost-buster;1328;;ghost_buster;Ghost Buster;; +culinary-construct;1329;;culinaryconstruct;自定义三明治;Culinary Construct; +armoreablemobs;1330;;armoreablemobs;怪物装备自定义;ArmoreableMobs; +;1332;426875;;矿物嗅探器;Ore Sniffer; +advanced-inventory;1333;;advInv;Advanced Inventory;; +;1335;787127;Unsheathe;利刃出鞘;Sword Unsheathe;SU +pollution-of-the-realms;1336;;adpother;环境污染;Pollution of the Realms; +heat-and-climate-lib;1338;;;Heat And Climate Lib;; +waystones;1339;638823;waystones;传送石碑;Waystones; +thaumic-calculations;1340;;thaumic_calculator;神秘计算器;Thaumic Calculations; +pams-weee-flowers;1341;;;潘马斯花园;Pam's Weee! Flowers; +;;;mistraven;寒鸦;MistRaven;M.R +;1343;;;Gamemode 4;;GM4 +paragliders;1344;1246990;paraglider;滑翔伞;Paragliders; +ender-io-endergy;1345;843550;;末影接口:管道拓展;Ender IO:Endergy; +bwm-suite;1346;;betterwithmods;Better With Mods;;BWM +ambience-music-mod;1347;711711;ambience;环境音乐;Ambience; +almost-enough-items;1348;812644;;AEI物品管理器;Almost Enough Items;AEI +mtutils;1349;;;MTUtils;MTUtils; +gravestone-mod;1350;772774;gravestone;墓碑;GraveStone; +atlas-extras;1351;;;Atlas Extras;; +horse-power;1352;;horsepower;马力;Horse Power;HP +better-with-addons;1353;; betterwithaddons;Better with Addons;; +tesla-core-lib;1354;;teslacorelib,teslacorelib_registries;特斯拉核心;Tesla Core Lib;TCL +voidscape;1355;825777;voidcraft,vc;虚空工艺;VoidCraft;VC +stygian-end-biome-expansion;1356;;stygian;末地:生物群系扩展;Stygian End: Biome Expansion; +wooden-furnace;1357;827260;woodenfurnace;木制熔炉;Wooden Furnace; +moreplates;1358;;moreplates;更多金属板;More Plates; +morelibs;1359;;;More Libs;; +game-stages;1360;854578;gamestages;游戏阶段;Game Stages;GS +the-building-game;1361;;;建筑游戏;The Building Game; +silents-gems;1362;;silentgems;寂静宝石;Silent's Gems; +silent-lib;1363;;silentlib;Silent Lib;; +silents-gems-tic-support;1364;;;寂静宝石:匠魂支持;Silent's Gems: TiC Support; +lit-little-insignificant-things;1365;;lit;Little Insignificant Things;;LIT +gemulation;1366;;;Gemulation;; +silents-gems-extra-parts;1367;;sgextraparts;寂静宝石:额外部件;Silent's Gems: Extra Parts; +fun-ores;1368;;funores;趣味矿石;Fun Ores; +solar-furnaces;1369;;;简易太阳能;Simple Solar Panels; +vanilladeathchest;1370;825450;vanilladeathchest;原版死亡箱子;Vanilla Death Chest; +arachnophobia;1371;784755;arachnophobia;蜘蛛恐惧症;Arachnophobia; +abyssalcraft-integration;1372;672323;acintegration;深渊国度联动;AbyssalCraft Integration; +prefab;1373;;prefab;预制建筑;Prefab; +haunch-hud;1374;818937;;Haunch HUD;; +absent-by-design;1375;;absentbydesign;Absent by Design;; +no-night-vision-flashing;1376;984741;;无夜视闪烁;No Night Vision Flashing; +arcade-mod;1377;826772;arcademod;街机;Arcade Mod; +asmodeuscore;1378;;asmodeuscore;Asmodeus Core;; +building-gadgets;1379;806768;buildinggadgets;建筑小帮手;Building Gadgets; +dooglamoo-worlds;1380;;;Dooglamoo的世界;Dooglamoo Worlds; +scp-lockdown;1381;807971;scp;SCP基金会:封锁;SCP: Lockdown;SCPL +middle-earth-thaumaturgy;1382;867665;;中土神秘学;Middle-Earth Thaumaturgy;METT +structpro-mod-fast-schematic-spawning-system;1383;827204;structpro;自然神殿;Structpro; +betterfps;1384;539780;betterfps;更好的FPS;BetterFPS; +sky-compression;1385;;sc;Sky Compression;;SC +reap-mod;1386;;reap;收获;Reap; +geolosys;1387;935361;geolosys;地质矿脉;Geolosys; +patchouli;1388;;patchouli;帕秋莉手册;Patchouli; +jeid;1389;;jeid;JustEnoughIDs;;JEID +gases-framework;1390;;;Gases Framework;; +ranged-pumps;1391;668293;rangedpumps;远程泵;Ranged Pumps; +223005-bagginses;1392;628505;bagginses;背包;Bagginses; +ic2-classic;1393;810416;IC2-Classic-Spmod;工业时代2经典版;IC2 Classic;IC2C +opencubicchunks;1394;;cubicchunks;Open Cubic Chunks;; +cubicworldgen;1395;;;CubicWorldGen;; +rally-health;1396;;rallyhealth;Rally Health;; +open-terrain-generator;1397;;openterraingenerator;开放地形生成器;Open Terrain Generator;OTG +;1398;;elementtimes;元素时代;ElementTimes;ET +noshelter;1399;;;无庇护所;NoShelter; +epic-siege-mod;1400;725125;epicsiegemod;史诗攻城;Epic Siege; +furnace-overhaul;1401;; furnaceoverhaul;熔炉改革;Furnace Overhaul; +;1402;832060;;灰烬凋零;EmberWither; +architecturecraft-tridev;1403;;architecturecraft;建筑师工艺重置版;ArchitectureCraft - TridentMC Version; +ore-farm;1404;;orefarm;矿石农场;Ore Farm; +;1406;676189;soundphysics;物理声效;Sound Physics; +plethora-peripherals;1407;;plethora;Plethora Peripherals;; +simple-flight;1408;;DP_SimpleFlight;简单的飞行;Simple Flight; +factory-tech;1409;;factorytech;工厂科技;FactoryTech; +;1411;;fabricloader;Fabric-Loader;; +mysticallib;1412;;mysticallib,elulib;MysticalLib;; +crissaegrim;1413;;crissaegrim;Crissaegrim;; +;1414;834193;xcustomizedblade;可视化 X-客制化拔刀剑;XCustomizedBlade;XCB +traverse-legacy-continued;1416;;traverse;遍历;Traverse; +winter-wonder-land;1417;;winterwonderland;霏雪寄语之地;Winter Wonder Land;WWL +road-stuff;1418;609045;roadstuff;道路2;Road Stuff2;RS2 +ae2wtlib;1419;;ae2wtlib;AE2 Wireless Terminal Library;;AE2WTLib +real-filing-cabinet;1420;;realfilingcabinet;仿真档案柜;Real Filing Cabinet; +hycrafthds-wtf-ic2-addon;1421;;wtfic2addon;WTF 工业拓展;WTF Ic2 Addon; +u-team-core;1422;;;U Team Core;; +ftb-quests;1423;849746;ftbquests;FTB任务;FTB Quests;FTBQ +texfix;1424;771588;texfix;材质修复;TexFix; +mapmakers-gadgets;1425;;;Mapmaker's Gadgets;;MG +travellers-gear;1426;;TravellersGear;旅者之器;Traveller's Gear; +ceramics;1427;;ceramics;陶瓷器;Ceramics; +slashblade-japanese-addon-pack;1428;['836114'];slashblade_addon,slashblade.addonpack,flammpfeil.slashblade;拔刀剑日系附属包;SlashBlade Japanese Addon Pack;SJAP +;1429;;;4-Space;;4S +planet-progression;1430;;planetprogression;星球研究;Planet Progression; +space-advanced-addon-for-galactic-craft-3;1431;;;Space Advanced;; +decimation-zombie-apocalypse;1432;878571;deci;僵尸启示录;Decimation;DECI +rift-mod-list;1433;;;Rift Mod List;; +forgeendertech;1434;;EnderTech,forgeendertech;ForgeEndertech;; +new-tardis-mod;1435;;tardis;New TARDIS Mod;;NTM +;1436;;;时区;Time Zone; +advanced-chimneys;1437;673890;;高级烟囱;Advanced Chimneys; +regeneration;1438;;regeneration;Doctor Who - Regeneration​;;DWR +stevekungs-lib;1439;;stevekung's_lib;SteveKunG's Lib;; +make-zoom-zoom;1440;;;更快的加载;MakeZoomZoom;MZZ +minecraft-virtual-machines;1441;;;Minecraft虚拟机;Minecraft Virtual Machines;MCVM +cavern2;1442;782780;;洞穴 II;Cavern II; +notenoughids;1443;;neid;增加ID上限;NotEnoughIDs;NEID +avaritia-recipe-generator;1444;;avaritiarecipemaker;可视化无尽配方编辑器;Avaritia Recipe Generator;ARG +trapcraft;1445;260090;;陷阱;Trapcraft; +mod-name-tooltip;1446;;modnametooltip;模组名称显示;Mod Name Tooltip; +gpick-2;1447;795644;gpick;进化之镐2;GPickaxe 2;GPick2 +cxlibrary;1448;;cxlibrary;CXLibrary;; +;1449;771076;glasshearts;玻璃心;GlassHearts; +integrated-tunnels;1450;944541;integratedtunnels,integratedtunnelscompat;集成管道;Integrated Tunnels; +unmending;1451;;;经验不修补;Unmending; +the-creeping-nether;1452;;creepingnether;腐化蠕动的下界;The Creeping Nether; +random-psideas;1453;;rpsideas;Psi随想;Random PSIdeas; +expetrum;1454;818194;exp;真实世界;ExPetrum; +equivalent-energistics;1455;;equivalentenergistics;等价能源学;Equivalent Energistics; +thedragonlib;1456;;thedragonlib;TheDragonLib;; +repose;1457;;;自动上坡;Repose; +botanic-additions;1458;;botanicadds;植物学拓展;Botanic Additions;BA +;1459;;spongeforge,spongeapi,sponge;海绵端插件支持Forge版;SpongeForge;SF +the-veggie-way;1460;;;素食主义者;The Veggie Way; +gargoyles-mod;1461;;gargoyles;石像鬼;Gargoyles; +hydrophobia;1462;;;恐水之症;Hydrophobia; +dimensional-edibles;1463;;dimensionaledibles;维度食物;Dimensional Edibles; +passable-leaves;1464;799088;passableleaves,passableleavescore;叶间穿行;Passable Leaves; +swingthroughgrass;1465;691271;swingthroughgrass;穿草攻击;SwingThroughGrass; +steves-bizarre-adventure;1466;839550;jojobadv;史蒂夫的奇妙冒险;Steve's Bizarre Adventure; +animania;1467;817915;animania;动物谷:基础;Animania Base; +endertweaker;1468;;endertweaker;Ender Tweaker;; +cofh-vanilla-tools;1469;;vanillatools;CoFH: Vanilla+ Tools;; +;;;Yamazakura;山樱之刃;Yamazakura; +rarmor;1471;;rarmor;功能装甲;Rarmor; +immersive-io;1472;839807;;沉浸接口;Immersive IO; +tickratechanger;1473;731107;tickratechanger;运算变速;TickrateChanger; +botania-needs-these-things;1474;838714;botanianeedsit;植物魔法需要它!;Botania Needs These Things!; +nocubes;1475;;;NoCubes;; +orelib;1476;;orelib;OreLib;; +tick-dynamic;1477;;tickdynamic;动态Tick;Tick-Dynamic; +surge;1478;923335;surge;潮涌;Surge; +more-avaritia;1479;;moreavaritia;More Avaritia;; +ai-improvements;1480;;aiimprovements;AI改进;AI Improvements; +project-ex;1481;838230;projectex;等价交换升级;Project EX; +industrial-sorcery-mod;1482;;;Industrial Sorcery;; +xaeros-world-map;1483;;xaeroworldmap_core,xaeroworldmap;Xaero的世界地图;Xaero's World Map; +wizardry-mod;1484;910980;wizardry;巫师艺术;Wizardry; +fastfurnace;1485;;fastfurnace;熔炉性能优化;FastFurnace; +fastworkbench;1486;;fastbench;工作台性能优化;FastWorkbench; +unbreaken;1487;;unbreaken;工具保护;UnbreakEn;FS +bitcoin;1488;;;比特币;Bitcoin; +hungering-darkness;1489;;;Hungering Darkness;; +roots-classic;1490;;rootsclassic;根源魔法经典版;Roots Classic; +embers-rekindled;1491;681929;embers;余烬复刻版;Embers Rekindled; +vending-machines-revamped;1492;482613;aziasvendingmachine;自动贩卖机;VendingMachinesRevamped; +thaumic-alchemy;1493;713264; thaumicalchemy,thaumicalchemy;神秘炼金学;Thaumic Alchemy; +;1494;;thebestchristmas;最好的圣诞节;THE BEST CHRISTMAS MOD; +move-plus;1495;;;移动方式增强;Move Plus; +future-minecraft;1496;;futureminecraf;未来的版本;FutureVersions;FV +contenttweaker;1497;;contenttweaker;ContentTweaker;;CoT +from-the-ground-up;1498;830883;ftgumod;白手起家;From The Ground Up;FTGU +clumps;1499;769015;clumps;经验机制改革;Clumps; +dynamic-surroundings-huds;1500;;dshuds;动态环境:信息显示;Dynamic Surroundings: HUDs; +crafting-tweaks;1501;682072;craftingtweaks;合成辅助;Crafting Tweaks; +limelib;1502;;limelib;LimeLib;; +sparks-hammers;1503;658384;sparkshammers;重锤火花;Sparks Hammers; +deadly-monsters;1504;666749;dmonsters;致命怪物;Deadly Monsters; +vanillaautomation;1505;;va;原版自动化;VanillaAutomation;VA +;1506;;tickprofiler;Tick分析器;TickProfiler; +vanilla-immersion;1507;726263;;立体工具方块;Vanilla Immersion;VI +earthworks;1508;;earthworks;土方工程;Earthworks; +terraqueous;1509;;terraqueous;地灵云心/海树山花;Terraqueous; +initial-inventory;1510;1037306;;自定义初始物品;Initial Inventory; +interaction-wheel;1511;;;Interaction Wheel;Interaction Wheel; +water-strainer;1512;;waterstrainer;滤水器;Water Strainer; +tinkers-skyblock;1513;;tinkerskyblock;匠魂空岛;Tinkers' Skyblock; +diet-hoppers;1514;;diethopper;漏斗碰撞箱修复;Diet Hoppers; +xl-food-mod;1515;;xlfoodmod;超多食物;XL Food Mod; +soot;1516;;soot;烟尘;Soot; +hp-spells;1517;843371;;哈利·波特:法术;Harry Potter Spells;HP Spells +recurrent-complex;1518;['923814'];reccomplex;自然建筑生成;Recurrent Complex;ReC +capabilityproxy;1519;;capabilityproxy;功能代理;CapabilityProxy; +reauth;1520;;reauth;ReAuth;; +autoverse;1521;; autoverse;Autoverse;; +transprot;1522;;transprot;运输;Transprot; +default-world-generator-port;1523;;;Default World Generator (port);Default World Generator (port); +better-questing-standard-expansion;1524;;bq_standard;更好的任务-基础扩展;Better Questing - Standard Expansion; +exchangers;1525;;exchangers;方块交换器;Exchangers; +flexible-tools;1526;;flexibletools;灵活的工具;Flexible Tools; +dimensional-control;1527;;dimensionalcontrol;维度控制;Dimensional Control; +valkyrien-warfare;1528;804503;valkyrienskies,vs_world,vs_control;瓦尔基里天空/瓦尔基里战争;Valkyrien Skies/Valkyrien Warfare;VS/VW +item-scroller;1529;;itemscroller;Item Scroller;; +better-advancements;1530;1109188;betteradvancements;更好的进度;Better Advancements; +lucraft-core;1531;;;Lucraft: Core;; +progressive-bosses;1532;843928;progressivebosses;进化的BOSS;Progressive Bosses; +persistent-bits;1533;;persistentbits;Persistent Bits;; +rc-roads;1534;; rcroads;真实公路;RC Roads; +emoticons;1535;831515;emoticons;动作表情;Emoticons; +simple-diving-gear;1536;;simpledivegear;简单的潜水装备;Simple Diving Gear; +just-enough-energistics-jee;1537;;jee;Just Enough Energistics;;JEE +ironman;1538;;ironman;钢铁侠;IronMan; +chunk-animator;1539;;chunkanimator;区块加载动画;Chunk Animator;CA +craftstudio-api;1540;;craftstudioapi;CraftStudio API;; +;1542;806138;fiskheroes;菲斯克的超级英雄;Fisk's Superheroes; +;1543;843912;ultimatestack,ultimatestackplugin;终极堆叠;UltimateStack; +aiot-botania;1544;;aiotbotania;AIOT Botania;; +botania-tweaks;1545;;botania_tweaks,botania_tweaks_core;植物魔法调整;Botania Tweaks; +albedo;1546;;;Albedo;; +natures-aura;1547;;naturesaura;自然灵气;Nature's Aura; +;1548;803768;;RF的原版工艺;RFTR's Craft;RFC +void-island-control;1549;;voidislandcontrol;Void Island Control;; +ic2-nei-crop-plugin;1550;;;IC2育种模拟器/杂交模拟器;IC2 Crop-Breeding Plugin; +better-storage-too;1551;;betterstorage;更好的储存2;Better Storage Too; +manaita-plus;1552;900754;ManaitaPlus;更好的砧板;Manaita Plus;MP +bartworks;1553;;bartworks;巴特的作品;bartworks; +;;;;放射性同位素温差供能喷气背包;Radioisotope Thermoelectric Jetpack;RTJ +placeable-motor;1555;;;可放置马达;Placeable Motor;PM +exo-craft;1556;;;EXO-Craft;; +simple-login;1557;;simplelogin;简单登录;Simple Login; +grim-pack;1558;;;Grim的Mod整合;Grim Pack; +artisan-worktables;1559;819099;artisanworktables;工匠之作/工匠工作台;Artisan Worktables;AW +ptrlib;1560;;PTRModelLib;PTRLib;; +creeper-awareness;1561;;;爬行者意识;Creeper Awareness; +what-fluid-fix;1562;;what;WHAT - Fluid Fix;; +blue-skies;1563;1240276;blue_skies;蔚蓝天空;Blue Skies; +project-vibrant-journeys;1564;;projectvibrantjourneys,pvj;活力之旅;Project: Vibrant Journeys; +bed-bugs;1565;;bedbugs;修复卡床;Bed Bugs; +biometweaker;1566;;biometweaker;生物群系修改器;BiomeTweaker; +actuallycomputers;1567;;actuallycomputers;实用电脑;ActuallyComputers; +fence-overhaul;1568;;fenceoverhaul;斜栅栏;Fence Overhaul; +zombie-players;1569;;zombie_players;僵尸玩家;Zombie Players;ZP +exotic-birds;1570;;exoticbirds;珍奇鸟类;Exotic Birds; +charset;1571;;charset;Charset;; +biometweakercore;1572;;biometweakercore;生物群系修改器扩展;BiomeTweakerCore; +trashcans-reborn;1573;;trashcansreborn;Garbage Bins;; +compactdrawers;1574;;compactdrawers;Compact Drawers;; +blockdispenser;1575;;;发射器放置方块;BlockDispenser; +redstone-paste;1576;;redstonepaste;爬墙红石/粘性红石;Redstone Paste; +dynamic-trees-traverse-compat;1577;;;动态的树:遍历附属;Dynamic Trees - Traverse Compat; +charset-lib;1578;;;Charset Lib;; +betternether;1579;859523;betternether;更好的下界;BetterNether; +time-machine-mod;1580;;timemachine;时光机;Time Machine; +;1581;831089;AnotherStarAntiCheat,AnotherStar,anotheranticheat,AnotherStarByMiracle,AntiCheat3;另一个反作弊;AnotherAntiCheat;AAC +upsizer-mod;1582;;upsizer;更大的堆叠数量;Upsizer Mod; +fence-jumper;1583;783865;fencejumper;越过栅栏;Fence Jumper; +enchantments-exchanger;1584;823400;;便携附魔替换台;Enchantments Exchanger; +additional-enchanted-miner;1585;;quarryplus;Additional Enchanted Miner;;AEM +treasure-bags;1586;;treasurebags;藏宝袋;Treasure Bags; +stevecraft-by-owenpsteve2;1587;;;史蒂夫工艺;SteveCraft; +hunger-games;1588;;;饥饿游戏;The Hunger Games; +tfctech-addon;1589;;tfctech;群峦工业;TFCTech Addon;TFCA +yunomakegoodmap;1590;;;YUNoMakeGoodMap;; +organic-creepers;1591;;organiccreepers;苦力怕蕨;Organic Creepers; +;1592;;flammpfeil.nihil;似蛭;Nihil; +;1593;;;西风太刀;Blade of the Zephyr; +;;;;洞爷湖;toyako; +industrial-renewal;1595;;industrialrenewal;工业复兴;Industrial Renewal; +draconicadditions;1596;914734;draconicadditions;龙之进化拓展;Draconic Additions; +;1597;;;孔明灯/天灯;Sky Lanterns; +hated-mobs;1598;;hatedmobs;令人讨厌的生物;Hated Mobs; +;1599;;tfcprimitivetech;原始技术;Primitive Technology; +mekanica;1600;;;通用机械:DZ版;Mekanica; +littletiles;1601;726890;littletiles;LT小方块;LittleTiles;LT +extended-crafting;1602;947515;extendedcrafting;合成拓展;Extended Crafting; +prodigy-tech;1603;['909679'];;奇才妙械;Prodigy Tech;PT +;1604;812890;;RPGapi;; +item-filters;1605;;itemfilters;物品过滤器;Item Filters​; +eblib;1606;;;EBlib;; +notenoughcodecs;1607;;;NotEnoughCodecs;; +future-mc;1608;913598;futuremc,minecraftfuture;未来的MC;Future MC; +rope-bridge;1609;;;索桥;Rope Bridge; +sbm-oil-ore;1610;;sbmoilore;油矿石;Oil Ore; +redstone-minus-redstone;1611;;;红石减红石;Redstone Minus Redstone; +more-furnaces;1612;;morefurnaces;更多熔炉;More Furnaces; +integrated-crafting;1613;;;集成合成学;Integrated Crafting; +integrated-terminals;1614;;integratedterminals;集成终端;Integrated Terminals; +mekanism-tools;1615;;mekanismtools,MekanismTools;通用机械工具;Mekanism Tools;MekT +roboticparts;1616;;;机械改造1.12+;Robotic Parts; +rewired;1617;;rewired;ReWIRED;; +oh-the-biomes-youll-go;1618;;byg;你将去的生物群系;Oh The Biomes You'll Go;BYG +vertically-stacked-dimensions;1619;;dimstack;垂直堆叠的世界;Vertically Stacked Dimensions; +;1620;786171;UraniumPlus;UraniumPlus;; +malisisswitches;1621;;;MalisisSwitches;; +automated-redstone;1622;;;自动化红石;Automated Redstone; +thuts-elevators;1623;692866;;Thutmose的电梯;Thut's Elevators; +additional-resources;1624;;;Additional Resources;; +sky-orchards;1625;;;天空果园;Sky Orchards; +mdxlib;1626;;mdxlib;Minecraft Development Library X;;MDXLib +wireless-utilities;1627;;;无线设备;Wireless Utilities; +tometinkers;1628;;tometinkers;ToMeTinkers;; +tinkers-slashblade;1629;846907;slashbladetic;刀锻冶匠魂;Tinker's SlashBlade; +audio-death;1630;;;死亡音效;Audio Death; +deep-mob-learning;1631;;deepmoblearning;深度怪物学习;Deep Mob Learning; +;1632;;;Automated Bellows Addon;; +tofucraftreload;1633;946310;;豆腐工艺重置版;TofuCraftReload; +electroblobs-wizardry;1634;894070;ebwizardry;巫术学;Electroblob's Wizardry;EBWizardry +moarsigns;1635;547700;moarsigns;更多牌子;MoarSigns; +kamen-rider-craft;1636;;kamenridercraft4th;假面骑士工艺;KamenRiderCraft;KRC +avaritia-io;1637;;avaritiaio;无尽贪婪:接口;Avaritia IO; +dense-neutron-collectors;1638;;denseneutroncollectors;致密中子态素收集器;Dense Neutron Collectors; +pubgmc-mod;1639;;pubgmc;PUBGMC;; +mobultion;1640;783073;mobultion;进化怪物;mobultion; +waddles;1641;;waddles;Waddles;; +project-intelligence;1642;;;PI文档;Project Intelligence;PI +thutcore;1643;;thutcore_compat,thutcore;ThutCore;; +resource-pack-organizer;1644;721005;;资源包管理器;Resource Pack Organizer; +morcant-ore;1645;;;莫桑矿石;Morcant Ore; +force-void-world;1646;;;强制虚空世界;Force Void World; +i-am-very-smart;1647;;;我很聪明;I Am Very Smart; +far-from-home;1648;;farfromhome;背井离乡;Far from Home;FFH +cotton;1649;;;Cotton;; +teleportation;1650;;;Teleportation;; +oxygen-core;1651;;;氧气核心;Oxygen Core; +lead-villagers;1652;;leadvillagers;带领村民;Lead Villagers; +delta-hard-mode;1653;868260;;Delta困难模式;Delta Hard Mode; +id-squeezer-tweak;1654;;squeezerpatch;ID Squeezer Tweak;; +food-ores;1655;853666;;食物矿石;Food Ores; +sit;1656;1088610;sit;席地而坐;Sit; +;1657;861017;;DIO招式还原;; +;1658;830253;;新世代生存助手;Miobot; +;1659;;;优辛记忆;YOUXIN Memory;YXM +cplpibalds-tweaks;1660;;pitweaks;CplPibald的微调;CplPibald's Tweaks; +ore-biome;1661;;;矿石生态群系;Ore Biome; +farmadventure;1662;;;农场冒险;Farm Adventure;FA +;1663;518901;;暗影世界;Shadow World; +japaricraftmod-2;1664;;japaricraftmod;加帕里公园;JapariCraftMod; +mchorses-mclib;1665;;mclib;McHorse's McLib;; +musiccraft-mod;1666;276475;;音乐工艺;MusicCraft mod; +hardcore-darkness;1667;;hardcoredarkness;真实的黑夜;Hardcore Darkness;HD +cola-craft;1668;;colacraft;可乐工艺;Cola Craft; +;1669;;;粒法杖;Particle Wands; +backstab;1670;;backstab;背刺;BackStab; +dynamic-stealth;1671;840795;dynamicstealth;动态潜行;Dynamic Stealth; +;1673;;infinitesimalzeros;Infinitesimal Zeros;;IZ +roughly-enough-items;1674;1112931;roughlyenoughitems;REI物品管理器;Roughly Enough Items;REI +modmenu;1675;;;模组菜单;Mod Menu; +rei-addons;1676;;reiaddons;REI插件;REI Addons;REIA +illuminations;1677;;illuminations;Illuminations 🔥;; +mappy;1678;;;Mappy;; +mouse-wheelie;1679;;;急速滚轮;Mouse Wheelie; +mrcrayfishs-vehicle-mod;1680;867766;vehicle;MrCrayfish的载具;MrCrayfish`s Vehicle Mod; +cc-tweaked;1681;;cctweaked,computercraft;CC: Tweaked;;CC:T +aliensvspredator;1682;;;异形大战铁血战士;AliensVsPredator;AVP +dragon-murder;1683;;dragonmurder;Dragon Murder;; +birds-nests;1685;;birdsnests;鸟巢;Birds Nests;BN +minecraft-animated;1686;;;Minecraft Animated;; +Refined-Machinery;1687;867043;;精致机械;Refined Machinery;RM +magicalsculpture;1689;['868224'];;魔法雕像;MagicalSculpture;MaS +ash-another-simple-hud;1690;;;另一个简单的HUD;Another Simple HUD;ASH +custom-selection-box-port;1691;;csb;自定义选择框;Custom Selection Box;CSB +librikka-api;1692;;;Librikka API;; +not-enough-wands;1693;;notenoughwands;更多魔杖;Not Enough Wands; +deep-mob-learning-blood-magic-addon;1694;;deepmoblearningbm;深度怪物知识-血魔法插件;Deep Mob Learning - Blood Magic Addon; +informed-load-fabric;1695;;;更多加载信息;Informed Load; +huajiage-infinite-galaxy;1696;862800;;滑稽纪元II:无尽星河;Huaji Age II:Infinite Galaxy; +;1697;857865;anothercommonbugfix;另一个通用Bug修复;Another Common Bug Fix;ACBF +cqrepoured;1698;;cqrepoured;寻找巧克力重铸版;Chocolate Quest Repoured;CQR +fabricproxy;1699;;;FabricProxy;; +ex-sartagine;1700;780936;;锅具;Ex Sartagine; +xaeros-minimap;1701;545145;xaerominimap,xaerominimap_core;Xaero的小地图;Xaero's Minimap; +everlastingabilities-potioncore;1702;;;永恒能力-药水核心;EverlastingAbilities-PotionCore; +optifabric;1703;;;OptiFabric;; +the-emerald-haven;1704;908155;;翡翠天堂;The Emerald Haven;TEH +simple-grinder;1706;801070;;简易研磨机;Simple Grinder; +redstone-gauges-and-switches;1707;;;红石测量与开关;Redstone Gauges and Switches;RGS +apotheosis;1708;905214;apotheosis;神化;Apotheosis; +lighting-wand;1709;;lightingwand;照明魔杖 🌟;Lighting Wand 🌟; +terrarium;1710;;;地球;Terrarium; +climatic-biomes;1711;;climaticbiomesjbg;Climatic Biomes 2;; +howling-moon;1712;;;狼人;Howling Moon; +hostile-worlds-invasions;1713;;hw_inv;敌对世界-入侵;Hostile Worlds - Invasions;HW-INV +simple-storage-network;1714;;storagenetwork;简单存储;Simple Storage Network;SSN +;1715;290532;;虚无世界1;Eternal Isles 1;EI +scaling-health;1716;;scalinghealth;Scaling Health;; +minecoprocessors;1717;;minecoprocessors;微处理器;Minecoprocessors; +;1718;;;挖矿争霸;Dig Craft;DC +difficult-life;1719;;difficultlife;Difficult Life;; +mekanismores;1720;;mekores;通用机械矿石;MekanismOres; +pyrotech;1721;;pyrotech;火种科技;Pyrotech;PT +rats;1722;1117540;rats;老鼠;Rats; +serversync;1723;1140732;serversync;服务器同步;ServerSync;SS +;1724;872714;fisma;渔师与渔火;Fisma; +auxilium-equivalence;1725;1124866;auxiliumequivalence;等价交换辅助;Auxilium Equivalence / Auxilium; +bionisation-3;1726;784253;bionisation3;细菌病毒3;Bionisation 3; +tiny-mob-farm;1727;838630;tinymobfarm;迷你刷怪场;Tiny Mob Farm; +soulus;1728;;;Soulus;; +sanlib;1729;;;SanLib;; +;1730;808785;bloodblade;炼狱刀「血腥」;BloodBlade; +;1731;170843;;延时摄影;Camera Studio; +travelers-backpack;1732;;travellersbackpack,travelersbackpack;旅行者背包;Traveler's Backpack; +gregtech-classic;1733;968064;gregtech;格雷科技经典版;GregTech Classic;GTC +aperture;1734;705836;aperture;Aperture;; +combo-armors;1735;497761;IC2CA;组合装甲;IC2ComboArmors;IC2CA +;1736;869708;;源质罐子统计;Thaumcraft Jar Checker; +nonausea;1737;;nonausea;没有反胃;NoNausea; +communism-mod;1738;;;苏维埃工坊;Communism Mod; +mirror;1739;;;Mirror;; +ping;1740;;ping;Ping;; +the-legends-mod;1741;;legends;Legends;; +bad-wither-no-cookie-reloaded;1742;734965;badwithernocookie;Bad Wither No Cookie;; +giacomos-fishing-net;1743;;giacomos_fishing_net;Giacomo's Fishing Net;; +hospital-mod-pharmacy-pack;1744;873210;;医院Mod;The Hospital Mod;THM +more-charcoal;1745;;morecharcoal;更多木炭;More Charcoal; +born-in-a-barn;1746;;;Born in a Barn;; +better-animations-collection-2;1748;;;更好的动物动作2;Better Animations Collection 2;BAC2 +;1749;;flysword;御剑飞行;Fly Sword; +quality-tools;1750;;qualitytools;工具品质;Quality Tools; +toolscombine;1751;;;工具组合;Tools Combine; +pollutant-pump;1752;;pollutantpump;污染泵;Pollutant Pump; +infinite-pollution-filter;1753;;infilter;无限污染过滤器;Infinite Pollution Filter; +jei-hider;1754;;;JEI Hider;; +fastflyblockbreaking;1755;;;飞行速破;Fast Fly Block Breaking; +planttech-2;1757;905616;planttech2;植物科技2;PlantTech 2;PT2 +toast-control;1758;;toastcontrol;消息框控制;Toast Control; +;1759;;;渲染图片导出暗黑版;Item Render Dark;IRD +cocoa-magic;1760;1145375;cbcraft;可可工艺;Cocoa Magic; +betterportals;1761;;;更好的传送门;Better Portals; +classic-combat;1762;;;经典战斗;Classic Combat; +;1763;727204;AM;火影忍者;NarutoAnimeMod; +less-lag;1764;785968;lesslag;较少的滞后;Less Lag; +goodbye-grass;1765;;;没有草丛;Grassta la Vista; +phosphor;1766;1081821;phosphor-lighting;磷;Phosphor; +clay-bucket;1767;632083;claybucket;粘土桶;Clay Bucket; +extra-anvils;1768;;extraanvils;更多铁砧/更多砧;Extra anvils; +glassential;1769;1098398;glassential;精致玻璃;Glassential; +tinkers-addons;1770;;tinkersaddons,TinkersAddons;匠魂拓展;Tinkers' Addons; +barrels-drums-storage-more;1771;;bdsandm;桶,圆桶,存储及其它;Barrels, Drums, Storage & More;BDSM +wings;1772;;wings;翅膀;Wings; +up-and-down-and-all-around;1773;;mysttmtgravitymod;颠倒世界;Up And Down And All Around; +lost-souls;1774;;lostsouls;失落的灵魂;Lost Souls; +intelligent-energistics;1775;;;智能能源;Intelligent Energistics; +ender-compass;1776;785069;;末影指南针;Ender Compass; +ic2-tweaker;1777;;;IC2 Tweaker;; +thaumic-gadgets;1778;;tg;神秘宝具;Thaumic Gadgets;TG +multi-mine;1779;;multimine;多人开采;Multi Mine; +extra-foam-for-liteloader;1780;982739;;Liteloader修复;Extra Foam For LiteLoader;EFFL +embersified;1781;;embersified;余烬能量转换;Embersified; +thaumic-grid;1783;;thaumicgrid;神秘网络;Thaumic Grid; +back-tools;1784;;;工具后置/后背工具展示;Back Tools; +mapwriter-2;1785;680409;MapWriter;Mapwriter 2;Mapwriter 2;MW2 +dartcraft-reloaded;1786;;dartcraftreloaded;达特工艺重置版;Dartcraft Reloaded;DR +;1787;906895;mi;更多物品;More Item;MI +ceu;1788;;ceu;CEU;; +fantastic-lib;1789;;;Fantastic Lib;; +dm2;1790;;;龙骑士2;Dragon Mounts 2;DM2 +tiquality;1791;;;Tiquality;; +loot-capacitor-tooltips;1792;888624;lootcapacitortooltips;电容信息显示;Loot Capacitor Tooltips; +classic-bars;1793;;;经典状态条;Classic Bars; +overground-ores;1795;;;地表矿石;Overground Ores; +touhou-little-maid;1796;1015497;touhou_little_maid;车万女仆;Touhou Little Maid;TLM +;1797;['776186'];;万物皆可为兵刃;Allweapon; +eureka;1798;;eureka;Eureka;; +lazy-ae2;1799;;threng;懒人AE2;Lazy AE2;LAE +libnine;1800;;libnine;LibNine;; +equaldragons;1801;;;EqualDragons;; +berries;1802;;berriespp;Crops++;; +infinity-gauntlet-mod;1803;;infinitygauntlet;无限手套;Infinity Gauntlet; +mighty-ender-chicken;1804;;mightyenderchicken;强大的末影鸡;Mighty Ender Chicken; +malisisadvert;1805;;malisisadvert;广告牌;MalisisAdvert;MA +ido;1806;;ido;移动;Idō; +bat-happy-mod;1807;;bathappymod;🦇蝙蝠快乐MOD;🦇 Bat Happy Mod; +viescraft-airships;1808;;vc;维斯工艺-飞艇!;ViesCraft - Airships!; +the-ultimate-dimension;1809;885906;;究极次元;The Ultimate Dimension; +advanced-mortars;1810;;;更好的研钵;Advanced Mortars; +;1811;['890370'];;史诗征程;Epic Journey;EJ +crafttweaker-utils;1812;;ctutils;CraftTweaker Utils;; +;1814;;elementcore;元素核心;ElementCore;EC +fps-reducer;1815;;fpsreducer;FPS减速器;FPS Reducer; +freelook;1816;;freelook;自由视角;FreeLook; +spacecraftx;1817;;;航天高科X;SpaceCraftX; +;1818;;micdoodlecore;MicdoodleCore;; +bamboo-everything-forge;1819;;;竹子制品;Bamboo Everything; +nofog;1820;;;没有雾;NoFog; +essentia-brazier;1821;;brazier;源质火盆;Essentia Brazier; +antipotionmod-1-12-2;1822;;;无药水效果;AntiPotionMod;APM +quark-oddities;1823;;quarkoddities;夸克-奇思妙想;Quark Oddities; +fast-food;1824;;fastfood;快餐;Fast Food; +more-carrots;1825;;;更多的萝卜;More Carrots; +d-maneuver-gear;1826;;3DManeuverGear;3D立体机动装置;3D Maneuver Gear; +weapon-craftery;1827;;weapon_craftery;武器工匠;Weapon Craftery; +bobos-supermarket;1828;;bobossupermarket;Bobo的超市;Bobo's supermarket; +more-apples-mod-official;1829;;mam;更多的苹果;More Apples; +lucky-beans;1830;;;幸运豆;Lucky Beans; +cooked;1831;;;Cooked!;; +afaoe;1832;;afaoe;Amazing FoodStuffs;;afaoe +birds-foods;1833;807358;birdsfoods;Bird's Foods;; +morexfood;1834;;morexfood;More XFood;; +yummy;1835;;;美味;Yummy; +spice-of-life-carrot-edition;1836;772478;solcarrot;生活调味料:胡萝卜版;Spice of Life:Carrot Edition/solcarrot; +refined-exchange;1837;;;Refined Exchange;; +rs-requestify;1838;1098079;refinedstoragerequestify;精致存储:请求者;Refined Storage: Requestify;RSR +pizzacraft;1839;;pizzacraft;披萨工艺;PizzaCraft; +super-factory-manager;1840;;superfactorymanager,sfm;超级工厂管理;Super Factory Manager;SFM +sakura;1841;895337;sakura;樱;Sakura; +sips;1842;;sips;更多液体容器;Sips; +gregs-construct;1843;;gtconstruct;格雷与匠魂;Greg's Construct;GTCon +;1844;887912;stm;超级工具;Super Tools; +;1845;;;Galacticraft Planets;; +locks;1846;;locks;锁;Locks; +special-mobs;1847;;specialmobs;特殊怪物;Special Mobs; +adorn;1848;;adorn;Adorn;; +missingbits;1849;;;MissingBits;; +;1850;;;QuickCarpet;; +;1851;898170;cli;物品分类器;Classifier for Items; +locky;1852;;;Locky;; +baubleshud;1853;;baubleshud;BaublesHud;; +landcore;1855;;;陆地工艺核心;LandCore; +;1856;;;陆地工艺;Land Craft; +extra-golems;1858;;golems;更多傀儡;Extra Golems; +craftablecreativemodifier;1859;;;可合成的创造模式强化头颅;CraftableCreativeModifier;CCM +ruins-structure-spawning-system;1860;771602;ruins;遗迹;Ruins; +armory-expansion;1861;;;匠魂盔甲扩展;Armory Expansion; +wg-block-replacer;1862;785486;wgblockreplacer;方块生成替换器;WorldGen Block Replacer; +multi-mob-core;1863;;multimob;Multi Mob Library;; +structurize;1865;;structurize;结构化;Structurize; +improvable-skills;1867;;improvableskills;技能进阶;Improvable Skills 3; +;1868;900320;;更多合成;MoreCrafting;MC++ +bounding-box-outline-reloaded;1869;;bbor;自然生成建筑结构显示;Bounding Box Outline Reloaded;BBOR +sauceconstruct;1870;;;Sauce Construct;; +health-overlay-fabric;1871;;healthoverlay;更美观的血条;Health Overlay; +auto-feeder-helmet;1872;;feederhelmet;自动进食头盔;Auto Feeder Helmet; +cc-tweaked-fabric;1873;;;CC: Tweaked for Fabric;; +simple-farming;1874;;simplefarming;简单农业;Simple Farming; +bigger-packets-please;1875;;biggerpacketsplz;Bigger Packets Please;; +lockyz-extra-dimensions-mod;1876;;lockyzextradimensionsmod;更多维度世界;Lockyz Extra Dimensions; +psi-combat-magic;1877;;psiaddons;Psi:Combat Magic;; +dtphc;1878;;dynamictreesphc;动态的树:潘马斯附属;Dynamic Trees - Pam's Harvestcraft Compat;DTPHC +largefluidtank;1879;;fluidtank;大型储罐;Large Fluid Tank;LFT +tumbleweed;1880;;tumbleweed;风滚草;Tumbleweed; +cubicdynamictreescompat;1881;;;Cubic Chunks Dynamic Trees Addon;; +thermallogistics;1882;;thermallogistics;热力物流学;Thermal Logistics; +bithop;1883;;bithop;BitHop;; +swordskillsapi;1884;;;SwordSkillsAPI;; +dynamic-sword-skills;1885;906987;;动态剑技;Dynamic Sword Skills;DSS +magical-instruments;1886;['450164'];minst;魔法乐器;Magical Instruments; +enderspawn;1887;501726;;末影龙再生成;EnderSpawn; +animus;1888;;animus;Animus;; +scootys-scp-lockdown-extras;1889;;;scp重型收容区扩展;SCP: Lockdown Heavy Containment Zone Expansion; +modern-glass-doors;1890;886035;;时尚玻璃门;Modern Glass Doors; +lemonlib;1891;;lemonlib;柠檬库;lemonlib; +statues-rechiseled;1892;;statues;雕像:重置;Statues: Rechiseled; +trashslot;1893;;;生存背包垃圾桶;TrashSlot; +player-plates-forge;1894;;playerplates;更多压力板;Player Plates; +just-sleep;1895;;;我就睡个觉;Just Sleep; +auto-network-lib;1896;;autonetworklib;Auto Network Lib;; +click-machine;1897;;clickmachine;自动连点器;Click Machine; +mystical-adaptations;1898;887221;mysticaladaptations;更好的神秘农业;Mystical Adaptations; +reinforcedtools;1899;674729;;强化工具;ReinforcedTools; +killing-fall;1900;;;Killing Fall;; +more-dogs;1901;;;更多狗狗;More Dogs; +snow-variants;1902;;snowvariants;更好的雪;Snow Variants; +searchable-chests;1903;;;箱子搜索栏;Searchable Chests; +bad-mobs;1904;568141;;Bad Mobs;; +mc-paint;1905;;mcpaint;涂鸦;MC Paint; +goprone;1906;1107815;goprone;匍匐前进;GoProne; +ceiling-torch;1907;885948;ceilingtorch;倒置火把;Ceiling Torch; +air-hop;1908;;airhop;多段跳;Air Hop; +better-combat-mod;1909;;bettercombatmod;更好的战斗;Better Combat Mod; +ftb-money;1910;;ftbmoney;FTB交易;FTB Money;FTBM +restricted-portals;1911;;restrictedportals;传送门限制;Restricted Portals; +vampirelib;1912;;;VampireLib;; +ingameconfigmanager;1913;;igcm;游戏内配置器;InGameConfigManager;IGCM +playerrevive;1914;;playerrevive;玩家救援;PlayerRevive; +farlands;1915;;farlanders;边境之地;FarLands; +inworldcrafting;1916;;inworldcrafting;世界合成;InWorldCrafting;IWC +food-editor;1917;;;食物编辑器;Food Editor; +custom-starter-gear;1918;;;自定义初始装备;Custom Starter Gear;CSG +ct-tinycoal;1919;;cttinycoal;CT 小型煤炭;CT TinyCoal; +tweaker-gui;1920;816003;tweakergui;TweakerGUI;; +crafttweaker-editor;1921;;;CraftTweaker 编辑器;CraftTweaker Editor;CrTE +unforgiving-void;1922;;unforgivingvoid;不那么仁慈的虚空;Unforgiving Void; +moretweaker;1923;;moretweaker;MoreTweaker;; +riteclicker-mod;1924;;riteclicker;小石子;RiteClicker Mod; +forgiving-void;1926;;forgivingvoid;仁慈的虚空;Forgiving Void; +bread-craft;1927;;mrgw_bread_craft_mod;面包工艺;Bread Craft;BrC +alchemistry;1928;;alchemistry;炼金化学;Alchemistry; +damage-control;1929;;dmgcontrol;伤害控制;Damage Control; +prestige;1930;;prestige;成就点;Prestige; +;1931;;;原版技能升级;Vanilla MMO+;VM +energy-converters;1933;;energyconverters;能量桥接器;EnergyConverters; +signpost;1934;;signpost;路标;Signpost; +diagonal-panes;1935;;;对角线玻璃板;Diagonal Panes; +forgelin;1936;;;Forgelin;; +a-lib;1937;;alib;ALib;;AL +exp-ore-block-mod;1938;;;经验矿石;Exp Ore; +more-glowstone;1939;873535;moreglowstone;更多萤石;More Glowstone;MGS +yukarilib;1940;;;YukariLib;; +gregic-additions;1941;;gtadditions;Gregic Additions;; +instantlava;1942;684726;instantlava;无限岩浆;InstantLava; +;1944;912852;snowpack;积雪;Snowpack; +enchantment-descriptions;1945;;enchdesc;附魔描述;Enchantment Descriptions; +streak;1946;;streak;残影;Streak; +dttc;1947;;dynamictreestc;动态的树:神秘时代附属;Dynamic Trees - Thaumcraft Compat; +dtbop;1948;798337;dynamictreesbop;动态的树:超多生物群系附属;Dynamic Trees - Biomes O' Plenty Compat;DTBOP +dynamic-trees-compatibility-for-climatic-biomes;1949;;;动态的树:气候生态群系附属;Dynamic Trees Compatibility for Climatic Biomes; +capability-adapter;1950;;rf-capability-adapter;ME功能适配器;ME Capability Adapter;MECA +tf2-stuff-mod;1951;887461;rafradek_tf2_weapons;军团要塞2;TF2 stuff mod; +mob-control-wands;1952;;micwands;怪物控制魔杖;Mob Control Wands; +;1953;315162;statues;雕像模组;Statues Mod; +athenaeum;1954;;athenaeum;Athenaeum;; +ore-excavation;1955;702872;oreexcavation;矿石挖掘;Ore Excavation; +stone-chests;1956;;;石箱子;Stone Chests; +kjlib;1957;;kjlib;KJ库;KJLib; +iron-chest-minecarts;1958;;ironchestminecarts;更多箱子矿车;Iron Chest Minecarts;ICM +nether-chest;1959;;netherchest;下界箱子;Nether Chest; +mob-kill-messages;1960;;;击杀信息通知;Mob Kill Messages; +betterdispenser;1962;;;能喂食的发射器;BetterDispenser; +shulkerboxdisplay;1963;912440;;潜影盒显示器;ShulkerBoxDisplay; +mycommands;1964;['588293'];mycommands;我的命令;MyCommands; +;1966;905998;;羊羊工艺;Miecraft; +hearth-well;1968;['909385'];;Hearth Well;; +;1969;915931;;苹果科技;Apple Tech;AT +tea-and-biscuits;1970;820208;;茶和饼干;Tea And Biscuits;TAB +controllable;1971;;;手柄控制;Controllable; +genetic-animals;1972;;;遗传动物;Genetic Animals; +stone-chest;1973;;stonechest;石头箱子;Stone Chest; +iron-shulker-boxes;1974;;ironshulkerbox;更多潜影盒;Iron Shulker Boxes; +mob-dismemberment;1975;;;怪物肢解;Mob Dismemberment; +zoo-wild-animals-rebuild;1976;;zawa;野生动物园:重制版;Zoo & Wild Animals Rebuilt;ZAWA +kottle;1977;;;Kottle;; +customdrones;1978;['608228'];;自定义无人机;Custom Drones; +call-to-battle-2-authentic-world-war-2-experience;1979;;ctb;战争召唤2;Call To Battle 2;CTB2 +some-like-it-dry;1980;;;Some Like It Dry;; +yungs-better-caves;1981;;bettercaves;YUNG的洞穴优化;YUNG's Better Caves; +resynth;1982;916667;resynth;神农科技;Resynth; +flatworld;1983;675894;;开山棒;Flat World; +pymtech;1984;;;皮姆科技;PymTech; +corail-tombstone;1985;913702;tombstone;Corail的墓碑;Corail's Tombstone; +;1986;419657;;消失的物品;Missing Things; +;1987;;;Maple Lib;; +arcane-archives;1988;1006624;arcanearchives;奥术档案馆;Arcane Archives;AA +divineweapon;1989;;dweapon;神兵;DivineWeapon;DW +camera-obscura;1990;;cameraobscura;朝花夕拾;Camera Obscura; +animales;1991;;tfa;动物扩充;Animales; +armor-underwear-mod;1992;;armorunder;盔甲内衬;Armor Underwear Mod; +assisted-progression;1993;;;进度小助手;Assisted Progression; +more-buckets;1994;;morebuckets;更多桶;More Buckets; +laggoggles;1995;785024;laggoggles;延迟监视;LagGoggles; +the-weirding-gadget;1996;;weirdinggadget;The Weirding Gadget;; +energysynergy;1997;;;能源协同;EnergySynergy;ES +mine-and-slash-reloaded;1998;869674;mmorpg;挖矿与砍杀;Mine and Slash;MS +;1999;;;群峦冰窖;TFC Cellars Addon; +monster-swarm;2000;439839;;怪物云集;Monster Swarm; +SimplePipes;2001;;;Simple BC Pipes;; +;2002;;;Wool;; +amecs;2003;;amecs;Amecs;; +world-primer;2004;;;World Primer;; +;2005;345260;;自动收获;AutoHarvest; +bookworm;2006;;;Bookworm;Bookworm; +openeye;2007;;;错误报告器;OpenEye;OE +let-sleeping-dogs-lie;2008;;;嘘,别吵醒狗狗;Let Sleeping Dogs Lie; +bspkrscore-updated;2009;;;bspkrsCore Updated;; +super-ores;2010;704620;superores;超级矿石;Super Ores; +gravelminer;2011;1126578;;砂砾终结者;GravelMiner; +client-tweaks;2012;915029;clienttweaks;客户端微调;Client Tweaks; +single-use-crafting-table-mod;2013;;otc;一次性工作台;Single-Use Crafting Table Mod;OTC +get-back-to-home;2014;;;回家;Get Back to Home; +expanded-equivalence;2015;;expequiv;等价扩展;Expanded Equivalence; +schematica;2016;893275;;Schematica;; +scp-craft-decline;2017;;scpcraft;SCPCraft - 下降;SCPCraft - Decline; +tetra;2018;804377;tetra;Tetra;; +minestrappolation-5;2019;;minestrapp;Minestrappolation 5;; +underwater-biome;2020;923907;;深海生态;Underwater Biome; +create;2021;1088970;create;机械动力;Create; +;2022;;;超级TNT;Super TNT; +;2023;449923;;坦桑石;Tanzanite;TZ +energeticsheep;2024;;energeticsheep;脉冲羊;EnergeticSheep; +ensorcellation;2025;1016362;ensorcellation;万象;Ensorcellation; +inventory-sorter;2026;;;物品分拣;Inventory Sorter; +speedster-heroes;2027;685240;speedsterheroes;闪电侠;Speedster Heroes; +;2028;922918;;地狱门输入补丁;Solid Command UI; +curios;2029;;curios;Curios API;; +village-spawn-point;2030;;villagesp;村庄出生点;Village Spawn Point; +spawnercraft;2031;692662;;刷怪笼合成;SpawnerCraft; +openfm;2032;522352;openfm;开放电台;OpenFM; +the-dalek-mod;2033;;thedalekmod;神秘博士;The Dalek Mod; +modular-diversity;2034;;modulardiversity;模块化多样性;Modular Diversity; +botanic-bonsai;2035;;;植物魔法盆栽;Botanic Bonsai; +modular-magic;2036;;modularmagic;模块化魔法;Modular Magic; +;2037;;portalsupercache;传送门超级缓存;Portal Super Cache; +magic-kingdoms-mod;2038;;som;魔法王国;Magic Kingdoms Mod/Schools of Magic Mod;MK/SOM +zollern-galaxy;2039;;zollerngalaxy;卓伦星系;Zollern Galaxy;ZG +macaws-bridges;2040;;mcwbridges;Macaw的桥梁;Macaw's Bridges; +trample-stopper;2042;803109;;防止踩踏;Trample Stopper; +macaws-roofs;2043;;mcwroofs;Macaw的屋顶;Macaw's Roofs; +shadows-of-greg;2044;;gtadditions,gregtech;格雷之影;Shadows of Greg;SOG +loottabletweaker;2045;;lttweaker;LootTableTweaker;; +rockycore;2046;;;RockyCore;;RC +tree-tweaker;2047;;;Tree Tweaker;; +worleys-caves;2048;;worleycaves;沃利的洞穴;Worley's Caves;WC +additional-structures;2049;;additionalstructures;失落废墟;Additional Structures/Rex's Additional Structures;AS +;2050;601358;customtrees;自定义树木;Custom Trees; +;2051;909441;mcmooncake;MC牌月饼;MC Moon Cake; +;2052;800981;dao_za_vanillaplus;稻砸原版增强;Dao_Za_Vanillaplus; +;2053;;;Fabric OBJ Model Loader;;FOML +enhancedvisuals;2054;;enhancedvisuals;增强视觉效果/拓展视觉效果;EnhancedVisuals; +potion-fingers-redux;2055;;potionfingers;药剂环;Potion Rings; +balloon-sheep;2056;900147;balloonsheep;气球羊;Balloon Sheep; +farming-for-blockheads;2057;;farmingforblockheads;傻瓜式农贸市场;Farming for Blockheads; +oreexcavation-integration;2058;;oeintegration;矿物开凿;Ore Excavation Integration; +engineers-workshop;2059;;engineersworkshop;工程师工作站;Engineers Workshop; +the_legend_of_the_brave;2060;916377;thelegendofthebraveii;勇者传说;The Legend of The Brave; +twerk-sim-2k16;2061;;;Twerk Sim 2K16;; +fart-generator;2062;;;屁能发电机;Fart Energy Generator; +ex-nihilo-fabrico;2063;;;无中生有:Fabrico;Ex Nihilo Fabrico; +holoinventory;2064;;holoinventory;物品显示/物品清单;HoloInventory;HI +reactor-stuff;2065;927559;reactor_stuff;反应堆材料;Reactor Stuff; +traitors-better-swampland-mod;2066;;swampland;更好的沼泽;Traitor's Better Swamplands Mod; +soviet-abandoned-lab-mod;2067;;soviet;苏维埃风格装饰;Soviet Era Mod(earlier Soviet Lab); +;2068;;;生存必备;Survival_Essentials;SuE +charm;2069;;charm;Charm;; +village-names;2070;;villagenames;村庄名;Village Names; +advanced-rocketry-tweaker;2071;;;Advanced Rocketry Tweaker;;ART +alternating-flux;2072;;alternatingflux;交变磁通;Alternating Flux;AF +projectextended;2073;;projectextended;等价交换扩展;ProjectExtended; +tfc-metallum;2074;;tfcmetallum;群峦合金;TFC:Metallum;TFCM +reactor-turbines-mod-for-ic2;2075;;reactor_turbines;Reactor Turbines Mod for IC2;;RTM +mutant-beasts;2076;;mutantbeasts;突变生物重置版;Mutant Beasts; +jei-integration;2077;1101324;jeiintegration;JEI扩展;JEI Integration; +funny-fruit;2078;;funnyfruit;滑稽果;FunnyFruit; +life-tech;2079;;;生命工艺;Life Tech;LT +exponential-power;2080;;exponentialpower;Exponential Power;; +girl-armor-mod;2081;;vgirlarmor;女式盔甲;V-Girl Armor Mod; +;2082;;theworlddisintegratespickaxe;瓦解世界的镐子;The World Disintegrates Pickaxe;TWDP +nomadic-tents;2083;;yurtmod;游牧帐篷;Nomadic Tents;NT +zetta-industries;2084;;zettaindustries;泽它重工;Zetta Industries;ZI +kekztech;2085;;;KekzTech;; +by-the-gods;2086;;btg;神迹;By The Gods; +bee-angry-est;2087;;;愤怒的蜜蜂;Bee Angry-est; +titanium;2088;;titanium;钛;Titanium; +chemlib;2089;;;Chem Lib;; +carrots-lib;2090;;carrots;胡萝卜库;Carrots Library; +no-hostiles-around-campfire;2091;;nhacampfire;围火无怪;No Hostiles Around Campfire; +healing-campfire;2092;;regrowth;治愈营火;Healing Campfire; +minetunes;2093;;;我的歌曲;MineTunes; +jetif;2094;;jetif;物品丢入流体;Just Enough Throwing In Fluids;JETIF +rftools-base;2095;;rftoolsbase;RF工具:基础;RFTools Base; +flopper;2096;;flopper;流体漏斗;Flopper; +exhausted-stamina;2097;;;竭力攻击;Exhausted Stamina; +staminaplus;2098;;;耐力值;StaminaPlus; +enhanced-armaments;2099;898546;;增强装备;Enhanced Armaments; +spatialcompat;2100;;spatialservermod;空间兼容;SpatialCompat; +extended-reach;2101;;;Extended Reach;; +no-recipe-book;2102;;norecipebook;没有配方书;No Recipe Book; +darknesslib;2103;;darknesslib;DarknessLib;; +tfcraft;2104;887732;tfc;群峦传说:次世代;TerraFirmaCraft: The Next Generation;TFC:TNG +redstone-control;2105;;rs_ctr;红石控制;Redstone Control; +snow-real-magic;2106;871191;snowrealmagic;雪!真实的魔法!⛄;Snow! Real Magic! ⛄; +comforts;2107;;comforts;舒适用品;Comforts; +plasmacannon;2108;930033;;等离子炮;PlasmaCannon; +plasmaengines;2109;930034;;等离子引擎;PlasmaEngines; +bonny-food;2110;;;Bonny Food;; +emerging-technology-hydroponics;2111;934929;emergingtechnology;新兴技术;Emerging Technology; +;2112;934380;ej2,epicjourney;史诗征程2;Epic Journey2;EJ2 +twilightopia-phantasy;2114;977230;twilightopia;暮托邦之梦;Twilightopia;TTP +engineers-decor;2115;;;工程师的装饰;Engineer's Decor; +engineers-tools;2116;;engineerstools;工程师的工具;Engineer's Tools; +wesleys-roguelike-dungeons;2117;;wrd;Wesley的冒险地牢;Wesley's Roguelike Dungeons;WRD +xp-tome;2118;;xpbook;Xp Tome;; +varied-commodities;2119;;variedcommodities;Varied Commodities;; +tinkers-things;2120;;tiths;匠魂扩增;Tinkers' Things;TITHS +just-enough-buttons;2121;678566;;更多的按钮;Just Enough Buttons;JEB +clock-hud;2122;;;时间显示器;ClockHUD; +tektopia;2123;980572;tektopia;桃花源记/特克托皮亚;TekTopia;TTP +;2125;;lolipickaxe;氪金萝莉;LoliPickaxe; +fabric-language-kotlin;2126;;fabric-language-kotlin;Fabric Language Kotlin;; +ftb-backups;2127;;ftbbackups;FTB备份;FTB Backups; +cyclopstek;2128;;cyclopstek;独眼巨人;CyclopsTek; +;2129;941275;;健康生活;Stay Healthy;SH +champions;2130;998116;champions;冠军/强敌;Champions; +danger-lies-ahead;2131;['905359'];;前路危机;Danger Lies Ahead; +croploadcore;2132;;croploadcore;CropLoadCore;; +defiled-lands;2133;965119;defiledlands;污秽之地;Defiled Lands; +arcanum;2134;804291;arcanum;奥秘;Arcanum; +random-enchants;2135;963657;;随机附魔;Random Enchants; +much-more-spiders-v2;2136;521013;;更多种类的蜘蛛;Much More Spiders; +compressed-items;2137;;ci;Compressed Items;; +no-tree-punching;2138;1066911;notreepunching;无树可撸;No Tree Punching;NTP +harvest-festival-legacy;2139;;harvestfestival;丰收物语移植版;Harvest Festival Legacy;HFL +friendlymobs;2140;['698723'];;友好的怪物;FriendlyMobs; +simplecore-api;2141;;;简单前置;SimpleCore API; +topography;2142;926097;topography;地形;Topography; +jei-villagers;2143;772483;jeivillagers;JEI村民交易查看;JEI Villagers; +bnbgamingcore;2144;;bnbgamingcore;BnBGamingCore;; +igauntlet;2145;;;灭霸手套;IGauntlet; +alcatrazcore;2146;;alcatrazcore;Alcatraz Core;; +debugserverinfo;2147;;debugserverinfo;DebugServerInfo;;DSI +the-midnight;2148;['943646'];midnight;午夜;The Midnight; +moolands;2149;;moolands;奶牛世界;Moolands; +egg-craft;2150;952118;;蛋工艺;Egg Craft; +tinkersextras;2151;;tinkersextras;Tinkers Extras;; +poke-lucky;2152;791757;pokelucky;宝可梦幸运方块;PokeLucky; +usefultnt;2153;;UsefulTNT;更有用的TNT;UsefulTNT; +;2154;948910;;更好的特性;Better Features;BF +crow-flight;2155;;crowflight;乌鸦坐飞机;Crow Flight; +findme;2156;;findme;FindMe;; +minecraft-transit-railway;2157;1173523;mtr;我的世界铁路;Minecraft Transit Railway;MTR +random-loot-mod;2158;;randomloot;随机战利品;Random Loot Mod; +;2159;521061;;超级过山车;ExRollerCoaster;ERC +tinkers-aether;2160;;;天境工匠;Tinkers Aether;TA +mine-and-slash-auto-compatibility;2161;;azurecompat;挖矿与砍杀自动兼容;Mine and Slash Auto Compatibility;M&S Auto +metallurgy-core;2162;;MetallurgyCore;冶金核心;MetallurgyCore; +blank-planet;2163;;;BlankPlanet;; +betterachievements;2164;;;更好的成就;Better Achievements; +extra-bows;2165;891607;extrabows;更多的弓;Extra Bows; +forgotten-relics;2166;937895;;失落遗物学;Forgotten Relics; +ore-core;2167;;;矿石核心;Ore Core; +ordinary-coins;2168;;ordinarycoins;普通硬币;Ordinary Coin; +peanut-mod;2169;;peanutmod;花生!;Peanuts!; +;2170;943580;;蝙蝠耳;Bat's Ear; +in-game-wiki-mod;2171;;igwmod;In Game Wiki;;IGW +betterbedrockgen;2172;1109812;;更好的基岩;Better Bedrock Gen; +wsbim-legacy-blocks-and-items;2173;;;WSBIM: Legacy Blocks and Items;; +storage-items-mod;2174;;;Storage Items Mod;;SIM +what-should-be-in-mc-wsbim;2175;;;What Should Be in MC;;WSBIM +bluestone;2176;;;Bluestone;; +effortless-building;2177;;;Effortless Building;; +ic2-classic-tweaker;2178;;;IC2 Classic Tweaker;IC2 Classic Tweaker; +Ic2c-Crop-Overrides;2179;;;IC2经典版作物覆盖;IC2C Crop Overrides; +ic2c-extras;2180;;;工业时代2经典版拓展;IC2C Extras; +advanced-solars-classic;2181;;;高级太阳能经典版;Advanced Solars Classic; +power-chisels;2182;;;能量凿子;Power Chisels; +ic2c-custom-soils;2183;;;IC2C Custom Soils;; +homing-exp-orbs;2184;;homingexporbs;经验球归航;Homing Exp Orbs; +enchantmentglint;2185;;enchantmentglint;自定义附魔光效;Jabelar's Truly Magical Enchantment Glints; +floricraft;2186;674160;;花卉工艺;Floricraft;FC +weisscore;2187;;;WeissCore;; +glibys-physics;2188;;glibysphysics;Gliby的物理;Gliby's Physics; +electro-magic-tools-ic2-classic;2189;;;电子神秘工具;Electro-Thaumic Tools - IC2 Classic; +forceasciifont;2190;;;强制ASCII字体;ForceASCIIFont; +skewers;2191;962626;;撸串;Skewers; +get-in-the-bucket-mod;2192;;getinthebucketmod;进入水桶;Get In The Bucket Mod; +fertilization;2193;;;施肥;Fertilization; +additional-banners;2194;;;更多旗帜;Additional Banners; +dropt;2195;;dropt;Dropt;; +the-elven-forest;2196;;the_elven_forest;精灵森林;The Elven Forest​;EF +the-beneath;2197;;beneath;深渊世界;The Beneath; +not-enough-characters;2198;614246;nechar;NEI 拼音搜索;Not Enough Characters; +;2199;;cookingwithtfc;Cooking with TFC;; +mine-addons-2;2200;;;Mine Addons 2;Mine Addons 2; +terrafirmacraftplus;2201;1043715;;群峦传说 +;Terrafirmacraft +;TFC+ +quick-consume-2;2202;;;快速摄入2;Quick Consume 2; +mctitle;2203;725545;;MCTitle;; +mgui;2204;;mgui;mGui;; +sublib;2205;;;SubLib;; +dense-ores;2206;522248;;致密矿石;Dense Ores; +archisections;2207;;;ArchiSections;; +cavecontrol;2208;;;洞穴控制;Cave Control; +expandedredstone;2209;;;红石扩展;Expanded Redstone; +legacycraft;2210;;;传统工艺;LegacyCraft; +geostrata;2211;;;GeoStrata;; +territoryzone;2212;;;TerritoryZone;; +loottweaks;2213;;;LootTweaks;; +critterpet;2214;;;CritterPet;; +condensedores;2215;;CondensedOres;Condensed Ores;; +treeclimbing;2216;;;Tree Climbing;; +more-electric-tools;2217;970021;mets;更多电力装置;MoreElectricTools;METS +wireless-fluid-terminal;2218;;wft;无线流体终端;AE2 Wireless Fluid Terminal;WFT +wireless-interface-terminal;2219;;wit;无线接口终端;AE2 Wireless Interface Terminal;WIT +wireless-pattern-terminal;2220;;wpt;无线样板终端;Wireless Pattern Terminal;WPT +better-questing-rf-expansion;2221;;bq_rf;更好的任务-RF拓展;Better Questing - RF Expansion; +hurt-animation-remover;2222;;hurtanimationremover;Hurt Animation Remover;; +more-cauldrons;2223;;morecauldrons;更多炼药锅;More Cauldrons; +parabox;2224;;parabox;Parabox;; +sky-grid;2225;;;Sky Grid;; +forbidden-arcanus;2226;;forbidden_arcanus;禁忌与奥秘;Forbidden and Arcanus;FAA/F&A +mysticalmechanics;2227;;mysticalmechanics;Mystical Mechanics API;; +backpacked;2228;;backpacked;MrCrayfish的背包;MrCrayfish's Backpacked; +starship;2229;692838;;星舰;StarShip; +tweakeroo;2230;973508;tweakeroo;Tweakeroo;; +integrated-rest;2231;;integratedrest;Integrated REST;; +citadel;2232;;citadel;Citadel;; +screenshot-browser;2233;;;内置截图管理器;Screenshot Browser; +inventory-tweaks-renewed;2235;;;R键整理复兴版;Inventory Tweaks Reborn; +curio-of-undying;2236;;curioofundying;不死图腾插槽;Curio of Undying; +explorercraft-worldexpansion;2237;980848;explorercraft;探险者;Explorercraft; +chinese-new-year-mod-2019;2238;;;粉尘力量;Chinese New year; +enigmatic-legacy;2239;958575;enigmaticlegacy;神秘遗物;Enigmatic Legacy; +end-reborn;2240;846012;endreborn;末地:重生;End: Reborn;ER +;2241;488345;eternalfrost;永恒的冰霜;Eternal Frost;EF +ezstorage-2;2242;;;EZ存储2;EZStorage 2;EZ2 +more-chickens;2243;;morechickens;更多鸡扩展;More Chickens; +the-first-age-submod;2244;;;魔戒:第一纪元;LOTR: Frist Age;LOTR:FA +the-rc-mod;2245;;thercmod;The RC Mod;; +rubybyimxiaoanag;2246;949124;;红宝石;Ruby; +jojo-hamon-era;2247;;;JoJo-Hamon Era;JoJo-Hamon Era; +;2248;981091;horodimensionweapons;次元装备;Horo's Dimension Weapons; +OpenSecurity;2249;;;开放式防卫;Open Security; +;;;legendera;传说纪元;The Legend Era;LE +level-up-hp;2251;1036332;;生命提升;Level Up HP; +more-planet-extras;2252;;;More Planets Extras;; +randompatches;2253;;randompatches;随意修复;RandomPatches; +ships-mod;2254;;;船;Ships Mod; +tfc-metric;2255;;tfcmetric;公制重量转换;TFC Metric; +;2256;;;TerraMisc;; +;2257;;;群峦水袋;Leather Water Sac for TFC; +;2258;;;群峦贸易;Merchants Addon for TFC; +tfc-additions;2259;;;群峦附加;TFC-Additions; +raolcraft-w;2260;;;RaolCraft Ω;; +litematica;2261;1015510;litematica;投影;Litematica; +telepastries;2262;;telepastries;传送蛋糕;TelePastries; +heroesexpansion;2263;963046;;超级英雄拓展;HeroesExpansion;HE +attributefix;2264;939188;attributefix;属性修复;AttributeFix; +dynamic-transport;2265;428517;dynamictransport;动态运输;Dynamic Transport; +tool-builder;2266;967559;;铸器师;Tool Builder; +bountifulbaubles;2267;;bountifulbaubles;丰富的饰品;Bountiful Baubles; +;2268;;;生命的真谛;The meaning of life;TMOL +manacraft;2269;841528;;魔能工艺;ManaCraft; +;2270;973659;;明月合成;MoreCraftingMoon;MCM +;2271;['963896'];monsterlegend;怪物传说;monsterlegend; +;2273;977630;ic2_money;真·工业货币;ICMoney;ICM +forge-backpacks;2274;;;更多背包;Backpacks; +repurpose;2275;;;Repurpose;; +unlimited-chisel-works;2276;;;Unlimited Chisel Works;; +kfc;2277;['805566'];thekfcmod;The KFC Mod;; +rainbow-oak-trees;2278;;rainboaks;彩虹橡树;Rainbow Oak Trees; +spawntabletweaker;2279;;;生成调整;SpawnTableTweaker;STT +large-ore-deposits;2280;;;大型矿床;Large Ore Deposits;LOD +gregtech6-unofficial;2281;1038500;gregtech;格雷科技6非官方版;GregTech 6 Unofficial;GT6U +mahou-tsukai;2282;929252;mahoutsukai;魔法使;Mahou Tsukai;MT +;2283;;;自定义事件;Custom Events; +moar-tinkers;2284;;moartinkers;Moar Tinkers;; +baubley-heart-canisters;2285;795294;bhc;心之容器;Baubley Heart Canisters;BHC +jaopcasingularities;2286;958964;;JAOPCA的奇点;JAOPCA Singularities; +;2288;807291;labymod;LabyMod;; +;2289;938747;mcty;MC牌汤圆;Tangyuan In MineCraft;MCTY +guidebook;2291;;;Guidebook;; +lithium;2292;;lithium;锂;Lithium; +left-2-mine;2293;;;求生之路;Left 2 Mine; +worldeditcui-forge-edition-2;2294;;;WorldEditCUI Forge Edition 2;; +world-book;2295;;worldbook;World Book;; +uppers;2296;;uppers;倒置漏斗;Uppers; +spartan-weaponry;2297;798723;spartanweaponry;斯巴达的武器;Spartan Weaponry; +malilib;2298;;;MaLiLib;; +infraredstone;2299;;;InfraRedstone;; +incorporeal;2300;;incorporeal;幻想多媒体;Incorporeal; +amun-ra;2301;;GalacticraftAmunRa;Amun-Ra;; +;2302;;;虚拟歌姬;Vocaloid Mod; +mysterious-mountain-lib;2303;;mmlib;妖怪之山通用库;MysteriousMountainLib;MMLib +loottweaker;2304;;loottweaker;LootTweaker;; +rediscovered;2305;323152;rediscovered;特性重现;Rediscovered; +;2307;;;GVClib;; +baubles-reborn;2308;;;饰品栏重置版;Baubles Reborn; +pams-brewcraft;2309;;;潘马斯·酿造工艺;Pam's Brewcraft; +dirtcraft;2310;;;泥土工艺;DirtCraft; +minihud;2311;;minihud;迷你HUD;MiniHUD;MH +potato-craft;2312;['604304'];;土豆工艺;Potato Craft; +;2313;990119;;自定义矿脉生成器;Ore Generator;OreGe +bed-patch;2314;;;Bed Patch;; +;2315;;crafttweakersync;CT脚本同步;CraftTweakerSync;CTS +data-loader-forge;2316;;;Data Loader;; +level-up-hp-easy-start;2317;;;Level Up HP Easy Start;; +simply-light;2318;;;更好的灯;Simply Light Mod; +lightning-bolt-mod;2319;;;雷电攻击;Lightning Bolt Mod; +spartan-and-fire;2320;;spartanfire;斯巴达之冰与火;Spartan and Fire; +;2321;219229;;光影模组核心;ShadersModCore; +beacons-for-all;2322;;;Beacons For All;; +;2323;963241;;混沌凋零;Chaos Wither; +more-flowers;2324;;moreflowers;更多功能花;More Flowers; +buzzier-bees;2326;;buzzier_bees;Buzzier Bees;; +;2327;951560;plne;原版一键整理;Vanilla Mod Neat;VMN +lollipop;2328;;lollipop;棒棒糖;Lollipop; +enemyz;2329;;;敌意显示;Enemyz; +thaumic-restoration;2330;;thaumicrestoration;Thaumic Restoration;; +;2331;843464;vimi;连锁矿工;Vein Miner; +;2332;919479;;快速落叶(伪);Fast Leaf Decay; +primal-boat;2333;;primalboat;原始船舶;Primal Boat; +eyes-in-the-darkness;2334;;;Eyes in the Darkness;; +thaumic-augmentation;2335;1063250;thaumicaugmentation;神秘进阶;Thaumic Augmentation;TA +lost-magic;2336;;lostmagic;失落的魔法;Lost Magic; +thaumic-arcana;2337;;thaumic_arcana;Thaumic Arcana;; +thaumic-wonders;2338;920375;thaumicwonders;神秘奇境;Thaumic Wonders;TWOND +crimson-warfare;2339;;crimsonwarfare;Crimson Warfare;; +terra-1-to-1-minecraft-world-project;2340;;;Terra 1 to 1;; +multiverse-pouch;2341;;qwebnm_multiversepouch;多元宇宙袋;Multiverse Pouch; +electroblobs-wizardry-twilight-forest-spell-pack;2343;1001020;tfspellpack;巫术学:暮色森林法术包;Electroblob's Wizardry: Twilight Forest Spell Pack; +blockbuster;2344;;blockbuster;Blockbuster;;BB +fishs-undead-rising;2345;984184;mod_lavacow;Fish的不死崛起;Fish's Undead Rising; +cloth-config;2346;;cloth-config;Cloth Config API;; +just-map;2347;;;Just Map;; +too-realistic-inventory;2348;;;真实背包;Realistic Inventory; +mob-farm;2349;;mobfarm;生物农场;Mob farm; +acceleratorcraft;2350;;acceleratorcraft;加速器工艺;AcceleratorCraft;AC +minecraft-spongebob-squarepants-mod-for-the-1-7-10;2351;;SpongebobModAddONTwo;Minecraft Spongebob Mod 2018 New;;SBM +utility-worlds;2352;1009400;utilityworlds;实用世界;Utility Worlds;UW +goblin-traders;2353;;goblintraders;哥布林商人;Goblin Traders; +divine-favor;2354;;divinefavor;神的恩惠;Divine Favor; +volumetric-flask;2355;;volumetricflask;量瓶;Volumetric Flask; +loot-bag-mod;2356;;lootbagmod;战利品包;Loot Bag Mod; +;2357;979548;customnpcsfix;自定义NPC补丁;CustomNPCsFix;NPCFix +minecraft-dungeons-mod;2358;;duneons;我的世界地下城;Minecraft Dungeons Mod;MCD +;2359;795073;;音乐控制;MusicSetting; +seasonal-bees;2360;799196;;季节性蜜蜂;Seasonal Bees; +carpet;2361;1098345;;Carpet;; +;2362;853957;handmadeguns;自定义枪械;HandmadeGun's2; +equivalent-additions;2363;838238;equivadditions;等价拓展;Equivalent Additions; +mixinbootstrap;2364;;;MixinBootstrap;; +powah;2365;1000888;powah;Powah!;; +natural-pledge;2366;1010943;;自然誓约;Natural Pledge; +more-berries;2367;;;更多浆果;More Berries; +zeiyocraft;2368;;zeiyocraft;ZeiyoCraft;; +time-stages;2369;;timestages;阶段时间;Time Stages; +additional-events;2370;;;Additional Events;; +artemislib;2371;;artemislib;ArtemisLib;; +pams-harvestcraft-2-food-core;2372;1000336;;潘马斯农场2;Pam's HarvestCraft 2;PHC2 +easy-retrogen;2373;793640;;简易重生成;Easy Retrogen; +extraplayerrenderer;2374;;explayerenderer;额外玩家渲染;ExtraPlayerRenderer; +rwbym;2375;['998968'];;RWBY Mod;;RWBYM +libnonymous;2376;;libnonymous;Libnonymous;; +shattered-moon;2377;;;Shattered Moon;; +tinkersurvival;2378;811651;Tinkers' Survival;匠魂生存;Tinkers' Survival; +portablecraft;2379;784442;;便携物品;PortableCraft; +;2380;;;方程式配平;Balance Equations;BE +better-than-bunnies;2381;769012;betterthanbunnies;给兔子戴上礼帽;Better Than Bunnies; +arcane-essentials;2382;['878611'];;奥术精要;Arcane Essentials; +the-aurorian;2383;;theaurorian;极光幽境;The Aurorian;TA +egg-auto-hatch;2384;;;鸡蛋自动孵化;Egg Auto Hatch; +performant;2385;;performant;性能优化;Performant; +tube-transport-system;2386;;tts;管道传输系统;Tube Transport System;TTS +;2387;1013205;dyntranslation;动态翻译;DynTranslation;DT +transmutation-alchemy;2388;;;Transmutation Alchemy;; +extra-spells-electroblobs-wizardry;2389;;;额外咒语;Extra Spells; +ancient-spellcraft;2390;;ancientspellcraft;古代咒法;Ancient Spellcraft; +moving-elevators;2391;1009680;;Moving Elevators;; +interstellar-exoplanets;2392;1105540;exoplanets;星际:系外行星;Interstellar: Exoplanets;Exo +infini-tic;2393;;;Infini-TiC;; +extra-disks;2394;;extradisks;更多磁盘;Extra Disks;ExD +optiforge;2395;;;OptiForge;; +magic-seeds-for-electroblobs-wizardry;2396;;;巫术学魔法种子;Magic seeds for Electroblobs Wizardry; +extra-alchemy;2397;871236;;扩展炼药;Extra Alchemy; +beyond-the-veil;2398;1109481;beyondtheveil;帷幕彼端;Beyond The Veil; +maple-syrup;2399;1014291;;枫糖;Maple Syrup; +blood-particles;2400;990913;;血液粒子效果;Blood Particles; +nyx;2401;;nyx;Nyx;; +lieutenant;2402;;lieutenant;Lieutenant;; +matthews-difficulty-mod;2403;;difficultymod;Matthew's Difficulty Mod;; +old-combat-system;2404;983861;;旧版战斗系统;Old Combat System; +vampires-need-umbrellas;2405;;;Vampires Need Umbrellas;; +hypnotics;2406;;;安眠药;hypnotics;ZT +villager-market;2407;;villagermarket;村民市场;Villager Market; +;2408;;;生存挑战;Survival Challenge;SC +linear;2409;817264;linear;线性放置;Linear; +immersive-portals-mod;2410;1177771;immersive_portals;沉浸式传送门;Immersive Portals; +universalbestiary;2411;;universalbestiary;Universal Bestiary;; +autumnity;2412;1021372;autumnity;秋原;Autumnity; +worldgeneration-profiler;2413;;;Worldgeneration Profiler;; +chunk-in-a-globe;2414;;;方块地球;Chunk In A Globe; +dragon-mounts-legacy;2415;;dragonmounts;龙骑士重置版;Dragon Mounts: Legacy;DML +fruit-trees;2416;976516;fruittrees;果树 🍊;Fruit Trees 🍊; +journey-into-the-light-mod;2417;1128195;journey;光明之旅·神之本质;Journey Into the Light · Essence of the Gods;JITL +kitchen-mod;2418;['295019'];kitchen;厨房;The Kitchen Mod; +more-dungeons;2419;;;更多地牢;More Dungeons; +voyage;2420;;;Voyage;; +idealland;2421;1051328;idealland;理想境;Idealland;IDL +;2422;1015975;;简便合成;EazyCrafting;EzC +;2423;;;MattCore;; +second-screen;2424;;;Second Screen;; +;2425;1018291;scpex;SCP轻型扩展;SCP Expansion; +;2426;808184;;FastAsyncWorldEdit;;FAWE +arcanecraft;2427;1022110;;奥法工艺;ArcaneCraft; +retrobees;2428;;retrobees;RetroBees;; +beebetteratbees;2429;;;育蜂指南;BeeBetterAtBees; +inverted-enchantments;2430;1003938;ivrench;负魔书;InvertedEnchantments; +general-laymans-aesthetic-spying-screen-glass;2431;;;General Laymans Aesthetic Spying Screen Glass;;GLASS +diy_title;2432;998747;;自定义名称前后缀;diy_title;PPM +tooltweaks;2433;['773523'];tooltweaks;禁用原版工具;ToolTweaks; +atop;2434;;ATOP,atop;超多生物群系护甲;Armor for Biomes O' Plenty;ATOP +tinkers-forging;2435;;tinkersforging;工匠锻造;Tinker's Forging; +gravity-gun;2436;;gravitygun;Gravity Gun;; +mekanism-additions;2437;;;通用机械附加;Mekanism Addition;MekA +signpicture;2438;698600;;木牌图片;Sign Picture; +vampirism-integrations;2439;;vampirism_integrations;吸血鬼联动;Vampirism Integrations; +gottschcore;2440;;;GottschCore;; +not-enough-crashes;2441;1097535;notenoughcrashes;崩溃优化;Not Enough Crashes; +crash-to-main-menu;2442;;;崩溃返回主菜单;Crash To Main Menu; +tinkers-jei;2443;;tinkersjei;Tinker's JEI;; +better-questing-quest-book;2445;;questbook;更好的任务 - 任务书;Better Questing - Quest Book; +engineers-doors;2446;;;工程师的门;Engineer's Doors; +tps-generator;2447;;tpsgenerator;TPS发电机;TPS Generator; +better-drowning;2448;;;更好的溺水;Better Drowning; +bibliotheca;2449;;;Bibliotheca;; +kubejs;2450;;kubejs;KubeJS;; +tickcentral;2451;;tickcentral;TickCentral;; +lowocalizatiwn;2452;;;lOwOcalizatiωn;; +redlib;2453;;;RedLib;; +modern-ui;2454;;modernui;现代化UI;Modern UI;MUI +auto-config-updated-api;2455;;;Auto Config Updated API;; +medieval-madness;2456;;the_medieval_times;中世纪的疯狂;Medieval Madness; +caelus;2458;;caelus;Caelus API;; +xeocore;2459;;;XeoCore;; +wtbw_lib;2460;;;WTBW Lib;; +dev-world-fabric;2461;;devworld;Dev World;; +threecore;2462;;;ThreeCore;; +moddirector;2463;;;ModDirector;; +function-api;2464;;;Function API;; +targetingapi;2465;;;TargetingAPI;; +re-targetingapi;2466;;;Re-TargetingAPI;; +dominionlib;2468;;;DominionLib;; +;2469;1011791;;咸鱼工艺;Salt Fish Craft;SFC +endergetic;2470;;endergeticexpansion,endergetic;末地拓展;The Endergetic Expansion; +swamp-expansion;2471;;swampexpansion;Swamp Expansion;; +galactictweaks;2472;;gctweaks;GalacticTweaks;;GCT +dungeon-tactics;2473;945504;dungeontactics;地牢战术;Dungeon Tactics; +villagers-nose;2474;['320049'];VillagersNose;村民的鼻子;Villager's Nose; +dungeons2;2475;;;自定义地牢2;Dungeons2; +lang_tool;2476;;;加长工具;lang_tool;LT +;2477;;;Plans API;; +;2478;;;Labyrinths API;; +emojiful;2479;;emojiful;Emojiful;; +item-compatibility;2480;;;Item Compatibility;; +aether-lost-content;2481;;lost_aether;天境: 遗失之物;Aether: Lost Content; +gunpowderlib;2482;;gunpowderlib;GunpowderLib;; +nuclearcraft-overhauled;2483;1077507;nuclearcraft;核电工艺:重制版;NuclearCraft: Overhauled;NCO +nei-lotr;2484;;;魔戒NEI插件;LotR Mod NEI Plugin/NEI LotR; +adventure-backpack;2486;;adventurebackpack;探索者背包;Adventure Backpack; +speed-illusion;2487;;;Speed Illusion;; +supertic;2488;;gk_super_tic;匠魂药水效果;SuperTiC; +the-bumblezone-forge;2489;998154;the_bumblezone;蜂巢世界;The Bumblezone; +beesourceful;2490;;beesourceful;BeeSourceful;; +middle-earth-industry;2491;;mei;Middle-Earth Industry;;MEI +thut-wearables;2492;;;Thut Wearables;; +after-the-drizzle;2493;1038199;afterthedrizzle;细雨田园;After the Drizzle;AtD +cmdcam;2494;1034801;;CMD指令摄影机;CMDCam; +climate-control-geographicraft;2495;833208;geographicraft;气候控制/地理世界;Climate Control/Geographicraft;CC/GC +;;;promised_land,tpl;应许之地;The Promised Land;TPL +cosmetic-armor-reworked;2497;;cosmeticarmorreworked;时装盔甲重置版;Cosmetic Armor Reworked;CAR +;2498;993044;moegadd;月蛋拓展;MoegAddon; +efab;2499;;efab;EFab;; +potion-of-bees;2500;;potionofbees;蜂群药水;Potion of Bees; +wyrmroost;2501;;wyrmroost;Wyrmroost;; +productivebees;2502;1088015;productivebees;资源蜜蜂;Productive Bees; +gkolivers-super-tic;2503;;gk_super_tic;Gkoliver's Super TiC;; +;2504;;;Loot Table Randomizer;; +songs-of-war-mod;2505;1003372;sow;战争之歌;Songs of War;SoW +fluidict;2506;;fluidict;FluiDict;; +squidcraft;2507;1025201;squidcraft;鱿鱼工艺;SquidCraft;SC +clothesline;2508;1037838;clothesline;晾衣绳;ClothesLine; +siege;2509;;siege;Siege;; +fermion-core;2510;;;Fermion Lib;; +omnitranslation;2511;1007862;ot;万能翻译;OmniTranslation;OT +the-egg-came-first;2512;;;先有蛋;The Egg Came First; +nuclearcraft-helper;2513;;nuclearcraft_helper;核电助手;NuclearCraft Helper; +the-hive-more-bee-content;2514;;thehive;The Hive! More Bee Content;; +tinkersmiddleearth;2515;1040428;;Tinker's Middleearth;; +inventory-pause;2516;;;Inventory Pause;; +snowy-leaves;2517;;;Snowy Leaves;; +materialis;2518;;materialis;Materialis;; +tesseract;2519;1117511;tesseract;超立方体;Tesseract; +carrier-bees;2520;;carrierbees;物流蜜蜂;Carrier Bees; +tinkers-reforged;2521;;tinkers_reforged;工匠再锻;Tinkers' Reforged; +mystical-world;2522;991631;mysticalworld;魔幻世界;Mystical World; +recipes-for-all;2523;795776;;配方书全解锁;Recipes for All; +gregicality;2524;;gtadditions;Gregicality;; +the-lord-of-the-rings-mod-renewed;2525;363128;lotr;魔戒:复兴;The Lord of the Rings Mod: Renewed; +modelloader;2526;;modelloader;ModelLoader;; +animal-crops;2527;;animalcrops;动物作物;Animal Crops; +terrafirmacraftneiplugin;2528;;;Terra Firma Craft Plus NEI Plugin;; +furenikusroads;2529;;furenikusroads;Fureniku的路;Fureniku's Roads; +patchouli-quests;2530;1046562;patchoulitask;帕秋莉任务手册;Patchouli Quests; +;2531;925975;exac;学园附属;ExtraAcademy;EXAC +iitemrenderer-reborn;2532;;;IItem Renderer Reborn;; +time-overhaul;2533;;;时间改革;Time Overhaul;TO +steamweapon;2534;932419;stemweapon;梗多武器;StemWeapon; +counter-guns;2535;;;Counter Guns;; +thaumcraft;2536;776706;;神秘时代2;ThaumCraft 2;TC2 +gregtech-chill-edition;2537;;gregtech;格雷科技轻松版;GregTech: Chill Edition; +custom-player-model-cpm;2538;950601;;自定义玩家模型;Custom Player Model;CPM +roughly-enough-resources;2539;1046041;roughlyenoughresources;Roughly Enough Resources;;RER +so-many-enchantments;2540;927418;somanyenchantments;更多附魔;So Many Enchantments; +sisser;2542;;;Sisser;; +hxcenchants;2543;;;多样化附魔;HxCEnchants; +better-dropped-items;2544;1125352;;更好的掉落物;Better Dropped Items; +hxc-core;2545;;;HxC Core;; +surrounding-indicators;2546;;;Surrounding Indicators;; +gobber;2547;967993;gobber2;戈伯2;Gobber2; +gobber;2548;967993;gb;戈伯;Gobber; +iblis;2549;1025597;iblis;恶魔;iblis; +;2550;1097387;;万能篝火;What's wrong with the campfire; +the-king-of-the-villagers;2551;;kingvillager;村民之王;The King of the Villagers; +bring-me-the-rings;2552;;;Bring Me The Rings;; +bloomful;2553;;bloomful;Bloomful;; +pick-pocketer;2554;;;扒手;Pick Pocketer; +terraforged;2555;1157666;terraforged;TerraForged;; +rad-metabolosis;2556;;ncradmetabolosis;Rad Metabolosis;; +mmd-orespawn;2557;;;MMD OreSpawn;; +tragicmc3;2558;1233212;tragicmc;悲惨世界3;TragicMC 3; +;2559;;;神秘时代1;Thaumcraft 1;TC1 +not-enough-rtgs;2560;;notenoughrtgs;更多RTG;Not Enough RTGs; +qmd;2561;;qmd;量子块动力学;Quantum Minecraft Dynamics;QMD +environmental-rads;2562;;ncenvironmentalrads;Environmental Rads;;EnvRads +fission-based-neutron-collector;2563;;fbnc;裂变能中子素收集器;Fission Based Neutron Collector;FBNC +trinity;2564;;trinity;三位一体;Trinity; +macaws-windows;2565;;mcwwindows;Macaw的窗户;Macaw's Windows; +music-player;2566;;musicplayer;Music Player;; +csokicraftutil;2567;;;CsokiCraftUtil;; +large-enchants;2568;;;Large Enchants;; +angrysun;2569;797244;angrysun;炙热太阳;AngrySun; +its-not-long-enough;2570;807281;itsnotlongenough;与现实相同的昼夜交替;It's Not Long Enough;INLE +sunscreen-gel;2571;797343;sunscreen;防晒霜;Sunscreen Gel; +;2572;;Muya;姆亚核心;MuyaCore; +macaws-furniture;2573;;mcwfurnitures;Macaw的家具;Macaw's Furniture; +macaws-doors;2574;1098241;mcwdoors;Macaw的门;Macaw's Doors; +abnormals-core;2575;;abnormals_core;Abnormals Core;; +geyser-mod;2576;;geysermod;Geyser Mod;; +not-enough-pets;2577;1007471;notenoughcats;更多宠物;Not Enough Pets; +potionextension;2578;;PotionExtension;PotionExtention;; +torchslabs-mod;2579;1098447;torchslabmod;更好的火把放置;Torch Slabs Mod; +routerrebornlib;2580;;routerrebornlib;RouterReborn Lib;; +the-magic-doorknob;2581;;magic_doorknob;The Magic Doorknob;; +ultimate-skyblock-generator;2582;;ultimatecobblegen;Ultimate Skyblock Resource Generator;;USRG +everyone-poops-dung-fertilizer;2583;838650;everyonepoops;肥料;Everyone Poops - Dung Fertilizer; +ascension-of-the-divine;2584;;crustyburritosalotofstuffmod;Ascension of the Divine;; +nebulaecraft;2585;;;Nebulaecraft;; +tab-overlay;2586;807811;inventoryoverlay;背包显示;Inventory Overlay; +ic2magma;2587;;;IC2Magma;; +iridium-source;2588;;iridiumsource;铱矿产;Iridium Source; +frogcraft-rebirth;2589;;frogcraftrebirth;青蛙化工:重生;FrogCraft:Rebirth;FC +coaxium-mod-1-12-2-ic2-addon;2590;;fm;Coaxium Mod;; +energy-control;2591;;energycontrol;能源控制;Energy Control; +gulliver-reborn;2592;;gulliverreborn;Gulliver Reborn;; +;2593;428702;;可驯服的怪物;Tamed mobs; +rationcraft;2594;;rationcraft;Rationcraft;; +default-options;2595;;defaultoptions;Default Options;; +ender-mail;2596;1037597;endermail;末影邮递;Ender Mail; +more-overlays;2597;784302;moreoverlays;More Overlays;; +stefinus-3d-guns-mod;2598;441094;stefinusguns;3D枪械;New Stefinus Guns; +;2599;964874;movement;运动渲染;Movement; +moderncraft-core;2600;;;ModernCraft|Core;; +lang_magic;2601;;;言灵;lang_magic;YL +noexpensive;2602;1055512;noexpensive;不昂贵;NoExpensive;NE +rough-mobs-revamped;2603;;;粗暴的怪物重置版;Rough Mobs Revamped; +fullbright;2604;803202;;充满光明;Fullbright; +backpacks;2605;423986;backpacks16840;背包!;backpacks!; +;2606;952972;slashfortifier;拔刀强化器;Slash Fortifier Plus; +living-enchantment;2607;932961;livingenchantment;生命附魔;Living Enchantment; +karat-garden;2608;663378;karatgarden;克拉的花园;Karat Garden; +;2609;;cocricotmod;Cocricot;; +bard-mania;2610;;bard_mania;Bard Mania;; +shulkerboxtooltip;2611;;shulkerboxtooltip;潜影盒工具提示;Shulker Box Tooltip; +;2612;;ism;瞬时建造;InstantStructures Mod;ISM +crafting-dead-official;2613;;craftingdead;行尸走肉;Crafting Dead; +lord-craft;2614;;lordcraft;Lord Craft;; +;2615;899962;MoreSA;大牛的SA;DaNiu`s SA; +stupid-things;2617;;stupidthings;Stupid Things;; +more-gems-fabric;2618;;more_gems;更多宝石;More Gems; +minewars;2619;;minewars;MineWars;; +gregicadditionscompatibility;2620;;;Gregic Additions Compatibility;; +combined-potions;2621;785942;compot;组合药水;Combined Potions; +plusticminusbad;2622;;;xXx_MoreToolMats_xXx;; +baileys-dailies;2623;1047464;dailies;Bailey's Dailies;; +joshuas-christmas-mod;2624;;joshxmas;Joshua's Christmas Mod;; +enderio-fluxified;2625;;enderiofluxified;EnderIO Fluxified;; +skizzik;2626;;skizzik;Skizzik;; +;2627;203005;miners;矿工天堂;Miner's Heaven; +;2628;1057123;zongzi;粽子;ZongZi;ZZ +sandbag;2629;;sandbag;沙袋;Sandbag; +tinkers-arsenal;2630;;tinkersarsenal;Tinkers' Arsenal;; +garbage-energy;2631;;GarbageEnergy;废品能源炉;Garbage Energy; +quirky-generators;2632;;quirkygenerators;Quirky Generators;; +megaloot;2633;1014884;megaloot;超级战利品;MegaLoot; +;2634;;;Kradxn's X-Ray;;X-Ray +mad-villagers;2635;785126;;疯狂的村民;Mad Villagers; +logical-drops;2636;1022032;;逻辑工艺;Logical Craft;LC +drone-craft;2637;;dronecraft;Dronecraft;; +water-source;2638;1057153;watersource;水源;Water Source;WS +;;;tn;火鸡面;Turkey Noodle;TN +hungteens-plants-vs-zombies-mod;2640;1052460;pvz;HungTeen的植物大战僵尸;HungTeen's Plants vs Zombies Mod;PVZ +pams-desertcraft;2641;;desertcraft;潘马斯的沙漠工艺;Pam's DesertCraft; +pams-bonecraft;2642;;bonecraft;Pam的骨头工艺;Pam's BoneCraft; +thermal-singularities;2643;;thermsingul;热力奇点;Thermal Singularities;TS +minejurassic;2644;;minejurassic;MineJurassic;;MJ +terraria-craft;2645;953855;terraria;泰拉瑞亚世界;Terraria Craft;TC +colytra;2646;;colytra;鞘翅胸甲;Colytra; +insects;2647;;insects;昆虫;Insects; +sound-reloader;2648;732142;soundreloader;声音重载;Sound Reloader; +tool-belt;2649;677629;toolbelt;工具皮带;Tool Belt; +argentina-food-mod;2650;;argentina_food_mod;阿根廷的食物;Argentina Food Mod; +pet-names;2651;;;宠物名字;Pet Names; +collective;2652;;collective;Collective;; +giselbaers-durability-viewer;2653;1007803;durabilityviewer;耐久信息显示;Giselbaer's Durability Viewer; +more-cookies;2654;;morecookies;更多饼干;More Cookies; +apple-carrot;2655;;applecarrot;苹果胡萝卜;Apple Carrot; +eat-yo-veg;2656;;eatveg;Eat Yo' Veg!;; +bountiful;2657;1172239;bountiful;赏金;Bountiful; +betterenchantment;2658;;;更好的附魔;BetterEnchantment; +purified-flesh-mod;2659;;purifiedfleshmod;纯净的腐肉;Purified Flesh Mod; +gotminecraftmod;2660;;;权力的游戏;Game of Thrones Mod;GOT +nosleep;2661;;;禁止睡觉;No Sleep; +minersadvantage;2662;845552;minersadvantage;矿工的优势;MinersAdvantage; +;2663;942256;mobbottle;生物展示瓶;MobBottle; +simple-backpack-fabric;2664;;;简单背包;Simple Backpack; +gas-conduits;2666;;gasconduits;气体导管;Gas Conduits; +handgun-from-terraria;2667;;mod;Handgun From Terraria;; +more-discs-mod;2668;;more_music_disc;更多唱片;More discs mod; +edible-honeycombs;2669;;;Edible Honeycombs;; +emerald-and-ruby;2670;;emeraldandruby;Emerald And Ruby;; +craftable-nametag;2671;1103800;craftable_nametag;可合成的命名牌;Craftable Nametag; +dyeable-flower-pots;2672;;dyeable_flower_pots;染色花盆;Dyeable Flower Pots; +graffiti;2673;;graffiti;涂鸦;Graffiti; +bunny-boots;2674;;bunnyboots;Bunny Boots;; +backported-flora;2675;;backportedflora;Backported Flora;; +eat-eggs;2676;;eateggs;Eat Eggs;; +wool-plates;2677;;;羊毛压力板;Wool Plates; +more-berry-uses;2678;;sweetberryuses;更多浆果用途;More Berry Uses; +elemental-blades;2679;1012675;elemental_blades;元素之刃;Elemental Blades; +space-bosstools;2680;;boss_tools;Space-BossTools;; +simple-planes;2681;;simpleplanes;简单飞机;Simple Planes; +world-tooltips;2682;678452;;显示掉落信息;World Tooltips; +extra-arcane-knowledge-electroblobs-wizardry;2683;;ghostspells;额外巫术知识;Extra Arcane Knowledge; +bacterium;2684;;bacterium;细菌重置版;Bacterium; +pillagers;2685;786310;pillagers;掠夺者;Pillagers; +guard-villagers;2686;995876;guardvillagers;警卫村民;Guard Villagers; +simple-machinery;2687;;simplemachinery;简单机器;Simple Machinery; +;2688;996667;;更困难的生存;; +bridge-maker;2689;;bridge_maker;桥梁制造者;Bridge Maker; +craft-your-saddle;2690;;;HorseCrafting;; +;2691;;;No PVP Cooldown;; +never-break;2692;;;损坏防护;Never Break; +simple-villager-spawn-egg;2693;;;Simple Villager Spawn Egg;; +banana-decor-forge;2694;;bananadecor;Banana Decor;; +immersive-metal;2695;;immersivemetal;沉浸金属;Immersive Metal; +coffee-time;2696;;coffeetime;Coffee Time!;; +drink-mod;2697;;drinksmod;饮料模组;Drink Mod; +more-zombie-villagers;2698;;morezombievillagers;More Zombie Villagers;; +naturally-charged-creepers;2699;;;Naturally Charged Creepers;; +skinport;2700;;skinport;SkinPort;; +dynamic-surroundings-soundcontrol;2701;;sndctrl;动态环境:音效控制;Dynamic Surroundings: SoundControl; +;2702;1060595;cheat_ban;无盐:创造毁灭者;No More Salt:Cheat Ban;CB +chop-down-updated;2703;789214;chopdownupdated;Chop Down Updated;; +aegis-weapon-system-mod;2704;;AegisSystemMod;宙斯盾作战系统-战舰模组;Aegis Weapon System -Warship's Mod;ASM +advanced-hook-launchers;2705;673881;adhooks;高级钩爪发射器;Advanced Hook Launchers; +vampire-magic;2706;;;Vampire Magic;; +fantasyunderworld;2707;;fantasyunderworld;江湖行;fantasyunderworld; +stacc;2708;;;Stacc;; +a-riot-of-colour-craft;2709;982406;shui;五彩斑斓工艺;a riot of colour craft; +crop-dusting;2710;965619;cropdusting;排气施肥;Crop Dusting; +dynamic-surroundings-mobeffects;2711;;mobeffects;动态环境:生物效果;Dynamic Surroundings: MobEffects; +dynamic-surroundings-environs;2712;;environs;动态环境:周边环境;Dynamic Surroundings: Environs; +recipe-stages;2713;;recipestages;配方阶段;Recipe Stages; +attack-on-minecraft;2714;1071695;aom;Wings of Freedom;; +cavern-miner;2715;;cavern;洞穴:矿工;Cavern: Miner; +vanilla-tools;2716;;supertools;原版工具+;Vanilla Plus Tools; +server-tab-info;2717;790756;servertabinfo;Server Tab Info;; +letsencryptcraft;2718;;;LetsEncryptCraft;; +creeperhost-minetogether;2719;;;MineTogether;; +;2720;1061428;ilib;又一个优化Mod;ImproveLib;IL +fullscreen-windowed-borderless-for-minecraft;2721;678406;fw;窗口化全屏;Fullscreen Windowed (Borderless) for Minecraft;FW +nocurse;2722;1066483;nocurse;不诅咒;NoCurse; +pretty-beaches;2723;1113121;;Pretty Beaches;; +qing_gong;2724;1065957;;轻功;qing_gong;qg +remnants;2725;;;腐败;Remnants; +pane-in-the-glass;2727;;pitg;Pane In The Glass;;PITG +dynamic-dynamos;2728;;dyndyn;能源炉动画;Dynamic Dynamos; +trophy-slots;2729;;;Trophy Slots;; +;2730;;magicwithdrinks;魔法与饮料;Magic With Drinks;MWD +replanting-crops;2731;;replantingcrops;补种农作物;Replanting Crops; +complex-crops;2732;873934;complexcrops;Complex Crops;; +screenshot-to-clipboard;2733;;screenshotclipboard;截图到剪贴板;Screenshot to Clipboard; +hide-armor;2734;;hidearmor;隐藏盔甲;Hide Armor; +hunterillager;2735;936480;hunterillager;邪猎者;HunterIllager; +;2736;;;僵尸启示录:语音聊天;DecimationVoiceChat; +pocket-apocalypse-mod;2737;;;便携式天灾;Pocket Apocalypse mod; +compass;2738;1067220;compass;指南针;compass; +tinkers-evolution;2739;1118159;tconevo;匠魂进化;Tinkers' Evolution;TConEvo +tinkers-exporter;2740;1071348;tic_exporter;匠魂数据导出器;Tinkers Exporter; +farlanders;2741;425192;;更多末影人;The Farlanders; +vials;2742;;vials;瓶瓶罐罐;Vials; +advanced-lightsabers;2743;;lightsabers;高级光剑;Advanced Lightsabers;AL +fall_attack;2744;1068034;;下落击杀;fall_attack;FA +swimsuit;2745;1069305;swimsuit;泳装;swimsuit; +more-overlays-updated;2746;;moreoverlays;More Overlays Updated;; +dothack-hack-weapons;2747;;dothack;Dothack Weapons;; +immersive-energy;2748;;immersive_energy;沉浸能源;Immersive Energy; +crimson-moon;2749;;;绯红之月;Crimson Moon; +mobs-attempt-parkour;2750;;;Mobs Attempt Parkour;; +identity;2751;1097458;identity;变形;Identity; +industrial-revolution;2752;1069869;indrev;工业革命;Industrial Revolution; +art-of-alchemy;2753;1017647;artofalchemy;炼金艺术;Art of Alchemy; +lan-server-properties;2754;1056335;;自定义局域网联机;LanServerProperties; +;2755;770911;;自定义武器;Custombuki; +immersive-intelligence;2756;;immersive-intelligence,immersiveintelligence;沉浸智能;Immersive Intelligence; +analyzeio;2757;;analyzeio;AnalyzeIO;; +wool-buttons;2758;;sbmwoolbuttons;羊毛按钮;Wool Buttons; +total-tinkers;2759;;totaltinkers;统合匠艺;Total Tinkers; +;;;BSRTV,bsrt;滨蜀地铁标志色;;bsrtv +thaumic-wands;2761;1082168;thaumicwands;神秘法杖;Thaumic Wands; +japanese-food-mod;2762;1089344;japanese_food_mod;日式料理;Japanese Food Mod; +pandoras-creatures;2763;944141;pandoras_creatures;潘多拉生物;Pandoras Creatures; +status-tags;2764;;;名称标签状态栏;Status Tags; +just-enough-dimensions;2765;;;维度配置;Just Enough Dimensions;JED +multishot;2766;;;延时摄影;Multishot; +tweakers-construct;2767;;;匠魂调整;Tweakers Construct; +valhelsia-structures;2768;;valhelsia_structures;Valhelsia Structures;; +;2769;1074127;yvanchuxiuzhen;原初修真;yvanchuxiuzhen; +;2770;1074127;initial;原初修真前置;Initial Immortal; +just-enough-reactors;2771;;justenoughreactors;Just Enough Reactors;; +aoa-infobundle;2772;;aoainfo;虚无世界信息包;AoA InfoBundle;AoAIB +mana-and-artifice;2773;;mana-and-artifice;魔法艺术3:巧工魔艺;Mana and Artifice;MA +;2774;1076451;;远程强度工艺 前置模组;RICraft API; +slab-helper;2776;1075292;slabhelper;半砖小帮手;Slab Helper; +no-jumping-allowed;2777;;nojumpingallowed;禁止跳跃;No Jumping Allowed; +swan-boats;2778;;swanboat;天鹅船;Swan Boats; +primal-winter;2779;;;初冬;Primal Winter; +better-burning;2780;;;更好的燃烧机制;Better Burning; +compact-void-miners;2781;;compactvoidminers;紧凑型虚空采矿机;Compact Void Miners;CVM +probe;2782;;;Probe;; +mekanism-fluxified;2783;;mekanismfluxified;“通量”机械;Mekanism Fluxified; +stepup;2784;;stepup;平滑自动上坡;StepUp;SU +sodium;2785;1079347;sodium;钠;Sodium; +;2786;1050121;sv;月光树林;Moon Woods; +netherlicious;2787;1104913;netherlicious;Netherlicious;; +yungs-better-mineshafts-forge;2788;;bettermineshafts;YUNG的矿井优化;YUNG's Better Mineshafts; +terrible-chest;2789;922554;terrible_chest;可怕的箱子;Terrible Chest; +spartan-shields;2790;672959;spartanshields;斯巴达之盾;Spartan Shields; +silent-gear;2791;;silentgear;寂静装备;Silent Gear;SGear +;2792;1075802;watersprayer;喷雾瓶;Water Sprayer; +simple-smeltery-accelerator;2793;;simplesmelteryaccelerator;匠魂冶炼炉加速器;Simple Smeltery Accelerator; +portality;2794;963035;portality;Portality;; +natural-absorption;2795;;naturalabsorption;伤害吸收天赋;Natural Absorption; +unique-enchantments;2796;;uniquee;独特的附魔;Unique Enchantments; +tombstone-revived;2797;;tombstone;墓碑:复生;Tombstone: Revived; +travelers-backpack-integrations;2798;;tbintegration;旅行者背包集成;Traveler's Backpack Integrations; +Baby-Mobs;2799;;babymobs;Baby生物;Baby Mobs; +compressedblock;2800;;compressedblock;压缩方块;Compressed Block; +wildnature;2801;;wildnature;狂野自然;Wild Nature;WN +novam-terram;2802;;nt;Novam Terram;;NT +terrafirmathings;2803;1155379;tfcthings;群峦作品;Terra Firma Things; +;2804;1085049;;机械工厂;Mechanization;MECH +simpledifficulty;2805;1105340;simpledifficulty;坚定意志;SimpleDifficulty; +;2806;;minema;Minema;; +tfctech-unofficial;2807;;tfctech;群峦工业非官方版;TFCTech Unofficial; +;2808;;ee;等价交换;Equivalent Exchange;EE +invmove;2809;;invmove;边拿边走;InvMove; +autofish-for-forge;2810;;forgeautofish;自动钓鱼Forge版;AutoFish for Forge; +industrial-upgrade;2811;['1038987'];super_solar_panels;工业升级;Industrial Upgrade; +rpgstats;2812;;rpgstats;RPGStats;; +datapackrecipemaker;2813;1087231;dprm;数据包配方助手;Datapack Recipe Maker;DPRM +never-needed-or-wanted;2814;;nnow;Never Needed Or Wanted;;NNOW +ama-damage-indicator;2815;;damage_indicator;Ama's Damage Indicator;; +;2816;;wlgr;伍德的美食红宝书;Woody's Le Guide Rouge;WLGR +magic-circle;2817;929326;magiccircle;阵法;Magic Circle; +crash-utilities;2818;;;Crash Utilities;;CU +eldritch-mobs;2819;;;Eldritch Mobs;; +farmers-delight;2820;;farmersdelight;农夫乐事;Farmer's Delight; +artifacts;2821;;artifacts;奇异饰品;Artifacts; +dynamictreestfc;2823;;dynamictreestfc;动态的树:群峦传说附属;Dynamic Trees-TFC; +lucky-block-avaritia;2824;;;无尽幸运方块;Lucky block avaritia; +dynamic-trees-the-twilight-forest;2825;;dynamictreesttf;动态的树:暮色森林附属;Dynamic Trees-The Twilight Forest; +drp-global-datapack;2826;;drpglobaldatapack;全局数据包;DRP - Global Data Pack; +mob-farm-nerfer;2827;;mob_farm_nerfer;Mob Farm Nerfer;; +blood-in-the-water;2828;;;Blood in the Water;; +bio-technik;2829;;biotechnik;Bio Technik;; +;2830;;;Tinkers' Guns Construction;; +;2831;1117278;germplasm;种质工艺;Germplasm; +astromine-fabric;2832;1068634;astromine;天体矿工;Astromine: Complete; +rustic-thaumaturgy;2833;;rusticthaumaturgy;神秘乡村;Rustic Thaumaturgy;RT +;2834;1074208;gasterblaster;龙骨炮;gasterblaster; +thallium;2835;1088212;;铊;Thallium; +haema;2836;;haema;Haema;; +evil-ores;2837;;evil-ores;Evil Ores;; +unsuspicious-stew;2838;;;炖菜解迷;Unsuspicious Stew; +tfc-seasonal;2839;;tfcseasonal;TFC Seasonal;; +imblockerfabric;2840;1090731;IMBlockerFabric;输入法冲突修复;IMBlockerFabric; +saomclib;2841;;;saomclib;; +survival-utilities;2842;;svutils;生存工具;Survival Utilities; +slashblade;2843;;slashblade;拔刀剑2;SlashBlade 2; +portal-blocks-2-0;2844;1077770;portalblocks;传送门方块;Portal Blocks; +slimecraft-add-tools-etc;2845;;slimecraft;SlimeCraft;; +mechanized-steam-power;2846;;mechanized;机械化蒸汽动力;Mechanized Steam Power; +moreswordonline;2847;;swordcraftonline;动漫神域;MoreSwordOnline; +Camera-mod;2848;1162901;camera;照相机;Camera Mod; +heartdrops;2849;;heartdrops;生命汲取重制版;Heart Drops; +observerlib;2850;;;ObserverLib;; +zen-summoning;2851;;zensummoning;Zen Summoning;; +campanion;2852;;campanion;野营物品;Campanion; +wolves-with-armor;2853;;wolveswitharmor;狼铠;Wolves With Armor; +get-exp-for-everything;2854;;;万物皆可获得经验;Get exp for everything; +jei-enchantment-info;2855;;;JEI附魔信息;JEI Enchantment Info; +project-red-core;2856;;projectred-core;红石计划:核心;Project Red - Core; +project-red-fabrication;2857;;projectred-fabrication;红石计划:制作;Project Red - Fabrication; +project-red-integration;2858;;projectred-integration,projectred-transmission;红石计划:集成;Project Red - Integration; +project-red-lighting;2859;;projectred-illumination;红石计划:照明;Project Red - Lighting; +project-red-world;2860;;projectred-exploration;红石计划:探索;Project Red - World; +project-red-compat;2861;;;红石计划:兼容性;Project Red - Compat; +canvas-renderer;2862;;canvas;Canvas Renderer;; +coolfood;2864;;kur;冷饮;CoolFood; +infinitevillagertrading;2865;;infinitevillagertrading;无限村民交易;InfiniteVillagerTrading; +infinite-trading;2866;;infinitetrading;无限交易;Infinite Trading; +better-loading-screen;2867;970911;customloadingscreen;自定义加载画面;Custom Loading Screen; +extended-lights-mod;2868;903904;extlights;灯具拓展;Extended Lights; +more-swords-legacy;2869;;msmlegacy;更多剑:传承;More Swords Legacy; +the-undergarden;2870;;undergarden;深暗之园;The Undergarden; +allure;2871;1094606;;诱惑;Allure; +;2872;1094472;honkaiimpact;崩坏;Honkai Impact; +glibys-voice-chat-reloaded;2873;832155;;Gliby的语音聊天重置版;Gliby's Voice Chat Reloaded; +greater-eye-of-ender-fabric;2874;1022292;greater_eye;高级末影之眼;Greater Eye of Ender; +project-red-mechanical;2875;;projectred-expansion,projectred-relocation,projectred-transportation;红石计划:机械;Project Red - Mechanical; +neon-craft-mod;2876;;neoncraft;霓虹灯艺;Neon Craft Mod;NC +arrows-ignite-tnt;2877;;;Arrows Ignite TNT;; +enderite-mod-for-fabric;2878;;enderitemod;末影合金;Enderite Mod; +dynamic-trees-industrial-craft-2;2879;;dynamictreesic2;动态的树:工业2附属;Dynamic Trees - Industrial Craft 2; +dynamic-trees-tinkers-construct;2880;;dynamictreestconstruct;动态的树:匠魂附属;Dynamic Trees - Tinker's Construct; +ex-nihilo-sequentia;2881;;exnihilosequentia;无中生有:传承;Ex Nihilo: Sequentia; +toms-storage;2882;1085400;toms_storage;汤姆的简易存储;Tom's Simple Storage Mod; +fishing-real;2883;;fishingreal;更真实的钓鱼;Fishing Real; +maessentials;2884;;;Ma Essentials;; +lingering-loot;2885;;lingeringloot;Lingering Loot;; +ugraded-netherite;2886;;upgradednetherite;下界合金增强;Upgraded Netherite; +;2887;1095660;dreamer;空想家;Dreamer;DM +inventory-profiles;2888;920520;inventoryprofiles;一键背包整理;Inventory Profiles; +slimevoid-library;2889;;;Slimevoid Library;; +kotlin-for-forge;2890;;;Kotlin for Forge;; +fabric-zero;2891;;;Fabric Zero;; +towers-of-the-wild;2892;1098534;;旷野之塔;Towers Of The Wild; +sausagecore;2893;;sausage_core;香肠核心;SausageCore; +shadowlands;2894;;;暗影之地;Shadowlands; +polymorph;2895;;polymorph;多态合成;Polymorph; +scalable-cats-force;2896;;scala-library-object;Scalable Cat's Force;; +otyacraft-engine;2897;;;Otyacraft Engine;; +omega-craft-mod;2898;;omegacraft;Omega Craft Mod;; +custom-ports;2899;;;自定义局域网端口;Custom LAN Ports; +decorative-blocks;2900;1099281;decorative_blocks;装饰方块;Decorative Blocks; +music-layer;2901;;musiclayer;Music Layer;; +colored-lux;2902;;lux;彩色照明;Colored Lux;Lux +corsair-mccue;2903;;mccue;Corsair McCUE;; +right-click-clear;2904;;right-click-clear;右键文本清除;Right Click Clear; +wtfs-expedition-cavebiomes-ores-trees-and-tweaks;2905;;;WTF's Expedition: CaveBiomes, Ores, Trees, and Tweaks;; +guide-api-village-and-pillage;2906;;;Guide-API Village and Pillage;; +;2907;406482;;可拾取尸体;Dr. Cyano's Lootable Bodies; +simply-cats;2908;;simplycats;Simply Cats;; +pams-harvestcraft-2-crops;2909;;pamhc2crops;潘马斯农场2 - 作物;Pam's HarvestCraft 2 - Crops; +base-metals;2910;;basemetals;基础金属;Base Metals; +mmdlib;2912;;mmdlib;MMDLib;; +just-poop-mod;2913;;poop,pm;屎!;Poop Mod!; +costumes;2914;;costumes;服装;Costumes; +;2915;913253;eyemod;EyeMod;; +upgrade-aquatic;2916;962459;upgrade_aquatic;碧海新生;Upgrade Aquatic; +tfc-ambiental;2917;;tfcambiental;TFC Ambiental;; +macaws-trapdoors;2918;;mcwtrpdoors;Macaw的活板门;Macaw's Trapdoors; +zenutil;2919;;zenutils;Zen Utils;; +better-beacon-effect;2921;;;更好的信标效果;Better Beacon Effect; +netherite-horse-armor;2922;;;下界合金马铠;Netherite Horse Armor; +tacocraft-fabric;2923;;tacocraft;TacoCraft;; +lootr;2924;;lootr;Lootr;; +biolib;2925;;biolib;Bio Library;;BioLib +scavenge;2926;;scavenge;Scavenge;; +;2927;456383;WLM;不毛之地;Wasteland; +heaven-earth-ring;2928;1113665;heavenearthring;乾坤戒指;Heaven Earth Ring;HER +;2929;1104570;hnkinvention;以太木与角川烈的奇妙发明;HoshTimber & Kadokawa Wonderful Invention;HKWI +pams-harvestcraft-2-food-extended;2930;;pamhc2foodextended;潘马斯农场2 - 食物拓展;Pam's HarvestCraft 2 - Food Extended; +pams-harvestcraft-2-trees;2931;;pamhc2trees;潘马斯农场2 - 果树;Pam's HarvestCraft 2 - Trees; +minecart-direction-follow;2933;;lock_minecart_view;Better Minecart Rotation;; +modern-metals;2934;;modernmetals;现代金属;Modern Metals; +block-renderer;2935;;block_renderer,blockrenderer;Block Renderer;; +blockus;2936;;blockus;Blockus;; +conjurers-cookbook;2937;;conjurerscookbook;Conjurer's Cookbook;; +color-unchained;2938;;colorunchained;Color Unchained;; +aportingcore;2939;1106002;;移植核心;APortingCore; +ywlib;2940;;ywlib;YWlib;; +sweet-potato;2941;1132119;sweet_potato;烤地瓜;Sweet Potato Mod;SPM +redstone-lantern;2942;;;红石灯笼;Redstone Lantern; +culinaire;2943;;ce_foodstuffs;通用扩展:食物;Culinaire; +furbishcraft;2944;;lizardfurnituremod;FurbishCraft;; +;2945;489118;storageSilo;存储仓;StorageSilo; +plural-lucky-block;2946;1153085;;复数幸运方块;Plural Lucky Block; +ambientsounds;2947;780518;ambientsounds;自然音效;AmbientSounds;AS +ordinary-firearms;2948;1107541;ordinary_firearms;普通枪械2;Ordinary Firearms 2;OFMS2 +territory;2949;;territory;领地;MineTerritory; +better-ping-display;2950;;betterpingdisplay;更好的延迟显示;Better Ping Display;BP +turned-the-changed-mod;2951;;turned_remaster;Turned: The Changed Mod;; +survival-tweaks;2952;1050858;survivaltweaks;生存微调;Survival Tweaks; +melon-slabs;2953;;melonslabs;西瓜台阶;Melon Slabs; +lambdynamiclights;2954;;lambdynlights;Lambda的动态光源;LambDynamicLights; +realistic-torches;2955;566201;realistictorches;真实火把;Realistic Torches; +;2956;1008631;;跳舞的线;Dancing Line For Mincraft;DLMC +durability-viewer;2957;1086168;Durability Viewer;耐久显示器;Durability Viewer; +lucky-block-bow;2959;;;Lucky Block Bow;; +;2960;770071;flammpfeil.slashblade;狐月刀改;FoxBlade Extra; +ground-item-highlighting;2961;1084931;;地面物品高光显示;Ground Item Highlighting; +;2962;;opengldrawing;绘画;OpenGL Drawing;OD +real-survivor;2963;1093190;;幸存者;RealSurvivor; +armor-toughness-bar;2964;;toughnessbar;盔甲韧性显示;Armor Toughness Bar; +block-meter;2965;;;Block Meter;; +time-to-live;2966;;;Time To Live;;TTL +dual-hotbar-1-12-2;2967;986000;dualhotbar;双重快捷栏1.12.2;Dual Hotbars1.12.2; +cha-s;2968;;craftablehorsearmour;可合成的马铠和鞍;Craftable Horse Armour & Saddle;CHA&S +dual-hotbar;2969;320409;;双重快捷栏;Dual Hotbars; +travellers-boots;2970;;travellersboots;Traveller's Boots;; +;2971;;wfs;伍德的时装精选;Woody's Fashion Selection;WFS +cofh-vanilla-satchels;2972;;vanillasatchels;CoFH:Vanilla+ Satchels;; +betteranimalsplus;2973;861155;betteranimalsplus;更多动物;Better Animals Plus;BA+ +packagedauto;2974;;packagedauto;封包合成;PackagedAuto; +packagedexcrafting;2975;;packagedexcrafting;封包合成拓展;PackagedExCrafting;PEC +;2976;376293;tnb_gildedarmor;Gilded Armor;; +compactstorage;2977;;compactstorage;紧凑存储;compactstorage; +useful-backpacks;2978;;usefulbackpacks;实用背包;Useful Backpacks; +conquest-reforged;2979;637804;conquest,blockpalette,connect;征服者;ConquestReforged; +steelseries-gamesense;2980;;gamesense;Steelseries Gamesense;; +pizzaatimes-timber-mod;2981;;timber;pizzaatime's Timber Mod;; +tellme;2982;;tellme;TellMe;; +minerva-library;2983;;;Minerva library;; +;2984;;chromeball;土球;ChromeBall; +;2985;;godblessing;神佑;God Blessing; +;2986;1104504;hamburger;老八秘制小汉堡;The Hamburger Of LaoBa; +edit-sign;2987;;signedit;编辑告示牌;Edit Sign; +logistical-automation;2988;;logisticalautomation;Logistical Automation;;LA +dynamic-view;2989;;dynview;动态视距;Dynamic View; +;2990;1111967;portalcraft;传送门工艺;PortalCraft; +instrumental-mobs;2991;;instrumentalmobs;Instrumental Mobs;; +finder-compass;2992;;findercompass;Finder Compass;; +spacering;2993;;spacering;储物戒;SpaceRing; +doot;2994;;trumpetskeleton,trumpet-skeleton;Trumpet Skeleton;; +;;;loaded_mod_exporter,Loaded Mod Exporter;加载模组导出;Loaded Mods Exporter;LME +emotes;2996;;Emotes;Emotes;; +oc-sensors;2997;;ocsensors;OC Sensors;; +fabric-for-fabric;2998;;fabricforfabric;Fabric for Fabric;; +storage-tech;2999;;storagetech;Storage Tech;; +thaumic-periphery;3000;;thaumicperiphery;神秘外饰;Thaumic Periphery; +embellishcraft;3001;;embellishcraft;装饰工艺;EmbellishCraft; +open-loader;3002;;openloader;开放式加载;Open Loader; +deep-mob-learning-refabricated;3003;;dml-refabricated;深度怪物学习:重制版;Deep Mob Learning: Refabricated; +ftb-ultimine-forge;3004;;ftbultimine;连锁破坏;FTB Ultimine; +server-translations;3005;;;Server Translations;; +image2map;3006;;image2map;Image2Map;; +corpse;3007;;corpse;遗体;Corpse; +ring-of-the-miner-fabric;3008;;;矿工之戒;Ring of the Miner; +instant-bubble-studio;3009;1103368;instantbubblestudio;瞬息气泡工坊;Instant Bubble Studio; +;3010;;rpgmaths;RPG数学家;RPG Maths; +;3011;1197155;unexpectedteleport;未曾设想的传送方式;Unexpected Teleport; +;3012;1103091;vacation_diary;度假日记·随想;Vocation Diary; +;3013;;bananacraft;香蕉工艺;BananaCraft; +;3015;;kaleido;Kaleido;; +;3016;;arcaneart;奥法艺术;Arcane Art; +crock-pot;3017;;crockpot;烹饪锅;Crock Pot; +;3020;;abouttea;AboutTea;; +;3021;;vida;生命;Vida; +;3022;;throwable;投掷物;Throwable; +;3023;;icycream;冰激凌;IcyCream; +;3024;;suuuuuuuper_herbal_tea;超级凉茶;Suuuuuuuper herbal tea; +;3025;;sinocraft;华夏工艺;SinoCraft; +together-forever;3026;;togetherforever;Together Forever;; +iron-furnaces;3027;;ironfurnaces resources;更多熔炉;Iron Furnaces; +;3028;1112054;jutsubag;忍术手袋;JutsuBag; +lenient-creepers;3029;811522;;仁慈的苦力怕;Lenient Creepers; +treasure2;3030;;treasure2;寻宝记2;Treasure2!; +;3031;;;自动断线重连;AutoReconnector-Fabric; +;3032;;jigsaw;Jigsaw Lib;; +structure-gel-api;3033;;structure_gel;Structure Gel API;; +the-conjurer;3034;1122250;conjurer_illager;魔术师;The Conjurer; +ganys-nether;3035;;ganysnether;Gany的下界;Gany's Nether; +ganys-end;3036;;ganysend;Gany的末地;Gany's End; +epic-fight-mod;3037;1115564;epicfight;史诗级战斗;Epic Fight Mod; +attack-missed;3038;1115551;Attack Missed;攻击闪避;Attack Missed; +lava-monsters;3039;;lava_monster;熔岩怪;Lava Monsters; +tumat;3040;;tumat;TUMAT;; +riddle-chests;3041;;riddlechests;谜题箱;Riddle Chests; +;3042;;cinfinitelib;CinfiniteLib;;CiL +totem-plus;3043;;;Totem Plus;; +blockmeterfabric;3044;;;方块计量表;BlockMeterFabric; +;3045;;kamenrider3dmod;假面骑士(3D版);KamenRider3D;KR3D +fluid-drawers;3046;;fluiddrawers;储液抽屉;Fluid Drawers; +creepypastacraft-reborn;3047;;creepypastacraft;蠕动意面重置版;CreepyPastaCraft Reborn; +itemzoom;3048;;;物品缩放;ItemZoom; +light-overlay;3049;;lightoverlay;Light Overlay;; +smallerfpsincrements;3050;;;SmallerFPSIncrements;; +regex-filters;3051;;regexfilters;正则表达式过滤器;Regex Filters; +;3052;;realworld;真实的世界;RealWorld; +fluidsystem;3053;;fluidsystem;流体系统;FluidSystem; +falling-tree;3054;;falling_tree;FallingTree;; +untranslated-items;3055;;untranslateditems;物品名称双语同屏;Untranslated Items; +particle-culling;3056;;particleculling;粒子渲染机制优化;Particle Culling; +aggressive-chickens;3057;;;Aggressive Chickens;; +entity-culling;3058;;;实体渲染机制优化;Entity Culling; +hammerandvil;3059;;hammerandvil;锻造锤与锤锻台;HammerAndVil;H&V +;3060;1046859;arclight;Arclight;; +simply-backpacks;3061;;simplybackpacks;简易背包;Simply Backpack; +mermaid-tail-mod;3062;;mermaidtail;Mermaid Tail Mod;; +better-placement;3063;730136;;更好的放置;Better Placement; +fat-cat;3064;;fat_cat;大资本家;Fat Cat; +waystones2waypoints;3065;;;传送石碑路径点;Waystones2Waypoints;W2W +beta-days;3066;;beta_days;B测往昔;Beta Days; +trajectory-preview;3067;;trajectory_preview;弹道预览;Trajectory Preview; +xp-spawner-control;3068;;;刷怪笼经验控制;Xp Spawner Control; +mob-spawner-control;3069;;;刷怪笼控制与修改;Mob Spawner Control; +refined-pipes;3070;;refinedpipes;精致管道;Refined Pipes; +singularities;3071;;singularities;奇点;Singularities; +better-spawner-control;3072;;;更好的刷怪笼控制;Better Spawner Control; +crying-ghasts;3073;;cryingghasts;哭泣的恶魂;Crying Ghasts;CG +dynamic-fps;3074;;dynamicfps;动态FPS;Dynamic FPS; +compact-ores;3075;;compactores;致密矿石;Compact Ores; +thaumic-additions;3076;;thaumadditions;神秘领域:重构;Thaumic Additions:Reconstructed;TAR +fabric-disable-custom-worlds-advice;3077;;;禁用自定义世界警告;Disable Custom World Advice; +leaf-decay;3078;;;树叶速腐Fabric版;Leaf Decay; +fast-furnace-for-fabric;3079;;;熔炉性能优化Fabric版;Fast Furnace for Fabric; +diggus-maximus;3080;;diggusmaximus;连锁挖掘;Diggus Maximus; +super-sentai-craft;3081;;supersentaicraft;超级战队工艺;Super Sentai Craft;SSC +wildly-eat;3082;;wildly_eat;狼吞虎咽;Wildly Eat; +gotta-climb-fast;3083;;;快速爬梯;Gotta Climb Fast!; +can-i-mine-this-block;3084;;can-i-mine-this-block;我­­ 能 挖 它 吗?;cAn i MiNe thIS bLOCk?;cimtb +rotten-creatures;3085;1094419;rotten_creatures;腐烂生物;Rotten Creatures; +fairy-lights;3086;1167478;fairylights;圣诞彩灯;Fairy Lights; +packmode;3087;;packmode;PackMode;; +dank-null;3088;;danknull;/dank/null;; +avaritia-complement;3089;;avaritiatweaks;Avaritia's Complement;; +better-questing-triggerer;3090;;bqt;Better Questing Triggerer;; +Broken-Wings;3091;;brokenwings;Broken Wings;; +;3092;;;ChickenASM;; +Compacter;3093;;compacter;压缩者;Compacter; +simple-cc;3094;;;简单清除聊天;Simple Clear Chat; +not-enough-potions;3095;;nep;Not Enough Potions;;NEP +framed-compacting-drawers;3096;;framedcompactdrawers;镶框压缩抽屉;Framed Compacting Drawers;FCD +discordsuite;3097;;discordsuite;DiscordSuite;; +mikes-mods-library;3098;;mikesmodslib;Mike's Mods Lib;; +Teslafied;3099;;teslafied;Teslafied;; +shurlin;3100;;shurlin;仙灵;Shurlin;XL +mob-amputation;3101;;;怪物截肢;Mob Amputation; +packguard;3102;;packguard;PackGuard;; +wtfs-texturegeneratorlib;3103;;;WTF's TextureGeneratorLib;; +more-totems-of-undying;3104;1120388;moretotems;更多的不死图腾;More Totems Of Undying; +dungeon-crawl;3105;;;Dungeon Crawl;; +tesslocator;3106;;tesslocator;超立方转运器;Tesslocator; +iblis-headshots;3107;963706;iblis_headshots;爆头击杀;Iblis Headshots; +bee-barker;3108;812120;beebarker;Bee Barker;; +sky-bonsais;3109;;skybonsais;天空盆景;Sky Bonsais; +;3110;1126399;the_golden_autumn;黄金之秋;The Golden Autumn; +origins;3111;1081026;origins;起源;Origins; +alexiillib;3112;;alexiillib;AlexiiLLib;; +feed-a-friend;3113;;;Feed A Friend;; +;3114;1117895;;斗地主;Minecraft Dou Dizhu; +;3115;;;Item Render Async Reloaded;;IRAR +the-legend-of-herobrine;3116;;herobrine;The Legend of Herobrine;; +extra-origins;3117;;;起源扩展;Extra Origins; +caves-and-cliffs;3118;;caves_and_cliffs,cavesandcliffs;Caves and Cliffs Mod, 1.17 concept;;CC +miner-golems;3119;;minergolems;矿工傀儡;Miner Golems; +;3120;825439;bakadanmaku;直播弹幕模组;BakaDanmaku; +online-card;3121;;onlinecard;网络卡片;; +felling;3122;;felling;连锁砍树;Felling; +extra-player-render;3123;1118280;extra_player_renderer;额外玩家渲染;Extra Player Renderer; +fabric-api;3124;;fabric;Fabric API;; +coloredlanterns;3125;;coloredlanterns;多彩灯笼;ColoredLanterns; +ae2-fluid-crafting;3126;;ae2fc;AE2流体合成套件;AE2 Fluid Crafting;ae2fc +cardinal-energy;3127;;;能量基本;Cardinal Energy; +travel-anchors;3128;;travel_anchors;旅行锚;Travel Anchors; +bnbgaminglib;3129;;bnbgaminglib;BnBGamingLib;; +triumph;3130;;;Triumph;; +overloaded-armor-bar;3131;1027870;overloadedarmorbar;护甲上限突破;Overloaded Armor Bar; +toomanydanyores;3132;;TooManyDanyOres;TooManyDanyOres;; +glass-pipe;3133;;;玻璃管道;Glass Pipe; +origins-classes;3134;1129492;origins-classes;起源:职业;Origins: Classes; +plonk;3135;1155521;;世界内物品放置;Plonk; +baritone;3136;;baritoe;baritone;; +potionsmaster;3137;1002297;potionsmaster;魔药大师;Potions Master; +tinkered-hegemony;3138;;tinkeredhegemony;匠器主导;Tinkered Hegemony; +better-impaling;3139;;betterimpaling;更好的穿刺附魔;Better Impaling; +caliper;3140;;caliper;Caliper;; +botanical-machinery;3141;;botanicalmachinery;植物机械;Botanical Machinery; +demagnetize;3142;;demagnetize;消磁;Demagnetize; +;3143;;;格雷科技1;GregTech 1;GT1 +;3144;;;格雷科技2;GregTech 2;GT2 +;3145;;;格雷科技3;GregTech 3;GT3 +controlling-for-fabric;3146;;controlling;键位冲突显示(Fabric);Controlling For Fabric; +cinderscapes;3147;;cinderscapes;余烬奇景;Cinderscapes; +tfc-storage;3148;;tfcstorage;TFC Storage;; +tfctinkers;3149;;tfc_tinkers;群峦与匠魂;TFC Tinkers; +thick-font-fix;3150;;thick;Thick Font Fix;; +;3151;;;LEGENDS CORE;; +dynamic-trees-traverse;3152;;dttraverse;动态的树 - 遍历;Dynamic Trees - Traverse; +mcmt-multithreading;3153;1126026;jmt_mcmt;Minecraft Multi-Threading;;MCMT +bwm-core;3154;;;Better With Lib (BWM - Core);; +ice-ice-baby;3155;;ice_ice_baby;冰术师;Iceologer; +hardlib;3156;;;HardLib;; +bilingualname;3157;;bilingualname;物品名称双语显示;BilingualName; +chlorine;3158;1120009;chlorine;氯;Chlorine; +bedrock-miner;3160;789614;bedrockminer;基岩矿工;Bedrock Miner; +reasonable-realism;3161;997171;ReasonableRealism,HarderOres,ExpandedIndustry,HarderWildlife,HarderUnderground;合理的现实主义;Reasonable Realism; +passable-foliage;3162;;passablefoliage;叶间穿行 🌳;Passable Foliage 🌳; +betterend;3163;;betterend;更好的末地;BetterEnd; +armor-chroma;3164;772358;armorchroma;盔甲颜色显示;Armor Chroma; +interactions;3165;;interactions;自定义交互事件;Interactions; +lods-of-emone;3166;;lodsofemone;很多钱;Lods of Emone; +fabric-language-scala;3167;;;Fabric Language Scala;; +fluid-physics-forge;3168;;fluidphysics;流体物理;Fluid Physics; +zettai-grimoires;3169;;zettaigrimoires;Zettai Grimoires;; +runorama;3170;910751;runorama;全景截图背景;Runorama; +item-stages;3171;;itemstages;物品阶段;Item Stages; +rocksalt;3172;;rocksalt;Rocksalt;; +cazfps-the-dead-sea;3173;;cazfps_the_dead_sea;CAZfps The Dead Sea;; +pouch-of-unknown;3174;;pouchofunknown;未知之袋;Pouch of Unknown; +wizardry-fates;3175;;wizardryfates;Wizardry - Fates;; +the-mighty-architect;3176;;mightyarchitect;The Mighty Architect;;TMA +phosphophyllite;3177;;phosphophyllite;Phosphophyllite;; +biggerreactors;3178;;biggerreactors;Bigger Reactors;; +ftb-teams;3179;;ftbteams;FTB Teams;; +waveaway;3180;;;挥挥手;WaveAway; +no-advancements;3181;;;移除进度机制;No Advancements; +tfc_rocksplus;3182;;tfc_rocksplus;群峦岩石;TFC Rocksplus; +mars-mod-reborn;3183;;mars_mod_reborn;Mars Mod Reborn Mod;; +ftb-library-forge;3184;;ftbguilibrary,ftblibrary;FTB Library/FTB GUI Library;; +crossroads-mc;3185;;crossroads;交错道途;Crossroads; +config-checker;3186;;concheckrmd;整合包配置检测;Modpack Configuration Checker; +thaumic-speedup;3187;;thaumicspeedup;Thaumic Speedup;; +armor-curve;3188;;armorcurve;盔甲曲线修改;Armor Curve; +ambience-extras;3189;;ambience;环境音乐:附加;Ambience - Extras; +additions-mod;3190;;additions;Additions Mod;; +extracpus;3191;;extracpus;Extra CPUs;; +extra-crafting-storage;3192;;ExtraCraftingStorage;Extra Crafting Storage;; +underground-city-engineering;3194;943842;underground_city_engineering,uce;地下城市工程;Underground City Engineering;UCE +essentials;3195;;essentials;Essentials;; +soul-shards-respawn;3196;;soulshardsrespawn;Soul Shards Respawn;; +soul-shards-the-old-ways;3197;;soulshardstow;Soul Shards: The Old Ways;Soul Shards-TOW; +;3198;;mwaw;元素女巫;Elemental Witches; +the-flying-things;3199;;flying_things;The Flying Things;; +ftb-ranks;3200;;ftbranks;FTB Ranks;;FTBR +ftb-chunks-forge;3201;;ftbchunks;FTB Chunks;;FTBC +ftb-essentials;3202;;ftbessentials;FTB Essentials;;FTBE +silveroak-outpost;3203;;silveroakoutpost;银橡前哨;Silveroak Outpost; +pehkui;3204;;;Pehkui;; +jeitweaker;3205;;jeitweaker;JEITweaker;; +yungs-law;3206;;yungslaw;YUNG's Law;; +libx;3207;;libx;LibX;; +atmospheric;3208;;atmospheric;悠然一派;Atmospheric; +monospace-font;3209;;;等宽字体;Monospace font; +;3210;1137086;mbg;武德;wude;WuDe +mana-liquidizer;3211;;manaliquidizer;魔力液化器;Mana Liquidizer; +neapolitan;3212;;neapolitan;那不勒斯风味;Neapolitan; +clear-despawn-fabric;3213;;cleardespawn;Clear Despawn (Fabric);; +tinkers-modifier-modifier;3214;;tconmodmod;匠魂强化修改;Tinkers' Modifier Modifier;TMM +randomtweaks;3215;776232;;随意微调;Random Tweaks; +zettai-magic;3216;;zettaimagic;Zettai Magic;; +strawgolem-reborn;3217;;strawgolem;稻草傀儡重制版;Straw Golem Reborn; +rare-ice;3218;;rare-ice;Rare Ice;; +create-integration;3219;;createintegration;Create Integration;; +the-magic-mirror;3220;;magic_mirror;魔镜;The Magic Mirror; +;3221;795335;qemenu;QE菜单;Quick Easy Menu; +extra-boats;3222;;extraboats;额外船只;Extra Boats; +outvoted;3223;1144693;outvoted;落选生物;Outvoted; +;3224;;collision;粒子碰撞;Collision; +attribute;3225;;;属性修复 - Fabric版;Attribute Fix {FABRIC}; +packmodemenu;3226;;;PackMode菜单;PackModeMenu; +simple-gamemodes;3227;;;游戏模式短指令;Simple Gamemodes; +uniq;3228;;;流体统一/物品统一;UniQ; +;3229;;;Render Layer Transformer;; +harder-ores;3230;;harderores;更难的矿物处理;Harder Ores; +rune-craft;3231;;runecraft;Rune Craft;; +geckolib;3232;;geckolib3;GeckoLib;; +memory-cleaner-mod;3233;;memorycleaner;内存自动清理;Memory Cleaner Mod; +ore-flowers;3234;;oreflowers;矿物花卉;Ore Flowers; +aqua-creepers;3235;;;水下苦力怕;Aqua Creepers!; +extrastorage;3236;;extrastorage;ExtraStorage;; +thermal-locomotion;3237;;thermal_locomotion;Thermal Locomotion;; +external-tweaker;3238;;externaltweaker;External Tweaker;; +morebiomesxl;3239;;extrabiomesxl;MoreBiomesXL;; +notes;3240;;notes;笔记;Notes; +stare-till-they-grow;3241;;;盯到它们熟为止!;Stare Till They Grow!; +vm-computers;3242;;;虚拟电脑;VM Computers; +inventory-free;3243;;;无物品栏;Inventory-Free; +;3244;1140133;oreplus;矿物加强;OrePlus; +randompatches-integration;3245;;rpintegration;RandomPatches Integration;; +bubble-column-elevator-backport;3246;;113_water_mechanics;1.13水域机制;1.13 Water Mechanics; +basic-nether-ores;3247;;bno;Basic Nether Ores;; +nuclearcraft-reactor-builder;3248;;reactorbuilder;核电工艺反应堆建造机;NuclearCraft Reactor Builder;NCRB +pams-harvestcraft-2-food-core;3249;;pamhc2foodcore;潘马斯农场2 - 食物核心;Pam's HarvestCraft 2 - Food Core; +eki-lib;3250;;eki_lib;Eki Lib;; +;3251;;ImmibisCore;Immibis Core;; +nodami;3252;;nodami;伤害免疫机制移除;No Damage Immunity;NoDamI +astrological-sorcery;3253;;astrosorc;星占魔法;Astrological Sorcery; +efab-ct-bindings;3254;;efabctbindings;EFab CT Bindings;; +golden-hopper;3255;1109760;goldenhopper;金漏斗;Golden Hopper; +wizardry-golems;3256;;wizardrygolems;巫术傀儡;Wizardry Golems; +;3257;1142237;autoclick;连点器;AutoClick; +;3258;1142092;rpgtool;RPG时代;RPGEra; +devtech;3259;;devtech;GTCE-CrT 开发套件;Devtech; +;3260;1142244;customenchanttable;自定义附魔台;CustomEnchantTable; +;3261;1142287;mengsword2;神剑养成(二)-魔兵养成;MengSword2; +;3262;1142277;mengsword;神剑养成(一);MengSword1; +;3263;1142114;preemptiveedition;1.17“抢先版”;PreemptiveEdition17; +;3264;1142228;ff;快餐食物;FastFood; +jurassic-world-reborn-mod;3265;;rebornmod;侏罗纪世界重生;Jurassic World Reborn Mod;JWR +;3266;1034847;keystrokesmod;按键显示;Keystrokes; +cardboard;3267;;bukkitfabric;Cardboard/Bukkit4Fabric;; +enchanting-with-thaumcraft;3268;;enchantingwiththaumcraft;神秘附魔学;Enchanting With Thaumcraft; +crimson-revelations;3269;;crimsonrevelations;血腥启示;Crimson Revelation; +environmental-core;3270;;envirocore;Environmental Core;; +bigger-crafting-tables;3271;;biggercraftingtables;Bigger Crafting Tables;; +covers-everywhere;3272;;covers_everywhere;万用覆盖板;Covers Everywhere; +mo-villages;3273;814563;movillages;更多村庄;Mo' Villages; +inventoryneko;3274;;inventoryneko;InventoryNeko;; +loading-screens;3275;;loadingscreens;自定义加载画面;Loading Screens; +ofms-crisis-ridden;3276;;ofms_crisis_ridden,ofms_crisisridden;OFMS:危机重重;OFMS:crisis-ridden;OFCR +dupefix-project;3277;;;DupeFix Project;; +ore-control;3278;;orecontrol;矿物控制;Ore Control; +twitch-chat-integration;3279;;twitchintegration;Twitch信息显示;Twitch Chat Integration; +;3280;1143052;time;时间传说:重生;The Tale Of The Infinite Macrocosm's Universe And Time:Reborn;TIME +;3281;;binshufangkuaixiuanji;滨蜀方块;; +avaritia-lite;3282;;avaritia;无尽贪婪精简版;Avaritia Lite; +packmenu;3283;;packmenu;PackMenu;; +console-hud;3285;;consolehud;原主机版界面特性;Console Experience; +;3286;;such_metal,such_metal_;晶体;Crystal; +;3287;;legendarybeasts;Legendary Beasts;; +mite-reborn;3288;;fiveminsurvival;MITE:重生;MITE:Reborn; +detailed-technology;3289;1145905;dt;细节科技;Detailed Technology;DT +oreberries;3290;;oreberries;矿莓;Oreberries; +stone-block-utilities;3291;;stoneblockutilities;StoneBlock Utilities;; +mystical-creations;3292;;mysticalcreations;Mystical Creations;; +multiconnect;3293;;;multiconnect;; +art-of-alchemy-memoriam;3294;1017647;artofalchemy;炼金艺术:纪念版;Art of Alchemy: Memoriam; +blockphysics;3295;;BlockPhysics;方块物理;BlockPhysics-1.7.10; +stoneblock-dimensions;3296;;stoneblockdimensions;StoneBlock Dimensions;; +charging-gadgets;3297;;charginggadgets;建筑小帮手充电模组;Charging Gadgets; +integration-foregoing;3298;937389;integrationforegoing;工业先锋集成附属;Integration Foregoing; +enderfuge;3299;;enderfuge;末影熔炉;Enderfuge; +calm-down-zombie-guy;3300;;calmdownzombieguy;Calm Down Zombie Guy;; +universal-mod-core;3301;;;Universal Mod Core;; +suspended-server;3302;;suspendedserver;挂起服务器;Suspended Server; +starlight;3303;;starlight;星光;Starlight; +research-table;3304;871188;researchtable;研究台 🔬;Research Table 🔬; +shoulder-surfing-reloaded;3305;985499;shouldersurfing;越肩视角重制;Shoulder Surfing Reloaded; +aqua-acrobatics;3306;;aquaacrobatics;水游技艺;Aqua Acrobatics; +silents-mechanisms;3307;;silents_mechanisms;寂静机械;Silent Mechanisms;SM +project-potman;3308;;proj_pot;背锅人计划;ProjectPotman; +nbt-crafting;3309;;nbtcrafting;数据包NBT合并;Nbt Crafting; +diregoo;3310;;diregoo;DireGoo;; +ogdragon;3311;;ogdragon;OG龙+;OGDragon+; +sevtweaks;3312;;sevtweaks;SevTweaks;; +journeymapstages;3313;;jmapstages;旅行地图阶段控制;JourneyMapStages; +textile-backup;3314;;;Textile备份;Textile Backup; +goopers;3315;;goopers;Goopers;; +mob-drops;3316;;;自定义生物战利品;Mob Drops Your Way; +;3317;;gtcefe;GTCE/BC能源拓展;Gregic Power; +alexs-mobs;3318;1185939;alexsmobs;Alex的生物;Alex's Mobs; +all-stackable;3319;;allstackable;可堆叠物品自定义;All Stackable; +thermal-mj;3320;;thermal_mj;热力MJ支持;Thermal MJ; +ctd-core;3321;;;CTD Core;; +time-speed-mod;3322;;B3M;Minecraft地球自转/真实昼夜循环;Вращение Земли Майнкрафтская (Accurate day/night-cycles Mod);ВЗМ +;3323;1147849;devops;冒险岛;Maple Story;MS +mineral-tracker;3324;;mineraltracker;Mineral Tracker;; +carpet-extra;3325;;;Carpet拓展;carpet-extra; +;3326;898591;ctrl;热加载合成表;CraftTweakerReload;CTRL +viafabric;3327;;viafabric;ViaFabric;; +double-slabs;3328;;doubleslabs;双重台阶;Double Slabs; +tools-and-armor-bop;3329;;toolsandarmorbop;超多生物群系:旧工具和装甲;Tools And Armor - BOP; +centralized-materials;3330;;centralizedmaterials;集中材料;Centralized Materials; +server-sided-chunk-loader;3331;;server_side_chunk_loader;服务器端区块加载器;Server Sided Chunk Loader; +fluid-cows;3332;;fluidcows;流体牛;Fluid cows; +shulkerboxviewer;3333;;shulkerboxviewer;ShulkerBoxViewer;; +gameinfo;3334;;gameinfo;游戏信息;GameInfo; +arcaea;3335;;mukaimods;Arcaea韵律源点;Arcaea; +advanced-tfc-tech;3336;;att;进阶群峦科技;Advanced TFC Tech;ATT +vanilla-enhanced;3337;;;原版增强;Vanilla Enhanced; +satisforestry;3338;;Satisforestry;Satisforestry;;SF +asmc;3339;;asmc;ASMC;; +simple-generators;3340;;simplegenerators;简易发电机;Simple Generators; +tfc-bonsai;3341;;;群峦盆栽;TFC Bonsai; +tfc-drying-rack;3342;;tfc_drying_rack;群峦晾干架;TFC Drying Rack; +;3343;1156129;mcbbswiki;MCBBS Wiki 模组;MCBBS Wiki Mod;MBW +lumen;3344;;lumen;流明;Lumen 🔥; +openblocks-elevator;3345;;elevatorid;开放式电梯;OpenBlocks Elevator; +crafttweaker-integration;3346;;ctintegration;CrT集成;CraftTweaker Integration;CTIG +spiders-2-0;3348;;;蜘蛛行为增强;Spiders 2.0; +hammer-metals;3350;;hammermetals;锤子材料;Hammer Metals; +bunch-of-biomes;3351;;bunchofbiomes;生物群系扩充;Bunch Of Biomes!; +;3352;;sword_shura,swordshura;修罗之剑;Sword:Shura; +better-slimes;3353;890364;betterslimes;更多史莱姆;Better Slimes; +windowlogging;3354;;windowlogging;玻璃板贴合;Windowlogging; +the-time-stop-mod;3355;;vm;时间静止;The Time Stop Mod; +;3356;1148699;coals_crafting,coals_crafting_lite;煤炭工艺;Coals Crafting;CCT +vanilla-hammers;3357;;vanillahammers;原版材质锤;Vanilla Hammers; +imblocker;3358;935619;imblocker;输入法冲突修复;IMBlocker; +hardcore-map-reset;3359;;;HardCore Map Reset;; +tfc-aged-drinks;3360;;aged_drinks;群峦陈酿;TFC Aged Drinks; +buildcraft-rf;3361;;;BuildCraft RF;; +youtubers-lucky-blocks;3362;;ytluckyblocks;Youtuber幸运方块;Youtuber's Lucky Blocks; +wandering-trapper;3363;;wandering_trapper;流浪猎人;Wandering Trapper; +chocolate-fix;3364;;chocolate;Chocolate Fix;; +thaumcraft-4-scrolling;3365;;tc4tweak,tcscrolling;Thaumcraft 4 Tweaks;; +orderly;3366;996563;orderly;Orderly;; +water-control-extreme;3367;;watercontrolextreme;Water Control Extreme;;WCE +variant16x;3368;;variant16x;Variant16x;; +endremastered;3369;;endrem;末地:创世;End Remastered;ER +;3370;838798;spedosketeleportationcommands;传送指令;Teleportation Commands; +unique-crops;3371;910420;uniquecrops;独特作物;Unique Crops;UC +yungs-api;3372;;yungsapi;YUNG's API;; +dawn;3373;;dawn;Dawn API;; +assembly-line-machines;3374;;assemblylinemachines;装配线;Assembly Line Machines; +netherending-ores;3375;;netherendingores;Netherending Ores;; +flex-fov;3376;;flexfov;扭曲视野;Flex FOV; +hooked;3377;;hooked;抓钩;Hooked; +createtweaker;3378;;createtweaker;CreateTweaker;; +iTorch;3379;;itorch;iTorch;; +;3380;;quantummeteorology;量子气象学;QuantumMeteorology;QM +gullivern;3381;;gulliver;Gullivern;; +nbt-manipulator;3382;;;NBT Manipulator;; +netherending-ores-configs;3383;;;Netherending Ores - Configs;; +;3384;;undiedtale;不死传说;undiedtale;UDT +sulfur-and-potassium-make-more-gunpowder;3385;;sulfurpotassiummod;Sulfur And Potassium - More Gunpowder;; +statues;3386;1119703;statues;雕像;Statues; +advanced-mining-dimension;3387;1157631;mining_dimension;先进的采矿维度;Advanced Mining Dimension; +time-travel-mod;3388;;timetravelmod;时间旅行;Time Travel Mod; +backslotaddon;3389;;backslotaddon;背用武器拓展;BackSlotAddon; +optifabric-1-8-9;3390;;optifabric;OptiLegacy;; +;3391;;fabric;Legacy-Fabric;; +gt6-ore-helper;3392;;gt6orehelper;GT6矿石助手;GT6 Ore Helper; +applied-integrations;3393;;appliedintegrations;应用集成;Applied Integrations;AI +;3394;;noitemrest;不剩魔法;NoItemRest;NIR +inventory-hud-forge;3395;1116793;InventoryHUD;物品栏HUD+;Inventory HUD+; +prehistoric-flora;3396;;lepidodendron;Prehistoric Flora;; +langsplit;3397;;langsplit;LangSplit;; +legacy-fabric-api;3398;;fabric;Legacy Fabric-Api;; +krypton;3399;;krypton;氪;Krypton; +mana-gear;3400;;;Mana Gear;; +not-enough-enchantments;3401;;nee;Not Enough Enchantments;;NEE +bon-appetit-forge;3402;;bonappetit;祝您好胃口;Bon Appetit; +;3403;1150397;gugu-utils;咕咕工具;GuGu Utils; +scuba-gear;3404;;scuba_gear;潜水装备;Scuba Gear; +avatar-mod-2-out-of-the-iceberg;3405;;avatarmod;降世神通:突破冰山;Avatar Mod 2: Out of the Iceberg; +;3406;1192876;hydrogen;氢;Hydrogen; +lazydfu;3407;;lazydfu;LazyDFU;; +;3408;;tic-tacs;井字棋;tic-tacs; +ridable-ender-pearls;3409;1126706;;可骑乘末影珍珠;Ridable Ender Pearls; +gildedarmor;3410;1126586;gildedarmor;镀金盔甲;GildedArmor; +deadly-book;3411;;deadlybook;致命书本;Deadly Book; +speedy-hoppers;3412;;speedyhoppers;极速漏斗;Speedy Hoppers; +indium;3413;;indium;铟;Indium; +;3414;;cadmium;镉;Cadmium; +go-fish;3416;;;Go Fish;; +more-player-models;3417;;moreplayermodels;更多玩家模型;More Player Models;MPM +loot-overhaul;3418;;;Loot Overhaul;; +miners-helmet;3419;;mining_helmet;矿工头盔;Miner's Helmet; +lightweight-blood-mechanics;3420;;lbm;Lightweight Blood Mechanics;;LBM +kbackup-fabric;3421;;;KBackup-Fabric;; +smooth-boot;3422;;smoothboot;流畅加载;Smooth Boot; +;3423;;;Minecraft Thread Pool Agent;; +netherite-plus-mod;3424;;netherite_plus;下界合金拓展;Netherite Plus Mod; +chunkpregenerator;3425;1015490;chunkpregen;区块预生成器;Chunk-Pregenerator; +antighost;3426;;antighost;方块同步修复;AntiGhost; +;;;abyssaltweaker;深渊修改器;AbyssalTweaker; +backslot;3428;;backslot;背用武器;BackSlot; +minecraftcapes-mod;3429;;;MinecraftCapes Mod;; +spartan-weaponry-arcana;3431;;spartanweaponryarcana;斯巴达奥法;SpartanWeaponryArcana;SWA +;;;xzhlpe;原初修真属性重置;XiuZhenHelper; +greek-fantasy;3433;1143037;greekfantasy;希腊幻想;Greek Fantasy; +architectury-forge;3434;;architectury;Architectury API;; +;3435;825592;miac;MI反作弊;MIAntiCheat;MIAC +fantastic-beasts-and-how-to-eat-them-butchercraft;3436;;butchercraft;Butchercraft/Fantastic Beasts and How to Eat Them;; +createaddition;3437;;createaddition;Create Crafts & Additions;;CC&A +smithee;3438;;smithee;Smithee;; +dragon-egg-replicator;3439;;dd;龙蛋复制器;Dragon Egg Replicator; +assassins-creed-blocklegend;3440;1168306;acbl;刺客信条:方块传奇;Assassin's Creed Blocklegend;ACBL +elemental-ingots-ei;3441;;elemental_ingots;元素锭;Elemental Ingots;EI +solargeneration;3442;;solargeneration;太阳能发电机;Solar Generation; +enchant-with-mob;3443;;enchantwithmob;Enchant With Mob;; +;3444;308340;gibby_pun;The Ultimate Pun Mod!;; +worldstatecheckpoints;3445;;WorldStateCheckpoints;WorldStateCheckpoints;; +dungeons-plus;3446;;dungeons_plus;Dungeons Plus;; +liquid-enchanting;3447;844632;liquidenchanting;药水附魔;Liquid Enchanting; +shutup-experimental-settings;3448;;shutupexperimentalsettings;禁用实验性设置警告;Shutup Experimental Settings!; +datafixerslayer;3449;;datafixerslayer;DataFixerSlayer;; +hexcraft;3450;;HexCraft,hexcraft;HEXCraft;; +police-mod;3451;;policemod;警察;Police Mod; +enhanced-celestials;3452;;;月亮事件;Enhanced Celestials; +resourceful-bees;3453;;resourcefulbees;缤纷蜜蜂;Resourceful Bees; +held-item-info;3454;977835;held-item-info;手持物品信息;Held Item Info; +cleancut;3455;;cleancut;干净利落;CleanCut; +plus-tweaks;3456;;plustweaks;Plus Tweaks;; +global-gamerules;3457;;globalgamerules;全局游戏规则;Global GameRules; +;3458;476294;mineshot;高清截图;Mineshot; +save-my-stronghold-fabric;3459;;savemystronghold;Save My Stronghold!;; +physics-mod;3460;;physicsmod;真实物理;Physics mod; +bluemap;3461;;;Bluemap;; +dregora;3462;;dregora;Dregora;; +k4lib;3463;;k4lib;K4Lib;; +deadly-end-phantoms;3464;;deadlyendphantoms;Deadly End Phantoms;; +spice-of-life-potato-edition;3465;;solpotato;生活调味料:马铃薯版;Spice of Life: Potato Edition; +easiervillagertrading;3466;;easiervillagertrading;简单村民交易;EasierVillagerTrading; +wwta;3467;;wwta;When Was That Again;; +ars-nouveau;3468;;ars_nouveau;新生魔艺;Ars Nouveau; +eidolon;3469;;eidolon;幻梦;Eidolon; +rats-ratlantis;3470;;ratlantis;老鼠:鼠西洲;Rats: Ratlantis; +wthit;3471;1200908;wthit;What The Hell Is That;;WTHIT +modern-industrialization;3472;;modern_industrialization;现代工业化;Modern Industrialization;MI +chunk-pregenerator-fabric;3473;1167231;chunkpregen;区块预生成器(Fabric);Fabric Chunk Pregenerator; +jumploader;3474;;jumploader;Jumploader;; +unloader;3475;;unloader;Unloader;; +better-animal-models;3476;;betteranimals;更真实的动物;Better animal models; +;3477;;minelp;我的小马驹:友谊就是合成;Mine Little Pony: Friendship is Crafting;MLP +druidcraft;3479;1162793;druidcraft;德鲁伊工艺;Druidcraft; +berry-good;3480;;berry_good;Berry Good;; +savage-and-ravage;3481;;savageandravage;残暴与掠夺;Savage & Ravage; +jade;3482;;jade;玉 🔍;Jade 🔍; +somnia;3483;;somnia;梦醒时分;Somnia Awoken; +industrial-reborn;3484;;indreb;Industrial Reborn;; +mo-structures;3485;;mostructures;更多自然生成结构;Mo' Structures; +wallpapercraft-a-fresh-roll;3486;;wallpapercraft;墙纸创造;Wallpapercraft - A Fresh Roll; +clear-despawn;3487;;cleardespawn;Clear Despawn (Forge);; +;3488;1167509;moddd;Overlord in Minecraft;;OiM +;3489;;bedrockworkshop;基岩工坊;Bedrock Workshop;BW +unionlib;3490;;unionlib;UnionLib;; +botany-trees;3491;;botanytrees;Botany Trees;; +better-third-person;3492;;betterthirdperson;Better Third Person;; +survive;3493;;survive;生存要素;Survive; +wallpapercraft-a-fresh-roll-stairs;3494;;wallpapercraftstairs;墙纸创造:楼梯;Wallpapercraft - A Fresh Roll (Stairs!); +wallpapercraft-a-fresh-roll-slabs;3495;;wallpapercraftslabs;墙纸创造:台阶;Wallpapercraft - A Fresh Roll (Slabs!); +wallpapercraft-a-fresh-roll-walls;3496;;wallpapercraftwalls;墙纸创造:围墙;Wallpapercraft - A Fresh Roll (Walls!); +compact-crafting;3497;;compactcrafting;Compact Crafting;; +assembly-lines;3498;;assemblyline;装配线;Assembly Lines; +botany-pots;3499;;botanypots;植物盆栽;Botany Pots; +callable-horses;3500;;;Callable Horses;; +;3501;;;Kibble Patcher;; +ultimate-solar-panels;3502;;ultimatesolarpanels;Ultimate Solar Panels;; +slight-gui-modifications;3503;1148951;slight-gui-modifications;界面微调;Slight Gui Modifications; +elemental-craft;3504;;elementalcraft;元素工艺;Elemental Craft; +just-another-rotten-flesh-to-leather-mod;3505;;jrftl;腐肉换皮革;Just Another Rotten Flesh to Leather Mod;JRFTL +spatial-harvesters-forge;3506;;spatialharvesters;Spatial Harvesters;; +emotecraft;3507;;emotecraft;表情工艺;Emotecraft; +pattysmorestuff;3508;;pattysmorestuff;PattysMoreStuff;;PMS +hats;3509;;hats;帽子;Hats; +smoother-bedrock;3510;;smootherbedrock;平滑基岩层;Smoother Bedrock; +;3511;1188136;c2me;C^2M 引擎;C^2M-Engine;C2ME +datapack-anvil;3512;;;DataPack Anvil;; +nuclear-science;3513;;nuclearscience;核科学;Nuclear Science; +glaretorch;3514;;glaretorch;强光火把;Glare Torch; +mrcrayfishs-jumping-castle-mod;3515;;cjcm;MrCrayfish的充气城堡;MrCrayfish's Jumping Castle; +exposer;3516;;exposer;Exposer;; +to-the-bat-poles;3517;;adpoles;"To the Bat Poles!";; +cc-restitched;3518;;;CC: Restitched;; +wearables;3519;;wearables;可穿戴设备;Wearables; +;3520;1172580;advancedfurnace;先进熔炉;Advanced Furnace; +;3521;1124743;arkitems;明日方舟物品;ArkItems; +better-weather;3522;;betterweather;更好的天气;Better Weather;BW +ultimate-car-mod;3523;938477;car;终极汽车;Ultimate Car Mod; +craft-time;3524;1159911;timecraft;耗时合成;Craft Takes Time;CTT +betterf3;3525;;;更好的F3;Better F3; +;3526;['1168625'];ArknightsBlade,arknightsblade;方舟拔刀;ArknightsBlade;AB +the-abyss-chapter-ii;3527;;theabyss;深渊:第二章;The Abyss: Chapter II; +mapper-base;3528;;mapperbase;Mapper Base;; +bedrockify;3529;;bedrockify;BedrockIfy;; +;3530;;minecraft_tag;Minecraft-凝胶测试轨道;Minecraft Tag-Gel test track;MT +rftools-power;3531;;rftoolspower;RF工具:能量;RFTools Power; +pipez;3532;;pipez;Pipez;; +coins-je;3533;;coins;Coins JE;; +;3534;;tlm;最后的时刻;The Last Mod;TL +beenfo;3535;;beenfo;Beenfo;; +chest-building-blocks;3536;;chestblocks;Chest Building Blocks;; +zycraft;3537;;zycraft;ZYCraft;; +quitconfirm;3538;1116784;quitconfirm;退出前确认;QuitConfirm; +ruined-equipment;3539;;ruined_equipment;Ruined Equipment;; +clickthrough;3540;;clickthrough;ClickThrough;; +dynamic-sound-filters;3541;;dynamicsoundfilters;动态音效过滤;Dynamic Sound Filters; +binniepatcher;3542;;BinniePatcher;BinniePatcher;; +subterranean-wilderness;3543;;subwild;Subterranean Wilderness;; +;;;dynamic;科能工程1;Technical Engineering;TE +construction-wand;3545;;constructionwand;建筑之杖;Construction Wand; +squeedometer;3546;;Squeedometer,squeedometer;Squeedometer;; +forgery;3547;;fabrication;Forgery;; +fabrication;3548;;fabrication;Fabrication;; +mcdj;3549;;mcdj;MCDJ;; +boost-boots;3550;;boostboots;Boost Boots;; +better-sodium-video-settings-button;3551;;bettersodiumvideosettingsbutton;更好的钠视频设置按钮;Better Sodium Video Settings Button;BSVSB +;3552;;difficult_minecraft;困难的Minecraft;Difficult Minecraft; +artisan-worktables-1-16;3553;;artisanworktables;工匠之作2 / 工匠工作台2;Artisan Worktables 2 / Artisan Worktables 1.16;AW2 +thermal-solars;3554;;thermalsolars;Thermal Solars;; +supplementaries;3555;;supplementaries;Supplementaries;; +more-fuels-mod;3556;;morefuelsmod;More Fuels Mod;;MFM +;3557;665738;flammpfeil.slashblade.exsa;更多超强SA;SlashBlade-ExSA;ExSA +pointless-tech-collective;3558;;pointless_tech_collective;Pointless Tech Collective;;PTC +revampedwolf;3559;;revampedwolf;RevampedWolf;; +bedrock-b-gone;3560;;betterbedrock;Bedrock B Gone;; +;3561;;last_minute;最后时刻;Lastminute;LMNT +elemental-creepers;3562;;elementalcreepers;元素爬行者;Больше Криперов;БКР +gymcraft;3563;;gymcraft;GymCraft;; +infernal-expansion;3564;;infernalexp;Infernal Expansion;; +;3565;;ng;更多装备与工具;;MEaT +;3566;1176542;Manymonsters;独立:更多妖怪;Manymonsters;myms +configurable-mob-potion-effects;3567;;configurablemobpotioneffects;怪物药水效果自定义;Configurable Mob Potion Effects;CMPE +sapience;3568;;;Sapience;; +netherite-nuggets-fabric;3569;;netherite_nugget;下界合金粒;Netherite Nuggets; +eroding-stone-entities;3570;;erodingstoneentities;Eroding Stone Entities;; +direbats-forge;3571;;direbats;Direbats;; +advanced-electric-tools;3572;;advancedelectrictools;高级电动工具;Advanced Electric Tools; +;3573;['1202132'];slashblade.housamo;犬仕双刃;Slashblade-Housamo; +backpacker;3574;;backpacker;Backpacker;; +;3575;;improvedwolves;改进的狼;Improved Wolves; +ynet;3576;;ynet;YNet;; +simple-drawers;3577;;simpledrawers;简单的抽屉;Simple Drawers; +charmonium;3578;;charmonium;Charmonium;; +xnicex;3579;;nice;NICE;; +krate;3580;;krate;Krate;; +chickensshed;3581;;chickensshed;ChickensShed;; +chickenshed;3582;;ChickenShed;ChickenShed;; +expanded-storage-fabric;3583;;expandedstorage;扩展存储;Expanded Storage; +project-mmo;3584;;pmmo;Project MMO;;PMMO +abnormals-delight;3585;;abnormals_delight;Abnormals Delight;; +jojos-bizarre-survival;3586;;jojomod;JoJo's Bizarre Survival;; +;3587;;PlayerContainerFix;背包合成修复;Gambiarra; +somnus;3588;;somnus;Somnus API;; +lost-trinkets;3589;;losttrinkets;Lost Trinkets;; +lookingglass;3590;;LookingGlass;LookingGlass;; +environmental;3591;;environmental;自然环境;Environmental; +;3592;;slashblade.qian;魔刀千刃;Qian The mighty Blade; +golden-airport-pack-immersive-vehicles-content;3593;;;Golden Airport Pack;; +hole-filler-mod;3595;;hole_filler_mod;洞口填充器;Hole Filler; +;3596;;gdzb;更多装备;Moreequipment;mqt +simply-tea;3597;699389;simplytea;简单的茶!;Simply Tea!;ST +buttermilk;3598;;buttermilk;Buttermilk;; +diet;3599;;diet;饮食;Diet; +brazilian-fields;3600;;brazilian_fields;巴西风情;Brazilian Fields; +ae2-extras;3601;;ae2extras;AE2附加;AE2 Extras; +animalium;3602;;animalium;动物;Animalium; +mob-origins;3603;;moborigins;生物起源;Mob Origins; +better-default-biomes;3604;;betterdefaultbiomes;更好的默认生物群系;Better Default Biomes; +kaimyentity;3605;1170874;kaimyentity;KAI我的实体;KAIMyEntity; +tablechair;3606;;tablechair;桌椅;TableChair; +when-dungeons-arise;3607;;dungeons_arise;地牢浮现之时;When Dungeons Arise; +animal-feeding-trough;3608;;animal_feeding_trough;动物喂养槽;Animal Feeding Trough; +wiki-zoomer;3609;;wikizoomer;Wiki Zoomer;; +personality;3610;;personality;Personality;; +allurement;3611;;allurement;Allurement;; +dwarf-miner-totem;3612;;dwarf_miner;矮人矿工;Dwarf Miner Totem; +yungs-better-portals;3613;;betterportals;YUNG的传送门机制重构;YUNG's Better Portals; +german-road-signs-mod;3614;;schildermod;德国交通标志;German Road Signs Mod; +iguana-in-a-blanket;3615;;iguana-blanket;真实调整;Iguana in a Blanket; +anthill-inside;3616;;anthillinside;蚂蚁物流;Anthill Inside; +nei-integration;3617;;neiintegration;NEI Integration;; +uncrafting-grinder;3618;;uncraftingtable;分解磨床;Uncrafting Grinder; +emendatus-enigmatica;3619;;emendatusenigmatica;Emendatus Enigmatica;;EE +;3620;;slashblade.kitsunekamuya;拔刀剑附属:御神刀「神狐」;SlashBlade-KitsuneKamuya; +;3621;;slashblade.shinkuofuda;拔刀剑附属:炼狱刀「真红」;Slashblade-ShinkuOfuda; +;3622;;ryuichimonji;龙一文字;RyuIchimonji; +jousting;3623;;jousting;马术;Jousting; +bamboo-blocks;3624;;bamboo_blocks;Bamboo Blocks;; +scape-and-run-parasites;3625;;srparasites;逃逸:寄生虫;Scape and Run: Parasites;SRP +just-enough-drags;3626;1179845;justenoughdrags;更多JEI拖拽;Just Enough Drags;JEDrag +exnihilo-automation;3627;;exnihiloauto;无中生有:自动化;Exnihilo: Automation; +world-handler-command-gui;3628;;worldhandler;世界管理器:图形交互;World Handler - Command GUI; +entityculling;3629;;entityculling;实体渲染机制优化;Entity Culling Fabric/Forge; +;3630;557276;halocraft;光环;HaloCraft mod; +tea-kettle;3631;;tea_kettle;茶壶;Tea Kettle; +enhanced-block-entities;3632;;enhancedblockentities;方块实体优化;Enhanced Block Entities;EBE +gun-customization-infinity;3633;;guncus;Gun Customization:Infinity;; +dungeons-gear;3634;;dungeons_gear;地下城装备;Dungeons Gear; +integrated-nbt;3635;;integratednbt;Integrated NBT;; +pillagers-plus;3636;;pillagertrust;Pillagers Plus;; +;3637;1180817;PotionMosaic,potionmosaic_;药水镶嵌宝石;PotionMosaic; +;3638;1180973;PotionEnchanting;趣味药水附魔;PotionEnchanting; +;3639;1181930;StubbornMonster;怪物的倔强;StubbornMonster; +abundance;3640;;abundance;Abundance;; +;3641;1177375;workbenchfc;开局三子;WorkbenchFC;WFC +;3642;1180743;ultracraft;奥特曼工艺;UltraCraft; +just-enough-calculation;3643;561503;jecalculation;Just Enough Calculation;;JECa +mythicbotany;3644;1190745;mythicbotany;神话植物学;MythicBotany; +improved-mobs;3645;;improvedmobs;怪物增强;Improved Mobs; +limitless;3646;1118079;;无上限附魔;Limitless; +vpn-blocker;3647;;vpnblocker;禁用VPN;VPN Blocker; +premium-wood;3648;;premium_wood;Premium Wood;; +tenshilib;3649;;;Tenshilib;; +randomportals;3650;;randomportals;随意传送门;RandomPortals; +configured;3651;;configured;配置界面;Configured; +;3652;1049760;siwangyinyve;专业团队music;siwangyinyve; +jellyfishing;3653;;jellyfishing;抓水母;Jellyfishing; +accurate-block-placement;3654;;accurateblockplacement;Accurate Block Placement;; +pro-placer;3655;;proplacer;放置专家;Pro Placer;PPlacer +farmers-delight-compats;3656;;farmersdelightintegrations;Farmer's Delight Compats;; +farmers-tea;3657;;;农夫的茶;Farmer's Tea; +farmers-delight-integration;3658;;farmersdelightintegration;Farmer's Delight Integration;; +magical-psi-redux;3659;;magipsi;Magical Psi: Redux;; +anvil-fix;3660;;anvil_fix;铁砧修复;Anvil Fix; +no-increasing-repair-cost;3661;;noincreasingrepaircost;No Increasing Repair Cost;; +wool-temples;3662;;wooltemples;羊毛神殿;Wool Temples; +exp-bottling;3663;;exp_bottling;经验装瓶;EXP Bottling; +buildersaddition;3664;;buildersaddition;Builders Crafts & Additions;; +gt-remastered;3665;;gtr;格雷科技重制版;GT: Remastered;GTR +tips;3666;;tips;提示;Tips; +Interactio;3667;;interactio;Interactio;; +advancement-book;3668;;advancementbook;进度之书;Advancement Book; +drawers-tooltip;3669;;drawerstooltip;抽屉提示;Drawers Tooltip; +aether;3670;;;天境:重生;The Aether Reborn; +;3671;;extended;拓展;Extended;EX +;3672;1120123;gregfood;格雷的食物;GregFood;GF +more-jellyfish;3673;;more_jellyfish;更多水母;More Jellyfish; +easy-ladders;3674;;;Easy Ladders;; +beta-dannys-expansion;3675;;dannys_expansion;Danny's Expansion;; +inventory-tweaks-renewed;3676;;invtweaks;Inventory Tweaks Renewed;; +;3677;;;Advanced Runtime resource packs;;ARRP +tougher-glass-forge;3678;;tougherglass;Tougher Glass;; +differentiate;3679;;;Differentiate;; +cookie-core-fabric;3680;;;Cookie Core;; +image-world-generator;3681;;;Image World Generator;; +inductive-logistics;3682;;indlog;集成物流;Inductive Logistics; +;3683;;crystal_two;晶体2;; +automatic-path;3684;;;Automatic Path;; +;3685;1183634;useful_coals_2;实用煤炭2;Useful Coals 2;UfC2 +morevanillalib;3686;;morevanillalib;MoreVanillaLib;; +vanilla-excavators;3687;;vanillaexcavators;Vanilla Excavators;; +;3688;;dynagear;DynaGear;; +morevanillatools;3689;;morevanillatools;更多原版工具;MoreVanillaTools;MVT +colorful-health-bar;3690;;colorfulhealthbar;Colorful Health bar;; +tipline;3691;;tipline;TipLine;; +ultimate-plane-mod;3692;;plane;终极飞机;Ultimate Plane Mod; +simple-voice-chat;3693;1232171;voicechat;简单的语音聊天;Simple Voice Chat;SVC +not-enough-milk;3694;;notenoughmilk;Not Enough Milk;; +ewewukeks-musket-mod;3695;;musketmod;ewewukek的火枪模组;ewewukek's Musket mod; +irisshaders;3697;1161271;iris;Iris Shaders;; +;3698;;dimthread;世界多线程化;DimensionalThreading; +chambers;3699;;chambers;处理仓;Chambers; +;3700;;nokiamod;诺基亚模组;Nokia Mod; +sodium-extra;3701;;sodium-extra;钠 · 扩展;Sodium Extra; +grind-enchantments;3702;;grindenchantments;砂轮增强;Grind Enchantments; +voice-chat;3703;;voicechat;语音聊天;Voice Chat; +xnet-gases;3705;;xnetgases;XNet Gases;; +filing-cabinets-refurbished;3706;;filcabref;Filing Cabinets Refurbished;; +;;;magic_maid;魔法女仆教堂遗迹;Magic Maid The Church Ruins; +dropz;3708;;;Dropz;; +figura;3709;;figura;Figura;; +;3710;1186201;phstorage;容积储存;Capacity Storage; +autopilot;3711;;autopilot;Autopilot;; +applied-energistics-2-wireless-terminals;3712;;ae2wtlib;AE2无线终端;Applied Energistics 2 Wireless Terminals;AE2WT +appliedenergisticstweaker;3713;;appliedenergisticstweaker;AppliedEnergisticsTweaker;; +sleeping-bags;3714;;sleeping_bags;睡袋;Sleeping Bags; +mass-inscriber;3715;;mass-inscriber;Mass Inscriber;; +;3716;;secureexplosion;爆炸保护;SecureExplosion; +random-title;3717;980991;randomtitle;随机标题;Random Title; +astikorcarts;3718;;astikorcarts;AstikorCarts;; +invsync-fabric;3719;;invsync;背包同步;InvSync; +jea;3720;;jea;Just Enough Advancements;;JEA +et-futurum-requiem;3721;;etfuturum;Et Futurum Requiem;; +better-op;3722;;better-op;更好的OP;Better Op; +fastworkbench-minus-replacement;3723;;;FastWorkbench Minus Replacement;; +crimson-compass;3724;;crimsoncompass;绯红指南针;Crimson Compass; +tinkers-construct;3725;661201;tconstruct;匠魂3;Tinkers' Construct 3;TiC3 +ryoramas-terraria-mod;3726;;trewrite;TerrariaMod;; +steves-workshop;3727;;StevesWorkshop;Steve's Workshop;; +upgraded-ender-chests;3728;;upgradedechests;高级末影箱;Upgraded Ender Chests;UEC +ydm-ygo-dueling-mod-ii;3729;;ydm;YGO Dueling Mod II;;YDM +versioner;3730;;versioner;整合包版本工具;Versioner; +;3731;;menshi;饭;Meshi; +engineers-workshop-reborn;3732;;engineersworkshop;Engineers Workshop Reborn;; +;3733;;more_coals;煤炭工艺-更多煤炭;More Coals;CCMC +;3734;;;沉浸传送门服务端插件;Immersive Cursedness; +;;;;刺客信条:方块传奇API;Assassin's Creed Blocklegend API;ACBLAPI +crimson-xp-charm;3736;;crimsonxp;经验护符;Crimson XP; +locatebiome;3737;;locatebiome;LocateBiome;; +enderman-evolution;3738;;endermanevo;Enderman Evolution;; +sophisticated-backpacks;3739;;sophisticatedbackpacks;精妙背包;Sophisticated Backpacks; +age-of-exile;3740;;;Age of Exile;; +whoosh;3741;;whoosh;Whoosh;; +gregtech-intergalactical;3742;;gti;泛银河系格雷科技;GregTech Intergalactical;GTI +catalogue;3743;;catalogue;模组目录;Catalogue; +libblockattributes;3744;;libblockattributes;Lib Block Attributes;; +balance-of-exile;3745;;;Balance of Exile;; +;3746;;;Dungeons of Exile;; +more-food-addon-bedrock;3747;;;More Food Addon;; +pe-superheroes-mod;3748;;;SuperHeroes Mod;; +necromancy;3749;;necromancy;Necromancy;; +library-of-exile;3750;;;Library of Exile;; +;3751;;;Mite-打破一切;; +variegated;3752;;variegated;Variegated;; +chest-cavity;3753;;chestcavity;Chest Cavity;; +extended-note-block;3754;;noteblockne;音符盒扩展;Extended Noteblocks;NNE +hbms-nuclear-tech-mod-reloaded;3755;;hbm;HBM的核科技重制版;Hbm's Nuclear Tech Mod Reloaded; +loading-timer;3756;;lt;加载时长显示;Loading Timer; +ocrocketry;3757;;ocrocketry;OCRocketry;; +chime-fabric;3758;;chime;Chime;; +witherite;3759;;witherite;凋灵合金;Witherite; +mermod-fabric;3760;;mermod;Mermod;; +astromine-core;3761;;astromine;天体矿工:核心;Astromine: Core; +dungeondq;3762;;dungeondq;DungeonDQ;; +dynamic-trees-integrated-dynamics;3763;;dynamictreesintegrateddynamics;动态的树 - 集成动力支持;Dynamic Trees - Integrated Dynamics; +skyblock-builder;3764;;skyblockbuilder;空岛建立者;Skyblock Builder; +antiportals;3765;;antiportals;AntiPortals;; +trash-cans;3766;;trashcans;垃圾桶;Trash Cans; +mattdahepic-core;3767;;mdecore;MattDahEpic Core;;MDECore +mob-farm-helpers-forge;3768;;mobfarmutilities;刷怪塔小帮手;Mob Farm Helpers; +metal-bushes;3769;;metalbushesmod;金属灌木;Metal Bushes; +;3770;1181984;no cheating;禁止作弊;No cheating; +;3771;;;模板包;; +the-vanilla-experience;3772;;thevanillaexperience;The Vanilla Experience;;TVE +flower-seeds;3773;;flowerseeds;Flower Seeds;; +;3774;;;Impact mod;; +;3775;;;Straight Line Minecraft;; +astemirs-forest-craft;3777;;forestcraft;Astemir's Forest Craft;; +astromine-foundations;3778;;astromine;天体矿工:基础;Astromine: Foundations; +create-stuff-additions;3779;;create_stuff_additions;机械动力:物品附加;Create : Stuff Additions; +slab-machines;3780;;slabmachines;台阶型设备;Slab Machines; +more-create-stuffs;3781;;morecreatestuffs;更多机械动力物品;More Create Stuffs; +rsinfinitybooster;3782;;rsinfinitybooster;RSInfinityBooster;; +cuneiform;3783;;;Cuneiform;; +terraincognita;3784;;terraincognita;Terra Incognita: The Unknown Land;; +cloth-api;3785;;;Cloth API;; +ingameime;3786;1158421;ingameime;游戏内输入法;IngameIME; +yungs-better-strongholds;3787;;betterstrongholds;YUNG的要塞重制;YUNG's Better Strongholds; +mojangdark;3788;;mojangdark;暗色加载界面;MojangDark; +astromine-technologies;3789;;astromine;天体矿工:科技;Astromine: Technologies; +astromine-transportations;3790;;astromine;天体矿工:运输;Astromine: Transportaions; +azuredooms-chunk-loader;3791;;chunk;AzureDoom's Chunk Loader;; +creeper-spores;3792;;creeperspores;苦力怕孢子;Creeper Spores; +more-dragon-eggs;3793;;;更多的龙蛋;More Dragon Eggs; +more-red;3794;;More_Red;更多红石;More Red; +;3795;;;Herobrine;; +craftable-items;3797;1166161;;Un-Craftable;; +ex-nihilo-sequentia-mekanism-addon;3798;;exnihilomekanism;无中生有:传承 - 通用机械扩展;Ex Nihilo: Sequentia - Mekanism Addon; +panorama;3799;;panorama;全景图;Panorama; +bgcore;3800;;bgcore;BGCore;; +induction-charger;3801;;InductionCharger;Induction Charger;; +tiered;3802;;tiered;Tiered;; +c-o-m-b-a-t;3803;;combat;Concept Of Magic Battle And Technology;;COMBAT +burden-of-time;3804;;burdenoftime;Burden Of Time;; +gamemenumodoption;3805;;gamemenumodoption;游戏菜单模组设定;Game Menu Mod Option; +game-menu-remove-gfarb;3806;;gamemenuremovegfarb;游戏菜单移除GFARB;Game Menu Remove GFARB; +randomdeathmessage;3807;;randomdeathmessage;随机死亡消息;RandomDeathMessage; +ex-nihilo-sequentia-ae2-addon;3808;;exnihiloae;无中生有:传承 - 应用能源2扩展;Ex Nihilo: Sequentia - AE2 Addon; +sweetmagic;3809;;sweetmagic;甜蜜与魔法;SweetMagic; +astromine-discoveries;3810;;astromine;天体矿工:探索;Astromine: Discoveries; +azuredooms-angel-ring;3811;;doomangelring;AzureDoom的天使指环;AzureDooms Angel Ring; +togglelib;3812;1189685;togglelib;列车手柄库;ToggleLib;TBLib +regrowth;3813;;;再生;Regrowth; +mobs-main-menu;3814;;mobsmainmenu;Mobs Main Menu;; +chaos-awakens;3816;;chaosawakens;混沌觉醒;Chaos Awakens; +hot-or-not;3817;;hotornot;Hot or Not;; +playerpig;3818;;ppig;PlayerPig;; +tumble-dryer;3819;;tumble_dryer;Tumble Dryer;; +cat-jammies;3820;;catjammies;Cat Jammies;; +rhino;3821;;rhino;犀牛;Rhino; +fastsuite;3822;;fastsuite;配方性能优化;FastSuite;FS +twerkitmeal;3823;;twerkitmeal;TwerkItMeal;; +thermal-foundation;3824;;thermal;热力系列;Thermal Series; +piggybanks;3825;;piggybanks;存钱罐;Piggybanks; +in-control;3826;;incontrol;In Control!;; +mystical-agriculture-refabricated;3827;;mysticalagriculture;神秘农业:重制版;Mystical Agriculture: Refabricated; +pedestals;3828;;pedestals;Pedestals;; +aerial-affinity;3829;;aerialaffinity;Aerial Affinity;; +communism-life-and-art;3830;;communism_lifeandart,communism_life_and_art_backtrack;共产主义:生活与艺术;Communism:Life and Art;CLA +project-war-dance;3831;1176754;wardance;战舞计划;Project: War Dance; +faster-ladder-climbing;3832;;;快速爬梯;Faster Ladder Climbing; +infinitymending;3833;;;无限+经验修补;InfinityMending; +better-than-mending;3834;;;更好的经验修补;Better Than Mending; +elenai-dodge-2;3835;;elenaidodge2;Elenai Dodge 2;; +taterzens;3837;;taterzens;Taterzens;; +dragons-survival;3838;;dragonsurvival;龙之生存;Dragons Survival;DS +;3839;;modmenu;Legacy Mod Menu;; +no-lan-cheats;3840;;nolancheats;禁用局域网作弊;No LAN Cheats; +dashloader;3841;;dashloader;疾速加载;DashLoader; +caveworld-2;3842;;caveworld;洞穴世界;Caveworld 2; +break-progress;3844;;;破坏进度;Break Progress;BP +item-model-fix;3845;;itemmodelfix;物品模型修复;Item Model Fix; +;;;useful_coals_2_integrations;实用煤炭2联动;Useful coals 2 Integrations;UfC2I +additional-pipes-for-buildcraft;3847;;additionalpipes;附加管道;Additional Pipes for Buildcraft; +sneedasm;3848;;loliasm;SneedASM;; +rftools-utility;3849;;rftoolsutility;RF工具:实用设备;RFTools Utility; +ctm-fabric;3850;;;连接材质Fabric版;ConnectedTexturesMod for Fabric;CTMF +whats-that-slot;3851;;wts;What's That Slot?;;WTS +pmmo-and-nbt-compat;3852;;dicemcpmmonbt;PMMO and NBT Compat;; +techstacks-heavy-machinery-mod;3853;;machinemod;TechStack's Heavy Machinery Mod;; +enhanced-mushrooms;3854;;enhanced_mushrooms;蘑菇增强;Enhanced Mushrooms; +versatile-portals;3855;;versatileportals;Versatile Portals;; +spawn-egg-recipes;3856;;;刷怪蛋配方注册;Spawn Egg Recipes; +configurable-extra-mob-drops;3857;;alllootdrops;可配置的额外怪物掉落;Configurable Extra Mob Drops; +enhanced-mob-spawners;3858;;spawnermod;刷怪笼增强;Enhanced Mob Spawners; +;3859;;chair;原版椅子;Vanilla Chair; +autorun;3860;;simpleautorun;AutoRun;; +animania-farm;3861;;animania;动物谷:农场;Animania Farm; +animania-extra;3862;;animania;动物谷:额外动物;Animania Extra Animals; +animania-cats-dogs;3863;;animania;动物谷:猫猫狗狗;Animania Cats & Dogs; +better-foliage-renewed;3864;;betterfoliage;更好的树叶重制版;Better Foliage Renewed; +block-swap;3865;;;Block Swap;; +basalt-walker;3866;;basalt_walker;玄武岩行者;Basalt Walker; +;3867;;doubancraft;豆瓣工艺;DouBan Craft; +endless-ocean-adventures;3868;;endlessoceans;无尽海洋:冒险;Endless Ocean: Adventures;EO +bpm;3869;;bpm;BPM;; +stone-circles;3870;;magic_stone_circles;Stone Circles;; +phase-potion;3871;;phase;相位药水;Phase Potion; +marblegates-exotic-enchantment-flowing-agony;3872;1198067;flowingagony;白门的奇异附魔:苦痛长河;MarbleGate's Exotic Enchantment: Flowing Agony; +measurements;3873;;measurements;Measurements;; +visible-armor-slots;3874;581039;visiblearmorslots,visiblearmorslotslegacy;可见装备槽;Visible Armor Slots; +moon-and-space-dimensions-fabric;3875;;agape_space;Moon and Space Dimensions;; +;3876;;totem;复活图腾;Totem of Resurrection; +winged;3877;;;Winged;; +;3878;;slide_show;幻灯片;Slide Show; +mob-stages;3879;854619;mobstages;阶段性生物;Mob Stages; +refooled;3880;;refooled;Refooled;; +;3881;;bnb;更好的下界:Beta版;BetterNether Beta;BNB +fabric-seasons;3882;;seasons;Fabric Seasons;; +dehydration;3883;;dehydration;脱水;Dehydration; +easy-villagers;3884;;easy_villagers;村民物品化/简单村民;Easy Villagers; +largebar;3885;;gud_largebar;LargeBar;; +tis-3d;3886;;tis3d;TIS-3D;; +entity-nan-health-fix;3887;;;Entity NaN Health Fix;; +ferritecore;3888;;ferritecore;铁氧体磁芯;FerriteCore;FC +thaumcraft-research-patcher;3889;;tcresearchpatcher;Thaumcraft Research Patcher;; +masterful-machinery;3890;1245140;masterfulmachinery;Masterful Machinery;; +minecraft-earth-mod;3891;;minecraft_earth_mod;Earth Mobs Mod;; +scotts-essential;3892;1151637;scessential;Scott's Essential;; +drawerfps;3893;;drawerfps;储物抽屉渲染配置;DrawerFPS; +;3894;1055797;touhou_craft;東方幻想鄉;TouhouCraft; +cursed-earth;3895;;cursedearth;Cursed Earth;; +sll;3896;;villagers;逆向交易;sɹǝƃɐllᴉΛ; +lagmeter;3897;;lagmeter;延迟表;LagMeter; +hexxit-gear-2;3898;;hexxitgear;Hexxit装备2;Hexxit Gear 2; +scootys-plants-vs-zombies;3899;;scootys_pvz;Scooty的植物大战僵尸;Scooty's Plants Vs. Zombies; +;3900;;;BulletCart;; +;3901;;;The Quilt Project;;Quilt +;3902;;;Cursed Legacy Fabric;;CLF +custom-machinery;3903;;custommachinery;机器定制;Custom Machinery; +bonsai-tree-crops;3904;;arcadialbonsaitrees;Bonsai Tree Crops;; +rpgz;3905;;rpgz;RpgZ;; +;3907;1195648;xiuxian,xiuxianchengzhen,xiuxianlianqi,xiuxianyaoshou,xiuxianliandan;原初修真1.15.2;xiuxian; +;3908;;stationloader,stationapi;Station API / Station Loader;;StAPI/SL +scavenge-timing-addon;3909;;scavenge_timing;Scavenge Timing Addon;; +cull-particles;3910;;cullparticles;粒子渲染机制优化;Cull Particles; +majos-broom;3911;1182237;majobroom;魔女的扫帚;Majo's broom; +seamless-loading-screen;3912;;seamless_loading_screen;无缝加载界面;Seamless Loading Screen; +curios-quark-oddities-backpack;3913;;curiosquarkobp;夸克背包饰品;Curios Quark Oddities Backpack; +nature-expansion;3914;;nature_expansion;Nature Expansion;; +;3915;;library;Library;; +electromagnetic-coherence;3917;;electromagneticcoherence;Electromagnetic Coherence;; +amaleafs-expantion-world-mod;3918;;aewmod;Amaleaf's Expantion World mod;; +the-elemelon-mod;3919;;elemelon;元素西瓜;The Elemelon Mod; +dcsp;3920;;diamondscompressorsp;钻石压缩;Diamonds Compressor SP; +corpse-complex;3921;;;Corpse Complex;; +modularvoicechat;3922;;;模块化语音聊天;ModularVoiceChat; +curious-elytra;3923;;curiouselytra;鞘翅插槽;Curious Elytra; +;3924;1204578;our;时间纪元;Time Era; +;;;tconstruct_compatible;匠魂兼容;TConstructCompatible;TiCC +;3926;;;自定义唱片;Your Records Mod; +incubation;3927;;incubation;Incubation;; +;3929;1201633;abyssmana;奈落魔法学;AbyssMana;AM +;3930;1201718;nanzhi_grave;南织鸽子的坟墓模组;;NZGrave +create-plus;3931;;createplus;Create Plus;; +;3932;1204879;strange_ingot;奇奇怪怪的锭;Strange ingot; +coloured-tooltips;3933;;;Coloured Tooltips;; +magicraft-magic;3934;;magicfoods;魔法材料;Magical Materials; +glowstone-ores;3935;;gom;萤石矿石;Glowstone Ores; +more-wires;3936;;morewire,morewires;More Wires;; +alexandrite-and-more;3937;;;亚历山大石和其它;Alexandrite And More; +endgame-materials;3938;;endgamematerials;终局材料;Endgame Materials; +more-cobblestone;3939;;cm;更多圆石;More Cobblestone; +wild-netherwart;3940;;;野生地狱疣;Wild Netherwart; +the-periodic-table-mod;3941;;periodictablemod;元素周期表;The Periodic Table; +adamantium-in-minecraft;3942;;adamantiumsword;艾德曼合金矿石;adamantium ores; +forgerocks;3943;;forgerocks;ForgeRocks;; +ballistix;3944;;ballistix;弹道学;Ballistix; +wireless-industry;3945;;wirelesstools;Wireless Industry;; +spice-of-life-tonio-edition;3946;;soltonio;生活调味料:托尼欧版;Spice of Life: Tonio Editon; +husk-spawn;3947;;huskspawn;Husk Spawn;; +artisan-tools-1-16;3948;;artisantools;工匠工具;Artisan Tools;AT +yttr;3949;;yttr;Yttr;; +wisla;3950;;wisla;What is Sauron looking at;;Wisla +mixin-0-7-0-8-compatibility;3951;;mixincompat;兼容Mixin0.7-0.8;Mixin 0.7-0.8 Compatibility; +;3952;;fp2;远平面2;Far Plane Two;FP2 +xenoclus-one;3953;;xenoclus_v;Xenoclus One;; +satako-library;3954;;satako;Satako library;; +unique-enchantments-utils;3955;;;独特的附魔:效用扩展;Unique Enchantments - Utils; +ae2ao;3956;;ae2ao;AE2 Additional Opportunity;;AE2AO +iconexporter;3957;;iconexporter;IconExporter;; +curious-shulker-boxes;3958;;curiousshulkerboxes;潜影盒插槽;Curious Shulker Boxes; +xenoclus-2;3959;;xenoclustwo;Xenoclus 2;; +darker-depths;3960;;darkerdepths;深岩之下;Darker Depths; +terracraft-journey;3961;;terracraft;TerraCraft Journey;; +solar-cooker;3962;;solarcooker;太阳灶;Solar Cooker; +create-addon;3964;;create_addon;Create Addon;; +boat-contraptions;3965;;boatcontraptions;Boat Contraptions;; +ender-rift;3966;;enderrift;Ender Rift;; +;3967;;Mob_time_era;生物时间;Mob Time Era;MTE +splashanimation;3968;;;SplashAnimation;; +continue-button;3969;;continuebutton;继续按钮;Continue Button; +chem-craft;3970;;minecraft_expansions;化学工艺;Chem Craft; +time-in-a-bottle-standalone;3971;;tiab;时间之瓶;Time in a bottle standalone; +;;;mvp;更多原版药水;More Vanilla Potions;MVP +compressed-grass;3973;;gm;压缩草;Compressed Grass; +applepie;3974;;ApplePie;苹果派;ApplePie; +doles-mod;3975;;;Dole's Mod;; +ex-nihilo-sequentia-thermal-addon;3976;;;无中生有:传承 - 热力扩展;Ex Nihilo: Sequentia - Thermal Addon; +ex-naturae;3977;;exnaturae;无中生有:传承 - 植物魔法扩展;Ex Naturae; +ex-nihilo-sequentia-tinkers-addon;3978;;;无中生有:传承 - 匠魂扩展;Ex Nihilo: Sequentia - Tinkers Addon; +iron-jetpacks;3979;;ironjetpacks;Iron Jetpacks;; +;3980;1256463;discs;自定义唱片;Custom Discs; +playtime-counter-fabric;3981;;playtime_count;游戏时长计数器;Playtime Counter; +entity-banners;3982;;entitybanners;实体旗帜;Entity Banners; +curious-jetpacks;3983;;curiousjetpacks;Curious Jetpacks;; +curious-armor-stands-fabric;3984;;curious_armor_stands;Curious Armor Stands;;CAS +trinkets-fabric;3985;;trinkets;Trinkets;; +occultism;3986;['1077431'];occultism;神秘学;Occultism; +stray-spawn;3987;;strayspawn;Stray Spawn;; +mooshroom-spawn;3988;;mooshroomspawn;Mooshroom Spawn;; +cardinal-components;3989;;cardinal-components;Cardinal Components;; +;3990;;ember_top_and_waila;余烬高亮支持;Ember Top and Waila;ETW +;3991;;nsn;不那么新;Not So New;NSN +integrated-proxy;3992;;integrated_proxy;集成代理器;Integrated Proxy; +a-cobblestone-crafting-table;3993;;;圆石工作台;A Cobblestone Crafting Table; +colored-iron;3994;;;Colored Iron;; +final-kobold;3995;;fk;Final Kobold;; +ears;3996;;ears;耳朵;Ears; +wildfires-female-gender-mod-forge;3997;;wildfire_gender;Wildfire's Female Gender Mod;; +;3998;;consistency_plus;Consistency+;; +modularwarfare;3999;;modularwarfare;模块化战争/模块化枪械;ModularWarfare; +mputils-basic-tools;4000;;mpbasic;MPUtils Basic Tools;; +the-agartha-mod;4001;;agartha,conranel;The Agartha Mod;; +falling-with-style;4002;;fallingwithstyle;花式降落;Falling With Style; +valhelsia-core;4003;;valhelsia_core;Valhelsia Core;; +;4004;;minecrafttagreborn;Minecraft凝胶测试轨道:重生;MinecraftTag:Reborn;MT:R +alwayseat;4005;;salwayseat;吃饱了还要吃;AlwaysEat; +;4006;688825;examplemod;游戏中中文输入法冲突修复;InputMethodBlocker; +;4007;1205424;theballofhelp;帮助之球;Ball Help; +;4008;;scp_chamber;SCP-Chamber;; +aquarium;4009;;aquarium;深海;Aquarium; +mixin-booter;4010;;前置;MixinBooter;; +;;;;一个物品格的生存;One Item Only;OIO +jrds-moneymod;4012;;;jrd's MoneyMod;; +skeletdimension;4013;;SkeletonModID;骷髅维度;SkeletDimension; +sushigocrafting;4014;;sushigocrafting;巧制寿司;Sushi Go Crafting; +shrines-structures;4015;;shrines;Shrines Structures;; +valhelsia-tweaks;4016;;valhelsia_tweaks;Valhelsia Tweaks;; +lazierae2;4017;;lazierae2;懒人AE2 1.16+;LazierAE2; +magical-crops-core;4018;;magicalcrops;Magical Crops: Core;; +magical-crops-decorative;4019;;;Magical Crops: Decorative;; +magical-crops-armoury;4020;;;Magical Crops: Armoury;; +;4021;;rflcmd;反射命令;Reflection Command; +simpleeco;4022;;simpleeco;简单经济;SimpleEconomy; +vistas;4023;;vistas;Vistas;; +;4024;;authforge;锻造:认证;AuthForge;AFg +fish-in-planks;4025;;fish_in_planks;Fish In Planks;; +fish-on-the-line;4026;;fishontheline;Fish On The Line;; +fish-traps;4027;;fishtraps;鱼栅;Fish Traps; +combustive-fishing;4028;;combustivefishing;Combustive Fishing;; +fabric-survival-island;4029;;survivalisland;Survival island;; +sonicraft;4030;;sonicraft;索尼克工艺;SoniCraft; +islands;4031;;islands;Islands;; +origins-forge;4032;;origins;起源非官方Forge版;Origins (Forge); +magic-feather;4033;;magicfeather;Magic Feather;; +alet;4034;;alet;A Little Extra Tiles;;ALET +netheriteplus;4035;;netheriteplus;Netherite Plus +;; +the-survivalists-mod;4036;;survivalist;The Survivalist's Mod;; +campfire-overhaul;4037;;campfire_overhaul;Campfire Overhaul;; +shatter;4038;;shatter;Shatter;; +electric-self-balance-scooters;4039;;electric_selfbalancing_scooters;电动平衡车;Electric Self-balance Scooters;ESBS +rats-mischief;4040;;ratsmischief;Rat's Mischief🐀;; +dream-rng;4041;;;Dream RNG;; +wandering-trader-improvements;4042;;wt_improvements;Wandering Trader Improvements;; +wasteland-reborn;4044;;wastelands;不毛之地:重生;Wastland Reborn; +skds-core;4045;;;SKDS Core;; +endertech;4046;;EnderTech;末影科技;Ender Tech;ET +enderpig-mod;4047;;enderpig;末影猪;Enderpig Mod; +;4048;;examplemod;矿石树;TreeOres; +;4049;;spider2fix;镇压前端召唤;No No-AI Spawn; +atomic-bomb-1-16;4050;;nuclear_craft;枪,炮,原子弹!;Guns, Rockets and Atomic Explosions; +se-sign-shop;4051;;sesignshop;简单经济:牌子商店;SE: Sign Shop; +;4052;1220885;technical_engineering;科能工程2;Technical Engineering;TE +fancymenu;4053;;;精美菜单;FancyMenu; +sodium-reforged;4054;;sodium;卤素;Halogen; +zetamod;4055;;zetamod;泽塔;ZetaForged/Zeta's Mod; +;4056;;pixelmon;宝可梦 世代;Pixelmon Generation;PG +;4057;1186215;xianjiange;仙剑阁;; +wholetreeaxe;4058;;WholeTreeAxe;Whole Tree Axe;; +fabrishot;4059;;;高清截图Fabric;Fabrishot; +materialisation;4060;;materialisation;物质化;Materialisation; +recipebuffers;4061;;recipebuffers;配方缓冲;RecipeBuffers; +;4062;;;mineshot revived;; +portal-gun-fabric;4063;;;传送枪 Fabric;Portal Gun Fabric; +;4064;;;Incendium ~ Nether Expansion;; +;4065;;nfc;New Frontier Craft;;NFC +cooperative-advancements;4066;;cooperativeadvancements;合作进度;Cooperative Advancements; +lightstones;4067;;lightstones;Lightstones;; +openbackup;4068;;;OpenBackup;; +fat-experience-orbs;4069;;fatxporbs;肥胖经验球;[Fabric] Fat Experience Orbs; +better-pipes;4070;;betterpipes;更好的管道;Better Pipes; +truetype-font-replacement;4071;616658;BetterFonts;TrueType Font Replacement;;TTFR +fluidlogged-api;4072;;fluidlogged_api;Fluidlogged API;; +spark;4073;;spark;spark;; +saoui;4074;;saoui;saoui;; +guardians-galore;4075;;guardiansgalore;Guardians Galore;; +cogwheel-tweaker;4076;;CogwheelTweaker;Cogwheel Tweaker;; +ultra-amplified-mod;4077;;ultra_amplified_dimension;超大群系维度;Ultra Amplified Dimension; +classical-art;4078;;classicalart;经典艺术;Classical Art; +emc-baubles;4079;;emcbaubles;等价饰品;EMC Baubles; +lag-removal;4081;;lag_removal;Lag Removal;; +gender;4082;;gender;Gender & Age Mod;; +;4083;;mtm;Magical Talismans Mod;; +ticktock;4084;;;Server Tick;; +;4085;;;行尸走肉弹夹合成配方添加;; +fps-reducre-for-fabric;4086;;;FPS减速器(Fabric);FPS Reducer (For Fabric); +art-artillery;4087;;art_artillery;艺术?火炮!;Art? Artillery!; +;4088;;;MineMenuFabric;; +;4089;;;TabTPS;; +afkpeace;4090;;;AFKPeace;; +;4091;;;Stop HostName Leak;; +secret-rooms-fabric;4092;;;Secret Rooms Fabric;; +smooth-chunks;4093;;;Smooth Chunks;; +saturationoverflow;4094;838721;zenny3d.saturationoverflow;饱和度溢出;Saturation Over flow; +;4095;;;艾玛的起源;Emma's origins;EO +phantom-blood;4096;;phantomblood;幻影之血;Phantom Blood;PB +;4097;;;洞穴与山崖扩展包;Caves & Cliffs Expansion Pack; +searchable-containers;4098;;;可搜索容器;Searchable Containers; +;4099;;original_development;原版扩展;Original Development; +;4100;;conranel;卡莱内尔;Conranel;CRN +integrated-additions;4101;;integratedadditions;集成扩展;Integrated Additions; +matchlock-guns;4102;;matchlockguns,matchlockweapons;火绳枪;Matchlock Guns; +fabric-autoswitch;4103;;;自动切换工具;AutoSwitch; +inventory-profiles-next;4104;;inventoryprofilesnext;一键背包整理Next;Inventory Profiles Next; +drill;4105;;drill;钻头;Drill; +ore-tree;4106;1214379;ore_tree;矿物树;Ore Tree; +ferdinands-flowers;4107;;ferdinandsflowers;Ferdinand's Flowers;; +clear-water;4108;;;清澈的水;Clear Water; +applied-energistics-2-wireless-terminals-forge;4109;;ae2wtlib;AE2无线终端Forge版;Applied Energistics 2 Wireless Terminals Forge;AE2WT-Forge +ferroustry;4110;;ferroustry;Ferroustry;; +village-employment;4111;;village_employment;村庄就业;Village Employment; +;4112;;;20W14✨;; +deathlog;4113;;;死亡日志;DeathLog; +automatic-elytra;4114;;;自动鞘翅;Automatic Elytra; +axolotl-bucket-fix;4115;;axolotlitemfix;美西螈桶修复;Axolotl Bucket Fix; +xks-decoration;4116;1214362;xkdeco;XK的装饰;XK's Deco; +endgame-materials-addons;4117;;endgamematerialsgalaxyaddon;更多终局材料;Endgame Materials Addons; +ravage-and-cabbage;4118;;ravageandcabbage;Ravage & Cabbage;; +stackup;4119;1026496;;StackUp!;; +simple-anti-x-ray;4120;;;Simple Anti X-Ray;; +breakme;4121;;;BreakMe;; +mod-info-command;4122;;;Mod Info Command;; +hexxit-gear-fabric;4123;;;Hexxit Gear (Fabric);; +buffed-tools;4124;;;属性工具;Buffed Tools; +thaumcraft-nei-plugin;4125;357554;;神秘时代NEI插件;Thaumcraft NEI Plugin; +moarrecipes;4126;;MoarRecipes;更多的配方;MoarRecipes; +luminium;4127;;luminium;luminium;; +;4128;;nethermap;Better Nether Map;; +;4129;;mcs;多重压缩物品;MultipleCompressedStuffs;mcs +iguanatweaks-reborn;4130;;iguanatweaks;蜥蜴微调重生;IguanaTweaks Reborn; +enter-the-void;4131;;thevoidsshadow;进入虚空;Enter the void; +tensura-mod-that-time-i-got-reincarnated-as-a-slime;4132;;ttigraas;关于我转生变成史莱姆这档事;Tensura Mod -That time I got reincarnated as a Slime; +;4133;;deep_dark_layer;深暗层;Deep dark layer;DDL +speedometer;4134;;speedometer;速度表;Speedometer; +falling-leaves-forge;4135;;fallingleaves;Falling Leaves;; +;4136;;mcef;MCEF 非官方版本;MCEF-Unofficial;MCEF +;4137;;god_metal;神之金属;God Metal;GM +custom-entity-models-cem;4138;;;自定义实体模型;Custom Entity Models;CEM +tweakmyclient;4139;;;TweakMyClient;; +lovely-snails;4140;;lovely_snails;可爱蜗牛;Lovely Snails; +ourse-mod;4141;;;Ourse MOD;; +clipboard;4142;;clipboard;备忘录;Clipboard; +crimson-nbt-tags;4143;;;Crimson NBT Tags;; +;4144;1217582;cabo;随意弓;Casual Bow; +water-physics-overhaul;4145;;wpo;Water Physics Overhaul;; +netherless;4146;;Netherless;Netherless;; +auto-ore-dictionary-converter;4147;;autooredictconv;Auto Ore Dictionary Converter;; +elytraboosters;4148;;elytraboosters;Elytra Boosters;; +cobblegenrandomizer;4149;;cobblegenrandomizer;CobbleGenRandomizer;; +unified-resources;4150;;unified_resources;Unified Resources;; +wooden-buckets;4151;;woodenbuckets;木桶;Wooden Buckets; +no-nether-portals;4152;;nonetherportals;No Nether Portals;; +beehivetooltips;4153;;;蜂巢工具提示;BeehiveTooltips; +buddycards;4154;;buddycards;巴迪卡牌;Buddycards; +extended-caves;4155;;extcaves;Extended Caves;; +inventorio;4157;;inventorio;Inventorio;; +more-curios-totems-of-undying;4158;;morecuriostotemsofundying:;More Curios Totems of Undying;; +selene;4159;;;Selene;; +compatibilitylayerforcustomskinloader;4160;1109996;CompatibilityLayerForCustomSkinLoader;万用皮肤补丁兼容层;CompatibilityLayerForCustomSkinLoader;CLFCSL +no-potion-shift;4161;;nopotionshift;No Potion Shift;; +no-potion-offset;4162;;;No Potion Offset;; +demonslayer;4163;1220110;kimetsunoyaiba;鬼灭之刃;Kimetsu no Yaiba; +nautilium;4164;;Nautilium;鹦鹉螺;Nautilium; +auto-attack;4165;;auto attack;自动攻击;Auto Attack; +tamagotti;4166;;tamagottimod;Tamagotti;; +;4167;965094;;传送;Teleport; +signal;4168;;signal;讯号;Signal; +realistic-horse-genetics;4169;;horse_colors;真实马匹遗传;Realistic Horse Genetics; +timeless-and-classic;4170;;timeless_and_classic;Timeless and Classics;;TaC +tool-progression;4171;;toolprogression;工具进阶;Tool Progression; +;4173;;;棘羽「毕方」;BirdBlade;B.B +a-paimon;4174;;apaimon;派蒙;A Paimon; +;4175;;;Creative;; +music-maker-mod;4176;;xercamusic;Music Maker Mod;; +penguin-lib;4177;;penguinlib;Penguin-Lib;; +flywheel;4178;;flywheel;飞轮;Flywheel; +;4179;;stem_further;梗进一步;Stem further;SF +coralreef;4180;;coralreef;珊瑚礁;CoralReef; +;4181;;jewelry_bar_core;简易饰品;Simple Accessories;SAC +simply-seasons;4182;;;简单季节;Simply Seasons; +bclib;4183;;bclib:;BCLib;; +actually-baubles;4184;;actuallybaubles;实用拓展饰品;Actually Baubles; +alexs-mobs-battle-music;4185;;;♪ Alex's Mobs Battle Music ♪;; +lava-waders-bauble;4186;;lavawaderbauble;熔岩魔靴饰品;Lava Waders Bauble; +hardcore-revival;4187;;hardcorerevival;硬核复活;Hardcore Revival; +additional-guns;4188;;additionalguns;更多的枪;Additional Guns; +oh-my-minecraft-client;4189;;;Oh My Minecraft Client;;OMMC +wooden-armors-stone-armor;4190;;woodarmor;木制盔甲;Wooden Armors Mod; +;4191;1223720;cdi;自定义伤害免疫;Custom Damage Immunity; +insanelib;4192;;insanelib;InsaneLib;; +daydreamer;4193;;daydreamer;Daydreamer;; +phantomfaces;4194;;phantomfaces;幻灵接口;Phantomfaces; +improved-villagers;4195;;iv;改进的村民;Improved Villager Mod; +equipment-compare;4196;;equipmentcompare;Equipment Compare;; +;4197;;pca;Plusls Carpet Addition;;PCA +PickupWidely;4198;;pickupwidelysmp;PickupWidely;; +;4199;;dongdongxiangyaodefasheqi;冬冬想要的发射器;dong dong want the launcher;DDWTL +lilliputian;4200;;lilliputian;Lilliputian;; +sampler;4201;;Sampler;Sampler;; +custom-splash-screen;4202;;;自定义加载界面;Custom Splash Screen; +;4203;;;Masa Gadget;; +meet-your-fight;4204;;meetyourfight;Meet Your Fight;; +hot-or-not-plus;4205;;hotornot;Hot or Not +;; +macaws-furniture-tfc;4206;;mcwfurnituretfc;Macaw's Furniture for TFC;; +tfc-florae;4207;;tfcflorae;TFC Florae;; +tfc-elementia;4208;;tfcelementia;TFC Elementia;; +infinity-water-bucket;4209;;;无限水桶;Infinity Water Bucket; +tfc-caffeine-addon;4210;;ca;TFC Caffeine Addon;; +tfc-cellars-add-on;4211;;cellars;TFC: TNG Cellars Add-on;; +boats-and-beeps;4212;;boats-and-beeps;Boats and Beeps;; +konkrete-fabric;4213;;;Konkrete;; +xp-from-harvest;4214;930878;;收获经验;XP From Harvest; +modern-beta;4215;;modern_beta;Modern Beta;; +tfcflux;4216;;tfcflux_core;TFCFlux;; +tfc-medicinal;4217;;tfcmedicinal;TFC Medicinal;; +water-flasks;4218;;waterflasks;TFC Water Flasks;; +markdownmanual;4219;;;MarkdownManual;; +structure-world;4220;;structureworld;Structure World;; +macaws-lights-and-lamps;4221;;mcwlights;Macaw's Lights and Lamps;; +terrarian-slimes;4222;;terrarianslimes;Terrarian Slimes;; +create-gears;4223;;creategears;Create Gears;; +simple-big-backpack;4224;;big_backpack;Simple Big Backpack;; +croptopia-fabric;4225;1192701;croptopia;作物盛景;Croptopia; +firmalife;4226;;firmalife;FirmaLife;; +supermartijn642s-core-lib;4227;;supermartijn642corelib;SuperMartijn642's Core Lib;; +cherished-worlds;4228;1104346;;存档置顶;Cherished Worlds; +ironfist;4229;399076;;铁拳;Ironfist; +;4230;;mining_dimension_cave_version;挖矿维度(矿洞版);Mining dimension(cave version); +simply-acceleration;4231;;;简单加速;Simply Acceleration; +creeper-habitats;4232;;creeperhabitats;Creeper Habitats;; +husbandry;4233;;husbandry;Husbandry;; +its-the-little-things;4234;;itlt;It's The Little Things;; +fruitful;4235;;fruitful;硕果累累;Fruitful; +environmental-energy;4236;;enviroenergy;环境科技-发电机;Environmental Energy;EnE +nakranoths-herdcraft;4237;;;群兽行为;Nakranoth's Herdcraft; +lambdabettergrass;4238;;lambdabettergrass;Lambda的更好的草方块;LambdaBetterGrass; +;4239;;clientcommands;clientcommands;; +bright-ore;4240;1201226;;矿石高亮;Bright Ore; +chinese-style-sword;4241;;chinese_sword;中式剑;Chinese Style Sword; +;4242;1227763;fishfish;钓🐟🐠;Fish 🐟🐠; +heroic-armory;4243;;heroicarmory;英雄武器;Heroic Armory; +colossal-battery;4244;;colossal_battery;巨型电池;ColossalBattery; +industrial-meat;4245;;industrialmeat;Industrial Meat;; +biomancy;4246;;biomancy;血肉重铸;Biomancy; +extra-generators;4247;;extragenerators;Extra Generators;; +horticulture;4248;;horticulture;园艺;Horticulture; +mr-pineapples-food-mod;4249;;pinesfoodmod;Mr. Pineapple's Food Mod;; +;4250;;herosw;Herobrine JD;;HJ +;4251;;pixelmoninfoplus;更多宝可梦信息;Pixelmon Info Plus; +legacyvault;4252;;legacyvault;Legacy Vault;; +shopaholic;4253;;shopaholic;Shopaholic;; +;4254;;mooncake;月饼;Moon Cake;MMC +ok-zoomer;4255;;okzoomer;Ok Zoomer;; +untitled-duck-mod-forge;4256;;untitledduckmod;无题鸭;Untitled Duck; +v-tweaks;4257;;vtweaks;V-Tweaks;; +fairenchanting;4258;;;公平附魔;FairEnchanting; +bedspreads;4259;;cosmeticbeds,bedspreads;Bedspreads / Cosmetic Beds;; +piglib;4260;;piglib;Piglib;; +nether-portal-spread;4261;;netherportalspread;Nether Portal Spread;; +x-hp;4262;;;x-hp;; +;4263;;kaimyentity;KAI我的实体 - 修改版;KAIMyEntity - Modify; +mr-pineapples-toy-guns;4264;;toyguns;Mr Pineapple's Toy Guns;; +;4265;;magickcore;魔法核心;MagickCore; +feywild;4266;;feywild;Feywild;; +;4267;1201880;the_ultimate_sword;最终之剑重置版;The final sword; +;4268;1180156;;做功台;Benchworks; +gog-skybox;4269;;;GoG Skybox;; +;4270;;morebarrel;更多桶;More Barrel; +lemon-lib;4271;;;Lemon Lib;; +custom-entity-models-kaimyentity-reborn;4272;;;KAI我的实体:重生;KAIMyEntity-Reborn; +miniutilities;4273;;miniutilities;迷你实用设备;Mini Utilities; +stumble-upon-campsites;4274;;stumbleuponcamps;邂逅:营地;Stumble Upon: Campsites; +nomad-books;4275;;;游牧之书;Nomad Books; +yungs-extras;4276;;;YUNG's Extras;; +stoneholm-forge;4277;;;地下村庄;Stoneholm, Underground Villages; +;4278;1199290;tlwc;两面包夹芝士;Two loaves with cheese;TLWC +inspecio;4279;;inspecio;Inspecio;; +special-ai;4280;457169;;特殊AI;Special AI; +dream-waifu-mod;4281;;waifucraft;Dream Waifu mod;; +help-wanted;4282;;helpwanted;求助;Help Wanted; +off-hand-combat;4283;;;副手战斗;Off Hand Combat; +reaping-mod-fabric;4284;;;收割;Reaping Mod; +gilding;4285;;gilding;镀金;Gilding; +grims-transportables;4286;;;格里姆的便捷交通工具;Grim's Transportables; +reroll;4287;;;刷新附魔;Reroll; +tax-free-levels;4288;;;免税附魔;Tax Free Levels; +portable-dimensions;4289;;portabledimensions;便携式传送门;Portable Dimensions; +stone-age-by-yanny;4290;;stone_age;Yanny's Stone Age;; +terra-world-generator;4291;;terra;Terra;; +;4292;1231156;morecows;更多牛;MoreCows; +omnis;4293;;omnis;全界;Omnis; +omnis-backpacks;4294;;omnisbackpacks,omnis_backpacks;Omnis Backpacks;; +superhotmc;4295;;superhotmod;SuperhotMC;; +bag-of-yurting;4296;1194614;bagofyurting;帐篷袋;Bag of Yurting; +better-combat-rebirth;4297;813690;;更好的战斗:重生;Better Combat Rebirth; +iron-and-gold-from-1-17;4298;;iron_and_gold;来自 1.17 的铁和金;iron and gold from 1.17; +immersive-cooking;4299;;immersivecooking;沉浸烹饪;Immersive Cooking; +structured-crafting;4300;;structuredcrafting;Structured Crafting;; +random-shulker-colours;4301;;;随机潜影贝颜色;Random Shulker Colours; +create-automated;4302;;createautomated;Create Automated;; +random-sheep-colours;4303;;;随机绵羊颜色;Random Sheep Colours; +sleep-sooner;4304;;;早点睡;Sleep Sooner; +respawning-shulkers;4305;;;潜影贝重生;Respawning Shulkers; +respawn-delay;4306;;;延迟重生;Respawn Delay; +realistic-bees;4307;;;真实的蜜蜂;Realistic Bees; +recast;4308;;;持续钓鱼;Recast; +softer-hay-bales;4309;;;柔软的干草块;Softer Hay Bales; +portable-jukebox-forge;4310;;portablejukebox;便携式唱片机;Portable Jukebox; +spiders-produce-webs;4311;;;蜘蛛吐网;Spiders Produce Webs; +assassins-creed-blocklegend;4312;1168306;acbl;刺客信条:方块传奇2;Assassin's Creed Blocklegend II;ACBL2 +gravestone-mod-graves;4313;;gravestone;墓碑坟墓;Gravestone mod Graves; +the-earth-mod;4314;;earth;地球;The Earth Mod; +lifts;4315;;lifts;电梯;Lifts; +corail-recycler;4316;;corail_recycler;Corail的回收站;Corail Recycler; +move-minecarts;4317;;;可移动的矿车;Move Minecarts; +inventory-totem;4318;;;更好的图腾;Inventory Totem; +lava-picker-upper;4319;;;熔岩收集器;Lava Picker Upper; +nethers-exoticism;4320;;nethers_exoticism;Nether's Exoticism;; +everpotion;4321;;everpotion;永恒药水 ⚗️;EverPotion ⚗️; +quick-shulker;4322;;;快捷潜影盒;Quick Shulker; +respawnable-pets;4323;;;宠物可重生;Respawnable Pets; +schmucks;4324;;;分身傀儡/小阿呆;Schmucks!; +automatic-doors;4325;;automaticdoors;自动门;Automatic Doors; +configurable-despawn-timer;4326;;configurabledespawntimer;Configurable Despawn Timer;; +chunkmap;4327;;;ChunkMap;; +inventory-tabs;4328;;inventorytabs;Inventory Tabs;; +bottle-your-xp;4329;;bottleyourxp;装瓶你的经验;Bottle Your Xp; +gravestone-mod-extended;4330;;gravestone-extended;墓碑坟墓 - 拓展;Gravestone mod - Extended; +better-enchanted-books;4331;;;更好的附魔书;Better Enchanted Books; +easy-steel-forge;4332;;easy_steel;Easy Steel & More;; +fabric-waystones;4333;1129480;;Fabric版传送石碑;Fabric Waystones; +;4334;1235624;ire;铁块电梯;Iron Elevators; +;4335;;;SeedCracker;; +dark-enchanting;4336;;;Dark Enchanting;; +;4337;;blocklynukkit;科技黎明;TechDawn; +better-wandering-traders;4338;;;更好的流浪商人;Better Wandering Traders; +superflat-world-no-slimes;4339;;;没有史莱姆的超平坦世界;Superflat World No Slimes; +scorge;4340;;;Scorge;; +;4341;;recipedumper;合成表导出;RecipeDumper; +beaconoverhaul;4342;;;信标改革;Beacon Overhaul; +contact;4343;1233489;contact;往来;Contact; +blockshifter;4344;;blockshifter;Blockshifter;; +;4345;;fjt;食物工程;foodproject;FJT +vanilla-builders-extension;4346;;vbe;Vanilla Builders Extension;; +;4347;;Techbottle,techbottle;科技瓶;Techbottle; +big-beacons;4348;;;大信标;Big Beacons; +wooden-hopper;4349;;woodenhopper;Wooden Hopper;; +;4350;1170852;;植物大战僵尸2;Plants vs Zombies 2; +ages-api;4351;;;Ages API;; +fancyhud;4352;;fancyhud;FancyHUD;; +advanced-compass;4353;;advancedcompass;高级指南针;Advanced Compass; +salutem;4354;;salutem;Salutem / Healthbars;; +the-sol;4355;;sol;太阳系;The Sol;TS +better-beds;4356;;betterbeds;更好的床;Better Beds; +world-lives-mod;4357;;jordan7102_lm;World Lives Mod;; +lib;4358;;flytre_lib;FlytreLib;; +;4359;;tic_json_generator;匠魂JSON生成器;TConstruct JSON Generator; +just-some-chocolate;4360;;chocomod;只是一些巧克力;Just some Chocolate; +;4361;1237001;hormone;激素;Hormone; +vacuum-horizon;4362;;VacuumHorizon;Vacuum Horizon;; +unique-enchantments-battle;4363;;;独特的附魔:战斗扩展;Unique Enchantments - Battle; +balanced-enchanting;4364;;;平衡附魔;Balanced Enchanting; +pipe;4365;;pipe;管道;Pipe; +simple-ambients;4366;;ambients;Simple Ambients;; +;4367;;thewanderingearth;流浪地球;The Wandering Earth;TWE +;4368;1221380;;乡野与魔法;Countryside And Magic;CAM +;4369;;space_craft;太空工艺;Space Craft;SC +modern-loading-screen;4370;1235709;modernloadingscreen;现代加载界面;Modern Loading Screen;MLS +;4371;;zyfdroid-myessentialx;MyEssentialX;; +;4372;1169366;dongdongmod;冬冬的随意创作;Dong Dong's random creation;DDRC +;4373;;threebody;三体;ThreeBody; +transliterationlib;4374;;transliterationlib;TRansliterationLib;; +;4375;1238551;loan;借贷;Loan; +rpmtw-update-mod;4376;;rpmtw_update_mod;RPMTW自動中文化模組;RPMTW Update Mod;RPMTW +farsight-spyglasses;4377;;farsight_spyglasses;Farsight: Spyglasses;; +not-enough-animations;4378;;notenoughanimations;Not Enough Animations;; +better-beacon;4379;;;更好的信标与潮涌核心;Better Beacon / Conduit; +;4381;;;Dungeon Now Loading;;DNL +easy-emerald-tools;4382;;easy_emerald;Easy Emerald Tools & More;; +cold-sweat;4383;;cold_sweat;冷汗;Cold Sweat; +witchery-rewitched;4384;;witchery_rewitched;巫术:重生;Witchery: Rewitched; +majou-densetsu-3d;4385;;backtones;魔城传说3D;Majou Denetsu 3D;MD3D +;4386;1240656;locusazzurro_icaruswings;伊卡洛斯之翼;Icarus Wings; +keyboard-wizard;4387;695626;keywizard;按键精灵;Keyboard Wizard; +piscary;4388;;piscary;Piscary;; +storage-cabinet;4390;;;储藏柜;Storage Cabinet; +first-person-model;4391;;firstperson;更真实的第一人称模型;First-person Model; +randore;4392;;randore;Rand'Ore;; +rising-uppercut;4393;1240641;rising_uppercut;上勾拳;Rising Uppercut; +jackie-chan-s-weapon;4394;1237674;jackie_chans_weapon;成龙的武器;Jackie Chan`s weapon; +explorers-compass;4395;;explorerscompass;探险者指南针;Explorer's Compass; +gravestones;4396;;;墓碑;Gravestones; +crafting-dead-survival;4397;;craftingdeadsurvival;行尸走肉:生存;Crafting Dead Survival; +redstone-control-2;4398;;rs_ctr2;红石控制2;Redstone Control 2; +csenchants;4399;;coldenchants2;Colds: Enchants 2.0;; +mystical-customization;4400;;mysticalcustomization;Mystical Customization;; +;4401;;;泥土信标;Dirt beacon;DB +lucky-blocks-project-e;4402;1150908;lucky;等价交换幸运方块;Lucky Blocks:ProjectE; +fmprojecte-fmpe;4403;;ProjectE;等价交换重制-EMC上限扩展版;FMProjectE;FMPE +;4404;1232131;flexibag;背包物品备份;Flexibag; +ibe-editor;4405;;;IBE Editor;; +exotic-critters;4406;;experimental_m;Exotic critters;; +archers-paradox;4407;;archers_paradox;弓箭手悖论;Archer's Paradox; +dynamic-trees-neapolitan;4408;;;动态的树 -那不勒斯风味附属;Dynamic Trees - Neapolitan; +;4409;;soulforging;灵魂锻造;Soul Forging;SF +randomite-classic;4410;;randomite;Randomite Classic;; +;4411;;super_tool_reloaded;超级工具重置版;Super Tools Reloaded; +wilds;4412;;wilds;Wilds;; +roughly-searchable;4413;;roughlysearchable;Roughly Searchable;; +cull-leaves;4414;;cullleaves;树叶渲染优化;Cull Leaves; +dynamic-trees-atum-2;4415;;;动态的树-阿图姆2附属;Dynamic Trees - Atum 2; +randomtweaker;4416;;randomtweaker;RandomTweaker;;RT +;4417;;bizarre_fans;奇异风扇;Bizarre Fans;BFAN +iron-chests-fabric;4418;;ironchest;[Fabric] Iron Chests;; +steamworld;4419;;steamworld;SteamWorld;; +;4420;;;Cyan;; +falling-leaves-fabric;4421;;;Falling Leaves (Fabric);; +craftable-creative-ability;4422;;craftable_creative_ability;可合成的创造能力强化;Craftable Creative Ability;cca +not-enough-energistics;4423;;neenergistics;Not Enough Energistics;;NEE +terracore;4424;;terracore;TerraCore;; +;4425;;night;夜;night;N +seeker-compass;4426;;seeker_compass;Seeker Compass;; +ghosts-explosives;4427;;ghostsexplosives;Ghost's Explosives;; +power-drop;4428;;powerdrop;蓄力投掷;Power Drop; +yungs-better-dungeons;4429;;betterdungeons;YUNG's Better Dungeons;; +;4430;;;社会人梗图;peduncle;SHR +ore-controller;4431;;ore_controller;Ore Controller;; +morechickens;4432;;chickens;更多鸡;More Chickens; +ghosts-explosives-2;4433;;ghostsexplosives2;Ghost's Explosives 2;; +weapon-throw;4434;;weaponthrow;武器投掷;Weapon Throw; +more-villagers;4435;;morevillagers;更多村民;More Villagers; +dungeons-mobs;4436;;dungeons_mobs;地下城生物;Dungeons Mobs; +;4437;;doraemon_props;哆啦A梦的小道具;Doraemon's Props; +;4438;;magic_circle;Magic circle;; +;4439;;meteorrandomidea;流年年的随想作;MeteorRandomIdea; +;4440;;fortyyears;四十年;Miyazaki Hayao Forty Years; +;4441;;flycycle;Flycycle;; +;4442;;civilizationswars;三体:文明战争;Civilizations Wars; +;4443;;king_and_knight;明日方舟;King and knight; +;4444;;ashihara;葦原(序章 ~ 稻生草子);Ashihara; +;4445;1236639;uusi-aurinko;新日;Uusi Aurinko; +;4446;;serializableconsciousness;Serializable Consciousness;;SeriCons +;4448;;elytra_booster;推进鞘翅;Elytra Booster; +;4449;;minecardstouhou;Mine[Touhou]Card;; +;4450;;favourite_tags;Favourite Tags;; +;4451;;talisman;符·道;Talisman; +;4452;;decorations;Rotarism Decorations;; +;4453;;teamod;荒野乱斗;Tea Mod; +;4454;;the_elixir;不死灵药;The Elixir; +;4455;;;Miya World;; +chronicler-the-key-of-stellaris;4456;1244435;chronicler_lh;历史记录者·星之匙;Chronicler: The Key of Stellaris; +;4457;;goldtoucher;摸金;Gold Toucher; +neubulaeko-slime;4458;;neubulaeko_slime;星云子史莱姆;Neubulaeko Slime; +;4459;;darksword22;Darksword22;; +;4460;;tea_sorcerer;茶叶魔法使;Tea Sorcerer; +;4461;;m1917gun;梗系列Mod小合集;MemesP; +;4462;;threebodysophon;三体·智子;Threebody Sophon; +fantasysoup;4463;;fantasy_soup;FantasySoup;; +just-enough-professions-jep;4464;;;Just Enough Professions;;JEP +;4465;;norecipebook;没有配方书非官方版;No Recipe Book; +;4466;;paimon;应急食品;PaiMonFood; +plumed-belt;4467;;plumedbelt;Plumed Belt;; +better-with-minecolonies;4468;;;Better With Minecolonies;; +calemis-utilities;4469;;calemiutils;Calemi的实用设备;Calemi's Utilities; +botanical-cowardice;4470;;botanicalcowardice;Botanical Cowardice;; +travelers-titles;4471;;travelerstitles;Traveler's Titles;; +expand-chinese-sword;4472;;expand_chinese_sword;中式剑拓展;Expand Chinese Sword;ECS +;4473;;;空城魔法;; +littleframes;4474;;littleframes;小画;LittleFrames; +lavalogged-blocks;4475;;lavalogging;岩浆充填;Lavalogged blocks; +awoken-world;4476;;awokenworld;Awoken World;; +;4477;;gt4r;格雷科技4:重构想;GregTech 4 Reimagined;GT4R +camouflaged-creepers;4478;;;Camouflaged Creepers;; +ore-tweaker;4479;;oretweaker;Ore Tweaker;; +openpython;4480;;OpenPython;OpenPython;; +jei-lotr;4481;;;JEI LOTR;; +capes;4482;;;Fabric Capes;; +attack-speed-enchantment;4483;;attackspeedenchantment;攻击速度附魔;Attack Speed Enchantment; +natures-minerals;4484;;natureminerals;Nature's Minerals;; +balm-fabric;4485;;balm-fabric;Balm;; +resource-hogs;4486;['1037377'];;资源猪;Resourse Hogs; +advanced-xray;4487;;;Advanced XRay (Forge Edition);; +;4488;;Bontany Ore Trees;植物盆栽矿物树拓展;Bontany Ore Trees;BOT +ring-of-attraction-forge;4489;;ring_of_attraction;吸引戒指;Ring of Attraction; +customhud;4490;;;自定义HUD;CustomHud; +deadly-world;4491;457226;deadlyworld;致命世界;Deadly World; +fastdecay;4492;;;FastDecay;; +essential-commands;4493;;;Essential Commands;; +caves-and-cliffs-backport;4494;;cavesandcliffs;Caves & Cliffs Backport;; +that-future-mod-glow-squid-axolotl-moobloom-etc;4495;;minecraft__concept_vicale;That future mod;; +diamond-buildcraft;4496;;diamond;钻石装饰;Diamond Buildcraft; +apocalypse-rebooted;4497;;apocalypse;启示录重制;Apocalypse Rebooted; +mcwifipnp;4498;1244608;mcwifipnp;更高级联机设置;Minecraft WLAN Plug-n-Play;mcwifipnp +requious-frakto;4499;;requious;Requious Frakto;;ReF +;4500;;workmanship01;工匠技艺;Workmanship Mod; +;4502;;;切石机增强;Cutter Plus; +capsule;4503;;capsule;Capsule;; +isometric-renders;4504;;;Isometric Renders;;IR +;4505;;;Abstract's Recraft;; +enchanting-secretaire;4506;1250073;enchantnote;附魔记录;Enchanting Secretaire; +sync-fabric;4507;;sync;克隆(Fabric);Sync (Fabric); +tale-of-kingdoms-a-new-conquest;4508;;taleofkingdoms;王国:新征程;Tale of Kingdoms: A new Conquest; +;4509;;networktitle;网络窗口标题;NetowrkTitle; +schwarz;4510;;schwarz;黑;Schwarz; +megane;4511;;;megane;; +crusade;4512;;crusade;Crusade;; +vending-machine;4513;;vm;售货机;Vending Machine; +modernxl;4514;;minecraftmodernxl;Modernxl;; +taiga2;4515;;taiga;匠魂合金附加2;Tinkers Alloying Addon Port;TAIGA2 +chunkgenlimited;4516;1041769;chunkgenlimit;区块生成限制;ChunkGenLimiter; +more-crafting-tables-for-forge;4517;;mctb;More Crafting Tables for Forge!;; +repurposed-structures-fabric;4518;;;结构变体;Repurposed Structures; +ezpas;4519;;;EZ Pipes and Stuff;;EZPaS +electrona;4520;;electrona;Electrona;; +;4521;;mcg;MCG;; +reasonable-sorting;4522;;reasonable-sorting;合理排序;Reasonable Sorting; +chat-heads;4523;;;聊天头像;Chat Heads; +hidden-armor;4524;;;隐藏盔甲;Hidden Armor; +majruszs-progressive-difficulty;4525;;majruszs_difficulty;Majrusz的进阶难度;Majrusz's Progressive Difficulty; +pharmacist;4526;;pharmacist;Pharmacist;; +kappa;4527;;kappa;Kappa;; +equivalent-integrations;4528;;equivalentintegrations;等价集成;Equivalent Integrations; +keep-equipment;4529;;;保留装备;Keep Equipment; +herobrines-origin;4530;;;Herobrine的起源;Herobrine's Origin; +the-abyss;4531;;theabyss;深渊:远古;The Abyss: Legacy; +sekiro-sense-symbols;4532;;;Sekiro Sense Symbols;; +lurker;4533;;lurkermod;Cold的潜伏者;Colds: Lurker; +cavebiomeapi;4534;;cavebiomeapi;CaveBiomeAPI;; +extended-block-shapes;4535;;extshape;扩展方块形状;Extended Block Shapes; +passive-mobs;4536;;passivemobs;Passive Mobs;;PM +sponsor;4537;1080837;;赞助者;Sponsor; +;4538;;minecraftplusplus;我的世界++;MinecraftPlusPlus;MPP +;4539;;silver;银世界模组;Silver World Mod;SWM +between-ores;4540;;;Between Ores;; +black-hole;4541;1179600;;黑洞;Black Hole; +more-and-more-minerals;4542;;more minerals,more_mineral;越来越多的矿物;more and more minerals; +permafrost;4543;;;Permafrost;; +;4544;1253677;ice_and_fire_and_wizardry;冰,火与魔法;Ice,fire and wizardry;IFW +scootys-plants-vs-zombies-2;4545;;scootys_pvz2;Scootys Plants Vs. Zombies 2;;SPvZ2 +better-furnaces-reforged;4546;;betterfurnacesreforged;BetterFurnaces Reforged;; +;4547;1167939;mahou_tattoo;画皮;MahouTattoo; +;4548;;beyond_the_mineral;超越矿物;beyond the mineral;BTM +schools-of-magic-second-semester;4549;;schoolsofmagic;Schools of Magic: Second Semester;; +dark-loading-screen;4550;;;Dark Loading Screen;; +hals-exploration-mod;4551;;hem;Hals Exploration Mod;;HEM +farmers-delight-cookbook-addon;4552;;fd_cookbook;农夫乐事:烹饪书拓展;Farmer's Delight Cookbook Addon; +heads-down-display;4553;;;heads down display;; +mrcrayfish-more-furniture-mod;4554;;morecfm;MrCrayfish 的更多家具;MrCrayfish's More Furniture Mod; +multi-world;4555;;multi_world;Multi world;;MW +;4556;;more bowls;更多碗;more bowls; +terralith;4557;;terralith;Terralith ~ Overworld Evolved;; +overworld-two;4558;;overworld_two;Overworld Two;; +xl-packets;4559;;;XL Packets;; +rftools-storage;4560;;rftoolsstorage;RF工具:存储;RFTools Storage; +rftools-builder;4561;;rftoolsbuilder;RF工具箱:建造机;RFTools Builder; +;4562;;armor_hero;铠甲勇士;Armor Hero; +nethers-delight;4563;;nethers_delight;下界乐事;Nether's Delight; +farmers-extra-foods;4564;;farmers_extra_foods;农夫的拓展食物;Farmer's Extra Foods; +tinkers-delight;4565;;thinkers_delight,tdelight;工匠乐事;Tinker's Delight; +;4566;;sic;锻铁工艺;Strike Iron Craft;SIC +;4567;;FlashFreeze;FlashFreeze;; +majruszs-accessories;4568;;majruszs_accessories;Majrusz的配件;Majrusz's Accessories; +water-2-mana;4569;;water2mana;Water 2 Mana;; +;4570;;;工程师板鱼;Engineer Slabfish; +;4571;;item_export;Item Export;;IEx +craft-and-hunt;4572;;craftandhunt;Craft and Hunt;; +tmats;4573;;tmats;TMats;; +the-afterlight;4574;;the_afterlight;The Afterlight;; +tinkers-planner;4575;;tconplanner;Tinker's Planner;; +playing-cards;4576;;playingcards;Playing Cards;; +rainbow-oak-trees-2;4577;;rainbowoaks;彩虹橡树2;Rainbow Oak Trees 2; +mapfrontiers;4578;;mapfrontiers;地图边界;MapFrontiers; +customizable-elytra;4579;;customizableelytra;可自定义鞘翅;Customizable Elytra; +puzzles-lib;4580;;puzzleslib;Puzzles Lib;; +unique-enchantments-base;4581;;uniquebase;独特的附魔:基础;Unique Enchantments Base; +ore-stages;4582;;;Ore Stages;; +krays-magic-candles;4583;;krayscandles;Kray's Magic Candles;; +thaumcraft-localization-optimizer;4584;;ThaumcraftLocalizationOptimizer;神秘时代本地化优化;Thaumcraft Localization Optimizer;TLO +drink-beer-fabric;4585;;drinkbeer;喝啤酒啦;Drink Beer; +emerald-tools-armour;4586;;emerald_armor_and_tools;Emerald Tools/Armour;; +hidden-recipe-book;4587;;hiddenrecipebook;隐藏配方书;Hidden Recipe Book; +kibe;4588;;kibe;羊肉面饼;Kibe; +poisoncraft;4589;;poisoncraft;毒药工艺;Poison craft; +detail-armor-bar;4590;;detailab;细节盔甲;Detail Armor Bar; +wings-horns-hooves-the-ultimate-unicorn-mod;4591;;ultimate_unicorn_mod;Wings Horns & Hooves, the Ultimate Unicorn Mod;; +project-rankine;4592;;rankine;Project Rankine;; +tinkers-mechworks;4593;;tmechworks,TMechworks;Tinkers' Mechworks;; +qdc-quantum-dis-assembly-craft;4594;;qdc_mod;量子拆解工艺;Quantum Dis-Assembly Craft;QDC +william-wythers-overhauled-overworld;4595;;william-wythers-overhauled-overworld;William Wythers' Overhauled Overworld;; +infinite-music;4596;;infinitemusic;Infinite Music;; +cobbler;4597;;cobbler;可靠的潜影贝工厂;Shulker's Faithful Factories/Cobbler;SFF +nether-fast-transport-layer;4598;;;Nether Fast Transport Layer;; +the-outer-end;4599;;outer_end;The Outer End;; +hamncheese;4600;;hamncheese,cheesemod;Ham N' Cheese;; +buzzy-drones;4601;;buzzydrones;Buzzy Drones;; +morevanillaarmor;4602;;morevanillaarmor;MoreVanillaArmor;; +;4603;1252824;drinksaddons;饮品追加;Drinks Addons; +eternal-tales;4604;;eternal_tales;Eternal Tales;; +oh-the-biomes-youll-go-fixes;4605;;;“你将去的生物群系”修复模组;Oh The Biomes You'll Go Fixes; +wild-world;4606;;wildworld;Wild World;; +miskatonic-mysteries;4608;;miskatonicmysteries;Miskatonic Mysteries;;MM +harvesters-night;4609;;harvestersnight;收割者之夜;Harvester's Night; +slotlock;4610;;slotlock;锁定槽;SlotLock; +;4611;;neoultracraft;新·奥特工艺;Neo UltraCraft;NUC +panorama-tweaker;4612;;;Panorama Tweaker [Fabric];; +simple-tomb;4613;;simpletomb;简单坟墓;Simple Tomb; +modern-life;4614;;modernlife;摩登生活;Modern Life; +paxi-fabric;4615;;paxi;Paxi;; +;4616;;;元素反应;Elemental_Reaction;ER +waveycapes;4617;;;飘扬披风;Wavey Capes; +skin-layers-3d;4618;;;3D皮肤层;Skin Layers 3D; +all-the-discs;4619;;;唱片大全;All the Discs; +cryptic-cosmos;4620;;crypticcosmos;Cryptic Cosmos;; +bayou-blues;4621;;bayou_blues;长沼蓝调;Bayou Blues; +hex-lands;4622;;;六边形地貌;Hex Lands; +fixrtm;4623;;fix-rtm;FixRTM;; +serene-tweaks;4624;;serenetweaks;Serene Tweaks;; +ScalingGuis;4625;;ScalingGUIs;ScalingGuis;; +;4626;;bettercommandblock;更好的命令方块;Better Command Block IDE; +;4627;;breakfree;自由破坏;Break Free; +tinkers-mechworks-fork;4628;;tmechworks;Tinkers Mechworks Fork;; +extended-nether-backport;4629;;extendednether;Extended Nether Backport;; +borderless;4630;;borderlesswindow;无边框全屏;Borderless Window; +lifted-restrictions-structure-block;4631;;better_structure;更好的结构方块;Better Structure Block; +entity-model-json;4632;;;实体模型JSON;Entity Model JSON; +death-coords;4633;;;死亡坐标显示;Death Coords; +;4634;;ultimatec;终极合金;ultimatec;ult +never-enough-currency;4635;;currency;货币多多;Never Enough Currency;NEC +never-enough-currency-lite;4636;;currency;货币多多:精简版;Never Enough Currency Lite;NECL +create-chunkloading;4637;;;Create Chunkloading;; +name-pain;4638;;namepain;Name Pain;; +wireless-chargers;4639;;wirelesschargers;无线充电器;Wireless Chargers; +bouncier-beds;4640;;bouncierbeds;弹力床;Bouncier Beds; +hexlands-ii;4641;;;六边形地貌 2;HexLands II; +gold-in-river-mod;4642;;;河中淘金;Gold In River Mod; +;4643;;imagesign;图片告示牌;Image Sign; +lorespawn;4644;;lorespawn;怪物巢穴;Lorespawn; +creatuures;4645;;leescreatures;Lee's Creatures;; +;4646;;;Fabric's Biome API Reforged;; +stalwart-dungeons;4647;;stalwart_dungeons;坚定地牢;Stalwart Dungeons; +maidens-marvelous-materials;4648;;maidensmaterials;Maiden's Marvelous Materials;; +nekoration;4649;;nekoration;Nekoration;; +tomb-many-graves-2;4650;;tombmanygraves;Tomb Many Graves 2;; +fins-and-tails;4651;;fins;鳍和尾巴;Fins and Tails;F&T +smarter-farmers-farmers-replant;4652;;farmersreplant;Smarter Farmers/Farmers Replant;; +peculiars;4653;;peculiars;独特风味;Peculiars; +draggable-resource-packs;4654;;draggableresourcepacks;可拖动资源包;Draggable Resource Packs;DRP +fastchest;4655;;fastchest;FastChest;; +;4656;1255783;;方块小镇;Yuushya Townscape; +architects-palette;4657;;architects_palette;Architect's Palette;; +whisperwoods;4658;;whisperwoods;低语之森;Whisperwoods; +dimensional-dungeons;4659;;dimdungeons;Dimensional Dungeons;; +bosses-of-mass-destruction;4660;;bosses_of_mass_destruction;Bosses of Mass Destruction;;BOMD +neoelfeos-medieval-pub-decoration;4661;;nefdecomod;Nef's Medieval decoration;; +dustrial-decor;4662;;dustrial_decor;'Dustrial Decor;; +feders-scarecrows;4663;;feders_scarecrows;Feder的稻草人;Feder's Scarecrows; +zetter;4664;;;Zetter;; +mystical-pumpkins;4665;;mystical_pumpkins;神秘南瓜;Mystical Pumpkins; +skinned-lanterns;4666;;skinnedlanterns;灯笼皮肤;Skinned Lanterns; +scarecrows;4667;;;稻草人;Scarecrows; +seasonals;4668;;seasonals;季节风味;Seasonals; +mimi-mod;4669;;mimi;Musical Instrument Minecraft Interface;;MIMI +;4670;1253993;blocktuner;音符盒调音助手;BlockTuner; +caged-mobs;4671;;cagedmobs;Caged Mobs;; +advanced-rifles;4672;;advancedrifles;Advanced Rifles;; +tome-of-blood;4673;;tomeofblood;血之宝典;Tome of Blood; +blockfront-world-war-ii;4674;;bf;BlockFront;;BF +archaic-guns;4675;;archaicguns;Archaic Guns;; +blockcarpentry;4676;;blockcarpentry;BlockCarpentry;; +survival-overhaul;4677;;survivaloverhaul;Survival Overhaul;; +raining-cats-and-dogs;4678;;;猫狗雨;Raining Cats and Dogs; +melt;4679;;;Melt;; diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java index 2fde81c16..b95f62519 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/util/StringUtils.java @@ -25,6 +25,7 @@ import java.util.Collection; import java.util.LinkedList; import java.util.List; import java.util.StringTokenizer; +import java.util.regex.Pattern; /** * @@ -243,4 +244,42 @@ public final class StringUtils { } return result.toString(); } + + /** + * Class for computing the longest common subsequence between strings. + */ + public static class LongestCommonSubsequence { + // We reuse dynamic programming storage array here to reduce allocations. + private final int[][] f; + private final int maxLengthA; + private final int maxLengthB; + + public LongestCommonSubsequence(int maxLengthA, int maxLengthB) { + this.maxLengthA = maxLengthA; + this.maxLengthB = maxLengthB; + f = new int[maxLengthA + 1][]; + for (int i = 0; i <= maxLengthA; i++) { + f[i] = new int[maxLengthB + 1]; + } + } + + public int calc(CharSequence a, CharSequence b) { + if (a.length() > maxLengthA || b.length() > maxLengthB) { + throw new IllegalArgumentException("Too large length"); + } + for (int i = 1; i <= a.length(); i++) { + for (int j = 1; j <= b.length(); j++) { + if (a.charAt(i - 1) == b.charAt(j - 1)) { + f[i][j] = 1 + f[i - 1][j - 1]; + } else { + f[i][j] = Math.max(f[i - 1][j], f[i][j - 1]); + } + } + } + return f[a.length()][b.length()]; + } + } + + public static final Pattern CHINESE_PATTERN = Pattern.compile("[\\u4e00-\\u9fa5]"); + }