We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
偏转环
deflection_ring 与加速环类似,3x3x3多方块,状态有上下东西南北6个方向,有是否开关,有是否过载 方向为up时,上下层外面一圈部分碰撞箱与加速环相同,上下层中心是16x16x16碰撞箱 中间一层整层都是没有碰撞箱的,选择框与上下层碰撞箱相同
飞行铁砧或其他被加速过的实体穿过中间层时方向偏转45度,具体偏转方向遵循右手螺旋: 绿色是方块朝向,红色是偏转方向,蓝色是铁砧的轨迹
当进入的实体超过某一速度上限时,完全不偏转 速度上限比加速环的加速上限小1%
也可以做为电磁铁吸起大铁砧,与加速环的吸起距离、功耗相同 合成: MultiblockRecipe.builder("anvilcraft:deflection_ring", 1) .layer("ABA", "BAB", "ABA") .layer(" ", " ", " ") .layer("ABA", "BAB", "ABA") .symbol('A', "anvilcraft:magnetoelectric_core") .symbol('B', "anvilcraft:heavy_iron_block") .save(provider);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Matters to be added to TODO - 将要加入TODO的事项
偏转环
Describe what this TODO will do - 描述这个TODO要做的事情
deflection_ring
与加速环类似,3x3x3多方块,状态有上下东西南北6个方向,有是否开关,有是否过载
方向为up时,上下层外面一圈部分碰撞箱与加速环相同,上下层中心是16x16x16碰撞箱
中间一层整层都是没有碰撞箱的,选择框与上下层碰撞箱相同
飞行铁砧或其他被加速过的实体穿过中间层时方向偏转45度,具体偏转方向遵循右手螺旋:
绿色是方块朝向,红色是偏转方向,蓝色是铁砧的轨迹
当进入的实体超过某一速度上限时,完全不偏转
速度上限比加速环的加速上限小1%
也可以做为电磁铁吸起大铁砧,与加速环的吸起距离、功耗相同
合成:
MultiblockRecipe.builder("anvilcraft:deflection_ring", 1)
.layer("ABA", "BAB", "ABA")
.layer(" ", " ", " ")
.layer("ABA", "BAB", "ABA")
.symbol('A', "anvilcraft:magnetoelectric_core")
.symbol('B', "anvilcraft:heavy_iron_block")
.save(provider);
The text was updated successfully, but these errors were encountered: