blob: cfe6afee668317d27de5f9b49cd31f1ec8bc028c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package gtPlusPlus.api.objects.minecraft.multi;
import net.minecraft.item.ItemStack;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
public class NoSpeedBonusMultiBehaviour extends SpecialMultiBehaviour {
public NoSpeedBonusMultiBehaviour() {
// Used by other mods which may wish to not obtain bonus outputs on their Sifting or Maceration recipes.
}
@Override
public ItemStack getTriggerItem() {
return GregtechItemList.Chip_MultiNerf_NoSpeedBonus.get(1);
}
@Override
public String getTriggerItemTooltip() {
return "Prevents speed bonuses on GT++ multiblocks when used";
}
@Override
public int getSpeedBonusPercent() {
return 0;
}
}
|