ballrush-core 0.6.2 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -78,45 +78,6 @@ export declare enum RatingSource {
78
78
  GAME_RESULT = "GAME_RESULT",
79
79
  SYSTEM = "SYSTEM"
80
80
  }
81
- export declare const ACHIEVEMENTS: {
82
- readonly WinStreak: {
83
- readonly emoji: "🔥";
84
- readonly title: "Win Streak";
85
- readonly type: "team";
86
- readonly description: "Команда выиграла 3 матча подряд.";
87
- };
88
- readonly HardToBeat: {
89
- readonly emoji: "💪";
90
- readonly title: "Hard to Beat";
91
- readonly type: "team";
92
- readonly description: "Команда не проиграла в 5 матчах подряд (включая ничьи).";
93
- };
94
- readonly IronDefense: {
95
- readonly emoji: "🛡️";
96
- readonly title: "Iron Defense";
97
- readonly type: "team";
98
- readonly description: "Команда не пропустила ни одного гола в 3 матчах подряд.";
99
- };
100
- readonly PerfectHarmony: {
101
- readonly emoji: "🤝";
102
- readonly title: "Perfect Harmony";
103
- readonly type: "team";
104
- readonly description: "Команда сыграла 3 матча подряд вничью.";
105
- };
106
- readonly ConsistentWinners: {
107
- readonly emoji: "⚡";
108
- readonly title: "Consistent Winners";
109
- readonly type: "team";
110
- readonly description: "Команда не проиграла ни одного матча за вечер.";
111
- };
112
- readonly MVPTeam: {
113
- readonly emoji: "🏆";
114
- readonly title: "MVP Team";
115
- readonly type: "team";
116
- readonly description: "Команда показала лучший результат во всех ключевых показателях — победах, забитых мячах, набранных очках и наименьшем количестве пропущенных мячей.";
117
- };
118
- };
119
- export type AchievementId = keyof typeof ACHIEVEMENTS;
120
81
  export interface TeamAchievement {
121
82
  teamId: number;
122
83
  achievement: Achievement;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ACHIEVEMENTS = exports.RatingSource = exports.PlayerPosition = void 0;
3
+ exports.RatingSource = exports.PlayerPosition = void 0;
4
4
  var PlayerPosition;
5
5
  (function (PlayerPosition) {
6
6
  PlayerPosition["FW"] = "FW";
@@ -15,41 +15,3 @@ var RatingSource;
15
15
  RatingSource["GAME_RESULT"] = "GAME_RESULT";
16
16
  RatingSource["SYSTEM"] = "SYSTEM";
17
17
  })(RatingSource || (exports.RatingSource = RatingSource = {}));
18
- exports.ACHIEVEMENTS = {
19
- WinStreak: {
20
- emoji: '🔥',
21
- title: 'Win Streak',
22
- type: 'team',
23
- description: 'Команда выиграла 3 матча подряд.',
24
- },
25
- HardToBeat: {
26
- emoji: '💪',
27
- title: 'Hard to Beat',
28
- type: 'team',
29
- description: 'Команда не проиграла в 5 матчах подряд (включая ничьи).',
30
- },
31
- IronDefense: {
32
- emoji: '🛡️',
33
- title: 'Iron Defense',
34
- type: 'team',
35
- description: 'Команда не пропустила ни одного гола в 3 матчах подряд.',
36
- },
37
- PerfectHarmony: {
38
- emoji: '🤝',
39
- title: 'Perfect Harmony',
40
- type: 'team',
41
- description: 'Команда сыграла 3 матча подряд вничью.',
42
- },
43
- ConsistentWinners: {
44
- emoji: '⚡',
45
- title: 'Consistent Winners',
46
- type: 'team',
47
- description: 'Команда не проиграла ни одного матча за вечер.',
48
- },
49
- MVPTeam: {
50
- emoji: '🏆',
51
- title: 'MVP Team',
52
- type: 'team',
53
- description: 'Команда показала лучший результат во всех ключевых показателях — победах, забитых мячах, набранных очках и наименьшем количестве пропущенных мячей.',
54
- },
55
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ballrush-core",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",