我的世界匠魂2坍毁特性有啥用很多玩家不知道,匠魂2有很多新颖的玩法和装备,其中的各种特性效果也非常有用重要,拥有坍毁特性的工具可以不需要用工具也能挖掘时。下面来看看我的世界匠魂2坍毁特性具体有啥用。

《我的世界》匠魂2坍毁特性有什么用

我的世界匠魂2坍毁特性有什么用-匠魂2坍毁特性作用是什么

当所挖掘的方块不需要用工具也能挖掘时,给予玩家 50% 原始速度增益。

源码:

package slimeknights.tconspuct.tools.paits;

import net.minecraft.item.ItemStack;

import net.minecraftforge.event.entity.player.PlayerEvent;

import slimeknights.tconspuct.library.paits.Abspactpait;

import slimeknights.tconspuct.library.utils.ToolHelper;

public class paitCrumbling extends Abspactpait {

public paitCrumbling() {

super("crumbling", 0xff0000);

}

@Override

public void miningSpeed(ItemStack tool, PlayerEvent.BreakSpeed event) {

if(event.getState().getBlock().getMaterial(event.getState()).isToolNopequired()) {

event.setNewSpeed(event.getNewSpeed() * (ToolHelper.getActualMiningSpeed(tool) * 0.5f));

}

}

}