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.
32 lines
1.0 KiB
32 lines
1.0 KiB
@if (Entity.IdVanguards().Count > 0) { |
|
<EntityDisplayComponent Title="Vanguards"> |
|
@foreach (var data in Entity.IdVanguards()) { |
|
var entity = EntityModel.Get(data.Id); |
|
|
|
var requirements = entity.Requirements(); |
|
var vanguard = entity.VanguardAdded(); |
|
var productionBuilding = (from building in requirements |
|
where building.Requirement == RequirementType.Production_Building |
|
select building).First().DataType; |
|
|
|
<div> |
|
<div> |
|
<b>Name:</b> <EntityLabelComponent EntityId="@entity.DataType"/> |
|
</div> |
|
<div> |
|
<b>Replaces:</b> <EntityLabelComponent EntityId="@vanguard.ReplaceId"/> |
|
</div> |
|
<div> |
|
<b>Built From:</b> <EntityLabelComponent EntityId="@productionBuilding"/> |
|
</div> |
|
</div> |
|
} |
|
</EntityDisplayComponent> |
|
} |
|
|
|
@code { |
|
|
|
[CascadingParameter] |
|
public EntityModel? Entity { get; set; } |
|
|
|
} |