Skip to content

Method of verification

エッケザックス edited this page Jun 30, 2019 · 3 revisions

Damage formula

In the granblue, "Math.ceil(value * Random Modifier)" ​​is executed at the end of the Normal Damage calculation.
(Random Modifier = a random number between 0.95 and 1.05 (step size 0.01) )
The Normal Damage value before cap calculation is passed to Charge Attack damage calculation.

  1. Rewrite result.js so that the decimal point of Chara Single Attack Damage is displayed.
-                                        className="label label-primary">{intl.translate("単攻撃ダメージ(技巧連撃無)", locale)}</span> {m.data[key].pureDamage.toFixed(0)}&nbsp;
+                                        className="label label-primary">{intl.translate("単攻撃ダメージ(技巧連撃無)", locale)}</span> {m.data[key].pureDamage}&nbsp;
  1. Based on motocal's Chara Single Attack Damage value, create a predicted damage table with Excel etc.
    Example: C.A. image

  2. Check the damage value in granblue to see if it matches the table.
    NOTE: Airship Boost, Airship Parts, Master Bonus of "Boost to main weapon's ATK when…"

Clone this wiki locally