All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Ylvapedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:23, 10 December 2024 Inno talk contribs created page Elin:Code Analysis/Basics (Created page with "==Maximum HP== <syntaxhighlight lang="c#" line="1"> public override int MaxHP => Mathf.Max(1, ((base.END * 2 + base.STR + base.WIL / 2) * Mathf.Min(base.LV, 25) / 25 + base.END + 10) * Evalue(60) / 100 * ((IsPCFaction ? 100 : (100 + (int)base.rarity * 300)) + (IsPC ? (EClass.player.lastEmptyAlly * Evalue(1646)) : 0)) / 100); </syntaxhighlight> The Maximum HP is determined by the following factors: * Level-based HP: Until level 25, the HP M...")