|
|
Better Runtime Resource Pack (BRRP) (更好的运行时资源包)Github |相关wiki |源站链接支持: fabric , forge一个用于在运行时生成资源的库模组。在ARRP模组的基础上进行了增强和改进。
欢迎加入腾讯QQ群 或 KOOK(KaiHeiLa)频道邀请码 *KlFS0n*,体验此模组的最新更新。
注意:自版本1.0.0起,该模组的ID已从 `better_runtime_resource_pack` 更改为 `brrp_v1`,并修改了代码以不兼容旧版本,但可以与旧版本共存。除非必要,请不要使用旧版本。
什么是运行时资源包?
运行时资源包(RRP)指的是在Minecraft运行时生成的资产和数据文件,以避免一些重复的工作。对于具有大量相似方块和物品的模组,运行时资源包有助于显著减小模组文件的大小。
例如,大多数方块的战利品表可以描述为“掉落方块本身”。一些方块只有在使用丝触之时才会掉落。对于平板方块,当双平板方块被破坏时,会掉落两个方块而不是一个。在战利品表中,每个方块都需要一个战利品表JSON文件;创建它们相当耗时。此外,几乎每个方块都需要“方块状态”、方块模型和物品模型(方块模型可能不止一个)。如果计算战利品表和配方(如果存在),则每个方块至少需要5个JSON文件才能实现全部功能。相比之下,运行时资源包使它们在游戏实例内生成,而不是存储在模组JAR文件中。
就功能而言,运行时资源包与常规资源包没有区别。普通资源包(包括模组的内置资源以及手动安装的资源包或数据包)可以覆盖运行时资源包的内容,或者与运行时资源包有关系。一个典型的例子是,方块模型在运行时资源包中定义,它们的纹理文件像往常一样存储在模组文件中(因为在运行时生成纹理文件不合适)。
与传统资源包相比,运行时资源包减少了I/O操作,但增加了对象序列化的过程,这是运行时资源包的缺点。当资源包被生成时,对象被转换为字节形式(通常是JSON)。这个过程称为_序列化_。当游戏实例读取这些资源包时,这些字节形式的内容被分析以在游戏中生成对象。这个过程称为_反序列化_。在传统资源包中,所有资源都是序列化的,游戏实例只需要在加载资源时对它们进行反序列化。然而,运行时资源包需要进行序列化和反序列化的过程。
再次总结一下游戏中读取传统资源包和运行时资源包的过程:
- _传统_ 文件 → (读取为)字节形式 → (反序列化为)游戏内对象
- _运行时_ 代码 → ARRP对象 → (序列化为)字节形式 → (反序列化为)游戏内对象
在未来的版本中,我计划使直接使用在游戏中生成的对象成为可能,而不需要反序列化和序列化的过程。理论上这已经是可能的,但为了以资源包的形式存在并允许被传统资源包和数据包覆盖,还需要进一步的研究。
关于这个模组
这个模组(BRRP)是ARRP的一个分支。从1.0.0开始,这个模组已经独立于ARRP,不再提供ARRP的功能,但可以与ARRP模组共存。
这个模组是开源的,并在MPLv2许可下发布。
*更多详情请查阅GitHub。*
来自Modrinth所有游戏版本1.20.51.20.61.211.21.124w10a1.20.31.20.41.20.21.20.2-pre41.18.21.19.21.19.31.19.41.201.20.11.20-rc11.20-pre41.20-pre11.191.19.11.181.18.11.171.17.11.16.41.16.51.19.4-rc323w07a1.19.3-rc31.19.3-pre21.19.3-pre322w45a22w46a22w43a1.16.21.16.3所有类型fabricforge1.0.4-mc1.20.6-fabricbrrp-fabric-1.0.4-1.20.6.jar下载1.0.4-mc1.20.6-fabric#Release- Fixed the conflict with some mods that modify data driven contents.- Optimized the implementation of loot table generation.展开版本: 1.0.4-mc1.20.6-fabric支持游戏: 1.20.5, 1.20.6类型:FabricRelease下载次数: 4621.0.4-mc1.21.1-fabricbrrp-fabric-1.0.4-1.21.1.jar下载1.0.4-mc1.21.1-fabric#Release- Fixed the conflict with some mods that modify data driven contents.- Optimized the implementation of loot table generation.展开版本: 1.0.4-mc1.21.1-fabric支持游戏: 1.21, 1.21.1类型:FabricRelease下载次数: 28,2641.0.3-mc1.21-fabricbrrp-fabric-1.0.3-1.21.jar下载1.0.3-mc1.21-fabric#Release- 利用 MixinExtras,优化一些 mixin展开版本: 1.0.3-mc1.21-fabric支持游戏: 1.21, 1.21.1类型:FabricRelease下载次数: 8,2301.0.3-mc1.20.6-fabricbrrp-fabric-1.0.3-1.20.6.jar下载1.0.3-mc1.20.6-fabric#Release- Fit into 1.20.5/6.展开版本: 1.0.3-mc1.20.6-fabric支持游戏: 1.20.5, 1.20.6类型:FabricRelease下载次数: 1,5381.0.3-beta.1-mc1.20.5-fabricbrrp-fabric-1.0.3-beta.1-1.20.5.jar下载1.0.3-beta.1-mc1.20.5-fabric#Alpha- 利用 MixinExtras,优化一些 mixin展开版本: 1.0.3-beta.1-mc1.20.5-fabric支持游戏: 1.20.5类型:FabricAlpha下载次数: 1501.0.3-alpha.1-mc24w10a-fabricbrrp-fabric-1.0.3-alpha.1-24w10a.jar下载1.0.3-alpha.1-mc24w10a-fabric#Alpha展开版本: 1.0.3-alpha.1-mc24w10a-fabric支持游戏: 24w10a类型:FabricAlpha下载次数: 1261.0.3-mc1.20.4-fabricbrrp-fabric-1.0.3-1.20.4.jar下载1.0.3-mc1.20.4-fabric#Release展开版本: 1.0.3-mc1.20.4-fabric支持游戏: 1.20.3, 1.20.4类型:FabricRelease下载次数: 10,5411.0.3-beta.3-mc1.20.4-fabricbrrp-fabric-1.0.3-beta.3-1.20.4.jar下载1.0.3-beta.3-mc1.20.4-fabric#Beta- Adapted to 1.20.4展开版本: 1.0.3-beta.3-mc1.20.4-fabric支持游戏: 1.20.3, 1.20.4类型:FabricBeta下载次数: 2371.0.2-mc1.20.2-fabricbrrp-fabric-1.0.2-1.20.2.jar下载1.0.2-mc1.20.2-fabric#Release- Fixed the issue that the mod cannot launch under non-development environment展开版本: 1.0.2-mc1.20.2-fabric支持游戏: 1.20.2类型:FabricRelease下载次数: 2,1151.0.1-mc1.20.2brrp-fabric-1.0.1-1.20.2.jar下载1.0.1-mc1.20.2#ReleaseFor 1.20.2 snapshot versions展开版本: 1.0.1-mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 3411.0.1-beta.1-mc1.20.2-pre4-fabricbrrp-fabric-1.0.1-beta.1-1.20.2-pre4.jar下载1.0.1-beta.1-mc1.20.2-pre4#BetaFor 1.20.2 snapshot versions展开版本: 1.0.1-beta.1-mc1.20.2-pre4支持游戏: 1.20.2-pre4类型:FabricBeta下载次数: 1051.0.1-mc1.18.2-forgebrrp-forge-1.0.1-1.18.2.jar下载1.0.1-mc1.18.2-forge#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.18.2-forge支持游戏: 1.18.2类型:ForgeRelease下载次数: 7,4641.0.1-mc1.18.2-fabricbrrp-fabric-1.0.1-1.18.2.jar下载1.0.1-mc1.18.2-fabric#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.18.2-fabric支持游戏: 1.18.2类型:FabricRelease下载次数: 17,7821.0.1-mc1.19.2-forgebrrp-forge-1.0.1-1.19.2.jar下载1.0.1-mc1.19.2-forge#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.19.2-forge支持游戏: 1.19.2类型:ForgeRelease下载次数: 2,0731.0.1-mc1.19.2-fabricbrrp-fabric-1.0.1-1.19.2.jar下载1.0.1-mc1.19.2-fabric#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.19.2-fabric支持游戏: 1.19.2类型:FabricRelease下载次数: 13,0501.0.1-mc1.19.3-forgebrrp-forge-1.0.1-1.19.3.jar下载1.0.1-mc1.19.3-forge#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 1741.0.1-mc1.19.3-fabricbrrp-fabric-1.0.1-1.19.3.jar下载1.0.1-mc1.19.3-fabric#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.19.3-fabric支持游戏: 1.19.3类型:FabricRelease下载次数: 5361.0.1-mc1.19.4-forgebrrp-forge-1.0.1-1.19.4.jar下载1.0.1-mc1.19.4-forge#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.19.4-forge支持游戏: 1.19.4类型:ForgeRelease下载次数: 3901.0.1-mc1.19.4-fabricbrrp-fabric-1.0.1-1.19.4.jar下载1.0.1-mc1.19.4-fabric#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.19.4-fabric支持游戏: 1.19.4类型:FabricRelease下载次数: 6,4601.0.1-mc1.20.1-fabricbrrp-fabric-1.0.1-1.20.1.jar下载1.0.1-mc1.20.1-fabric#Release- Fixed the version that specifying transformations may result in malformed serialization.- Runtime resource packs registered on `RRPCallback.BEFORE_USER` are no longer experimental.- Async and lazy resources are no longer experimental.- (About developing) Since this version, all publications are implemented in Gradle tasks.展开版本: 1.0.1-mc1.20.1-fabric支持游戏: 1.20, 1.20.1类型:FabricRelease下载次数: 58,2801.0.0-mc1.20.1-fabricbrrp-fabric-1.0.0-1.20.1.jar下载1.0.0-mc1.20.1-fabric#ReleaseNo changelog was specified.展开版本: 1.0.0-mc1.20.1-fabric支持游戏: 1.20, 1.20.1类型:FabricRelease下载次数: 1,3331.0.0-mc1.20-fabricbrrp-fabric-1.0.0-1.20.jar下载1.0.0-mc1.20-fabric#ReleaseNo changelog was specified.展开版本: 1.0.0-mc1.20-fabric支持游戏: 1.20-rc1, 1.20类型:FabricRelease下载次数: 4611.0.0-beta.2-mc1.20-pre4-fabricbrrp-fabric-1.0.0-beta.2-1.20-pre4.jar下载1.0.0-beta.2-mc1.20-pre4-fabric#BetaNo changelog was specified.展开版本: 1.0.0-beta.2-mc1.20-pre4-fabric支持游戏: 1.20-pre4类型:FabricBeta下载次数: 811.0.0-beta.1-mc1.20-pre1-fabricbrrp-fabric-1.0.0-beta.1-1.20-pre1.jar下载1.0.0-beta.1-mc1.20-pre1-fabric#BetaNo changelog was specified.展开版本: 1.0.0-beta.1-mc1.20-pre1-fabric支持游戏: 1.20-pre1类型:FabricBeta下载次数: 671.0.0-mc1.19.4-forgebrrp-forge-1.0.0-1.19.4.jar下载1.0.0-mc1.19.4-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.19.4-forge支持游戏: 1.19.4类型:ForgeRelease下载次数: 1541.0.0-mc1.19.3-forgebrrp-forge-1.0.0-1.19.3.jar下载1.0.0-mc1.19.3-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 491.0.0-mc1.19.2-forgebrrp-forge-1.0.0-1.19.2.jar下载1.0.0-mc1.19.2-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.19.2-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 2881.0.0-mc1.18.2-forgebrrp-forge-1.0.0-1.18.2.jar下载1.0.0-mc1.18.2-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.18.2-forge支持游戏: 1.18.2类型:ForgeRelease下载次数: 1531.0.0-mc1.18.1-forgebrrp-forge-1.0.0-1.18.1.jar下载1.0.0-mc1.18.1-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.18.1-forge支持游戏: 1.18, 1.18.1类型:ForgeRelease下载次数: 791.0.0-mc1.17.1-forgebrrp-forge-1.0.0-1.17.1.jar下载1.0.0-mc1.17.1-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.17.1-forge支持游戏: 1.17, 1.17.1类型:ForgeRelease下载次数: 1541.0.0-mc1.16.5-forgebrrp-forge-1.0.0-1.16.5.jar下载1.0.0-mc1.16.5-forge#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.16.5-forge支持游戏: 1.16.4, 1.16.5类型:ForgeRelease下载次数: 3,6281.0.0-mc1.19.4-fabricbrrp-fabric-1.0.0-1.19.4.jar下载1.0.0-mc1.19.4-fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.19.4-fabric支持游戏: 1.19.4类型:FabricRelease下载次数: 4531.0.0-mc1.19.3-fabricbrrp-fabric-1.0.0-1.19.3.jar下载1.0.0-mc1.19.3-fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.19.3-fabric支持游戏: 1.19.3类型:FabricRelease下载次数: 1,1591.0.0-mc1.19.2-fabricbrrp-fabric-1.0.0-1.19.2.jar下载1.0.0-mc1.19.2.fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.1.19 and 1.19.1 are supported but not guaranteed.展开版本: 1.0.0-mc1.19.2.fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 7211.0.0-mc1.18.2-fabricbrrp-fabric-1.0.0-1.18.2.jar下载1.0.0-mc1.18.2-fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0-mc1.18.2-fabric支持游戏: 1.18.2类型:FabricRelease下载次数: 2361.0.0-mc1.18.1-fabricbrrp-fabric-1.0.0-1.18.1.jar下载1.0.0-mc1.18.1-fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.1.18 supported but not guaranteed.展开版本: 1.0.0-mc1.18.1-fabric支持游戏: 1.18, 1.18.1类型:FabricRelease下载次数: 981.0.0-mc1.17.1-fabricbrrp-fabric-1.0.0-1.17.1.jar下载1.0.0-mc1.17.1-fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.This file supports 1.17.1 but does not support 1.17.展开版本: 1.0.0-mc1.17.1-fabric支持游戏: 1.17.1类型:FabricRelease下载次数: 5301.0.0+mc1.16.5-fabricbrrp-fabric-1.0.0-1.16.5.jar下载1.0.0+mc1.16.5-fabric#ReleaseSInce this version, BRRP is dependent from ARRP now, and do not provide functions of ARRP. However, if other mods rely on ARRP, the mods can coexist.展开版本: 1.0.0+mc1.16.5-fabric支持游戏: 1.16.4, 1.16.5类型:FabricRelease下载次数: 6,3920.9.0-mc1.19.4-fabricbrrp-fabric-0.9.0-1.19.4.jar下载0.9.0-mc1.19.4-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.19.4-fabric支持游戏: 1.19.4-rc3, 1.19.4类型:FabricRelease下载次数: 1980.9.0-mc1.16.5-fabricbrrp-fabric-0.9.0-1.16.5.jar下载0.9.0-mc1.16.5-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.16.5-fabric支持游戏: 1.16.4, 1.16.5类型:FabricRelease下载次数: 750.9.0-mc1.17.1-fabricbrrp-fabric-0.9.0-1.17.1.jar下载0.9.0-mc1.17.1-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.17.1-fabric支持游戏: 1.17, 1.17.1类型:FabricRelease下载次数: 680.9.0-mc1.18.1-fabricbrrp-fabric-0.9.0-1.18.1.jar下载0.9.0-mc1.18.1-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.18.1-fabric支持游戏: 1.18, 1.18.1类型:FabricRelease下载次数: 350.9.0-mc1.18.2-forgebrrp-forge-0.9.0-1.18.2.jar下载0.9.0-mc1.18.2-forge#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.18.2-forge支持游戏: 1.18.2类型:ForgeRelease下载次数: 1150.9.0-mc1.18.2-fabricbrrp-fabric-0.9.0-1.18.2.jar下载0.9.0-mc1.18.2-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.18.2-fabric支持游戏: 1.18.2类型:FabricRelease下载次数: 2440.9.0-mc1.19.3-forgebrrp-forge-0.9.0-1.19.3.jar下载0.9.0-mc1.19.3-forge#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 720.9.0-mc1.19.3-fabricbrrp-fabric-0.9.0-1.19.3.jar下载0.9.0-mc1.19.3-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.19.3-fabric支持游戏: 1.19.3类型:FabricRelease下载次数: 1570.9.0-mc1.19.2-forgebrrp-forge-0.9.0-1.19.2.jar下载0.9.0-mc1.19.2-forge#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.19.2-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 1620.9.0-mc1.19.2-fabricbrrp-fabric-0.9.0-1.19.2.jar下载0.9.0-mc1.19.2-fabric#ReleaseNo changelog was specified.展开版本: 0.9.0-mc1.19.2-fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 2540.9.0-build.1-mc1.16.5-fabricbrrp-fabric-0.9.0-build.1-1.16.5.jar下载0.9.0-build.1-mc1.16.5-fabric#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.16.5-fabric支持游戏: 1.16.4, 1.16.5类型:FabricBeta下载次数: 400.9.0-build.1-mc1.17.1-fabricbrrp-fabric-0.9.0-build.1-1.17.1.jar下载0.9.0-build.1-mc1.17.1-fabric#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.17.1-fabric支持游戏: 1.17, 1.17.1类型:FabricBeta下载次数: 460.9.0-build.1-mc1.18.1-fabricbrrp-fabric-0.9.0-build.1-1.18.1.jar下载0.9.0-build.1-mc1.18.1-fabric#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.18.1-fabric支持游戏: 1.18, 1.18.1类型:FabricBeta下载次数: 450.9.0-build.1-mc1.18.2-forgebrrp-forge-0.9.0-build.1-1.18.2.jar下载0.9.0-build.1-mc1.18.2-forge#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.18.2-forge支持游戏: 1.18.2类型:ForgeBeta下载次数: 470.9.0-build.1-mc1.18.2-fabricbrrp-fabric-0.9.0-build.1-1.18.2.jar下载0.9.0-build.1-mc1.18.2-fabric#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.18.2-fabric支持游戏: 1.18.2类型:FabricBeta下载次数: 490.9.0-build.1-mc1.19.2-forgebrrp-forge-0.9.0-build.1-1.19.2.jar下载0.9.0-build.1-mc1.19.2-forge#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.19.2-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeBeta下载次数: 510.9.0-build.1-mc1.19.2-fabricbrrp-fabric-0.9.0-build.1-1.19.2.jar下载0.9.0-build.1-mc1.19.2-fabric#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc1.19.2-fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricBeta下载次数: 680.9.0-build.1-mc1.19.3-forgebrrp-forge-0.9.0-build.1-1.19.3.jar下载0.9.0-build.1-mc1.19.3-forge#BetaAdded more features and fixed the conflict with Replay Mod.展开版本: 0.9.0-build.1-mc1.19.3-forge支持游戏: 1.19.3类型:ForgeBeta下载次数: 390.9.0-build.1-mc1.19.3-fabricbrrp-fabric-0.9.0-build.1-1.19.3.jar下载0.9.0-build.1-mc1.19.3-fabric#BetaAdded more features and fixed the conflict with Replay Mod.展开版本: 0.9.0-build.1-mc1.19.3-fabric支持游戏: 1.19.3类型:FabricBeta下载次数: 570.9.0-build.1-mc23w07a-fabricbrrp-fabric-0.9.0-build.1-23w07a.jar下载0.9.0-build.1-mc23w07a-fabric#BetaNo changelog was specified.展开版本: 0.9.0-build.1-mc23w07a-fabric支持游戏: 23w07a类型:FabricBeta下载次数: 870.8.2-mc1.16.5-forgebrrp-forge-0.8.2-1.16.5.jar下载0.8.2-mc1.16.5-forge#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.16.5-forge支持游戏: 1.16.4, 1.16.5类型:ForgeRelease下载次数: 5,5060.8.2-mc1.16.5-fabricbrrp-fabric-0.8.2-1.16.5.jar下载0.8.2-mc1.16.5-fabric#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.16.5-fabric支持游戏: 1.16.4, 1.16.5类型:FabricRelease下载次数: 1270.8.2-mc1.17.1-forgebrrp-forge-0.8.2-1.17.1.jar下载0.8.2-mc1.17.1-forge#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.17.1-forge支持游戏: 1.17, 1.17.1类型:ForgeRelease下载次数: 830.8.2-mc1.17.1-fabricbrrp-fabric-0.8.2-1.17.1.jar下载0.8.2-mc1.17.1-fabric#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.17.1-fabric支持游戏: 1.17, 1.17.1类型:FabricRelease下载次数: 850.8.2-mc1.18.1-forgebrrp-forge-0.8.2-1.18.1.jar下载0.8.2-mc1.18.1-forge#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.18.1-forge支持游戏: 1.18, 1.18.1类型:ForgeRelease下载次数: 700.8.2-mc1.18.1-fabricbrrp-fabric-0.8.2-1.18.1.jar下载0.8.2-mc1.18.1-fabric#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.18.1-fabric支持游戏: 1.18, 1.18.1类型:FabricRelease下载次数: 480.8.2-mc1.18.2-forgebrrp-forge-0.8.2-1.18.2.jar下载0.8.2-mc1.18.2-forge#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.18.2-forge支持游戏: 1.18.2类型:ForgeRelease下载次数: 1180.8.2-mc1.18.2-fabricbrrp-fabric-0.8.2-1.18.2.jar下载0.8.2-mc1.18.2-fabric#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.18.2-fabric支持游戏: 1.18.2类型:FabricRelease下载次数: 3,5490.8.2-mc1.19.2-forgebrrp-forge-0.8.2-1.19.2.jar下载0.8.2-mc1.19.2-forge#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.19.2-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 2100.8.2-mc1.19.2-fabricbrrp-fabric-0.8.2-1.19.2.jar下载0.8.2-mc1.19.2-fabric#Releasebrrp-fabric-0.8.2-1.19.2-sources.jar下载0.8.2-mc1.19.2-fabric#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.19.2-fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 5830.8.2-mc1.19.3-forgebrrp-forge-0.8.2-1.19.3.jar下载0.8.2-mc1.19.3-forge#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 960.8.2-mc1.19.3-fabricbrrp-fabric-0.8.2-1.19.3.jar下载0.8.2-mc1.19.3-fabric#Releasebrrp-fabric-0.8.2-1.19.3-sources.jar下载0.8.2-mc1.19.3-fabric#ReleaseNo changelog was specified.展开版本: 0.8.2-mc1.19.3-fabric支持游戏: 1.19.3类型:FabricRelease下载次数: 4020.8.1-mc1.19.3-fabricbrrp-fabric-0.8.1-1.19.3.jar下载0.8.1-mc1.19.3-fabric#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.19.3-fabric支持游戏: 1.19.3-rc3, 1.19.3类型:FabricRelease下载次数: 1090.8.1-build.3-mc1.19.3-pre2/3-fabricbrrp-fabric-0.8.1-build.3-1.19.3-pre2.jar下载0.8.1-build.3-mc1.19.3-pre2#BetaNo changelog was specified.展开版本: 0.8.1-build.3-mc1.19.3-pre2支持游戏: 1.19.3-pre2, 1.19.3-pre3类型:FabricBeta下载次数: 600.8.1-build.1-mc22w45a-fabricbrrp-fabric-0.8.1-build.1-22w45a.jar下载0.8.1-build.1-mc22w45a-fabric#BetaNo changelog was specified.展开版本: 0.8.1-build.1-mc22w45a-fabric支持游戏: 22w45a, 22w46a类型:FabricBeta下载次数: 880.8.1-mc1.19.2-fabricbrrp-fabric-0.8.1-1.19.2.jar下载0.8.1-mc1.19.2-fabric#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.19.2-fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 2620.8.1-mc1.19.2-forgebrrp-forge-0.8.1-1.19.2.jar下载0.8.1-mc1.19.2-forge#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.19.2-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 840.8.1-mc1.18.1-fabricbrrp-fabric-0.8.1-1.18.1.jar下载0.8.1-mc1.18.1-fabric#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.18.1-fabric支持游戏: 1.18, 1.18.1类型:FabricRelease下载次数: 560.8.1-mc1.18.2-fabricbrrp-fabric-0.8.1-1.18.2.jar下载0.8.1-mc1.18.2-fabric#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.18.2-fabric支持游戏: 1.18.2类型:FabricRelease下载次数: 1360.8.1-mc1.18.2-forgebrrp-forge-0.8.1-1.18.2.jar下载0.8.1-mc1.18.2-forge#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.18.2-forge支持游戏: 1.18.2类型:ForgeRelease下载次数: 640.8.1-mc1.18.1-forgebrrp-forge-0.8.1-1.18.1.jar下载0.8.1-mc1.18.1-forge#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.18.1-forge支持游戏: 1.18, 1.18.1类型:ForgeRelease下载次数: 580.8.1-mc1.17.1-forgebrrp-forge-0.8.1-1.17.1.jar下载0.8.1-mc1.17.1-forge#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.17.1-forge支持游戏: 1.17, 1.17.1类型:ForgeRelease下载次数: 620.8.1-mc1.17.1-fabricbrrp-fabric-0.8.1-1.17.1.jar下载0.8.1-mc1.17.1-fabric#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.17.1-fabric支持游戏: 1.17, 1.17.1类型:FabricRelease下载次数: 760.8.1-mc1.16.5-forgebrrp-forge-0.8.1-1.16.5.jar下载0.8.1-mc1.16.5-forge#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.16.5-forge支持游戏: 1.16.4, 1.16.5类型:ForgeRelease下载次数: 2600.8.1-mc1.16.5-fabricbrrp-fabric-0.8.1-1.16.5.jar下载0.8.1-mc1.16.5-fabric#ReleaseNo changelog was specified.展开版本: 0.8.1-mc1.16.5-fabric支持游戏: 1.16.4, 1.16.5类型:FabricRelease下载次数: 640.8.0-1.19.2brrp-0.8.0-1.19.2.jar下载0.8.0-1.19.2#Releasebrrp-0.8.0-1.19.2-sources.jar下载0.8.0-1.19.2#Release展开版本: 0.8.0-1.19.2支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 1710.8.0-1.18.2brrp-0.8.0-1.18.2.jar下载0.8.0-1.18.2#Releasebrrp-0.8.0-1.18.2-sources.jar下载0.8.0-1.18.2#Release展开版本: 0.8.0-1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 1180.8.0-1.18.1brrp-0.8.0-1.18.1.jar下载0.8.0-1.18.1#Releasebrrp-0.8.0-1.18.1-sources.jar下载0.8.0-1.18.1#Release展开版本: 0.8.0-1.18.1支持游戏: 1.18, 1.18.1类型:FabricRelease下载次数: 910.8.0-1.17.1brrp-0.8.0-1.17.1.jar下载0.8.0-1.17.1#Releasebrrp-0.8.0-1.17.1-sources.jar下载0.8.0-1.17.1#Release展开版本: 0.8.0-1.17.1支持游戏: 1.17, 1.17.1类型:FabricRelease下载次数: 890.8.0-1.16.5brrp-0.8.0-1.16.5.jar下载0.8.0-1.16.5#Releasebrrp-0.8.0-1.16.5-sources.jar下载0.8.0-1.16.5#Release展开版本: 0.8.0-1.16.5支持游戏: 1.16.4, 1.16.5类型:FabricRelease下载次数: 2480.8.0-build.1-22w43abrrp-0.8.0-build.1-22w43a.jar下载0.8.0-build.1-22w43a#Beta展开版本: 0.8.0-build.1-22w43a支持游戏: 22w43a类型:FabricBeta下载次数: 500.7.0 (Forge)brrp-forge-0.7.0-1.16.5.jar下载0.7.0-forge#Releasebrrp-forge-0.7.0-1.17.1.jar下载0.7.0-forge#Releasebrrp-forge-0.7.0-1.18.1.jar下载0.7.0-forge#Releasebrrp-forge-0.7.0-1.18.2.jar下载0.7.0-forge#Releasebrrp-forge-0.7.0-1.19.jar下载0.7.0-forge#Release展开版本: 0.7.0-forge支持游戏: 1.16.4, 1.16.5, 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19类型:ForgeRelease下载次数: 4570.7.0 (Fabric)brrp-0.7.0-1.16.5.jar下载0.7.0#Releasebrrp-0.7.0-1.17.1.jar下载0.7.0#Releasebrrp-0.7.0-1.18.1.jar下载0.7.0#Releasebrrp-0.7.0-1.18.2.jar下载0.7.0#Releasebrrp-0.7.0-1.19.jar下载0.7.0#Release展开版本: 0.7.0支持游戏: 1.16.4, 1.16.5, 1.17, 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 1,4450.6.2brrp-0.6.2-1.16.5.jar下载0.6.2#Releasebrrp-0.6.2-1.17.1.jar下载0.6.2#Releasebrrp-0.6.2-1.18.1.jar下载0.6.2#Releasebrrp-0.6.2-1.18.2.jar下载0.6.2#Releasebrrp-0.6.2-1.19.jar下载0.6.2#Release- The mod file for 1.18.1 is compatible with 1.18.- The mod file for 1.17.1 is compatible with 1.17.- The mod file for 1.16.5 is compatible with 1.16.4-1.16.2.展开版本: 0.6.2支持游戏: 1.16.2, 1.16.3, 1.16.4, 1.16.5, 1.17, 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19类型:FabricRelease下载次数: 7460.6.0brrp-0.6.0-1.16.5.jar下载0.6.0#Releasebrrp-0.6.0-1.17.1.jar下载0.6.0#Releasebrrp-0.6.0-1.18.1.jar下载0.6.0#Releasebrrp-0.6.0-1.18.2.jar下载0.6.0#ReleaseFirst releast of BRRP mod.Compatibility not guaranteed for Minecraft versions other than 1.16.5, 1.17.1, 1.18.1 and 1.18.2.展开版本: 0.6.0支持游戏: 1.16.5, 1.17.1, 1.18.1, 1.18.2类型:FabricRelease下载次数: 302全部版本
markdown_parsed
文章类型:收录
layui.use([\'form\'], function(){
var form = layui.form;
});
Better Runtime Resource Pack |
楼主
2025-8-10 16:53:21
回复(0)
收起回复
|