dolphin_deed.c 275 B

123456789101112
  1. #include "dolphin_deed.h"
  2. static const DolphinDeedWeight dolphin_deed_weights[DolphinDeedMax] = {
  3. {1, 2, 60},
  4. {1, 2, 60},
  5. {1, 2, 60},
  6. {-1, 2, 60},
  7. };
  8. const DolphinDeedWeight* dolphin_deed_weight(DolphinDeed deed) {
  9. return &dolphin_deed_weights[deed];
  10. }