|
PowerStones (PowerStones)Github |相关wiki |源站链接支持: fabric , forgeMinecraft模组,带有红石、蓝宝石、绿宝石和黄宝石的重叠电线
Dependencies
为了PowerStones能够正常运行,需要先安装以下模组:
Fabric
ModReason
Fabric API作为Fabric模组正常运行的基础
FerriteCore使Minecraft能够以默认内存加载,而不需12GB的额外参数(-Xmx12G)
Forge
ModReason
FerriteCore使Minecraft能够以默认内存加载,而不需12GB的额外参数(-Xmx12G)
Compatibility
PowerStones与其他红石模组如Red Bits或Redstone Bits兼容。
PowerStones旨在与尽可能多的其他模组兼容,但这需要一些时间。
如果您喜欢的模组似乎与PowerStones不兼容,请在GitHub上提出“模组兼容性请求”。
Features
Blocks and items
*名称*:蓝宝石 (Bluestone)
*合成配方*:https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/bluestone_from_redstone.png] https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/bluestone_from_block.png]
*名称*:绿宝石 (Greenstone)
*合成配方*:https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/greenstone_from_redstone.png] https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/greenstone_from_block.png]
*名称*:黄宝石 (Yellowstone)
*合成配方*:https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/yellowstone_from_redstone.png] https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/yellowstone_from_block.png]
...(省略其他方块和物品)
Functionalities
- 宝石电线可以两两重叠。红石和蓝宝石电线可以重叠,绿宝石和黄宝石电线也可以重叠。
- 当手持宝石电线物品击中电线时,只会破坏与主手持的宝石电线颜色相同的电线。
- 宝石方块和宝石火把只能给予与其颜色相同的宝石电线供电。
Implementation process and limitations
最初的想法是将所有四种宝石电线放置在同一个方块上。这意味着红石电线块将会有超过5308416种状态(3x3x3x3x16x16x16x16),而其未经修改版本的状态数量为1296种(3x3x3x3x16)。由于所有游戏方块的所有状态都在启动时计算,这将比计算机处理的时间和内存更多。
为了保持最初的想法,努力限制宝石的状态为两种(0-1),而不是十六种(0-15)。这将红石电线块的状态数量降至其未经修改版本的1296种(3x3x3x3x2x2x2x2)。然而,这个状态数量并非最终状态,因为需要添加更多状态以显示所有可能的连接。最终,实施过程证明过于复杂和不合理,因为它需要完全修改红石电线块的电源更新,并移除所有与红石电源电平相关的原版红石功能。
虽然仍然视宝石的重叠为一个目标,但首先试图成功添加蓝宝石电线覆盖红宝石,方法是通过添加另一个电源属性并增加两种电源属性。因此,红石电线块的状态数量为23,409种(3x3x3x3x17x17),只比原始装载时间多了几秒。
通过两种电力属性的添加来扩展模组与绿宝石和黄宝石电线是不可行的,与最初的想法相同(状态太多)。因此,做出了使电线两两重叠的选择。红石电线可与蓝宝石电线重叠,而绿宝石电线可与黄宝石电线重叠。这是轻而易举的,只需添加一个带有两种状态的属性(每对宝石电线一种状态),使得红石电线块的状态数量为46,818种(3x3x3x3x17x17x2)。添加这一基本属性使得游戏的启动变慢(~1分钟30秒)。然而,更为严重的问题是,为了加载每种状态,游戏所需的内存(RAM)达到了约12GB。即使要求用户在Minecraft启动器中添加一个简单的Java参数以扩展游戏的最大内存分配,12GB的内存与该模组为游戏带来的内存增量相比,显得太过庞大。
由于宝石的双重属性属性似乎是能够将项目尽可能接近最初目标的良好安置点,在学习和开发六周之后,决定寻找一个可以显著减少运行PowerStones所需的内存量的模组。经过快速搜索,FerriteCore似乎合适,并且出乎意料,使游戏能够运行PowerStones而无需更改最大内存(约2GB)。尽管PowerStones已经依赖于性能模组,用户可以尽情享受而不必担心内存消耗。
Colour choices
蓝、绿和黄这些颜色是在2012年左右首次提出这个项目时选择的。其中一个目标是更好地利用较少使用、几乎无用但丰富的资源,如青金石、绿宝石和萤石粉。
每种新的宝石颜色都是通过红石的颜色与宝石合成配方中所使用的资源颜色的结合而来。首先,宝石的纹理被着色为资源的颜色。然后,在其上覆盖红石的纹理,最后对红石层应用颜色减淡混合滤镜,透明度约为30% (75/255)。
https://github.com/CalvinMT/PowerStones/raw/1.19.3/docs/colour_choices.png]
截图:
https://i.sodamc.com/modrinth/IYSJ56k9W5.jpg?x-oss-process=style/forge2] https://i.sodamc.com/modrinth/aXYEcPEgkv.jpg?x-oss-process=style/forge2] https://i.sodamc.com/modrinth/flEOCUci9J.jpg?x-oss-process=style/forge2] https://i.sodamc.com/modrinth/N288UZc1bk.jpg?x-oss-process=style/forge2]
来自Modrinth所有游戏版本1.19.41.19.31.191.19.11.19.21.181.18.11.18.2所有类型forgefabricPowerStones 3.0.4+1.19.4-forgepowerstones-3.0.4+1.19.4-forge.jar下载3.0.4+1.19.4-forge#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.19.4-forge支持游戏: 1.19.4类型:ForgeRelease下载次数: 39PowerStones 3.0.4+1.19.3-forgepowerstones-3.0.4+1.19.3-forge.jar下载3.0.4+1.19.3-forge#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 21PowerStones 3.0.4+1.19-forgepowerstones-3.0.4+1.19-forge.jar下载3.0.4+1.19-forge#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.19-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 45PowerStones 3.0.4+1.18-forgepowerstones-3.0.4+1.18-forge.jar下载3.0.4+1.18-forge#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.18-forge支持游戏: 1.18, 1.18.1, 1.18.2类型:ForgeRelease下载次数: 33PowerStones 3.0.4+1.19.4-fabricpowerstones-3.0.4+1.19.4-fabric.jar下载3.0.4+1.19.4-fabric#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.19.4-fabric支持游戏: 1.19.4类型:FabricRelease下载次数: 30PowerStones 3.0.4+1.19.3-fabricpowerstones-3.0.4+1.19.3-fabric.jar下载3.0.4+1.19.3-fabric#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.19.3-fabric支持游戏: 1.19.3类型:FabricRelease下载次数: 24PowerStones 3.0.4+1.19-fabricpowerstones-3.0.4+1.19-fabric.jar下载3.0.4+1.19-fabric#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.19-fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 55PowerStones 3.0.4+1.18-fabricpowerstones-3.0.4+1.18-fabric.jar下载3.0.4+1.18-fabric#Release- Feature redstone recipes using other powerstones- Fix & Refactor mods menu icon- Fix diode blocks alternate input signal- Fix powerstone & powerstone torch powering beneath and above展开版本: 3.0.4+1.18-fabric支持游戏: 1.18, 1.18.1, 1.18.2类型:FabricRelease下载次数: 47PowerStones 3.0.3+1.19.4powerstones-3.0.3+1.19.4-fabric.jar下载3.0.3+1.19.4-fabric#Release/!\\ Breaking update: updating from a previous PowerStones Fabric version will drastically modify existing redstone circuits. You will have to build them again.- Overhaul of powerstones implementation- Faster game start-up- Fix torch and block connections- Fix break events- Fix wire connections- Fix redstone torch powering above- Fix diode blocks input signal- Fix place stack of one powerstone over another展开版本: 3.0.3+1.19.4-fabric支持游戏: 1.19.4类型:FabricRelease下载次数: 82PowerStones 3.0.3+1.19.3powerstones-3.0.3+1.19.3-fabric.jar下载3.0.3+1.19.3-fabric#Release/!\\ Breaking update: updating from a previous PowerStones Fabric version will drastically modify existing redstone circuits. You will have to build them again.- Overhaul of powerstones implementation- Faster game start-up- Fix torch and block connections- Fix break events- Fix wire connections- Fix redstone torch powering above- Fix diode blocks input signal- Fix place stack of one powerstone over another展开版本: 3.0.3+1.19.3-fabric支持游戏: 1.19.3类型:FabricRelease下载次数: 53PowerStones 3.0.3+1.19powerstones-3.0.3+1.19-fabric.jar下载3.0.3+1.19-fabric#Release/!\\ Breaking update: updating from a previous PowerStones Fabric version will drastically modify existing redstone circuits. You will have to build them again.- Overhaul of powerstones implementation- Faster game start-up- Fix torch and block connections- Fix break events- Fix wire connections- Fix redstone torch powering above- Fix diode blocks input signal- Fix place stack of one powerstone over another展开版本: 3.0.3+1.19-fabric支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 104PowerStones 3.0.3+1.18powerstones-3.0.3+1.18-fabric.jar下载3.0.3+1.18-fabric#Release/!\\ Breaking update: updating from a previous PowerStones Fabric version will drastically modify existing redstone circuits. You will have to build them again.- Overhaul of powerstones implementation- Faster game start-up- Fix torch and block connections- Fix break events- Fix wire connections- Fix redstone torch powering above- Fix diode blocks input signal- Fix place stack of one powerstone over another展开版本: 3.0.3+1.18-fabric支持游戏: 1.18, 1.18.1, 1.18.2类型:FabricRelease下载次数: 73PowerStones 3.0.3+1.19.4-forgepowerstones-3.0.3+1.19.4-forge.jar下载3.0.3+1.19.4-forge#Release- Fix place stack of one powerstone over another展开版本: 3.0.3+1.19.4-forge支持游戏: 1.19.4类型:ForgeRelease下载次数: 55PowerStones 3.0.3+1.19.3-forgepowerstones-3.0.3+1.19.3-forge.jar下载3.0.3+1.19.3-forge#Release- Fix place stack of one powerstone over another展开版本: 3.0.3+1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 49PowerStones 3.0.3+1.19-forgepowerstones-3.0.3+1.19-forge.jar下载3.0.3+1.19-forge#Release- Fix place stack of one powerstone over another展开版本: 3.0.3+1.19-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 102PowerStones 3.0.3+1.18-forgepowerstones-3.0.3+1.18-forge.jar下载3.0.3+1.18-forge#Release- Fix place stack of one powerstone over another展开版本: 3.0.3+1.18-forge支持游戏: 1.18, 1.18.1, 1.18.2类型:ForgeRelease下载次数: 61PowerStones 3.0.2+1.19.4-forgepowerstones-3.0.2+1.19.4-forge.jar下载3.0.2+1.19.4-forge#Release- Fix diode blocks input signal展开版本: 3.0.2+1.19.4-forge支持游戏: 1.19.4类型:ForgeRelease下载次数: 41PowerStones 3.0.2+1.19.3-forgepowerstones-3.0.2+1.19.3-forge.jar下载3.0.2+1.19.3-forge#Release- Fix diode blocks input signal展开版本: 3.0.2+1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 57PowerStones 3.0.2+1.19-forgepowerstones-3.0.2+1.19-forge.jar下载3.0.2+1.19-forge#Release- Fix diode blocks input signal展开版本: 3.0.2+1.19-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 43PowerStones 3.0.2+1.18-forgepowerstones-3.0.2+1.18-forge.jar下载3.0.2+1.18-forge#Release- Fix diode blocks input signal展开版本: 3.0.2+1.18-forge支持游戏: 1.18, 1.18.1, 1.18.2类型:ForgeRelease下载次数: 43PowerStones 3.0.1+1.18-forgepowerstones-3.0.1+1.18-forge.jar下载3.0.1+1.18-forge#Release- Fix break events- Fix wire connections- Fix redstone torch powering above展开版本: 3.0.1+1.18-forge支持游戏: 1.18, 1.18.1, 1.18.2类型:ForgeRelease下载次数: 81PowerStones 3.0.1+1.19.4-forgepowerstones-3.0.1+1.19.4-forge.jar下载3.0.1+1.19.4-forge#Release- Fix break events- Fix wire connections- Fix redstone torch powering above展开版本: 3.0.1+1.19.4-forge支持游戏: 1.19.4类型:ForgeRelease下载次数: 66PowerStones 3.0.1+1.19.3-forgepowerstones-3.0.1+1.19.3-forge.jar下载3.0.1+1.19.3-forge#Release- Fix break events- Fix wire connections- Fix redstone torch powering above展开版本: 3.0.1+1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 45PowerStones 3.0.1+1.19-forgepowerstones-3.0.1+1.19-forge.jar下载3.0.1+1.19-forge#Release- Fix break events- Fix wire connections- Fix redstone torch powering above展开版本: 3.0.1+1.19-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 102PowerStones 3.0.0+1.19-forgepowerstones-3.0.0+1.19-forge.jar下载3.0.0+1.19-forge#Release/!\\ Breaking update: updating from a previous PowerStones version will drastically modify existing redstone circuits. You will have to build them again.- Overhaul of powerstones implementation- Faster game start-up- Fix torch and block connections展开版本: 3.0.0+1.19-forge支持游戏: 1.19, 1.19.1, 1.19.2类型:ForgeRelease下载次数: 62PowerStones 3.0.0+1.19.3-forgepowerstones-3.0.0+1.19.3-forge.jar下载3.0.0+1.19.3-forge#Release/!\\ Breaking update: updating from a previous PowerStones version will drastically modify existing redstone circuits. You will have to build them again.- Overhaul of powerstones implementation- Faster game start-up- Fix torch and block connections展开版本: 3.0.0+1.19.3-forge支持游戏: 1.19.3类型:ForgeRelease下载次数: 42PowerStones 2.0.1+1.19.4powerstones-2.0.1+1.19.4.jar下载2.0.1+1.19.4#Release展开版本: 2.0.1+1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 77PowerStones 2.0.1+1.18powerstones-2.0.1+1.18.jar下载2.0.1+1.18#Release展开版本: 2.0.1+1.18支持游戏: 1.18, 1.18.1, 1.18.2类型:FabricRelease下载次数: 79PowerStones 2.0.1+1.19powerstones-2.0.1+1.19.jar下载2.0.1+1.19#Release- Fix powerstone torch drops- Fix duplicate items in creative inventory展开版本: 2.0.1+1.19支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 110PowerStones 2.0.1+1.19.3powerstones-2.0.1+1.19.3.jar下载2.0.1+1.19.3#Release- Fix powerstone torch drops展开版本: 2.0.1+1.19.3支持游戏: 1.19.3类型:FabricRelease下载次数: 63PowerStones 2.0.0+1.19powerstones-2.0.0+1.19.jar下载2.0.0+1.19#Release**/!\\ Breaking update:** updating from a previous PowerStones version will drastically modify existing redstone circuits. You will have to build them again. This kind of update won\'t happen anytime soon.- Update power management (enables redstone mods compatibility)- Feature single wire break in creative mode- Fix dust particles\' colours展开版本: 2.0.0+1.19支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 48PowerStones 2.0.0+1.19.3powerstones-2.0.0+1.19.3.jar下载2.0.0+1.19.3#Release**/!\\ Breaking update:** updating from a previous PowerStones version will drastically modify existing redstone circuits. You will have to build them again. This kind of update won\'t happen anytime soon.- Update power management (enables redstone mods compatibility)- Feature single wire break in creative mode- Fix dust particles\' colours展开版本: 2.0.0+1.19.3支持游戏: 1.19.3类型:FabricRelease下载次数: 31PowerStones 1.1.1+1.19powerstones-1.1.1+1.19.jar下载1.1.1+1.19#Release- Add Lithium mod compatibility展开版本: 1.1.1+1.19支持游戏: 1.19类型:FabricRelease下载次数: 35PowerStones 1.1.1+1.19.3powerstones-1.1.1+1.19.3.jar下载1.1.1+1.19.3#Release- Add Lithium mod compatibility展开版本: 1.1.1+1.19.3支持游戏: 1.19.3类型:FabricRelease下载次数: 41PowerStones 1.1.0+1.19powerstones-1.1.0+1.19.jar下载1.1.0+1.19#Release- Fix server initialisation展开版本: 1.1.0+1.19支持游戏: 1.19类型:FabricRelease下载次数: 35PowerStones 1.1.0+1.19.3powerstones-1.1.0+1.19.3.jar下载1.1.0+1.19.3#Release- Fix server initialisation展开版本: 1.1.0+1.19.3支持游戏: 1.19.3类型:FabricRelease下载次数: 43PowerStones 1.0.0 (+1.19.3)powerstones-1.0.0.jar下载1.0.0#Release展开版本: 1.0.0支持游戏: 1.19.3类型:FabricRelease下载次数: 53全部版本
markdown_parsed
文章类型:收录
layui.use([\'form\'], function(){
var form = layui.form;
});
PowerStones |
|