2020-12-18 23:15:29 +03:00
|
|
|
#include "dolphin_deed.h"
|
2021-11-24 20:21:12 +04:00
|
|
|
#include <furi.h>
|
2020-12-18 23:15:29 +03:00
|
|
|
|
|
|
|
static const DolphinDeedWeight dolphin_deed_weights[DolphinDeedMax] = {
|
2021-11-24 20:21:12 +04:00
|
|
|
{1, -1, 60},
|
|
|
|
{1, -1, 60},
|
|
|
|
{1, -1, 60},
|
|
|
|
{-1, 1, 60},
|
2020-12-18 23:15:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const DolphinDeedWeight* dolphin_deed_weight(DolphinDeed deed) {
|
2021-11-24 20:21:12 +04:00
|
|
|
furi_assert(deed < DolphinDeedMax);
|
2020-12-18 23:15:29 +03:00
|
|
|
return &dolphin_deed_weights[deed];
|
|
|
|
}
|