cn.nukkit.block.BlockBeetroot 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.block;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemID;
import cn.nukkit.item.ItemSeedsBeetroot;
import cn.nukkit.item.enchantment.Enchantment;
import java.util.concurrent.ThreadLocalRandom;
/**
* @author xtypr
* @since 2015/11/22
*/
public class BlockBeetroot extends BlockCrops {
public BlockBeetroot() {
this(0);
}
public BlockBeetroot(int meta) {
super(meta);
}
@Override
public int getId() {
return BEETROOT_BLOCK;
}
@Override
public String getName() {
return "Beetroot Block";
}
@Override
public Item toItem() {
return new ItemSeedsBeetroot();
}
@Override
public Item[] getDrops(Item item) {
if (!isFullyGrown()) {
return new Item[]{Item.get(ItemID.BEETROOT_SEEDS)};
}
int seeds = 1;
int attempts = 3 + Math.min(0, item.getEnchantmentLevel(Enchantment.ID_FORTUNE_DIGGING));
ThreadLocalRandom random = ThreadLocalRandom.current();
for (int i = 0; i < attempts; i++) {
if (random.nextInt(7) < 4) { // 4/7, 0.57142857142857142857142857142857
seeds++;
}
}
return new Item[]{
Item.get(ItemID.BEETROOT),
Item.get(ItemID.BEETROOT_SEEDS, 0, seeds)
};
}
}