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>
@@ -4,6 +4,8 @@
var passive = EntityModel.Get(idPassive.Id);
var info = passive.Info();
var production = passive.Production();
<div>
<div>
@@ -12,7 +14,29 @@
<div style="max-width: 600px;">
<b>Description:</b> @((MarkupString)info.Description)
</div>
@if (!info.Notes.Trim().Equals("")) {
<div style="max-width: 600px;">
<b>Description:</b> @((MarkupString)info.Notes)
</div>
}
</div>
@if (production != null) {
<div>
@if (production.Pyre != 0) {
<div>
<b>Pyre:</b> @production.Pyre
</div>
}
@if (production.Cooldown != 0) {
<div>
<b>Cooldown:</b> @production.Cooldown.ToString()s
</div>
}
</div>
}
}
</EntityDisplayComponent>
}