/**
 * Copyright © 2010, Res Interactive, LLC. All Rights Reserved.
 */
package com.tootsville.items;

import org.starhope.appius.game.inventory.InventoryItem;
import org.starhope.appius.game.inventory.effects.SimpleRangedWeapon;
import org.starhope.appius.game.npc.DamageHitHandler;
import org.starhope.appius.game.npc.Projectile;
import org.starhope.appius.user.AbstractUser;

/**
 * KaTootel shoots eggs that give peanuts.
 * 
 * @author brpocock@star-hope.org
 */
public class KaTootelEggShooter extends SimpleRangedWeapon implements
		DamageHitHandler {
	
	/**
	 * Java serialisation unique ID
	 */
	private static final long serialVersionUID = 4569050826359956966L;
	
	/**
	 * @param theItem the item which will now shoot KaTootel eggs
	 */
	public KaTootelEggShooter (final InventoryItem theItem) {
		super (theItem);
		// TODO Auto-generated constructor stub brpocock@star-hope.org
	}

	/**
	 * @see org.starhope.appius.game.npc.DamageHitHandler#hitForDamage(org.starhope.appius.game.npc.Projectile,
	 *      org.starhope.appius.user.AbstractUser)
	 */
	@Override
	public void hitForDamage (final Projectile projectile,
			final AbstractUser victim) {
		// TODO gift peanuts, with Wish damage
	}

}
