Fe Engage Growth Rates Calculator

Fire Emblem Engage Growth Rates Calculator body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f4f4f9; } .calculator-container { background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-bottom: 40px; border-top: 5px solid #d32f2f; /* FE Engage Red */ } .calculator-title { text-align: center; margin-bottom: 25px; color: #d32f2f; font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; } .global-controls { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; background: #f0f0f0; padding: 15px; border-radius: 8px; margin-bottom: 20px; align-items: center; } .control-group { display: flex; flex-direction: column; align-items: flex-start; } .control-group label { font-weight: bold; margin-bottom: 5px; font-size: 0.9rem; } .control-group input[type="number"] { padding: 8px; border: 1px solid #ccc; border-radius: 4px; width: 100px; } .checkbox-group { display: flex; align-items: center; gap: 10px; margin-top: 15px; background: #e3f2fd; /* Light Blue */ padding: 10px 15px; border-radius: 4px; border: 1px solid #90caf9; } .stat-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } .stat-table th { background-color: #333; color: white; padding: 12px; text-align: center; font-size: 0.9rem; } .stat-table td { padding: 10px; border-bottom: 1px solid #ddd; text-align: center; } .stat-table tr:nth-child(even) { background-color: #f9f9f9; } .stat-label { font-weight: bold; color: #d32f2f; text-transform: uppercase; } .input-cell input { width: 70px; padding: 6px; text-align: center; border: 1px solid #ccc; border-radius: 4px; } .result-cell { font-weight: bold; color: #000; } .expected-cell { color: #1976d2; /* Engage Blue */ font-weight: bold; } .calc-btn { display: block; width: 100%; padding: 15px; background-color: #d32f2f; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; text-transform: uppercase; } .calc-btn:hover { background-color: #b71c1c; } .content-section { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } h2, h3 { color: #333; } .formula-box { background: #eee; padding: 15px; border-left: 4px solid #d32f2f; font-family: monospace; margin: 15px 0; } @media (max-width: 768px) { .stat-table th, .stat-table td { padding: 5px; font-size: 0.8rem; } .input-cell input { width: 50px; } }
FE Engage Stat Planner
Stat Current Value Char Base % Class Base % Total Growth % Expected Value
HP 0%
Str 0%
Mag 0%
Dex 0%
Spd 0%
Def 0%
Res 0%
Lck 0%
Bld 0%

Mastering Stat Growth in Fire Emblem Engage

Understanding how stats increase in Fire Emblem Engage is critical for optimizing your units, especially on Maddening difficulty. Unlike standard RPGs where stats might be fixed, Fire Emblem uses a probability-based system (or a strict internal counter in Fixed Mode) determined by "Growth Rates."

How Growth Rates Work

Every time a unit gains a level, the game checks their Total Growth Rate for each stat (HP, Strength, Magic, Dexterity, Speed, Defense, Resistance, Luck, and Build). If the percentage is met, the stat increases by 1.

Total Growth Rate = Character Base % + Class Base % + Skill Modifiers

For example, if Alear has a base Speed growth of 50% and is in a class that provides a 15% Speed growth bonus, their total Speed growth is 65%. This means they have a 65% chance to gain +1 Speed every level up.

Using this Calculator

This tool helps you theory-craft builds without needing to manually do the math for every level. Here is how to use the inputs:

  • Current Value: (Optional) Enter the unit's current stat if you want to predict their future stats.
  • Char Base %: The inherent growth rate of the character (e.g., Alear, Diamant, Ivy).
  • Class Base %: The bonus growth rate provided by their current class (e.g., Divine Dragon, Successeur).
  • Starsphere/Tiki: Check this box if the unit has the Starsphere skill equipped (from the Tiki Emblem), which adds a flat +15% to all growth rates.

Interpreting Results

  • Total Growth %: This is the actual percentage chance your unit will gain a stat point upon leveling up. If this number exceeds 100%, the unit is guaranteed +1, and has a chance for +2 (e.g., 120% = guaranteed +1, and 20% chance for +2).
  • Expected Value: This is a statistical average of what the stat will look like after gaining the specified number of levels. In "Fixed Growth" mode, this number is exactly what you will get. In "Random Growth" mode, your actual results may vary slightly due to RNG.
function calculateGrowth() { var stats = ['hp', 'str', 'mag', 'dex', 'spd', 'def', 'res', 'lck', 'bld']; var levelsToGain = parseFloat(document.getElementById('levels_gain').value); var hasStarsphere = document.getElementById('starsphere_check').checked; // Validate levels input if (isNaN(levelsToGain) || levelsToGain < 0) { levelsToGain = 0; } var modifier = hasStarsphere ? 15 : 0; for (var i = 0; i 100, color it green if (totalRate >= 100) { document.getElementById(stat + '_total').style.color = "green"; } else { document.getElementById(stat + '_total').style.color = "black"; } } }

Leave a Comment