KanColle Wiki
(→‎Basic Attack Power: Iwai FB update to nb aerial)
(27 intermediate revisions by 11 users not shown)
Line 9: Line 9:
 
Have a story about attack types, CL0/CL1/CL2, normal/proportional damage first.
 
Have a story about attack types, CL0/CL1/CL2, normal/proportional damage first.
 
-->
 
-->
  +
==Main Formula==
<span style="font-size:17px;font-weight:bold;">Main Formula</span>
 
   
 
<math>\text{Damage Value} = \bigg \lfloor \left ( \left \lfloor \operatorname{cap} \left ( \hat{F} \cdot M_{pre} \right ) \cdot C \right \rfloor \cdot M_{post} - \hat{A} \right ) \cdot R \bigg \rfloor</math>
 
<math>\text{Damage Value} = \bigg \lfloor \left ( \left \lfloor \operatorname{cap} \left ( \hat{F} \cdot M_{pre} \right ) \cdot C \right \rfloor \cdot M_{post} - \hat{A} \right ) \cdot R \bigg \rfloor</math>
Line 20: Line 20:
 
*<math>\operatorname{cap}</math> is the [[#Attack Power Cap|soft cap to attack power]].
 
*<math>\operatorname{cap}</math> is the [[#Attack Power Cap|soft cap to attack power]].
 
*<math>\hat{A}</math> is '''Defense Power'''.
 
*<math>\hat{A}</math> is '''Defense Power'''.
 
*<math>R</math> is the remaining ammo penalty:
*<math>R = \min \left ( 2R_{s} , 1 \right )</math>
 
  +
**<math>R = \begin{cases} 2R_{s}, & \text{ if } R_{s} < 0.5 \\ 1, & \text{ otherwise } \end{cases}</math>
**<math>R</math> is the remaining ammo penalty
 
 
**<math>R_{s}</math> is the ship's current ammo percentage (1 bar = 10% = 0.1)
 
**<math>R_{s}</math> is the ship's current ammo percentage (1 bar = 10% = 0.1)
**<math>\min</math> is the minima function, which takes the lowest value between two quantities.
 
 
*<math>\left \lfloor x \right \rfloor</math> is the floor function; that is, the rounding down of input <math>x</math>
 
*<math>\left \lfloor x \right \rfloor</math> is the floor function; that is, the rounding down of input <math>x</math>
 
   
 
'''Defense Power''' is calculated as follows:
 
'''Defense Power''' is calculated as follows:
   
<math>\hat{A} = 0.7 A_t + 0.6 \big ( \text{random} \in \left [ 0 , A_t - 1 \right ] \big )</math>
+
<math>\hat{A} = 0.7 A_t + 0.6 \big ( \text{random} \in \left [ 0 , \left \lfloor A_t \right \rfloor - 1 \right ] \big ) - D</math>
   
 
Where:
 
Where:
*<math>A_{t}</math> is the defending ship's armor stat
+
*<math>A_{t}</math> is the sum of the defending ship's displayed armor stat and all [[improvements]] to armor.
*The random number function outputs an integer value between 0 and <math>A_{t} - 1</math> (inclusive, uniformly distributed).
+
*The random number function outputs an integer value between 0 and <math>\left \lfloor A_{t} \right \rfloor - 1</math> (inclusive, uniformly distributed).
  +
*<math>D</math> is the Depth Charge Rack armor penetration effect. See [[#asw|'''Anti-Submarine Warfare''']] for details.
 
   
 
If Damage Value is less than 1, it becomes '''scratch damage''', and the following formula is applied instead:
 
If Damage Value is less than 1, it becomes '''scratch damage''', and the following formula is applied instead:
Line 60: Line 58:
 
*<math>F_{\bigstar}</math> is the sum of all [[improvements]] to shelling damage
 
*<math>F_{\bigstar}</math> is the sum of all [[improvements]] to shelling damage
 
*<math>C_{f}</math> is the Combined Fleet factor
 
*<math>C_{f}</math> is the Combined Fleet factor
 
   
 
For '''Torpedo''':
 
For '''Torpedo''':
Line 68: Line 65:
 
*<math>T_{s}</math> is the ship's torpedo stat
 
*<math>T_{s}</math> is the ship's torpedo stat
 
*<math>T_{\bigstar}</math> is the sum of all [[improvements]] to torpedo damage
 
*<math>T_{\bigstar}</math> is the sum of all [[improvements]] to torpedo damage
 
   
 
For '''Carrier Shelling''':
 
For '''Carrier Shelling''':
Line 75: Line 71:
   
 
*<math>D_{s}</math> is the ship's dive bombing stat
 
*<math>D_{s}</math> is the ship's dive bombing stat
*<math>F_{\bigstar}</math> is confirmed for both [[List_of_Secondary_Guns_by_stats|secondary]] and [[List of Anti-Air Guns by stats|machine]] gun [[improvements]].
+
*<math>F_{\bigstar}</math> is the sum of improvements to carrier shelling. It is confirmed for [[List_of_Secondary_Guns_by_stats|secondary]] and [[List of Anti-Air Guns by stats|machine]] gun [[improvements]], and also [[List_of_Torpedo_Bombers_by_stats|torpedo bomber]] improvements (0.2 per star).
 
   
 
For the '''Opening Airstrike''':
 
For the '''Opening Airstrike''':
   
<math>\hat{F} = M_{a} \left ( P_{a} \sqrt{N} + 25 \right )</math>
+
<math>\hat{F} = M_{type} \left ( ( P_{p} + P_{\bigstar} ) \sqrt{N} + K_{f} \right )</math>
   
 
*<math>N</math> is the current plane count (slot size) of a given slot
 
*<math>N</math> is the current plane count (slot size) of a given slot
*<math>P_{a}</math> is the plane's dive bombing or torpedo stat
+
*<math>P_{p}</math> is the plane's dive bombing or torpedo stat
*<math>M_{a}</math> is the Plane Scaling modifier:
+
*<math>P_{\bigstar}</math> is the plane's improvement bonus to airstrike damage:
  +
**<math>P_{\bigstar} = \begin{cases} 0.2 \bigstar, & \text{ for Torpedo Bombers, Seaplane Bombers } \\ 0, & \text{ for Dive Bombers } \end{cases}</math>
  +
*<math>M_{type}</math> is the Plane Scaling modifier:
 
**For Dive Bombers and Seaplane Bombers: '''1'''
 
**For Dive Bombers and Seaplane Bombers: '''1'''
 
**For Torpedo Bombers: '''0.8''' or '''1.5'''; one value is picked at random (~50% chance of each).
 
**For Torpedo Bombers: '''0.8''' or '''1.5'''; one value is picked at random (~50% chance of each).
  +
*<math>K_{f}</math> is the airstrike damage constant. Varies according to which type of fleet is being targeted:
  +
**Against Single Fleets, or Player Combined Fleets: <math>K_{f} = 25</math>
  +
**Against an Abyssal Main Fleet: <math>K_{f} = 15</math>
  +
**Against an Abyssal Escort Fleet: <math>K_{f} = 5</math>
   
 
For {{anchor|asw}}'''Anti-Submarine Warfare''':
 
For '''Anti-Submarine Warfare''':
 
   
 
<math>\hat{F} = \left ( 2 \sqrt{A_{s}} + A_{\bigstar} + 1.5 E_{asw} + C_{t} \right ) \cdot S_{asw} \left ( 1 + S_{a} + S_{b} \right )</math>
 
<math>\hat{F} = \left ( 2 \sqrt{A_{s}} + A_{\bigstar} + 1.5 E_{asw} + C_{t} \right ) \cdot S_{asw} \left ( 1 + S_{a} + S_{b} \right )</math>
   
*<math>A_{s}</math> is the ship's base ASW stat (no equipment ASW is considered)
+
*<math>A_{s}</math> is the ship's naked ASW stat (no equipment ASW is considered)
 
*<math>A_{\bigstar}</math> is the sum of all [[improvements]] to ASW damage
 
*<math>A_{\bigstar}</math> is the sum of all [[improvements]] to ASW damage
 
*<math>E_{asw}</math> is the sum of the displayed ASW stat of the ship's equipment. Recon Seaplanes are not considered.
 
*<math>E_{asw}</math> is the sum of the displayed ASW stat of the ship's equipment. Recon Seaplanes are not considered.
Line 100: Line 100:
 
**If aircraft-based (AV, CVL, CAV, BBV): 8
 
**If aircraft-based (AV, CVL, CAV, BBV): 8
 
*<math>S_{asw}</math> is the basic synergy modifier for ASW. Becomes '''1.15''' if the ship is equipped with a Sonar and Depth Charge Projector pair; assume 1 otherwise.
 
*<math>S_{asw}</math> is the basic synergy modifier for ASW. Becomes '''1.15''' if the ship is equipped with a Sonar and Depth Charge Projector pair; assume 1 otherwise.
*<math>S_{a}</math> is a secondary synergy modifier. Becomes '''0.15''' if the ship is equipped with a Sonar and New Depth Charge pair; assume 0 otherwise.
+
*<math>S_{a}</math> is a secondary synergy modifier. Becomes '''0.15''' if the ship is equipped with a Sonar and Depth Charge Rack pair; assume 0 otherwise.
*<math>S_{b}</math> is a secondary synergy modifier. Becomes '''0.1''' if the ship is equipped with a Depth Charge Projector and New Depth Charge pair; assume 0 otherwise.
+
*<math>S_{b}</math> is a secondary synergy modifier. Becomes '''0.1''' if the ship is equipped with a Depth Charge Projector and Depth Charge Rack pair; assume 0 otherwise.
   
  +
Additionally, equipping a Depth Charge Rack will incur an additional '''armor penetration''' effect when executing ASW attacks, denoted as <math>D</math> in the Defense Power formula. It is calculated as follows:
  +
  +
<math>D = \sqrt{D_{asw} - 2} + C_{ship}</math>
  +
  +
*<math>D_{asw}</math> is the Depth Charge Rack's displayed ASW value
  +
*<math>C_{ship}</math> is the Ship Type constant; becomes 1 if the ship equipping the Depth Charge Rack is a DE, and is 0 otherwise.
   
 
For '''Night Battle''':
 
For '''Night Battle''':
Line 110: Line 116:
 
*<math>N_{\bigstar}</math> is the sum of all [[improvements]] to night battle damage
 
*<math>N_{\bigstar}</math> is the sum of all [[improvements]] to night battle damage
 
*<math>C_{r}</math> is the Night Contact bonus; 5 if Night Scout has activated, 0 otherwise
 
*<math>C_{r}</math> is the Night Contact bonus; 5 if Night Scout has activated, 0 otherwise
 
   
 
For '''Night Battle (Aerial Attack)''':
 
For '''Night Battle (Aerial Attack)''':
Line 118: Line 123:
 
<math>M_{p} = K_{b} \left( F_{p} + T_{p} + A_{p} + D_{p} \right )</math>
 
<math>M_{p} = K_{b} \left( F_{p} + T_{p} + A_{p} + D_{p} \right )</math>
   
*Applicable '''Night Aircraft''' include Swordfish variants, [[Zero Fighter Model 62 (Fighter-bomber / Iwai Squadron)]] and Night Planes.
+
*Applicable '''Night Aircraft''' include Swordfish variants, [[Zero Fighter Model 62 (Fighter-bomber / Iwai Squadron)]], [[Suisei Model 12 (w/ Type 31 Photoelectric Fuze Bombs)]] and Night Planes.
  +
*'''Night Planes''' (purple icon) are [[F6F-3N]], [[F6F-5N]], [[Reppuu Kai Ni Model E]], [[Reppuu Kai Ni Model E (CarDiv 1/Skilled)]], [[TBM-3D]], [[Prototype Type 97 Torpedo Bomber Kai No. 3 Model E (w/ Type 6 Airborne Radar Kai)]], and [[Prototype Type 97 Torpedo Bomber Kai (Skilled) No. 3 Model E (w/ Type 6 Airborne Radar Kai)]].
*'''Night Planes''' (purple icon) are limited to F6F-3N, F6F-5N, and TBM-3D.
 
 
*<math>F_{p}</math> is the plane's firepower stat
 
*<math>F_{p}</math> is the plane's firepower stat
 
*<math>T_{p}</math> is the plane's torpedo stat
 
*<math>T_{p}</math> is the plane's torpedo stat
Line 129: Line 134:
 
*<math>K_{a}</math> is the first Night Plane modifier; becomes '''3''' if the plane is a Night Plane, and is 0 otherwise.
 
*<math>K_{a}</math> is the first Night Plane modifier; becomes '''3''' if the plane is a Night Plane, and is 0 otherwise.
 
*<math>K_{b}</math> is the second Night Plane modifier; becomes '''0.45''' if the plane is a Night Plane, and is '''0.3''' otherwise.
 
*<math>K_{b}</math> is the second Night Plane modifier; becomes '''0.45''' if the plane is a Night Plane, and is '''0.3''' otherwise.
 
   
 
Notes:
 
Notes:
 
* Multiple SONAR/Depth charges do not boost the ASW Bonus (i.e. 2 of each still makes the bonus 1.15)
 
* Multiple SONAR/Depth charges do not boost the ASW Bonus (i.e. 2 of each still makes the bonus 1.15)
  +
* In [[KanColle Kai]] abyssal ships with non-zero ASW stat (not counting equipment) have an ASW constant of 13. This takes precedence over ship classification. Currently, it is confirmed that [[Battleship Re-Class#Elite|Re Elite]] exhibits this behavior.
 
* Please read [[Akashi's Improvement Arsenal]] page for effects given by upgraded equipment.
 
* Please read [[Akashi's Improvement Arsenal]] page for effects given by upgraded equipment.
 
* Please read [[Combined Fleet]] page for combined fleet factor in combined fleets.
 
* Please read [[Combined Fleet]] page for combined fleet factor in combined fleets.
Line 143: Line 148:
 
These are the factors directly applied to your ship's attack power.
 
These are the factors directly applied to your ship's attack power.
 
* [[Damage Calculation#Anti-Installation Attack Modifier|Anti-Installation Attack Modifier]]
 
* [[Damage Calculation#Anti-Installation Attack Modifier|Anti-Installation Attack Modifier]]
* [[Combat#Formation Selection|Formation Modifier]] (see "Damage modifier")
+
* [[Combat/Main#Formation Selection|Formation Modifier]] (see "Damage modifier")
* [[Combat#Engagement Form Modifier|Engagement Modifier]]
+
* [[Combat/Main#Engagement Form Modifier|Engagement Modifier]]
 
* [[Damage Calculation#Ship.27s_Health_Modifier|Health Modifier]]
 
* [[Damage Calculation#Ship.27s_Health_Modifier|Health Modifier]]
 
* [[Damage Calculation#Night_Special_Attack_Modifier|Night Special Attack Modifier]]
 
* [[Damage Calculation#Night_Special_Attack_Modifier|Night Special Attack Modifier]]
Line 152: Line 157:
 
==== Anti-Installation Attack Modifier ====
 
==== Anti-Installation Attack Modifier ====
 
{{Main|Installation Type}}
 
{{Main|Installation Type}}
* The [[Type 3 Shell]] multiplies Attack Power by 2.5.
+
* The [[Type 3 Shell]] multiplies Attack Power by 2.5 against soft-skinned installations
  +
* The [[WG42 (Wurfgerät 42)]] adds a flat bonus and possibly an additional modifier depending on the installation and number equipped.
* The [[WG42 (Wurfgerät 42)]] adds at least 75 Attack Power, exact number depend on amount of WG42 equipped, see WG42's page. In the event both are present, this is added after the Type 3 Shell's effects, but before the sum is multiplied by the other modifiers.
 
 
* [[:Category:Landing Craft|Landing Crafts]] give varying bonuses against installations.
 
* [[:Category:Landing Craft|Landing Crafts]] give varying bonuses against installations.
 
Note also that against installations, only firepower is taken into account; in night battle, even though attack power is normally the sum of firepower and Torpedo, for installations specifically the Torpedo stat is disregarded.
 
Note also that against installations, only firepower is taken into account; in night battle, even though attack power is normally the sum of firepower and Torpedo, for installations specifically the Torpedo stat is disregarded.
   
 
====Ship's Health Modifier====
 
====Ship's Health Modifier====
{| class="article-table" style="width: 400px;" border="0" cellpadding="1" cellspacing="1"
+
{| class="article-table" style="width: 440px;" border="0" cellpadding="1" cellspacing="1"
 
|-
 
|-
 
! scope="col" style="text-align:center;" |Damage
 
! scope="col" style="text-align:center;" |Damage
! scope="col" style="text-align:center;" |Modifier
+
! scope="col" style="text-align:center;" |Shelling/ASW
 
! scope="col" style="text-align:center;" |Torpedo
 
|-
 
|-
 
| Minor damage (小破 Shouha) or less
 
| Minor damage (小破 Shouha) or less
 
| style="text-align:center;" |100%
 
| style="text-align:center;" |100%
 
| style="text-align:center;" |100%
 
|-
 
|-
 
| Moderate damage (中破 Chuuha)
 
| Moderate damage (中破 Chuuha)
 
| style="text-align:center;" |70%
 
| style="text-align:center;" |70%
 
| style="text-align:center;" |80%
 
|-
 
|-
 
| Heavy damage (大破 Taiha)
 
| Heavy damage (大破 Taiha)
 
| style="text-align:center;" |40%
 
| style="text-align:center;" |40%
 
| style="text-align:center;" |0%
 
|}
 
|}
 
These modifiers do not affect Aerial Combat.
 
These modifiers do not affect Aerial Combat.
Line 192: Line 201:
 
Applied on bombers during the opening air strike. These are the random numbers multiplied to the plane's bombing attack power.
 
Applied on bombers during the opening air strike. These are the random numbers multiplied to the plane's bombing attack power.
 
-->
 
-->
  +
 
====Night Special Attack Modifier ====
 
====Night Special Attack Modifier ====
 
[[File:night_cut_in.png|thumb|An example of a cut-in]]
 
[[File:night_cut_in.png|thumb|An example of a cut-in]]
Line 211: Line 221:
   
 
Where:
 
Where:
*<math>x</math> is the input of the function; or in other words, the value of Basic Attack Power multiplied by all Pre-Cap Modifiers.
+
*<math>x</math>is the input of the function; or in other words, the value of Basic Attack Power multiplied by all Pre-Cap Modifiers.
*<math>S</math> is the attack power cap, represented by different thresholds according to the type of attack:
+
*<math>S</math>is the attack power cap, represented by different thresholds according to the type of attack:
 
**'''180 '''for Day Battle Shelling
 
**'''180 '''for Day Battle Shelling
 
**'''300 '''for Night Battle
 
**'''300 '''for Night Battle
 
**'''150 '''for Others (ASW, support shelling, aerial attack, torpedo attack, etc.)
**'''100 '''for ASW (Anti-Submarine) attacks
 
**'''150 '''for Others (support shelling, aerial attack, torpedo attack, etc.)
 
   
 
Daytime Shelling Attack Cap (180) often makes it important to utilize [[Combat#Artillery_Spotting|Artillery Spotting]] since they boost your attack power '''after the cap''', [[Combat#Night Combat|Night Combat]] can be very dangerous and/or rewarding due to having a very high cap (300) and the inclusion of torpedo to firepower for the basic attack power calculation.
 
Daytime Shelling Attack Cap (180) often makes it important to utilize [[Combat#Artillery_Spotting|Artillery Spotting]] since they boost your attack power '''after the cap''', [[Combat#Night Combat|Night Combat]] can be very dangerous and/or rewarding due to having a very high cap (300) and the inclusion of torpedo to firepower for the basic attack power calculation.
Line 232: Line 241:
 
====Artillery Spotting ====
 
====Artillery Spotting ====
 
[[File:Combat_daycutin.jpg|200px|right]] [http://kancolle.wikia.com/wiki/Combat#Day_Battle_Special_Attacks_.28Artillery_Spotting.29 Certain equipment setups] provide a chance to trigger special attacks during day battle, giving boost to both attack power and accuracy. The damage modifiers are applied after the cap (180), thus very effective against heavy armor targets. Note that the ship requires at least 1 seaplane on board to perform Artillery Spotting.
 
[[File:Combat_daycutin.jpg|200px|right]] [http://kancolle.wikia.com/wiki/Combat#Day_Battle_Special_Attacks_.28Artillery_Spotting.29 Certain equipment setups] provide a chance to trigger special attacks during day battle, giving boost to both attack power and accuracy. The damage modifiers are applied after the cap (180), thus very effective against heavy armor targets. Note that the ship requires at least 1 seaplane on board to perform Artillery Spotting.
 
   
 
====Critical Modifier====
 
====Critical Modifier====
Line 254: Line 262:
   
 
====Contact====
 
====Contact====
[[File:Combat_contact.jpg|right]] Contact takes place during the Aerial Combat phase. It increases bombing damage for all allied bombers. When successful, an image of the squadron performing contact is shown in the opposing fleet's formation indicator, with the text "触接中".
+
[[File:Combat_contact.jpg|right]] Contact takes place during the Aerial Combat bombing phase, and applies to the bombing damage of all allied planes.  For activation conditions, rate and additional details, see [[Aerial_Combat#Contact|Aerial Combat]].
*Trigger conditions:
 
**More air control than Air Incapability
 
**At least one carrier scout plane, seaplane scout, or torpedo bomber equipped.
 
***Seaplane bombers, [[Type 3 Spotter/Liaison (ASW)|Type 3 Spotter]], and [[Ka-type_Observation_Autogyro|Ka-type Autogyros]] cannot perform contact.
 
**It's thought that each carrier scout plane, seaplane scout, and/or torpedo bomber slot equipped is given a chance to trigger contact. Once successful, the bonus applied is chosen at random with weighting preferential towards higher modifiers from all eligible equipped planes.
 
Different types of planes have different trigger rates. They are roughly estimated as (if only one is equipped):
 
{| class="article-table" border="0" cellpadding="1" cellspacing="1"
 
|-
 
! scope="col" style="text-align:center;" |Type
 
! scope="col" style="text-align:center;" |Contact Rate
 
|-
 
| Torpedo Bomber
 
| style="text-align:center;" |~2%
 
|-
 
| Night Scout
 
| style="text-align:center;" |~5%
 
|-
 
| Seaplane Scout
 
| style="text-align:center;" |~20%
 
|-
 
| Carrier Scout
 
| style="text-align:center;" |~60%
 
|-
 
| Flying Boat
 
| style="text-align:center;" |~70%
 
|}
 
   
 
The damage increase depends on the +accuracy bonus {{Template:Hit}} of the squadron performing contact.
====='''Contact Damage Modifier'''=====
 
*The damage increase depends on the +accuracy bonus {{Template:Hit}} of the squadron performing contact.
 
 
{| class="article-table" border="0" cellpadding="1" cellspacing="1"
 
{| class="article-table" border="0" cellpadding="1" cellspacing="1"
 
|-
 
|-
Line 298: Line 279:
 
| style="text-align:center;" |117%
 
| style="text-align:center;" |117%
 
|-
 
|-
| style="text-align:center;" | +3
+
| style="text-align:center;" | +3 or more
 
| style="text-align:center;" |120%
 
| style="text-align:center;" |120%
 
|}
 
|}
 
====='''Notes'''=====
 
*{{Template:YellowPlane}}[[Type_2_Recon_Aircraft|Type 2 Recon Aircraft]] is useful in the case that the bombing damage bonus is desired while not removing the chance for T-disadvantage, due to its high trigger rate.
 
*With contact, the maximum attack power of bombing (before defense, critical and ammo) is around 180. With some luck, it's possible to sink even Ru-class Flagships (Armor = 99) in one strike without a critical.
 
* See Contact section in [[Aerial Combat]] about triggering rate of this mechanism.
 
   
 
====AP Shell====
 
====AP Shell====
Line 384: Line 360:
   
 
==Player Ship Protection Mechanisms==
 
==Player Ship Protection Mechanisms==
<math>\text{Damage Value} = \left \lfloor \frac{H_{t}}{2} \right \rfloor + \Big \lfloor 0.3 \big ( \text{rand} \in \left [ 0 , H_{t} - 1 \right ] \big ) \Big \rfloor</math>
+
<math>\text{Damage Value} = \left \lfloor \frac{H_{t}}{2} + 0.3 \big ( \text{rand} \in \left [ 0 , H_{t} - 1 \right ] \big ) \right \rfloor</math>
 
 
While the above formulas and statements are generally true for damage taken by a player's ships, there are additional limits that apply to friendly units only. These protection mechanisms are important for game balance and to protect your fleet from sinking.
 
While the above formulas and statements are generally true for damage taken by a player's ships, there are additional limits that apply to friendly units only. These protection mechanisms are important for game balance and to protect your fleet from sinking.
 
*For ships entering battle at ''chuuha'' (orange) or higher HP:
 
*For ships entering battle at ''chuuha'' (orange) or higher HP:

Revision as of 21:45, 24 April 2020

Main Formula

Where:

  • is Basic Attack Power.
  • is the combination of Pre-Cap Modifiers.
  • is the combination of Post-Cap Modifiers.
  • is the Critical Hit modifier. Assumes a value of 1.5 if the attack is a Critical Hit, and is 1 otherwise.
  • is the soft cap to attack power.
  • is Defense Power.
  • is the remaining ammo penalty:
    • is the ship's current ammo percentage (1 bar = 10% = 0.1)
  • is the floor function; that is, the rounding down of input

Defense Power is calculated as follows:

Where:

  • is the sum of the defending ship's displayed armor stat and all improvements to armor.
  • The random number function outputs an integer value between 0 and (inclusive, uniformly distributed).
  • is the Depth Charge Rack armor penetration effect. See Anti-Submarine Warfare for details.

If Damage Value is less than 1, it becomes scratch damage, and the following formula is applied instead:

Where:

  • is the target's current HP.
  • The random number function outputs an integer value between 0 and (inclusive, uniformly distributed).

Basic Attack Power

For Shelling:

  • is the ship's firepower stat
  • is the sum of all improvements to shelling damage
  • is the Combined Fleet factor

For Torpedo:

  • is the ship's torpedo stat
  • is the sum of all improvements to torpedo damage

For Carrier Shelling:

  • is the ship's dive bombing stat
  • is the sum of improvements to carrier shelling. It is confirmed for secondary and machine gun improvements, and also torpedo bomber improvements (0.2 per star).

For the Opening Airstrike:

  • is the current plane count (slot size) of a given slot
  • is the plane's dive bombing or torpedo stat
  • is the plane's improvement bonus to airstrike damage:
  • is the Plane Scaling modifier:
    • For Dive Bombers and Seaplane Bombers: 1
    • For Torpedo Bombers: 0.8 or 1.5; one value is picked at random (~50% chance of each).
  • is the airstrike damage constant. Varies according to which type of fleet is being targeted:
    • Against Single Fleets, or Player Combined Fleets:
    • Against an Abyssal Main Fleet:
    • Against an Abyssal Escort Fleet:

For Anti-Submarine Warfare:

  • is the ship's naked ASW stat (no equipment ASW is considered)
  • is the sum of all improvements to ASW damage
  • is the sum of the displayed ASW stat of the ship's equipment. Recon Seaplanes are not considered.
  • is the ASW type constant:
    • If Sonar or Depth Charge (DD, CL): 13
    • If aircraft-based (AV, CVL, CAV, BBV): 8
  • is the basic synergy modifier for ASW. Becomes 1.15 if the ship is equipped with a Sonar and Depth Charge Projector pair; assume 1 otherwise.
  • is a secondary synergy modifier. Becomes 0.15 if the ship is equipped with a Sonar and Depth Charge Rack pair; assume 0 otherwise.
  • is a secondary synergy modifier. Becomes 0.1 if the ship is equipped with a Depth Charge Projector and Depth Charge Rack pair; assume 0 otherwise.

Additionally, equipping a Depth Charge Rack will incur an additional armor penetration effect when executing ASW attacks, denoted as in the Defense Power formula. It is calculated as follows:

  • is the Depth Charge Rack's displayed ASW value
  • is the Ship Type constant; becomes 1 if the ship equipping the Depth Charge Rack is a DE, and is 0 otherwise.

For Night Battle:

  • is the sum of all improvements to night battle damage
  • is the Night Contact bonus; 5 if Night Scout has activated, 0 otherwise

For Night Battle (Aerial Attack):

Notes:

  • Multiple SONAR/Depth charges do not boost the ASW Bonus (i.e. 2 of each still makes the bonus 1.15)
  • In KanColle Kai abyssal ships with non-zero ASW stat (not counting equipment) have an ASW constant of 13. This takes precedence over ship classification. Currently, it is confirmed that Re Elite exhibits this behavior.
  • Please read Akashi's Improvement Arsenal page for effects given by upgraded equipment.
  • Please read Combined Fleet page for combined fleet factor in combined fleets.
  • During Night Battle, the basic attack power of anti-submarine warfare can be treat as zero, with the exception of in Combined Fleet maps and Night Battle nodes.
  • Carriers utilize the Night Battle formula unless one of the following:
    • Saratoga Mk.II (uses Aerial Attack formula)
    • Equipped with night operation aviation personnel (uses Aerial Attack formula)
    • Ark Royal equipped with Swordfish and not equipped with night operation aviation personnel (uses normal night battle formula, but ignores all equipment besides Swordfish).

Pre-Cap Modifiers

These are the factors directly applied to your ship's attack power.

Effects from the modifiers are multiplied/added cumulatively.

Anti-Installation Attack Modifier

Main article: Installation Type
  • The Type 3 Shell multiplies Attack Power by 2.5 against soft-skinned installations
  • The WG42 (Wurfgerät 42) adds a flat bonus and possibly an additional modifier depending on the installation and number equipped.
  • Landing Crafts give varying bonuses against installations.

Note also that against installations, only firepower is taken into account; in night battle, even though attack power is normally the sum of firepower and Torpedo, for installations specifically the Torpedo stat is disregarded.

Ship's Health Modifier

Damage Shelling/ASW Torpedo
Minor damage (小破 Shouha) or less 100% 100%
Moderate damage (中破 Chuuha) 70% 80%
Heavy damage (大破 Taiha) 40% 0%

These modifiers do not affect Aerial Combat.

Night Special Attack Modifier

Night cut in

An example of a cut-in

Certain Equipment setups have a chance to trigger special attacks at night, giving boost to both attack power and accuracy. This stage is usually the most rewarding / dangerous because both sides have drastically increased attack power.

The ship must be able to participate in the night battle in order to trigger the special attacks.

Light Cruiser Fit Bonus

Main article: Overweight Penalty and Fit Gun Bonus

a few points would be added for CL's attack power after all pre-cap firepower but before the cap if they used fit guns.

Attack Power Cap

Applies after the pre-cap modifiers. This is a soft limit on your effective attack power. It is given by:

Where:

  • is the input of the function; or in other words, the value of Basic Attack Power multiplied by all Pre-Cap Modifiers.
  • is the attack power cap, represented by different thresholds according to the type of attack:
    • 180 for Day Battle Shelling
    • 300 for Night Battle
    • 150 for Others (ASW, support shelling, aerial attack, torpedo attack, etc.)

Daytime Shelling Attack Cap (180) often makes it important to utilize Artillery Spotting since they boost your attack power after the cap, Night Combat can be very dangerous and/or rewarding due to having a very high cap (300) and the inclusion of torpedo to firepower for the basic attack power calculation.

Post-Cap Modifiers

In damage calculation, Post-cap modifiers apply after the cap, but before enemy armor reduction. Thus they are very effective approach to boost your damage output (esp. against heavy armor enemies).

Currently, the post-cap modifiers are from:

Artillery Spotting

Combat daycutin

Certain equipment setups provide a chance to trigger special attacks during day battle, giving boost to both attack power and accuracy. The damage modifiers are applied after the cap (180), thus very effective against heavy armor targets. Note that the ship requires at least 1 seaplane on board to perform Artillery Spotting.

Critical Modifier

Most forms of attack (Torpedo, Shelling, Anti-Submarine, Preemptive Bombing) have a chance to crit the target. The damage modifier applies after the cap.

Attack Type Modifier
Normal Attack 100%
Critical Hit 150%

It should be noted that the critical message always appears when damage dealt is greater than or equal to 40, regardless of whether the 150% modifier was applied or not. On the other hand, the critical message will never appear when damage dealt is less than or equal to 14, even if the 150% modifier was applied.

Critical damage rate seems to depend on accuracy.

Aircraft Proficiency boost Critical Hit Modifier.

Contact

Combat contact

Contact takes place during the Aerial Combat bombing phase, and applies to the bombing damage of all allied planes.  For activation conditions, rate and additional details, see Aerial Combat.

The damage increase depends on the +accuracy bonus Accuracy of the squadron performing contact.

Accuracy
Bonus
Damage
Modifier
+0 112%
+1 112%
+2 117%
+3 or more 120%

AP Shell

Damage against certain targets increases when both large-caliber main guns and AP shells are equipped.

This modifier works against the following enemy classes:

  • Battleships (including Fast Battleships and Aviation Battleships)
  • Heavy Cruisers
  • Standard Carriers
  • Demons and Princesses (including land installations)
  • Floating Fortresses (Escort Fortress and Floating Fortress)
Type Modifier
Main + Main + AP Shell + Seaplane 108%
Main + Main + AP Shell + AA gun 108%
Main + Main + AP Shell + Radar 110%
Main + Main + Secondary + AP Shell 115%
Main + Secondary + AP Shell + Radar 114~115%?
Main + Secondary + AP Shell + Seaplane 115~116%?

Notes

  • The AP shell and seaplane used in the tests were Type 91 AP Shell and Type 0 Observation Seaplane.
  • Numbers for the setups involving secondary guns are not confirmed yet, but believed to be near.
  • Has not been tested against Light Cruiser Demon and Destroyer Princess at the moment.
  • Has not been tested against Armored Carriers and Aviation Cruisers as of 02/06/2015.
  • Detailed tests are still ongoing. Values differ slightly from test to test (source). Current values are taken off wikiwiki.
  • Exercise caution as this modifier works for enemy ships as well (practice matches and special enemies with Deteriorate AP Shell equipped).

Remaining Ammo Modifier

Remaining Ammunition Modifier
5 to 10 Ammunition bars 100%
4 Ammunition bars 80%
3 Ammunition bars 60%
2 Ammunition bars 40%
1 Ammunition bar 20%
0 Ammunition bars Scratch Damage
  • In general, two bars of Ammunition will be used in Day Battle for all ships, regardless of whether they attack or not.
  • The Remaining Ammo Modifier affects all phases, including the opening Aerial Combat Phase.
  • When entering night battle, the Remaining Ammo Modifier on a vessel remains same as the previous day battle. One bar of Ammunition is used for all ships in Night Battle, regardless of whether they attack or not.
  • Because most battles will consume 2 bars of ammunition each, try to engage the boss before the 5th battle, or else achieving victory becomes unlikely (but not impossible).
  • When attempting to defeat boss nodes, avoid night battles and whirlpools on the way.
    • Whirlpools will decrease either Fuel or Ammunition bars of your sorted fleet, which can be disadvantageous in long sorties.  Equipping one or more ships with RADAR can help reduce losses taken from these.
      • Only one RADAR is required per ship.  Equipping multiple RADAR to the same ship will not reduce the penalty further.
      • The max reduction typically occurs at 3 ships with RADAR. In events special caveats such as only RADAR in the main fleet of a Combined Fleet being considered can exist.
  • Submarine-only nodes on limited-time event maps do not consume ammo in Day or Night Battle.
  • Hayasui with Underway Replenishment can temporarily resupply ammo/fuel when players choose to use the item.
  • Ammo/Fuel reduced in Air Raid nodes are reduced. Read Events/Mechanics for details.

Player Ship Protection Mechanisms

While the above formulas and statements are generally true for damage taken by a player's ships, there are additional limits that apply to friendly units only. These protection mechanisms are important for game balance and to protect your fleet from sinking.

  • For ships entering battle at chuuha (orange) or higher HP:
    • Damage taken cannot reduce HP below 1.
      • Any further hits will become misses.
    • For flagships, as well as ships with 20 morale or more (i.e. not red face):
      • If damage taken exceeds a ship's current HP, then instead of taking full damage, the damage of the current attack is limited to 50%-79% (rounded down) of current HP.
        • For multi-hit attacks, such as night battle torpedo cut-in attacks, each hit is calculated separately.
        • This can occasionally help ships avoid taiha (red HP), because it narrows the range of damage where it is possible to be hit into taiha.
        • For ships with at full HP and an odd HP total, it is occasionally possible to stop damage at lightly damaged.

See Also