Java Code Examples for org.bukkit.Material#LAPIS_ORE

The following examples show how to use org.bukkit.Material#LAPIS_ORE . 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: CaveOresOnlyPopulator.java    From UhcCore with GNU General Public License v3.0 6 votes vote down vote up
private void scanChunk(Chunk chunk){
    for (int x = 0; x < 16; x++){
        for (int y = 5; y < 30; y++){
            for (int z = 0; z < 16; z++){

                Block block = chunk.getBlock(x, y, z);
                Material type = block.getType();
                if (
                        type == Material.DIAMOND_ORE ||
                        type == Material.GOLD_ORE ||
                        type == Material.LAPIS_ORE
                ){
                    Vein vein = new Vein();
                    vein.process(block);
                    if (!vein.isConnectedToAir()){
                        vein.setToStone();
                    }
                }

            }
        }
    }
}
 
Example 2
Source File: TalismanListener.java    From Slimefun4 with GNU General Public License v3.0 6 votes vote down vote up
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
public void onBlockBreak(BlockBreakEvent e) {
    ItemStack item = e.getPlayer().getInventory().getItemInMainHand();

    if (item.getType() != Material.AIR && item.getAmount() > 0) {
        List<ItemStack> drops = new ArrayList<>(e.getBlock().getDrops(item));
        int dropAmount = 1;

        if (item.getEnchantments().containsKey(Enchantment.LOOT_BONUS_BLOCKS) && !item.getEnchantments().containsKey(Enchantment.SILK_TOUCH)) {
            Random random = ThreadLocalRandom.current();
            dropAmount = random.nextInt(item.getEnchantmentLevel(Enchantment.LOOT_BONUS_BLOCKS) + 2) - 1;
            dropAmount = Math.max(dropAmount, 1);
            dropAmount = (e.getBlock().getType() == Material.LAPIS_ORE ? 4 + random.nextInt(5) : 1) * (dropAmount + 1);
        }

        if (!item.getEnchantments().containsKey(Enchantment.SILK_TOUCH) && MaterialCollections.getAllOres().contains(e.getBlock().getType()) && Talisman.checkFor(e, SlimefunItems.TALISMAN_MINER)) {
            for (ItemStack drop : drops) {
                if (!drop.getType().isBlock()) {
                    int amount = Math.max(1, (dropAmount * 2) - drop.getAmount());
                    e.getBlock().getWorld().dropItemNaturally(e.getBlock().getLocation(), new CustomItem(drop, amount));
                }
            }
        }
    }
}
 
Example 3
Source File: BlockListener.java    From Slimefun4 with GNU General Public License v3.0 5 votes vote down vote up
private int getBonusDropsWithFortune(ItemStack item, Block b) {
    int fortune = 1;

    if (item != null && item.getEnchantments().containsKey(Enchantment.LOOT_BONUS_BLOCKS) && !item.getEnchantments().containsKey(Enchantment.SILK_TOUCH)) {
        Random random = ThreadLocalRandom.current();
        int fortuneLevel = item.getEnchantmentLevel(Enchantment.LOOT_BONUS_BLOCKS);

        fortune = Math.max(1, random.nextInt(fortuneLevel + 2) - 1);
        fortune = (b.getType() == Material.LAPIS_ORE ? 4 + random.nextInt(5) : 1) * (fortune + 1);
    }

    return fortune;
}