diagramme de classe
continuous-integration/drone/push Build is passing Details

devGuillaume
Guillaume REY 2 years ago
parent 2c4d3fe7ad
commit e8dd03a417

@ -2,60 +2,79 @@
```mermaid ```mermaid
classDiagram classDiagram
class Bateau{ class Bateau{
-NomRomanise : string + NomRomanise : string
-PremierChap : int + PremierChap : int
-PremierEp : int + PremierEp : int
-Description : string + Description : string
-Caracteristique : string + Caracteristique : string
} }
class Bestiaire { class Bestiaire {
-Origine : string + Origine : string
-Description : string + Description : string
-Caracteristique : string + Caracteristique : string
} }
class Equipage { class Equipage {
-NomRomanise : string + NomRomanise : string
-Region : string + Region : string
-PremierChap : int + PremierChap : int
-PremierEp : int + PremierEp : int
-Statut : bool + Statut : bool
-Description : string + Description : string
} }
class FruitDuDemon { class FruitDuDemon {
-NomRomanise : string + NomRomanise : string
-Type : string + Type : string
-PremierChap : int + PremierChap : int
-PremierEp : int + PremierEp : int
-Description : string + Description : string
-Forces : string + Forces : string
-Faiblesses : string + Faiblesses : string
} }
class Ile { class Ile {
-NomRomanise : string + NomRomanise : string
-Region : string + Region : string
-PremierChap : int + PremierChap : int
-PremierEp : int + PremierEp : int
-Description : string + Description : string
Geographie : string + Geographie : string
} }
class Personnage { class Personnage {
-Prime : double + Prime : double
-Epithete : string + Epithete : string
-Age : int + Age : int
-Taille : double + Taille : double
-Origine : string + Origine : string
-Biographie : string + Biographie : string
-Citation : string + Citation : string
} }
class ObjetOhara { class ObjetOhara {
-Nom : string + Nom : string
-Image : string? + Image : string?
} }
FruitDuDemon --> Personnage : + Utilisateur
Personnage --> Equipage : + Equipage
Personnage --> FruitDuDemon : + Fruit
Bateau --> Equipage : + Affiliation
Equipage --> Personnage : + Capitaine
Equipage --> Personnage : + Membre
Equipage --> Equipage : + Allie
Ile --|> ObjetOhara
FruitDuDemon --|> ObjetOhara
Personnage --|> ObjetOhara
Equipage --|> ObjetOhara
Bateau --|> ObjetOhara
Bestiaire --|> ObjetOhara
``` ```

Loading…
Cancel
Save