Java Code Examples for net.minecraft.enchantment.EnumEnchantmentType#digger()

The following examples show how to use net.minecraft.enchantment.EnumEnchantmentType#digger() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EnchantmentVoid.java    From ForbiddenMagic with Do What The F*ck You Want To Public License 4 votes vote down vote up
public EnchantmentVoid(int id) {
    super(id, 1, EnumEnchantmentType.digger);
    setName("voidtouched");
}
 
Example 2
Source File: EnchantmentImpact.java    From ForbiddenMagic with Do What The F*ck You Want To Public License 4 votes vote down vote up
public EnchantmentImpact(int id) {
    super(id, 1, EnumEnchantmentType.digger);
    setName("impact");
}
 
Example 3
Source File: EnchantmentCluster.java    From ForbiddenMagic with Do What The F*ck You Want To Public License 4 votes vote down vote up
public EnchantmentCluster(int id) {
    super(id, 1, EnumEnchantmentType.digger);
    setName("cluster");
}
 
Example 4
Source File: EnchantmentCorrupting.java    From ForbiddenMagic with Do What The F*ck You Want To Public License 4 votes vote down vote up
public EnchantmentCorrupting(int id) {
    super(id, 1, EnumEnchantmentType.digger);
    setName("corrupting");
}
 
Example 5
Source File: EnchantmentConsuming.java    From ForbiddenMagic with Do What The F*ck You Want To Public License 4 votes vote down vote up
public EnchantmentConsuming(int id) {
    super(id, 5, EnumEnchantmentType.digger);
    setName("consuming");
}