KanColle Wiki
(Integrated flooring into the cap function; other small edits.)
Tag: rte-source
 
(38 intermediate revisions by 12 users not shown)
Line 1: Line 1:
  +
<!--
 
{{Under Construction
 
{{Under Construction
 
|Scope = article
 
|Scope = article
 
|Missing Information = Correct and complete damage calculations, better presentation and formatting, examples, section on extended models (fitting)
 
|Missing Information = Correct and complete damage calculations, better presentation and formatting, examples, section on extended models (fitting)
|Page Adopted = がか
+
|Page Adopted = Tsubakura, がか
 
}}
 
}}
  +
-->
 
<!--
 
<!--
 
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 18: 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 a 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 40: Line 40:
 
Where:
 
Where:
 
*<math>H_{t}</math> is the target's '''current''' HP.
 
*<math>H_{t}</math> is the target's '''current''' HP.
*The random number function outputs a value between 0 and <math>H_{t} - 1</math> (inclusive, uniformly distributed).
+
*The random number function outputs an integer value between 0 and <math>H_{t} - 1</math> (inclusive, uniformly distributed).
 
<!--
 
<!--
 
Once there is a section for scratch damage, mention:
 
Once there is a section for scratch damage, mention:
Line 55: Line 55:
 
<math>\hat{F} = F_{s} + F_{\bigstar} + C_{f} + 5</math>
 
<math>\hat{F} = F_{s} + F_{\bigstar} + C_{f} + 5</math>
   
*<math>F_{s}</math> is the ship's firepower stat
+
*<math>F_{s}</math>is the ship's firepower stat
*<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 64: Line 63:
 
<math>\hat{F} = T_{s} + T_{\bigstar} + 5</math>
 
<math>\hat{F} = T_{s} + T_{\bigstar} + 5</math>
   
*<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''':
   
<math>\hat{F} = 55 + \big \lfloor 1.5 \left ( F_{s} + T_{s} + \left \lfloor 1.3 D_{s} \right \rfloor + F_{\bigstar} + T_{\bigstar} + C_{f} \right ) \big \rfloor</math>
+
<math>\hat{F} = 55 + \big \lfloor 1.5 \left ( F_{s} + T_{s} + \left \lfloor 1.3 D_{s} \right \rfloor + F_{\bigstar} + C_{f} \right ) \big \rfloor</math>
 
*<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 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.
*<math>C_{t}</math> is the ASW type constant:
+
*<math>C_{t}</math>is the ASW type constant:
 
**If Sonar or Depth Charge (DD, CL): 13
 
**If Sonar or Depth Charge (DD, CL): 13
 
**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 105: Line 116:
 
<math>\hat{F} = F_{s} + T_{s} + N_{\bigstar} + C_{r}</math>
 
<math>\hat{F} = F_{s} + T_{s} + N_{\bigstar} + C_{r}</math>
   
*<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)''':
  +
  +
<math>\hat{F} = F_{s} + \sum^{\text{Night Aircraft}} F_{p} + T_{p} + D_{p} + M_{p} \sqrt{N} + NK_{a} + \sqrt{\bigstar_{p}}</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)]], [[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)]].
  +
*<math>F_{p}</math>is the plane's firepower stat
  +
*<math>T_{p}</math>is the plane's torpedo stat
  +
*<math>A_{p}</math>is the plane's ASW stat
  +
*<math>D_{p}</math>is the plane's dive bombing stat
  +
*<math>\bigstar_{p}</math>is the plane's improvement level
  +
*<math>M_{p}</math>is the plane's calculated night multiplier
  +
*<math>N</math>is the current plane count (slot size) of that slot
  +
*<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.
   
 
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.
* All carriers that participate in night battle, including friendly side and abyssal's, use the standard night battle formula.
 
 
* 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.
 
* 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===
 
===Pre-Cap Modifiers===
 
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 127: Line 159:
 
==== 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 167: Line 203:
 
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 186: Line 223:
   
 
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 207: Line 243:
 
====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 229: Line 264:
   
 
====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 273: Line 281:
 
| 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 296: Line 299:
 
! scope="col"|Modifier
 
! scope="col"|Modifier
 
|-
 
|-
|Main + Main + AP Shell + Seaplane
+
|Main + AP Shell
 
|108%
 
|108%
 
|-
 
|-
|Main + Main + AP Shell + AA gun
+
|Main + AP Shell + Radar
|108%
 
|-
 
|Main + Main + AP Shell + Radar
 
 
|110%
 
|110%
 
|-
 
|-
|Main + Main + Secondary + AP Shell
+
|Main + Secondary + AP Shell
 
|115%
 
|115%
 
|-
 
|-
 
|Main + Secondary + AP Shell + Radar
 
|Main + Secondary + AP Shell + Radar
|114~115%?
+
|115%
|-
 
|Main + Secondary + AP Shell + Seaplane
 
|115~116%?
 
 
|}
 
|}
 
<span style="font-size:12px;font-weight:bold;">Notes</span>
 
<span style="font-size:12px;font-weight:bold;">Notes</span>
  +
*The size of the main guns are irrelevant.
*The AP shell and seaplane used in the tests were [[Type 91 Armor-Piercing (AP) Shell|Type 91 AP Shell]] and [[Type 0 Observation Seaplane]].
 
  +
*Source of the tests can be found [https://kancolle.fandom.com/ja/wiki/%E3%82%B9%E3%83%AC%E3%83%83%E3%83%89:421 here].
*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 ([http://kancollecalc.web.fc2.com/damage_formula.html#4 source]). Current values are taken off [http://wikiwiki.jp/kancolle/?%C0%EF%C6%AE%A4%CB%A4%C4%A4%A4%A4%C6#f463ac20 wikiwiki].
 
 
*<span style="line-height:21px;">Exercise caution as this modifier works for enemy ships as well (practice matches and special enemies with '''Deteriorate AP Shell''' equipped).</span>
 
*<span style="line-height:21px;">Exercise caution as this modifier works for enemy ships as well (practice matches and special enemies with '''Deteriorate AP Shell''' equipped).</span>
   
Line 359: Line 353:
   
 
==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:

Latest revision as of 18:07, 2 September 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 + AP Shell 108%
Main + AP Shell + Radar 110%
Main + Secondary + AP Shell 115%
Main + Secondary + AP Shell + Radar 115%

Notes

  • The size of the main guns are irrelevant.
  • Source of the tests can be found here.
  • 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[]