Skip to content

Commit

Permalink
Merge branch 'ui-localisation' into translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuubari committed Sep 28, 2017
2 parents 8dbec45 + 12330e9 commit 8d58a5c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions source/Grabacr07.KanColleWrapper/Models/Experience.cs
Expand Up @@ -308,6 +308,16 @@ private Experience(int level, int next, int total)
{ 153, new Experience(153, 222000, 4999000) },
{ 154, new Experience(154, 231000, 5230000) },
{ 155, new Experience(155, 240000, 5470000) },
{ 156, new Experience(156, 250000, 5720000) },
{ 157, new Experience(157, 60000, 5780000) },
{ 158, new Experience(158, 80000, 5860000) },
{ 159, new Experience(159, 110000, 5970000) },
{ 160, new Experience(160, 150000, 6120000) },
{ 161, new Experience(161, 200000, 6320000) },
{ 162, new Experience(162, 260000, 6580000) },
{ 163, new Experience(163, 330000, 6910000) },
{ 164, new Experience(164, 410000, 7320000) },
{ 165, new Experience(165, 500000, 7820000) },
};

#endregion
Expand Down
2 changes: 1 addition & 1 deletion source/Grabacr07.KanColleWrapper/Models/Ship.cs
Expand Up @@ -58,7 +58,7 @@ public class Ship : RawDataWrapper<kcsapi_ship2>, IIdentifiable
/// <summary>
/// この艦娘が最大Lvになるために必要な経験値を取得します。
/// </summary>
public int ExpForLevelMax => Experience.GetShipExpForSpecifiedLevel(this.Exp, 155);
public int ExpForLevelMax => Experience.GetShipExpForSpecifiedLevel(this.Exp, 165);

public TimeSpan RepairTimeDock =>
TimeSpan.FromSeconds(Math.Floor(BaseRepairTime(this.Level) * (this.HP.Maximum - this.HP.Current) * this.Info.ShipType.RepairMultiplier) + 30);
Expand Down

0 comments on commit 8d58a5c

Please sign in to comment.