User:Ritsu/test2: Difference between revisions

From Elwiki
No edit summary
No edit summary
Line 1: Line 1:
{{#vardefine: game_mode|
{{#vardefine: game_mode|
{{tt|Game mode multiplier| A function that determines an extra multiplier for certain game modes.<br/>'''Affected modes''': Normal, Henir, Secret Dungeon, Secret Dungeon (Luto Mode)<hr>Utilizes the special formulas for the following:<br/><br/>• '''Secret Dungeon''': <pre>0.9 * (1.8 * ((H - 70) / 36)^(2.5) + 0.7)</pre>• '''Luto Mode''': <pre>0.9 * (1 * ((H - 70) / 36)^(3.5) + 1.5)</pre>Otherwise equals to 1.}}
{{tt|Game mode multiplier| A function that determines an extra multiplier for certain game modes.<br/>'''Affected modes''': Normal, Henir, Secret Dungeon, Secret Dungeon (Luto Mode)<hr>Utilizes special formulas for the following:<br/><br/>• '''Secret Dungeon''': <pre>0.9 * (1.8 * ((H - 70) / 36)^(2.5) + 0.7)</pre>• '''Luto Mode''': <pre>0.9 * (1 * ((H - 70) / 36)^(3.5) + 1.5)</pre>Otherwise equals to 1.}}
}}
}}
  Max HP = FLOOR((340 + 60 * L) * (9.994 + 0.006 * H²) * L * F)
  Max HP = FLOOR((340 + 60 * L) * (9.994 + 0.006 * H²) * L * F)

Revision as of 18:31, 25 September 2022

Max HP = FLOOR((340 + 60 * L) * (9.994 + 0.006 * H²) * L * F)
  • FLOOR = This function rounds the input number down to the closest integer.
  • L = The enemy's level. Enemies from Elrianode onwards have level 99, and 100 from Plegas's Gaze onwards.
  • H = A hidden HP base depending on the enemy
  • F =
    A function that determines an extra multiplier for certain game modes.
    Affected modes: Normal, Henir, Secret Dungeon, Secret Dungeon (Luto Mode)
    Utilizes special formulas for the following:

    Secret Dungeon:
    0.9 * (1.8 * ((H - 70) / 36)^(2.5) + 0.7)
    Luto Mode:
    0.9 * (1 * ((H - 70) / 36)^(3.5) + 1.5)
    Otherwise equals to 1.
    Game mode multiplier