Species constructor

Species({
  1. required String name,
  2. bool playable = false,
  3. required int baseHealth,
  4. required Paragraph description,
  5. required Paragraph appearance,
  6. required Paragraph culture,
  7. required Paragraph bonuses,
})

Implementation

Species(
    {required this.name,
    this.playable = false,
    required this.baseHealth,
    required this.description,
    required this.appearance,
    required this.culture,
    required this.bonuses});