Skip to content

Commit 4848e4c

Browse files
committed
2016夏イベ輸送量計算更新
1 parent fb2a87c commit 4848e4c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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.3.3";
18+
internal const string version = "3.3.4";
1919
private ToolViewModel vm;
2020

2121
public void Initialize()

EventMapHpViewer/Models/OrganizationExtensions.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public static int TransportationCapacity(this Organization org, bool isS = false
1818
var tp = org.BaseTransportationCapacity()
1919
+ org.DrumTransportationCapacity()
2020
+ org.DaihatsuTransportationCapacity()
21-
+ org.LaunchransportationCapacity()
21+
+ org.Type89TransportationCapacity()
22+
+ org.LaunchTransportationCapacity()
2223
+ org.RationsTransportationCapacity();
2324
return (int) Math.Floor(tp * coefficient);
2425
}
@@ -35,8 +36,11 @@ private static double DrumTransportationCapacity(this Organization org)
3536
private static double DaihatsuTransportationCapacity(this Organization org)
3637
=> org.CountSlotitem(68) * 8.0 + org.CountSlotitem(166) * 8.0;
3738

38-
private static double LaunchransportationCapacity(this Organization org)
39-
=> org.CountSlotitem(167) * 2.0;
39+
private static double Type89TransportationCapacity(this Organization org)
40+
=> org.CountSlotitem(166) * 13.0;
41+
42+
private static double LaunchTransportationCapacity(this Organization org)
43+
=> org.CountSlotitem(167) * 7.0;
4044

4145
private static double RationsTransportationCapacity(this Organization org)
4246
=> 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.3.3.0")]
46+
[assembly: AssemblyVersion("3.3.4.0")]

0 commit comments

Comments
 (0)