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
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2015-01-05 22:14:01 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.item.ItemDye;
|
2015-01-05 22:14:01 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.util.IIcon;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.world.World;
|
2015-01-05 22:14:01 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemFertilizer extends ItemBase{
|
|
|
|
|
|
|
|
public ItemFertilizer(String name){
|
|
|
|
super(name);
|
|
|
|
}
|
2015-01-05 22:14:01 +01:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public boolean onItemUse(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int par7, float par8, float par9, float par10){
|
|
|
|
if(ItemDye.applyBonemeal(stack, world, x, y, z, player)){
|
2015-10-03 10:16:18 +02:00
|
|
|
if(!world.isRemote){
|
|
|
|
world.playAuxSFX(2005, x, y, z, 0);
|
|
|
|
}
|
2015-01-29 20:23:19 +01:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
return super.onItemUse(stack, player, world, x, y, z, par7, par8, par9, par10);
|
2015-01-05 22:14:01 +01:00
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.rare;
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
2015-12-03 20:15:07 +01:00
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName());
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-10-03 10:19:40 +02:00
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
return this.itemIcon;
|
|
|
|
}
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|