Stats: Difference between revisions

From Ymirheim Wiki
(Small link fixes)
(Marked this version for translation)
Line 2: Line 2:


<translate>
<translate>
<!--T:1-->
[[File:Stats.png|thumb|Ymirheim Stats]]
[[File:Stats.png|thumb|Ymirheim Stats]]
[[File:Original RO2 Stats.png|thumb|Stats in the original game]]
[[File:Original RO2 Stats.png|thumb|Stats in the original game]]


<!--T:2-->
'''Stats''' are main [[Special:MyLanguage/Character|character]] [[Special:MyLanguage/Attributes|attributes]] that can be increased by spending status points obtained by [[Special:MyLanguage/Experience|leveling up]].
'''Stats''' are main [[Special:MyLanguage/Character|character]] [[Special:MyLanguage/Attributes|attributes]] that can be increased by spending status points obtained by [[Special:MyLanguage/Experience|leveling up]].


<!--T:3-->
They are not being used in combat directly but instead they affect many other [[Special:MyLanguage/Attributes|attributes]].
They are not being used in combat directly but instead they affect many other [[Special:MyLanguage/Attributes|attributes]].


<!--T:4-->
Unlike the original version of the game, there are six stats available on Ymirheim:
Unlike the original version of the game, there are six stats available on Ymirheim:
</translate>
</translate>


{| class="wikitable"
{| class="wikitable"
! <translate>Abbreviation</translate> !! <translate>Title</translate> !! <translate>Description</translate>
! <translate><!--T:5--> Abbreviation</translate> !! <translate><!--T:6--> Title</translate> !! <translate><!--T:7--> Description</translate>
|-
|-
| <translate>STR || Strength || Increases physical melee attack and maximum weight capacity.</translate>
| <translate><!--T:8--> STR || Strength || Increases physical melee attack and maximum weight capacity.</translate>
|-
|-
| <translate>INT || Intelligence || Increases magical power, magic resistance, and mana capacity.</translate>
| <translate><!--T:9--> INT || Intelligence || Increases magical power, magic resistance, and mana capacity.</translate>
|-
|-
| <translate>CON || Concentration || Increases physical ranged attack, accuracy, and balance.</translate>
| <translate><!--T:10--> CON || Concentration || Increases physical ranged attack, accuracy, and balance.</translate>
|-
|-
| <translate>DEX || Dexterity || Increases evasion, attack speed, and casting speed.</translate>
| <translate><!--T:11--> DEX || Dexterity || Increases evasion, attack speed, and casting speed.</translate>
|-
|-
| <translate>VIT || Vitality  || Increases maximum amount of health, and physical defense.</translate>
| <translate><!--T:12--> VIT || Vitality  || Increases maximum amount of health, and physical defense.</translate>
|-
|-
| <translate>LUK|| Luck  || Increases critical hit chance, evasion, and crafting success chance.</translate>
| <translate><!--T:13--> LUK|| Luck  || Increases critical hit chance, evasion, and crafting success chance.</translate>
|}
|}


<translate>
<translate>
== Status Points ==
== Status Points == <!--T:14-->


<!--T:15-->
Each time you [[Special:MyLanguage/Experience|level up]] your base level, you receive 2 status points.  
Each time you [[Special:MyLanguage/Experience|level up]] your base level, you receive 2 status points.  


<!--T:16-->
Additionally, you receive one bonus status point when you reach levels '''15''', '''20''', '''25''', '''30''', '''35''', '''40''', '''45''', '''50''', '''55''', '''60''', '''65''', '''70''', '''75''', '''80''', '''85''', '''90''', '''95''', and '''99'''.
Additionally, you receive one bonus status point when you reach levels '''15''', '''20''', '''25''', '''30''', '''35''', '''40''', '''45''', '''50''', '''55''', '''60''', '''65''', '''70''', '''75''', '''80''', '''85''', '''90''', '''95''', and '''99'''.


<!--T:17-->
One status point allows you to increase any stat by one (up to '''99'''). New characters always start with all stats set to '''1''' with no status points available.
One status point allows you to increase any stat by one (up to '''99'''). New characters always start with all stats set to '''1''' with no status points available.
</translate>
</translate>


<translate>
<translate>
== Affect on other attributes ==
== Affect on other attributes == <!--T:18-->
</translate>
</translate>


<translate>
<translate>
=== Strength ===
=== Strength === <!--T:19-->


<!--T:20-->
Strength directly affects:
Strength directly affects:
* Melee Attack: <code>MeleeAttackPerStrength = Strength * 2.0</code>
* Melee Attack: <code>MeleeAttackPerStrength = Strength * 2.0</code>
Line 55: Line 63:


<translate>
<translate>
=== Intelligence ===
=== Intelligence === <!--T:21-->


<!--T:22-->
Intelligence directly affects:
Intelligence directly affects:
* Magical Power: <code>MagicalPowerPerIntelligence = Intelligence * 3.0</code>
* Magical Power: <code>MagicalPowerPerIntelligence = Intelligence * 3.0</code>
Line 68: Line 77:


<translate>
<translate>
=== Concentration ===
=== Concentration === <!--T:23-->


<!--T:24-->
Concentration directly affects:
Concentration directly affects:
* Balance:
* Balance:
Line 89: Line 99:


<translate>
<translate>
=== Dexterity ===
=== Dexterity === <!--T:25-->


<!--T:26-->
Dexterity directly affects:
Dexterity directly affects:
* Magic Resistance: <code>MagicResistancePerBaseDexterity = BaseDexterity / 4.0</code>
* Magic Resistance: <code>MagicResistancePerBaseDexterity = BaseDexterity / 4.0</code>
Line 107: Line 118:


<translate>
<translate>
=== Vitality ===
=== Vitality === <!--T:27-->


<!--T:28-->
Vitality directly affects:
Vitality directly affects:
* Health: <code>HealthMultiplierPerVitality = 1.0 + (Math.Pow(Vitality, 0.7) * 0.1)</code>
* Health: <code>HealthMultiplierPerVitality = 1.0 + (Math.Pow(Vitality, 0.7) * 0.1)</code>
Line 119: Line 131:


<translate>
<translate>
=== Luck ===
=== Luck === <!--T:29-->


<!--T:30-->
Luck directly affects:
Luck directly affects:
* Lucky Dodge Chance: <code>LuckyDodgeChancePerLuck = Luck / 10.0</code>
* Lucky Dodge Chance: <code>LuckyDodgeChancePerLuck = Luck / 10.0</code>
Line 145: Line 158:


<translate>
<translate>
== Other use ==
== Other use == <!--T:31-->


<!--T:32-->
Some items may require certain amount of specific stat to be equipped.
Some items may require certain amount of specific stat to be equipped.
Also, some skills may use total values of some stats in their calculations (see skill descriptions for more information).
Also, some skills may use total values of some stats in their calculations (see skill descriptions for more information).
Line 153: Line 167:


<translate>
<translate>
== Reverting spent status points ==
== Reverting spent status points == <!--T:33-->
</translate>
</translate>



Revision as of 18:41, 8 July 2024

Ymirheim Stats
Stats in the original game

Stats are main character attributes that can be increased by spending status points obtained by leveling up.

They are not being used in combat directly but instead they affect many other attributes.

Unlike the original version of the game, there are six stats available on Ymirheim:

Abbreviation Title Description
STR Strength Increases physical melee attack and maximum weight capacity.
INT Intelligence Increases magical power, magic resistance, and mana capacity.
CON Concentration Increases physical ranged attack, accuracy, and balance.
DEX Dexterity Increases evasion, attack speed, and casting speed.
VIT Vitality Increases maximum amount of health, and physical defense.
LUK Luck Increases critical hit chance, evasion, and crafting success chance.

Status Points

Each time you level up your base level, you receive 2 status points.

Additionally, you receive one bonus status point when you reach levels 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, and 99.

One status point allows you to increase any stat by one (up to 99). New characters always start with all stats set to 1 with no status points available.

Affect on other attributes

Strength

Strength directly affects:

  • Melee Attack: MeleeAttackPerStrength = Strength * 2.0
  • Ranged Attack: RangedAttackPerBaseStrength = BaseStrength / 2.0
  • Weight Capacity: WeightCapacityPerBaseStrength = (BaseStrength - 1) * 300.0
  • Resistances:
    • Stun Resistance: StunResistancePerStrength = Math.Pow(Strength, 1.5) / 35.0
    • Burning Resistance: BurningResistancePerStrength = Math.Pow(Strength, 1.5) / 35.0

Intelligence

Intelligence directly affects:

  • Magical Power: MagicalPowerPerIntelligence = Intelligence * 3.0
  • Magic Resistance: MagicResistancePerIntelligence = Intelligence
  • Mana: ManaMultiplierPerIntelligence = 1 + (Intelligence * 0.03)
  • Mana Recovery Rate: ManaRecoveryRatePerIntelligence = Intelligence / 48.0
  • Resistances:
    • Silence Resistance: SilenceResistancePerIntelligence = Math.Pow(Intelligence, 1.5) / 35.0
    • Freeze Resistance: FreezeResistancePerIntelligence = Math.Pow(Intelligence, 1.5) / 35.0

Concentration

Concentration directly affects:

  • Balance:
    • Melee Balance: MeleeBalancePerConcentration = Math.Pow(Concentration, 0.5) * 35.0
    • Ranged Balance: RangedBalancePerConcentration = Math.Pow(Concentration, 0.5) * 35.0
    • Magic Balance: MagicBalancePerConcentration = Math.Pow(Concentration, 0.5) * 35.0
  • Attack:
    • Melee Attack: MeleeAttackPerBaseConcentration = BaseConcentration / 2.0
    • Ranged Attack: RangedAttackPerConcentration = Concentration * 2.0
    • Magical Power: MagicalPowerPerBaseConcentration = BaseConcentration / 2.0
  • Accuracy:
    • Melee Accuracy: MeleeAccuracyPerConcentration = Math.Pow(Concentration, 0.8) * 2.5
    • Ranged Accuracy: RangedAccuracyPerConcentration = Math.Pow(Concentration, 0.8) * 2.5
    • Magic Accuracy: MagicAccuracyPerConcentration = Math.Pow(Concentration, 0.8) * 2.5
  • Resistances:
    • Sleep Resistance: SleepResistancePerConcentration = Math.Pow(Concentration, 1.5) / 35.0
    • Blind Resistance: BlindResistancePerConcentration = Math.Pow(Concentration, 1.5) / 35.0

Dexterity

Dexterity directly affects:

  • Magic Resistance: MagicResistancePerBaseDexterity = BaseDexterity / 4.0
  • Evasion:
    • Melee Evasion: MeleeEvasionPerDexterity = Math.Pow(Dexterity, 0.8) * 2
    • Ranged Evasion: RangedEvasionPerDexterity = Math.Pow(Dexterity, 0.8) * 2
    • Magic Evasion: MagicEvasionPerDexterity = Math.Pow(Dexterity, 0.8) * 2
  • Speed:
    • Attack Speed: AttackSpeedPerDexterity = Dexterity * 1.75
    • Cooldown Speed: CooldownSpeedPerDexterity = Dexterity * 0.25
    • Casting Speed: CastingSpeedPerDexterity = Dexterity * 3.0
  • Resistances:
    • Root Resistance: RootResistancePerDexterity = Math.Pow(Dexterity, 1.5) / 35.0
    • Slow Resistance: SlowResistancePerDexterity = Math.Pow(Dexterity, 1.5) / 35.0

Vitality

Vitality directly affects:

  • Health: HealthMultiplierPerVitality = 1.0 + (Math.Pow(Vitality, 0.7) * 0.1)
  • Health Recovery Rate: HealthRecoveryRatePerVitality = Vitality / 15.0
  • Defense: DefensePerVitality = Vitality
  • Resistances:
    • Poison Resistance: PoisonResistancePerVitality = Math.Pow(Vitality, 1.5) / 35.0
    • Bleeding Resistance: BleedingResistancePerVitality = Math.Pow(Vitality, 1.5) / 35.0

Luck

Luck directly affects:

  • Lucky Dodge Chance: LuckyDodgeChancePerLuck = Luck / 10.0
  • Critical Hit Chance:
    • Melee Critical Hit Chance: MeleeCriticalHitChancePerLuck = Luck / 3.0
    • Ranged Critical Hit Chance: RangedCriticalHitChancePerLuck = Luck / 3.0
    • Magic Critical Hit Chance: MagicCriticalHitChancePerLuck = Luck / 3.0
  • Critical Hit Evasion:
    • Melee Critical Hit Evasion: MeleeCriticalHitEvasionPerLuck = Luck / 6.0
    • Ranged Critical Hit Evasion: RangedCriticalHitEvasionPerLuck = Luck / 6.0
    • Magic Critical Hit Evasion: MagicCriticalHitEvasionPerLuck = Luck / 6.0
  • Resistances:
    • Poison Resistance: PoisonResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Root Resistance: RootResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Slow Resistance: SlowResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Sleep Resistance: SleepResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Stun Resistance: StunResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Silence Resistance: SilenceResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Blind Resistance: BlindResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Bleeding Resistance: BleedingResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Burning Resistance: BurningResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0
    • Freeze Resistance: FreezeResistancePerLuck = Math.Pow(Luck, 1.5) / 100.0

Other use

Some items may require certain amount of specific stat to be equipped. Also, some skills may use total values of some stats in their calculations (see skill descriptions for more information).


Reverting spent status points