ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemFertilizer.java

44 lines
1.3 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("ItemFertilizer.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-01-05 22:14:01 +01:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
2015-01-05 22:14:01 +01:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemDye;
2015-01-05 22:14:01 +01:00
import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumFacing;
import net.minecraft.world.World;
2015-01-05 22:14:01 +01:00
public class ItemFertilizer extends ItemBase{
public ItemFertilizer(String name){
super(name);
}
2015-01-05 22:14:01 +01:00
@Override
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, BlockPos pos, EnumFacing side, float par8, float par9, float par10){
if(ItemDye.applyBonemeal(stack, world, pos, player)){
2015-10-03 10:16:18 +02:00
if(!world.isRemote){
world.playAuxSFX(2005, pos, 0);
2015-10-03 10:16:18 +02:00
}
return true;
}
return super.onItemUse(stack, player, world, pos, side, par8, par9, par10);
2015-01-05 22:14:01 +01:00
}
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.RARE;
2015-10-03 10:19:40 +02:00
}
}