cn.nukkit.item.ItemChorusFruit 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 Leonidius20
* @since 20.08.18
*/
public class ItemChorusFruit extends ItemEdible {
public ItemChorusFruit() {
this(0, 1);
}
public ItemChorusFruit(Integer meta) {
this(meta, 1);
}
public ItemChorusFruit(Integer meta, int count) {
super(CHORUS_FRUIT, meta, count, "Chorus Fruit");
}
@Override
public boolean onClickAir(Player player, Vector3 directionVector) {
return player.getServer().getTick() - player.getLastChorusFruitTeleport() >= 20;
}
@Override
public boolean onUse(Player player, int ticksUsed) {
boolean successful = super.onUse(player, ticksUsed);
if (successful) {
player.onChorusFruitTeleport();
}
return successful;
}
}