Harvest points can now be depleted

This commit is contained in:
Jonathan
2025-06-14 21:38:03 -04:00
parent a5964a68f8
commit 826717c47f
15 changed files with 52 additions and 38 deletions
@@ -27,7 +27,8 @@
Currently not considering running out of alloy and ether to harvest.
<br/>
<br/>
Build Calculator was built based on a much older version of the game and was only quickly modified for the June 2025 Playtest version, so the above disclaimer is only more true.
Build Calculator was built based on a much older version of the game and was only quickly modified for the
June 2025 Playtest version, so the above disclaimer is only more true.
<br/>
Expect even more oddities and invalid data then the above warning implies.
</Message>
@@ -32,7 +32,6 @@
}
@if (FilterService.GetFaction() == DataType.FACTION_Aru)
{
<option value="@DataType.IMMORTAL_Atzlan"
selected="@(FilterService.GetImmortal().Equals(DataType.IMMORTAL_Atzlan))">
Atzlan
@@ -42,7 +42,7 @@
}
}
</div>
<div>
<div>Depleted</div>
//TODO WIP
@@ -343,10 +343,10 @@
{
var hotkey = KeyService.GetHotkey();
if(hotkey is "`")
if (hotkey is "`")
HandleCancelEntity();
if (EntityFromKey(hotkey, out var entity))
if (EntityFromKey(hotkey, out var entity))
return;
if (BuildOrderService.Add(entity!, EconomyService))
+2 -2
View File
@@ -6,14 +6,14 @@
<LayoutLargeContentComponent>
<WebsiteTitleComponent>Data Tables</WebsiteTitleComponent>
<AlertComponent Type="@SeverityType.Warning">
<Title>Errors Present</Title>
<Message>
Incomplete feature for easily comparing unit stats.
</Message>
</AlertComponent>
<MudTabs Elevation="2">
<MudTabPanel Text="Attacks">
<WeaponTable/>
+1 -1
View File
@@ -8,7 +8,7 @@
<LayoutMediumContentComponent>
<WebsiteTitleComponent>Harass Calculator</WebsiteTitleComponent>
<AlertComponent Type="@SeverityType.Warning">
<Title>Might be out of date</Title>
<Message>
+1 -2
View File
@@ -77,5 +77,4 @@ builder.Services.AddScoped(sp => new HttpClient
builder.Services.AddMudServices();
await builder.Build().RunAsync();
await builder.Build().RunAsync();