game patch(Immortal) Updated to 0.0.6.8900a

This commit is contained in:
2022-03-30 23:58:27 -04:00
parent 0abe43b700
commit 2db4153c9d
10 changed files with 264 additions and 82 deletions
@@ -10,22 +10,32 @@
<div>
<b>Name:</b> @info.Name
</div>
<div style="max-width: 600px;">
<div>
<b>Description:</b> @((MarkupString)info.Description)
</div>
@if (!info.Notes.Trim().Equals("")) {
<div>
<b>Notes:</b> @((MarkupString)info.Notes)
</div>
}
<div>
@if (production != null) {
if (production.Energy != 0) {
<b> Energy: </b>
@production.Energy
<div>
<b> Energy: </b> @production.Energy
</div>
}
if (production.BuildTime != 0) {
<b> BuildTime: </b>
@production.BuildTime
<div>
<b> BuildTime: </b> @production.BuildTime
</div>
}
if (production.Cooldown != 0) {
<b> Cooldown: </b>
@production.Cooldown
<div>
<b> Cooldown: </b> @production.Cooldown
</div>
}
}
</div>