* @param corpse
* The corpse on which to put the meat
*/
@Override
protected void dropItemsOn(final Corpse corpse) {
final Food food = (Food) SingletonRepository.getEntityManager().getItem("meat");
food.setQuantity(getWeight() / 10 + 1);
corpse.add(food);
}