Fan website of IMMORTAL: Gates of Pyre.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
629 B

@if (Entity.IdPassives().Count > 0) {
<EntityDisplayComponent Title="Passives">
@foreach (var idPassive in Entity.IdPassives()) {
var passive = EntityModel.Get(idPassive.Id);
var info = passive.Info();
<div>
<div>
<b>Name:</b> @info.Name
</div>
<div style="max-width: 600px;">
<b>Description:</b> @((MarkupString)info.Description)
</div>
</div>
}
</EntityDisplayComponent>
}
@code {
[Parameter]
public EntityModel Entity { get; set; }
}