cn.nukkit.item.ItemFishingRod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.item;
import cn.nukkit.Player;
import cn.nukkit.math.Vector3;
/**
* @author Snake1999
* @since 2016/1/14
*/
public class ItemFishingRod extends ItemTool {
public ItemFishingRod() {
this(0, 1);
}
public ItemFishingRod(Integer meta) {
this(meta, 1);
}
public ItemFishingRod(Integer meta, int count) {
super(FISHING_ROD, meta, count, "Fishing Rod");
}
@Override
public int getEnchantAbility() {
return 1;
}
@Override
public int getMaxStackSize() {
return 1;
}
@Override
public boolean onClickAir(Player player, Vector3 directionVector) {
if (player.fishing != null) {
player.stopFishing(true);
} else {
player.startFishing(this);
this.meta++;
}
return true;
}
@Override
public int getMaxDurability() {
return ItemTool.DURABILITY_FISHING_ROD;
}
@Override
public boolean damageWhenBreaking() {
return false;
}
}