@page "/weapon-list" @using Domain.XML_Model @attribute [StreamRendering(true)]

Weapon

@if (Weapons == null) {

Loading...

} else {
Id
Nom
Genre
Type
Groupe
Portée
Modes
Dégâts
Type Dégâts
Pénétration
Autonomie
Rechargement
Attributs
Accessoires
Poids
Bonus BF
Prix
Disponibilité
@foreach (var weapon in Weapons) {
@if (weapon.ShowDetails) {
Description : @weapon.Arme.Description
}
}
}
@code { }