Java Code Examples for cn.nukkit.item.Item#isShovel()

The following examples show how to use cn.nukkit.item.Item#isShovel() . 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: BlockGrass.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
@Override
public boolean onActivate(Item item, Player player) {
    if (item.getId() == Item.DYE && item.getDamage() == 0x0F) {
        item.count--;
        ObjectTallGrass.growGrass(this.getLevel(), this, new NukkitRandom(), 15, 10);
        return true;
    } else if (item.isHoe()) {
        item.useOn(this);
        this.getLevel().setBlock(this, new BlockFarmland());
        return true;
    } else if (item.isShovel()) {
        item.useOn(this);
        this.getLevel().setBlock(this, new BlockGrassPath());
        return true;
    }

    return false;
}
 
Example 2
Source File: BlockSnow.java    From Jupiter with GNU General Public License v3.0 6 votes vote down vote up
@Override
public Item[] getDrops(Item item) {
    if (item.isShovel() && item.getTier() >= ItemTool.TIER_WOODEN) {
        if (item.isSilkTouch()){
            return new Item[]{
                    this.toItem()
            };
        } else {
            return new Item[]{
                    new ItemSnowball(0, 4)
            };
        }
    } else {
        return new Item[0];
    }
}
 
Example 3
Source File: BlockGrass.java    From Jupiter with GNU General Public License v3.0 6 votes vote down vote up
@Override
public boolean onActivate(Item item, Player player) {
    if (item.getId() == Item.DYE && item.getDamage() == 0x0F) {
        item.count--;
        ObjectTallGrass.growGrass(this.getLevel(), this, new NukkitRandom(), 15, 10);
        return true;
    } else if (item.isHoe()) {
        item.useOn(this);
        this.getLevel().setBlock(this, new BlockFarmland());
        return true;
    } else if (item.isShovel()) {
        item.useOn(this);
        this.getLevel().setBlock(this, new BlockGrassPath());
        return true;
    }

    return false;
}
 
Example 4
Source File: BlockGrass.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
@Override
public boolean onActivate(Item item, Player player) {
    if (item.getId() == Item.DYE && item.getDamage() == 0x0F) {
        if (player != null && (player.gamemode & 0x01) == 0) {
            item.count--;
        }
        this.level.addParticle(new BoneMealParticle(this));
        ObjectTallGrass.growGrass(this.getLevel(), this, new NukkitRandom());
        return true;
    } else if (item.isHoe()) {
        item.useOn(this);
        this.getLevel().setBlock(this, Block.get(BlockID.FARMLAND));
        return true;
    } else if (item.isShovel()) {
        item.useOn(this);
        this.getLevel().setBlock(this, Block.get(BlockID.GRASS_PATH));
        return true;
    }

    return false;
}
 
Example 5
Source File: BlockSnow.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public Item[] getDrops(Item item) {
    if (item.isShovel() && item.getTier() >= ItemTool.TIER_WOODEN) {
        return new Item[]{
                new ItemSnowball(0, 4)
        };
    } else {
        return new Item[0];
    }
}
 
Example 6
Source File: BlockSnowLayer.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public Item[] getDrops(Item item) {
    if (item.isShovel() && item.getTier() >= ItemTool.TIER_WOODEN) {
        return new Item[]{
                new ItemSnowball()
        };
    } else {
        return new Item[0];
    }
}
 
Example 7
Source File: BlockSnow.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public Item[] getDrops(Item item) {
    if (item.isShovel() && item.getTier() >= ItemTool.TIER_WOODEN) {
        return new Item[]{
                new ItemSnowball(0, 4)
        };
    } else {
        return new Item[0];
    }
}
 
Example 8
Source File: Block.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private static boolean correctTool0(int blockToolType, Item item) {
    return (blockToolType == ItemTool.TYPE_SWORD && item.isSword()) ||
            (blockToolType == ItemTool.TYPE_SHOVEL && item.isShovel()) ||
            (blockToolType == ItemTool.TYPE_PICKAXE && item.isPickaxe()) ||
            (blockToolType == ItemTool.TYPE_AXE && item.isAxe()) ||
            (blockToolType == ItemTool.TYPE_SHEARS && item.isShears()) ||
            blockToolType == ItemTool.TYPE_NONE;
}
 
Example 9
Source File: Block.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private static int toolType0(Item item) {
    if (item.isSword()) return ItemTool.TYPE_SWORD;
    if (item.isShovel()) return ItemTool.TYPE_SHOVEL;
    if (item.isPickaxe()) return ItemTool.TYPE_PICKAXE;
    if (item.isAxe()) return ItemTool.TYPE_AXE;
    if (item.isShears()) return ItemTool.TYPE_SHEARS;
    return ItemTool.TYPE_NONE;
}
 
Example 10
Source File: BlockSnowLayer.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public Item[] getDrops(Item item) {
    if (item.isShovel() && item.getTier() >= ItemTool.TIER_WOODEN) {
        return new Item[]{
                this.toItem()
        };
    } else {
        return new Item[0];
    }
}
 
Example 11
Source File: Block.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
private static int toolType0(Item item) {
    if(item.isSword())      return ItemTool.TYPE_SWORD      ;
    if(item.isShovel())     return ItemTool.TYPE_SHOVEL     ;
    if(item.isPickaxe())    return ItemTool.TYPE_PICKAXE    ;
    if(item.isAxe())        return ItemTool.TYPE_AXE        ;
    if(item.isShears())     return ItemTool.TYPE_SHEARS     ;
    return ItemTool.TYPE_NONE;
}
 
Example 12
Source File: Block.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private static boolean correctTool0(int blockToolType, Item item) {
    return (blockToolType == ItemTool.TYPE_SWORD && item.isSword()) ||
            (blockToolType == ItemTool.TYPE_SHOVEL && item.isShovel()) ||
            (blockToolType == ItemTool.TYPE_PICKAXE && item.isPickaxe()) ||
            (blockToolType == ItemTool.TYPE_AXE && item.isAxe()) ||
            (blockToolType == ItemTool.TYPE_SHEARS && item.isShears()) ||
            blockToolType == ItemTool.TYPE_NONE;
}
 
Example 13
Source File: Block.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private static int toolType0(Item item) {
    if (item.isSword()) return ItemTool.TYPE_SWORD;
    if (item.isShovel()) return ItemTool.TYPE_SHOVEL;
    if (item.isPickaxe()) return ItemTool.TYPE_PICKAXE;
    if (item.isAxe()) return ItemTool.TYPE_AXE;
    if (item.isShears()) return ItemTool.TYPE_SHEARS;
    return ItemTool.TYPE_NONE;
}
 
Example 14
Source File: BlockSnowLayer.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
@Override
public Item[] getDrops(Item item) {
    if (item.isShovel() && item.getTier() >= ItemTool.TIER_WOODEN) {
        return new Item[]{
                new ItemSnowball()
        };
    } else {
        return new Item[0];
    }
}
 
Example 15
Source File: Block.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
private static boolean correctTool0(int blockToolType, Item item) {
    return (blockToolType == ItemTool.TYPE_SWORD    && item.isSword()   ) ||
            (blockToolType == ItemTool.TYPE_SHOVEL  && item.isShovel()  ) ||
            (blockToolType == ItemTool.TYPE_PICKAXE && item.isPickaxe() ) ||
            (blockToolType == ItemTool.TYPE_AXE     && item.isAxe()     ) ||
            (blockToolType == ItemTool.TYPE_SHEARS  && item.isShears()  ) ||
            blockToolType == ItemTool.TYPE_NONE;
}
 
Example 16
Source File: Block.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
/**
 * @deprecated This function is lack of Player class and is not accurate enough, use #getBreakTime(Item, Player)
 * @param item item used
 * @return break time
 */
@Deprecated
public double getBreakTime(Item item) {
    double base = this.getHardness() * 1.5;
    if (this.canBeBrokenWith(item)) {
        if (this.getToolType() == ItemTool.TYPE_SHEARS && item.isShears()) {
            base /= 15;
        } else if (
                (this.getToolType() == ItemTool.TYPE_PICKAXE && item.isPickaxe()) ||
                        (this.getToolType() == ItemTool.TYPE_AXE && item.isAxe()) ||
                        (this.getToolType() == ItemTool.TYPE_SHOVEL && item.isShovel())
                ) {
            int tier = item.getTier();
            switch (tier) {
                case ItemTool.TIER_WOODEN:
                    base /= 2;
                    break;
                case ItemTool.TIER_STONE:
                    base /= 4;
                    break;
                case ItemTool.TIER_IRON:
                    base /= 6;
                    break;
                case ItemTool.TIER_DIAMOND:
                    base /= 8;
                    break;
                case ItemTool.TIER_GOLD:
                    base /= 12;
                    break;
            }
        }
    } else {
        base *= 3.33;
    }

    if (item.isSword()) {
        base *= 0.5;
    }

    return base;
}
 
Example 17
Source File: Block.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
/**
 * @deprecated This function is lack of Player class and is not accurate enough, use #getBreakTime(Item, Player)
 */
@Deprecated
public double getBreakTime(Item item) {
    double base = this.getHardness() * 1.5;
    if (this.canBeBrokenWith(item)) {
        if (this.getToolType() == ItemTool.TYPE_SHEARS && item.isShears()) {
            base /= 15;
        } else if (
                (this.getToolType() == ItemTool.TYPE_PICKAXE && item.isPickaxe()) ||
                        (this.getToolType() == ItemTool.TYPE_AXE && item.isAxe()) ||
                        (this.getToolType() == ItemTool.TYPE_SHOVEL && item.isShovel())
                ) {
            int tier = item.getTier();
            switch (tier) {
                case ItemTool.TIER_WOODEN:
                    base /= 2;
                    break;
                case ItemTool.TIER_STONE:
                    base /= 4;
                    break;
                case ItemTool.TIER_IRON:
                    base /= 6;
                    break;
                case ItemTool.TIER_DIAMOND:
                    base /= 8;
                    break;
                case ItemTool.TIER_GOLD:
                    base /= 12;
                    break;
            }
        }
    } else {
        base *= 3.33;
    }

    if (item.isSword()) {
        base *= 0.5;
    }

    return base;
}
 
Example 18
Source File: Block.java    From Jupiter with GNU General Public License v3.0 4 votes vote down vote up
/**
 * @deprecated This function is lack of Player class and is not accurate enough, use #getBreakTime(Item, Player)
 */
@Deprecated
public double getBreakTime(Item item) {
    double base = this.getHardness() * 1.5;
    if (this.canBeBrokenWith(item)) {
        if (this.getToolType() == ItemTool.TYPE_SHEARS && item.isShears()) {
            base /= 15;
        } else if (
                (this.getToolType() == ItemTool.TYPE_PICKAXE && item.isPickaxe()) ||
                        (this.getToolType() == ItemTool.TYPE_AXE && item.isAxe()) ||
                        (this.getToolType() == ItemTool.TYPE_SHOVEL && item.isShovel())
                ) {
            int tier = item.getTier();
            switch (tier) {
                case ItemTool.TIER_WOODEN:
                    base /= 2;
                    break;
                case ItemTool.TIER_STONE:
                    base /= 4;
                    break;
                case ItemTool.TIER_IRON:
                    base /= 6;
                    break;
                case ItemTool.TIER_DIAMOND:
                    base /= 8;
                    break;
                case ItemTool.TIER_GOLD:
                    base /= 12;
                    break;
            }
        }
    } else {
        base *= 3.33;
    }

    if (item.isSword()) {
        base *= 0.5;
    }

    return base;
}