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