This is an old revision of the document!
Table of Contents
Stats
The stat calculation is split up into seperate phases, with mid-calculation results being visible in different places and able to be used again in later steps.
The formulae on this page are not guaranteed to be correct, but instead just aim to be a rough guideline to understand the process.
Base Stats
Base Stats describe the unit's stats as seen in the single unit view - only affected by leveling, skill tree spaces and Bond Level/Bond Board bonuses. You will see “Base [Stat]” being referred to in-game, mostly in Passives - this is what is used for calculating the effect for those skills.
$$stat_b = \lfloor(level + skilltree) \cdot (1 + bond)\rfloor$$
$level$: The stat points contributed by the unit-level
$skilltree$: The sum of stat points gained from nodes on the Skill Tree
$bond$: The sum of the bonus percentages from Bond Level (Appeal only) and Bond Board
Formation Stats
Formation Stats describe the unit's stats as seen in the Live Formation and Strategy/Accessory screens - passive skills and accessories of the entire Formation now affect the stats.
$$stat_f = \lfloor stat_b \cdot (1 + passives)\rfloor + (\sum_{Accessories} \lfloor accstat \cdot \begin{cases} 1.1 & \text{if Accessory and Unit attributes match} \\ 1 & \text{otherwise} \end{cases}\rfloor)$$
$passives$: The sum of the percentages of all Passive skills (both Abilities and Insights)
$accstat$: The stat points gained from an accessory
Effective Stats
Effective Stats describe stats during lives, affected by the Guest, Attribute Matching, Gimmicks and Actives from the Units and Accessories. These are invisible to the player, and are used for most gameplay calculations such as Taps and SP Power.
$$stat_e = \lfloor\lfloor\lfloor\lfloor(stat_f + \lfloor stat_b \cdot (1 + guestpassives)\rfloor) \cdot (1 + actives)\rfloor \cdot (1 + gimmick + buff)\rfloor \cdot (1 + exbuff)\rfloor \cdot matching\rfloor$$
$guestpassives$: The sum of the percentages of all Passive skills of the chosen Guest (both Abilities and Insights)
$actives$: The sum of the percentages of all Active skills in effect, including Show Abilities affecting the stat (not Base Stat) and Accessories (for example, Brooches).
$gimmick$: The sum of the percentages of active Song Gimmicks buffs and debuffs
$buff$: The sum of the percentages from active Tap Skill buffs
$exbuff$: The sum of percentages from active EX-type skills (for example, Fes Ai's Show Ability)
$matching$: $\begin{cases} 1.2 + bondmatch & \text{if Unit and Song attributes match, and the stat is Stamina or Technique} \\ 1 & \text{otherwise} \end{cases}$
$bondmatch$: The Attribute Matching bonus from the character's Bond Board (note this is only the bonus - the default 20% are already added above with the 1.2)
Calculating without Actives or Guests can usually deliver good enough results at the start of live where no skills are in effect. For testing other formulae, it is recommended to play without any of this and use this very easy simplification:
$$stat_e = \lfloor(stat_f) \cdot matching\rfloor$$
Contributors to this page: