If I fall from a very high place and do crits, will the crits be higher?

If I fall from a very high place and do crits, will the crits be higher? - Wooden chairs near place for fire

If I fall from a really high place and then do crits on a player, will the crits do more damage to the player? Assuming that we have Feather Falling 4...

I am curious about this and I've searched everywhere if the crits get modified depending on the jump's height. Thanks in advance



Best Answer

No. Critical hits deal 150% base damage regardless of how far you fall.

From the wiki: "[a critical hit] deals 150% of the equipped item's base damage (before enchantments or armor are applied)."

If you want to dive into the source code (courtesy of MCP), like I did, this is even more clear. Kind of. A little.

In EntityPlayer.java, inside the function attackTargetEntityWithCurrentItem(Entity targetEntity) (which does precisely what it says on the tin), we can find the code that controls how much damage the player deals to other entities. The critical hit check happens on lines 1330-1335:

...
boolean var5 = this.fallDistance > 0.0F && !this.onGround && !this.isOnLadder() && !this.isInWater() && !this.isPotionActive(Potion.blindness) && this.ridingEntity == null && targetEntity instanceof EntityLivingBase;
if (var5 && var2 > 0.0F)
{
    var2 *= 1.5F;
}
...

var2 is the base damage to be dealt before enchantments are applied. var5 is a boolean, set to true if the player is falling, not on the ground, not on a ladder, etc. The code never checks how far the player has fallen in any capacity other than to see if the player is falling at all.




Pictures about "If I fall from a very high place and do crits, will the crits be higher?"

If I fall from a very high place and do crits, will the crits be higher? - High autumn trees in sunshine in park
If I fall from a very high place and do crits, will the crits be higher? - Tall observation sightseeing tower against clouds
If I fall from a very high place and do crits, will the crits be higher? - High leafless tree under sky in countryside



How much damage do crits do?

Critical hits do +50% (or \xd71.5) damage, unless the sync pair has Critastrophe [X] (during sync moves) or Critical Strike [Y]; in which case, it will do even more damage by a factor of +(X \xd7 10)% or +(Y \xd7 10)%, respectively.

How much damage do crits add Minecraft?

Critical hits do 50% extra damage. Java Edition: Damage calculation starts with the weapon's base damage, then adds damage from effects, then multiplies by 1.5 if it's a critical hit, and then adds damage from enchantments.

What increases critical hit ratio?

Critical HitsNameEffectLansat BerryA Poffin ingredient. If held by a Pok\xe9mon, it raises its critical-hit ratio in a pinch.Razor ClawRaises chances of landing a Critical Hit. Evolves Sneasel into Weavile at Night.Scope LensIncreases chances of landing a Critical Hit

How do I raise my crit chance Elden ring?

There are several ways to perform a critical attack in Elden Ring:
  • Attacking an enemy from behind (known as a "backstab").
  • Attacking a sleeping enemy afflicted with the Sleep status.
  • Attacking a dismounted enemy while they are downed from their horse.




  • 50% Crit Rate?? Top 5 MISTAKES You're STILL Making




    More answers regarding if I fall from a very high place and do crits, will the crits be higher?

    Answer 2

    No. Critical hits always deal 150% base damage.

    The attack deals 150% of the equipped item's base damage (before enchantments or armor are applied).

    source: Minecraft Wiki

    Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.

    Images: Marta Wave, Marta Wave, Ryutaro Tsukata, Andreas Fickl