What is the attack bonus when falling/jumping?
0.5 heart.
EntityPlayer.java:
...
public void attackTargetEntityWithCurrentItem(Entity entity) {
int i = inventory.getDamageVsEntity(entity);
if(i > 0) {
if(motionY < 0)
i++;
...