Skip to content

Commit 01150e2

Browse files
committed
大発動艇(八九式中戦車&陸戦隊)と特二式内火艇のTP計算を追加
1 parent 578ec20 commit 01150e2

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

EventMapHpViewer/MapHpViewer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace EventMapHpViewer
1515
public class MapHpViewer : IPlugin, ITool
1616
{
1717
internal const string title = "MapHPViewer";
18-
internal const string version = "3.2.0";
18+
internal const string version = "3.3.0";
1919
private ToolViewModel vm;
2020

2121
public void Initialize()

EventMapHpViewer/Models/OrganizationExtensions.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ private static double DrumTransportationCapacity(this Organization org)
3232
=> org.CountSlotitem(75) * 5.0;
3333

3434
private static double DaihatsuTransportationCapacity(this Organization org)
35-
=> org.CountSlotitem(68) * 8.0;
35+
=> org.CountSlotitem(68) * 8.0 + org.CountSlotitem(166) * 8.0;
36+
37+
private static double LaunchransportationCapacity(this Organization org)
38+
=> org.CountSlotitem(167) * 2.0;
3639

3740
private static double RationsTransportationCapacity(this Organization org)
3841
=> org.CountExSlotitem(145) * 1.0;

EventMapHpViewer/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
4444
// 既定値にすることができます:
4545
// [assembly: AssemblyVersion("1.0.*")]
46-
[assembly: AssemblyVersion("3.2.0.0")]
46+
[assembly: AssemblyVersion("3.3.0.0")]

0 commit comments

Comments
 (0)