* feat(morphs): repo for getting lang-specific list of morphs * integrated repo into use of morph features and tags * generated * merged with previous push * generated * generated * chore: fix .env file path --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com> Co-authored-by: ggurdin <ggurdin@gmail.com>
15 lines
641 B
Dart
15 lines
641 B
Dart
class AnalyticsConstants {
|
|
static const int xpPerLevel = 500;
|
|
static const int vocabUseMaxXP = 30;
|
|
static const int morphUseMaxXP = 500;
|
|
static const int xpForGreens = 30;
|
|
static const int xpForFlower = 100;
|
|
static const String seedSvgFileName = "Seed.svg";
|
|
static const String leafSvgFileName = "Leaf.svg";
|
|
static const String flowerSvgFileName = "Flower.svg";
|
|
static const String emojiForSeed = "🫛";
|
|
static const String emojiForGreen = "🌱";
|
|
static const String emojiForFlower = "🌸";
|
|
static const levelUpAudioFileName = "LevelUp_chime.mp3";
|
|
static const levelUpImageFileName = "LvL_Up_Full_Banner.png";
|
|
}
|