@scrabble-solver/scrabble-solver 2.12.1 → 2.12.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.
Files changed (97) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +14 -14
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/eslint/.cache_8dgz12 +1 -1
  5. package/.next/cache/next-server.js.nft.json +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/edge-server-production/0.pack +0 -0
  9. package/.next/cache/webpack/edge-server-production/index.pack +0 -0
  10. package/.next/cache/webpack/server-production/0.pack +0 -0
  11. package/.next/cache/webpack/server-production/index.pack +0 -0
  12. package/.next/next-server.js.nft.json +1 -1
  13. package/.next/prerender-manifest.json +1 -1
  14. package/.next/required-server-files.json +1 -1
  15. package/.next/routes-manifest.json +1 -1
  16. package/.next/server/chunks/131.js +478 -106
  17. package/.next/server/chunks/277.js +1202 -1013
  18. package/.next/server/chunks/44.js +36 -6
  19. package/.next/server/chunks/675.js +35 -13
  20. package/.next/server/chunks/859.js +21 -4
  21. package/.next/server/chunks/865.js +478 -106
  22. package/.next/server/chunks/911.js +894 -773
  23. package/.next/server/middleware-build-manifest.js +1 -1
  24. package/.next/server/pages/404.html +1 -1
  25. package/.next/server/pages/404.js.nft.json +1 -1
  26. package/.next/server/pages/500.html +1 -1
  27. package/.next/server/pages/_app.js +3 -1
  28. package/.next/server/pages/_app.js.nft.json +1 -1
  29. package/.next/server/pages/api/dictionary/[locale]/[word].js +4 -2
  30. package/.next/server/pages/api/solve.js +51 -20
  31. package/.next/server/pages/api/verify.js +8 -5
  32. package/.next/server/pages/index.html +1 -1
  33. package/.next/server/pages/index.js +55 -65
  34. package/.next/server/pages/index.js.nft.json +1 -1
  35. package/.next/server/pages/index.json +1 -1
  36. package/.next/server/pages-manifest.json +2 -2
  37. package/.next/static/chunks/{framework-2c5cac93e8c637b5.js → framework-2c29dc3cd933590b.js} +2 -2
  38. package/.next/static/chunks/main-4dcb7f9b52833aba.js +1 -0
  39. package/.next/static/chunks/pages/_app-e7f3d1c9c09c8f91.js +32 -0
  40. package/.next/static/chunks/pages/index-82b2939158c7729f.js +1 -0
  41. package/.next/static/css/4e8b47fe382a8a8f.css +2 -0
  42. package/.next/static/css/cfae5256f1689f57.css +1 -0
  43. package/.next/static/{_yG9K-PD5kWT_p4sMdCSV → wNIKOJJzkMSJYb2nOL21o}/_buildManifest.js +1 -1
  44. package/.next/trace +51 -52
  45. package/package.json +14 -14
  46. package/src/components/Board/Board.module.scss +33 -0
  47. package/src/components/Board/Board.tsx +3 -0
  48. package/src/components/Board/BoardPure.tsx +25 -1
  49. package/src/components/Board/components/Cell/Cell.module.scss +4 -12
  50. package/src/components/Board/components/Cell/Cell.tsx +4 -0
  51. package/src/components/Board/components/InputPrompt/InputPrompt.tsx +1 -0
  52. package/src/components/Board/hooks/useBackgroundImage.tsx +24 -6
  53. package/src/components/PlainTiles/lib/createPlainTile.ts +4 -4
  54. package/src/components/Rack/components/InputPrompt/InputPrompt.tsx +1 -0
  55. package/src/components/Radio/Radio.module.scss +4 -0
  56. package/src/components/Radio/Radio.tsx +1 -0
  57. package/src/components/SeoMessage/SeoMessage.tsx +3 -3
  58. package/src/hooks/useAppLayout.ts +1 -2
  59. package/src/hooks/useLocalStorage.ts +5 -5
  60. package/src/i18n/constants.ts +31 -61
  61. package/src/lib/extractCharacters.test.ts +3 -3
  62. package/src/lib/extractCharactersByCase.test.ts +3 -3
  63. package/src/lib/getCellSize.ts +2 -2
  64. package/src/modals/MenuModal/MenuModal.module.scss +0 -1
  65. package/src/modals/MenuModal/MenuModal.tsx +3 -3
  66. package/src/modals/SettingsModal/SettingsModal.tsx +7 -3
  67. package/src/modals/SettingsModal/components/ConfigSetting/ConfigSetting.tsx +16 -7
  68. package/src/modals/SettingsModal/components/LocaleSetting/LocaleSetting.module.scss +1 -4
  69. package/src/modals/SettingsModal/components/LocaleSetting/LocaleSetting.tsx +8 -8
  70. package/src/pages/_app.tsx +3 -1
  71. package/src/pages/api/dictionary/[locale]/[word].ts +6 -3
  72. package/src/pages/api/solve.ts +11 -7
  73. package/src/pages/api/verify.ts +11 -7
  74. package/src/pages/index.module.scss +0 -1
  75. package/src/parameters/index.ts +4 -6
  76. package/src/sdk/solve.ts +3 -3
  77. package/src/sdk/verify.ts +3 -3
  78. package/src/service-worker/routeSolveRequests.ts +3 -3
  79. package/src/state/localStorage.ts +6 -6
  80. package/src/state/sagas.ts +18 -7
  81. package/src/state/selectors.ts +10 -10
  82. package/src/state/slices/boardInitialState.ts +3 -3
  83. package/src/state/slices/boardSlice.ts +20 -6
  84. package/src/state/slices/settingsInitialState.ts +3 -4
  85. package/src/state/slices/settingsSlice.ts +5 -5
  86. package/src/styles/variables.scss +0 -9
  87. package/.next/static/chunks/main-0ecb9ccfcb6c9b24.js +0 -1
  88. package/.next/static/chunks/pages/_app-bea4539a6b8042de.js +0 -32
  89. package/.next/static/chunks/pages/index-4e8566409753e1c3.js +0 -1
  90. package/.next/static/css/58053f9594647860.css +0 -2
  91. package/.next/static/css/60e8258da7362a1a.css +0 -1
  92. package/src/i18n/i18n.module.scss +0 -27
  93. package/src/modals/SettingsModal/components/ConfigSetting/options.ts +0 -19
  94. package/src/modals/SettingsModal/components/ConfigSetting/types.ts +0 -9
  95. package/src/modals/SettingsModal/components/InputModeSetting/types.ts +0 -7
  96. package/src/modals/SettingsModal/components/LocaleSetting/types.ts +0 -9
  97. /package/.next/static/{_yG9K-PD5kWT_p4sMdCSV → wNIKOJJzkMSJYb2nOL21o}/_ssgManifest.js +0 -0
@@ -3,7 +3,7 @@ exports.id = 911;
3
3
  exports.ids = [911];
4
4
  exports.modules = {
5
5
 
6
- /***/ 64873:
6
+ /***/ 18673:
7
7
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
8
8
 
9
9
 
@@ -11,584 +11,911 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
11
11
  return (mod && mod.__esModule) ? mod : { "default": mod };
12
12
  };
13
13
  Object.defineProperty(exports, "__esModule", ({ value: true }));
14
- const literaki_1 = __importDefault(__webpack_require__(15465));
15
- const scrabble_1 = __importDefault(__webpack_require__(40136));
16
- const configs = [literaki_1.default, scrabble_1.default];
17
- const getConfig = (configId) => {
18
- const config = configs.find(({ id }) => id === configId);
19
- if (!config) {
20
- throw new Error(`Invalid "configId" parameter: not one of ${configs.map(({ id }) => id).join('/')}`);
21
- }
22
- return config;
23
- };
24
- exports["default"] = getConfig;
14
+ exports.superScrabble = exports.scrabble = exports.literaki = void 0;
15
+ var literaki_1 = __webpack_require__(84409);
16
+ Object.defineProperty(exports, "literaki", ({ enumerable: true, get: function () { return __importDefault(literaki_1).default; } }));
17
+ var scrabble_1 = __webpack_require__(78135);
18
+ Object.defineProperty(exports, "scrabble", ({ enumerable: true, get: function () { return __importDefault(scrabble_1).default; } }));
19
+ var superScrabble_1 = __webpack_require__(83319);
20
+ Object.defineProperty(exports, "superScrabble", ({ enumerable: true, get: function () { return __importDefault(superScrabble_1).default; } }));
25
21
 
26
22
 
27
23
  /***/ }),
28
24
 
29
- /***/ 88739:
30
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
25
+ /***/ 84409:
26
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
31
27
 
32
28
 
33
- var __importDefault = (this && this.__importDefault) || function (mod) {
34
- return (mod && mod.__esModule) ? mod : { "default": mod };
35
- };
36
29
  Object.defineProperty(exports, "__esModule", ({ value: true }));
37
- const getConfig_1 = __importDefault(__webpack_require__(64873));
38
- const getLocaleConfig = (configId, locale) => {
39
- return (0, getConfig_1.default)(configId)[locale];
40
- };
41
- exports["default"] = getLocaleConfig;
42
-
43
-
44
- /***/ }),
45
-
46
- /***/ 27911:
47
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
48
-
49
-
50
- var __importDefault = (this && this.__importDefault) || function (mod) {
51
- return (mod && mod.__esModule) ? mod : { "default": mod };
30
+ const constants_1 = __webpack_require__(38436);
31
+ const types_1 = __webpack_require__(46452);
32
+ const literaki = {
33
+ allTilesBonusScore: 50,
34
+ blankScore: 0,
35
+ blanksCount: 2,
36
+ boardHeight: 15,
37
+ boardWidth: 15,
38
+ game: types_1.Game.Literaki,
39
+ maximumCharactersCount: 7,
40
+ name: 'Literaki',
41
+ bonuses: [
42
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 0, y: 0 },
43
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 2, y: 0 },
44
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 0 },
45
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 7, y: 0 },
46
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 0 },
47
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 12, y: 0 },
48
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 14, y: 0 },
49
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 1 },
50
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 6, y: 1 },
51
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 8, y: 1 },
52
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 1 },
53
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 2 },
54
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 2 },
55
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 2 },
56
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 7, y: 2 },
57
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 2 },
58
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 2 },
59
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 2 },
60
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 3 },
61
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 3 },
62
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 6, y: 3 },
63
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 8, y: 3 },
64
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 3 },
65
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 3 },
66
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 4 },
67
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 4 },
68
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 5, y: 4 },
69
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 9, y: 4 },
70
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 4 },
71
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 4 },
72
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 5 },
73
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 5 },
74
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 4, y: 5 },
75
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 7, y: 5 },
76
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 10, y: 5 },
77
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 5 },
78
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 5 },
79
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 1, y: 6 },
80
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 3, y: 6 },
81
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 6 },
82
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 6 },
83
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 11, y: 6 },
84
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 13, y: 6 },
85
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 0, y: 7 },
86
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 2, y: 7 },
87
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 7 },
88
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 7, y: 7 },
89
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 7 },
90
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 12, y: 7 },
91
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 14, y: 7 },
92
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 1, y: 8 },
93
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 3, y: 8 },
94
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 8 },
95
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 8 },
96
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 11, y: 8 },
97
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 13, y: 8 },
98
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 9 },
99
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 9 },
100
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 4, y: 9 },
101
+ { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 7, y: 9 },
102
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 10, y: 9 },
103
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 9 },
104
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 9 },
105
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 10 },
106
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 10 },
107
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 5, y: 10 },
108
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 9, y: 10 },
109
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 10 },
110
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 10 },
111
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 11 },
112
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 11 },
113
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 6, y: 11 },
114
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 8, y: 11 },
115
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 11 },
116
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 11 },
117
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 12 },
118
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 12 },
119
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 12 },
120
+ { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 7, y: 12 },
121
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 12 },
122
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 12 },
123
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 12 },
124
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 13 },
125
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 6, y: 13 },
126
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 8, y: 13 },
127
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 13 },
128
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 0, y: 14 },
129
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 2, y: 14 },
130
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 14 },
131
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 7, y: 14 },
132
+ { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 14 },
133
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 12, y: 14 },
134
+ { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 14, y: 14 },
135
+ ],
52
136
  };
53
- Object.defineProperty(exports, "__esModule", ({ value: true }));
54
- exports.scrabble = exports.literaki = exports.isConfigId = exports.getLocaleConfig = exports.getConfig = void 0;
55
- var getConfig_1 = __webpack_require__(64873);
56
- Object.defineProperty(exports, "getConfig", ({ enumerable: true, get: function () { return __importDefault(getConfig_1).default; } }));
57
- var getLocaleConfig_1 = __webpack_require__(88739);
58
- Object.defineProperty(exports, "getLocaleConfig", ({ enumerable: true, get: function () { return __importDefault(getLocaleConfig_1).default; } }));
59
- var isConfigId_1 = __webpack_require__(23912);
60
- Object.defineProperty(exports, "isConfigId", ({ enumerable: true, get: function () { return __importDefault(isConfigId_1).default; } }));
61
- var literaki_1 = __webpack_require__(15465);
62
- Object.defineProperty(exports, "literaki", ({ enumerable: true, get: function () { return __importDefault(literaki_1).default; } }));
63
- var scrabble_1 = __webpack_require__(40136);
64
- Object.defineProperty(exports, "scrabble", ({ enumerable: true, get: function () { return __importDefault(scrabble_1).default; } }));
137
+ exports["default"] = literaki;
65
138
 
66
139
 
67
140
  /***/ }),
68
141
 
69
- /***/ 23912:
70
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
142
+ /***/ 78135:
143
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
71
144
 
72
145
 
73
- var __importDefault = (this && this.__importDefault) || function (mod) {
74
- return (mod && mod.__esModule) ? mod : { "default": mod };
75
- };
76
146
  Object.defineProperty(exports, "__esModule", ({ value: true }));
77
- const literaki_1 = __importDefault(__webpack_require__(15465));
78
- const scrabble_1 = __importDefault(__webpack_require__(40136));
79
- const configs = [literaki_1.default, scrabble_1.default];
80
- const isConfigId = (configId) => {
81
- return configs.some(({ id }) => id === configId);
147
+ const constants_1 = __webpack_require__(38436);
148
+ const types_1 = __webpack_require__(46452);
149
+ const scrabble = {
150
+ allTilesBonusScore: 50,
151
+ blankScore: 0,
152
+ blanksCount: 2,
153
+ boardHeight: 15,
154
+ boardWidth: 15,
155
+ game: types_1.Game.Scrabble,
156
+ maximumCharactersCount: 7,
157
+ name: 'Scrabble',
158
+ bonuses: [
159
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 0 },
160
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 0 },
161
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 0 },
162
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 0 },
163
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 0 },
164
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 1 },
165
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 1 },
166
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 1 },
167
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 1 },
168
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 2 },
169
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 2 },
170
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 2 },
171
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 2 },
172
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 3 },
173
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 3 },
174
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 7, y: 3 },
175
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 3 },
176
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 3 },
177
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 4 },
178
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 4 },
179
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 1, y: 5 },
180
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 5 },
181
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 5 },
182
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 13, y: 5 },
183
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 6 },
184
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 6 },
185
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 6 },
186
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 6 },
187
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 7 },
188
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 7 },
189
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 7, y: 7 },
190
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 7 },
191
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 7 },
192
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 8 },
193
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 8 },
194
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 8 },
195
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 8 },
196
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 1, y: 9 },
197
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 9 },
198
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 9 },
199
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 13, y: 9 },
200
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 10 },
201
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 10 },
202
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 11 },
203
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 11 },
204
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 7, y: 11 },
205
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 11 },
206
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 11 },
207
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 12 },
208
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 12 },
209
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 12 },
210
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 12 },
211
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 13 },
212
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 13 },
213
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 13 },
214
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 13 },
215
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 14 },
216
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 14 },
217
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 14 },
218
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 14 },
219
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 14 },
220
+ ],
82
221
  };
83
- exports["default"] = isConfigId;
222
+ exports["default"] = scrabble;
84
223
 
85
224
 
86
225
  /***/ }),
87
226
 
88
- /***/ 8269:
227
+ /***/ 83319:
89
228
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
90
229
 
91
230
 
92
231
  Object.defineProperty(exports, "__esModule", ({ value: true }));
93
232
  const constants_1 = __webpack_require__(38436);
94
- const bonuses = [
95
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 0, y: 0 },
96
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 2, y: 0 },
97
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 0 },
98
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 7, y: 0 },
99
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 0 },
100
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 12, y: 0 },
101
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 14, y: 0 },
102
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 1 },
103
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 6, y: 1 },
104
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 8, y: 1 },
105
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 1 },
106
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 2 },
107
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 2 },
108
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 2 },
109
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 7, y: 2 },
110
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 2 },
111
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 2 },
112
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 2 },
113
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 3 },
114
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 3 },
115
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 6, y: 3 },
116
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 8, y: 3 },
117
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 3 },
118
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 3 },
119
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 4 },
120
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 4 },
121
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 5, y: 4 },
122
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 9, y: 4 },
123
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 4 },
124
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 4 },
125
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 5 },
126
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 5 },
127
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 4, y: 5 },
128
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 7, y: 5 },
129
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 10, y: 5 },
130
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 5 },
131
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 5 },
132
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 1, y: 6 },
133
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 3, y: 6 },
134
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 6 },
135
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 6 },
136
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 11, y: 6 },
137
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 13, y: 6 },
138
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 0, y: 7 },
139
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 2, y: 7 },
140
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 7 },
141
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 7, y: 7 },
142
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 7 },
143
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 12, y: 7 },
144
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 14, y: 7 },
145
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 1, y: 8 },
146
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 3, y: 8 },
147
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 8 },
148
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 8 },
149
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 11, y: 8 },
150
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 13, y: 8 },
151
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 9 },
152
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 9 },
153
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 4, y: 9 },
154
- { multiplier: 3, score: 3, type: constants_1.BONUS_CHARACTER, x: 7, y: 9 },
155
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 10, y: 9 },
156
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 9 },
157
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 9 },
158
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 10 },
159
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 10 },
160
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 5, y: 10 },
161
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 9, y: 10 },
162
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 10 },
163
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 10 },
164
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 11 },
165
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 11 },
166
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 6, y: 11 },
167
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 8, y: 11 },
168
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 11 },
169
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 11 },
170
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 12 },
171
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 12 },
172
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 12 },
173
- { multiplier: 3, score: 1, type: constants_1.BONUS_CHARACTER, x: 7, y: 12 },
174
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 12 },
175
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 12 },
176
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 12 },
177
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 13 },
178
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 6, y: 13 },
179
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 8, y: 13 },
180
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 13 },
181
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 0, y: 14 },
182
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 2, y: 14 },
183
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 14 },
184
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 7, y: 14 },
185
- { multiplier: 3, score: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 14 },
186
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 12, y: 14 },
187
- { multiplier: 3, score: 5, type: constants_1.BONUS_CHARACTER, x: 14, y: 14 },
188
- ];
189
- exports["default"] = bonuses;
233
+ const types_1 = __webpack_require__(46452);
234
+ const scrabble = {
235
+ allTilesBonusScore: 50,
236
+ blankScore: 0,
237
+ blanksCount: 4,
238
+ boardHeight: 21,
239
+ boardWidth: 21,
240
+ game: types_1.Game.SuperScrabble,
241
+ maximumCharactersCount: 7,
242
+ name: 'Super Scrabble',
243
+ bonuses: [
244
+ { multiplier: 4, type: constants_1.BONUS_WORD, x: 0, y: 0 },
245
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 0 },
246
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 0 },
247
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 0 },
248
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 13, y: 0 },
249
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 17, y: 0 },
250
+ { multiplier: 4, type: constants_1.BONUS_WORD, x: 20, y: 0 },
251
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 1 },
252
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 4, y: 1 },
253
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 8, y: 1 },
254
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 1 },
255
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 16, y: 1 },
256
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 19, y: 1 },
257
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 2 },
258
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 5, y: 2 },
259
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 2 },
260
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 2 },
261
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 15, y: 2 },
262
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 18, y: 2 },
263
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 3 },
264
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 3, y: 3 },
265
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 3 },
266
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 10, y: 3 },
267
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 3 },
268
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 17, y: 3 },
269
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 3 },
270
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 1, y: 4 },
271
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 4 },
272
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 4 },
273
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 12, y: 4 },
274
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 16, y: 4 },
275
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 19, y: 4 },
276
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 2, y: 5 },
277
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 5 },
278
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 5 },
279
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 5 },
280
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 15, y: 5 },
281
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 18, y: 5 },
282
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 6 },
283
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 6, y: 6 },
284
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 6 },
285
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 14, y: 6 },
286
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 17, y: 6 },
287
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 7 },
288
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 7, y: 7 },
289
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 7 },
290
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 20, y: 7 },
291
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 8 },
292
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 4, y: 8 },
293
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 8 },
294
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 12, y: 8 },
295
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 16, y: 8 },
296
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 19, y: 8 },
297
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 9 },
298
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 9 },
299
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 9 },
300
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 9 },
301
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 15, y: 9 },
302
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 18, y: 9 },
303
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 10 },
304
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 3, y: 10 },
305
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 10 },
306
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 10 },
307
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 17, y: 10 },
308
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 10 },
309
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 11 },
310
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 11 },
311
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 11 },
312
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 11 },
313
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 15, y: 11 },
314
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 18, y: 11 },
315
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 12 },
316
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 4, y: 12 },
317
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 12 },
318
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 12, y: 12 },
319
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 16, y: 12 },
320
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 19, y: 12 },
321
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 13 },
322
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 7, y: 13 },
323
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 13 },
324
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 20, y: 13 },
325
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 14 },
326
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 6, y: 14 },
327
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 14 },
328
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 14, y: 14 },
329
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 17, y: 14 },
330
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 2, y: 15 },
331
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 15 },
332
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 15 },
333
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 15 },
334
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 15, y: 15 },
335
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 18, y: 15 },
336
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 1, y: 16 },
337
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 16 },
338
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 16 },
339
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 12, y: 16 },
340
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 16, y: 16 },
341
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 19, y: 16 },
342
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 17 },
343
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 3, y: 17 },
344
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 17 },
345
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 10, y: 17 },
346
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 17 },
347
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 17, y: 17 },
348
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 17 },
349
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 18 },
350
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 5, y: 18 },
351
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 18 },
352
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 18 },
353
+ { multiplier: 4, type: constants_1.BONUS_CHARACTER, x: 15, y: 18 },
354
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 18, y: 18 },
355
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 19 },
356
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 4, y: 19 },
357
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 8, y: 19 },
358
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 19 },
359
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 16, y: 19 },
360
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 19, y: 19 },
361
+ { multiplier: 4, type: constants_1.BONUS_WORD, x: 0, y: 20 },
362
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 20 },
363
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 20 },
364
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 20 },
365
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 13, y: 20 },
366
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 17, y: 20 },
367
+ { multiplier: 4, type: constants_1.BONUS_WORD, x: 20, y: 20 },
368
+ ],
369
+ };
370
+ exports["default"] = scrabble;
190
371
 
191
372
 
192
373
  /***/ }),
193
374
 
194
- /***/ 15465:
375
+ /***/ 64873:
195
376
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
196
377
 
197
378
 
198
- var __importDefault = (this && this.__importDefault) || function (mod) {
199
- return (mod && mod.__esModule) ? mod : { "default": mod };
379
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
380
+ if (k2 === undefined) k2 = k;
381
+ var desc = Object.getOwnPropertyDescriptor(m, k);
382
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
383
+ desc = { enumerable: true, get: function() { return m[k]; } };
384
+ }
385
+ Object.defineProperty(o, k2, desc);
386
+ }) : (function(o, m, k, k2) {
387
+ if (k2 === undefined) k2 = k;
388
+ o[k2] = m[k];
389
+ }));
390
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
391
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
392
+ }) : function(o, v) {
393
+ o["default"] = v;
394
+ });
395
+ var __importStar = (this && this.__importStar) || function (mod) {
396
+ if (mod && mod.__esModule) return mod;
397
+ var result = {};
398
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
399
+ __setModuleDefault(result, mod);
400
+ return result;
200
401
  };
201
402
  Object.defineProperty(exports, "__esModule", ({ value: true }));
202
- exports["default"] = void 0;
203
- var literaki_1 = __webpack_require__(76675);
204
- Object.defineProperty(exports, "default", ({ enumerable: true, get: function () { return __importDefault(literaki_1).default; } }));
403
+ const locales = __importStar(__webpack_require__(77472));
404
+ const getConfig = (game, locale) => {
405
+ const configs = Object.values(locales).flat();
406
+ const localeConfig = configs.find((config) => config.game === game && config.locale === locale);
407
+ if (typeof localeConfig === 'undefined') {
408
+ throw new Error(`No game "${game}" in "${locale}"`);
409
+ }
410
+ return localeConfig;
411
+ };
412
+ exports["default"] = getConfig;
205
413
 
206
414
 
207
415
  /***/ }),
208
416
 
209
- /***/ 76675:
417
+ /***/ 56027:
210
418
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
211
419
 
212
420
 
213
- var __importDefault = (this && this.__importDefault) || function (mod) {
214
- return (mod && mod.__esModule) ? mod : { "default": mod };
421
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
422
+ if (k2 === undefined) k2 = k;
423
+ var desc = Object.getOwnPropertyDescriptor(m, k);
424
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
425
+ desc = { enumerable: true, get: function() { return m[k]; } };
426
+ }
427
+ Object.defineProperty(o, k2, desc);
428
+ }) : (function(o, m, k, k2) {
429
+ if (k2 === undefined) k2 = k;
430
+ o[k2] = m[k];
431
+ }));
432
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
433
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
434
+ }) : function(o, v) {
435
+ o["default"] = v;
436
+ });
437
+ var __importStar = (this && this.__importStar) || function (mod) {
438
+ if (mod && mod.__esModule) return mod;
439
+ var result = {};
440
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
441
+ __setModuleDefault(result, mod);
442
+ return result;
215
443
  };
216
444
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217
- const types_1 = __webpack_require__(46452);
218
- const bonuses_1 = __importDefault(__webpack_require__(8269));
219
- const tiles_1 = __webpack_require__(48060);
220
- const base = {
221
- allTilesBonusScore: 50,
222
- blankScore: 0,
223
- blanksCount: 2,
224
- boardHeight: 15,
225
- boardWidth: 15,
226
- bonuses: bonuses_1.default,
227
- id: 'literaki',
228
- maximumCharactersCount: 7,
229
- name: 'Literaki',
445
+ const locales = __importStar(__webpack_require__(77472));
446
+ const hasConfig = (game, locale) => {
447
+ const configs = Object.values(locales).flat();
448
+ return configs.some((config) => config.game === game && config.locale === locale);
230
449
  };
231
- const literaki = {
232
- id: base.id,
233
- name: base.name,
234
- [types_1.Locale.DE_DE]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.EN_GB, tiles: tiles_1.tilesDe }),
235
- [types_1.Locale.EN_GB]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.DE_DE, tiles: tiles_1.tilesEn }),
236
- [types_1.Locale.EN_US]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.EN_US, tiles: tiles_1.tilesEn }),
237
- [types_1.Locale.ES_ES]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.ES_ES, tiles: tiles_1.tilesEs }),
238
- [types_1.Locale.FA_IR]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.FA_IR, tiles: tiles_1.tilesFa }),
239
- [types_1.Locale.FR_FR]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.FR_FR, tiles: tiles_1.tilesFr }),
240
- [types_1.Locale.PL_PL]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.PL_PL, tiles: tiles_1.tilesPl }),
241
- };
242
- exports["default"] = literaki;
450
+ exports["default"] = hasConfig;
243
451
 
244
452
 
245
453
  /***/ }),
246
454
 
247
- /***/ 48060:
455
+ /***/ 27911:
248
456
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
249
457
 
250
458
 
459
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
460
+ if (k2 === undefined) k2 = k;
461
+ var desc = Object.getOwnPropertyDescriptor(m, k);
462
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
463
+ desc = { enumerable: true, get: function() { return m[k]; } };
464
+ }
465
+ Object.defineProperty(o, k2, desc);
466
+ }) : (function(o, m, k, k2) {
467
+ if (k2 === undefined) k2 = k;
468
+ o[k2] = m[k];
469
+ }));
470
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
471
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
472
+ }) : function(o, v) {
473
+ o["default"] = v;
474
+ });
475
+ var __importStar = (this && this.__importStar) || function (mod) {
476
+ if (mod && mod.__esModule) return mod;
477
+ var result = {};
478
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
479
+ __setModuleDefault(result, mod);
480
+ return result;
481
+ };
251
482
  var __importDefault = (this && this.__importDefault) || function (mod) {
252
483
  return (mod && mod.__esModule) ? mod : { "default": mod };
253
484
  };
254
485
  Object.defineProperty(exports, "__esModule", ({ value: true }));
255
- exports.tilesDe = exports.tilesPl = exports.tilesFr = exports.tilesFa = exports.tilesEs = exports.tilesEn = void 0;
256
- var tilesEn_1 = __webpack_require__(48779);
257
- Object.defineProperty(exports, "tilesEn", ({ enumerable: true, get: function () { return __importDefault(tilesEn_1).default; } }));
258
- var tilesEs_1 = __webpack_require__(43914);
259
- Object.defineProperty(exports, "tilesEs", ({ enumerable: true, get: function () { return __importDefault(tilesEs_1).default; } }));
260
- var tilesFa_1 = __webpack_require__(76529);
261
- Object.defineProperty(exports, "tilesFa", ({ enumerable: true, get: function () { return __importDefault(tilesFa_1).default; } }));
262
- var tilesFr_1 = __webpack_require__(24387);
263
- Object.defineProperty(exports, "tilesFr", ({ enumerable: true, get: function () { return __importDefault(tilesFr_1).default; } }));
264
- var tilesPl_1 = __webpack_require__(69371);
265
- Object.defineProperty(exports, "tilesPl", ({ enumerable: true, get: function () { return __importDefault(tilesPl_1).default; } }));
266
- var tilesDe_1 = __webpack_require__(81197);
267
- Object.defineProperty(exports, "tilesDe", ({ enumerable: true, get: function () { return __importDefault(tilesDe_1).default; } }));
268
-
269
-
270
- /***/ }),
271
-
272
- /***/ 81197:
273
- /***/ ((__unused_webpack_module, exports) => {
274
-
275
-
276
- Object.defineProperty(exports, "__esModule", ({ value: true }));
277
- const tilesDe = [
278
- { character: 'a', count: 5, score: 1 },
279
- { character: 'ä', count: 1, score: 6 },
280
- { character: 'b', count: 2, score: 3 },
281
- { character: 'c', count: 2, score: 4 },
282
- { character: 'd', count: 4, score: 1 },
283
- { character: 'e', count: 15, score: 1 },
284
- { character: 'f', count: 2, score: 4 },
285
- { character: 'g', count: 3, score: 2 },
286
- { character: 'h', count: 4, score: 2 },
287
- { character: 'i', count: 6, score: 1 },
288
- { character: 'j', count: 1, score: 6 },
289
- { character: 'k', count: 2, score: 4 },
290
- { character: 'l', count: 3, score: 2 },
291
- { character: 'm', count: 4, score: 3 },
292
- { character: 'n', count: 9, score: 1 },
293
- { character: 'o', count: 3, score: 2 },
294
- { character: 'ö', count: 1, score: 8 },
295
- { character: 'p', count: 1, score: 4 },
296
- { character: 'q', count: 1, score: 10 },
297
- { character: 'r', count: 6, score: 1 },
298
- { character: 's', count: 7, score: 1 },
299
- { character: 't', count: 6, score: 1 },
300
- { character: 'u', count: 6, score: 1 },
301
- { character: 'ü', count: 1, score: 6 },
302
- { character: 'v', count: 1, score: 6 },
303
- { character: 'w', count: 1, score: 3 },
304
- { character: 'x', count: 1, score: 8 },
305
- { character: 'y', count: 1, score: 10 },
306
- { character: 'z', count: 1, score: 3 },
307
- ];
308
- exports["default"] = tilesDe;
486
+ exports.localesMap = exports.locales = exports.games = exports.hasConfig = exports.getConfig = void 0;
487
+ const games = __importStar(__webpack_require__(18673));
488
+ exports.games = games;
489
+ const locales = __importStar(__webpack_require__(77472));
490
+ exports.locales = locales;
491
+ const localesMap = Object.fromEntries(Object.values(locales).map((configs) => [configs[0].locale, configs]));
492
+ exports.localesMap = localesMap;
493
+ var getConfig_1 = __webpack_require__(64873);
494
+ Object.defineProperty(exports, "getConfig", ({ enumerable: true, get: function () { return __importDefault(getConfig_1).default; } }));
495
+ var hasConfig_1 = __webpack_require__(56027);
496
+ Object.defineProperty(exports, "hasConfig", ({ enumerable: true, get: function () { return __importDefault(hasConfig_1).default; } }));
309
497
 
310
498
 
311
499
  /***/ }),
312
500
 
313
- /***/ 48779:
314
- /***/ ((__unused_webpack_module, exports) => {
501
+ /***/ 43204:
502
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
315
503
 
316
504
 
317
505
  Object.defineProperty(exports, "__esModule", ({ value: true }));
318
- const tilesEn = [
319
- { character: 'a', count: 9, score: 1 },
320
- { character: 'b', count: 2, score: 3 },
321
- { character: 'c', count: 2, score: 3 },
322
- { character: 'd', count: 4, score: 2 },
323
- { character: 'e', count: 12, score: 1 },
324
- { character: 'f', count: 2, score: 4 },
325
- { character: 'g', count: 3, score: 2 },
326
- { character: 'h', count: 2, score: 4 },
327
- { character: 'i', count: 9, score: 1 },
328
- { character: 'j', count: 1, score: 8 },
329
- { character: 'k', count: 1, score: 5 },
330
- { character: 'l', count: 4, score: 1 },
331
- { character: 'm', count: 2, score: 3 },
332
- { character: 'n', count: 6, score: 1 },
333
- { character: 'o', count: 8, score: 1 },
334
- { character: 'p', count: 2, score: 3 },
335
- { character: 'q', count: 1, score: 10 },
336
- { character: 'r', count: 6, score: 1 },
337
- { character: 's', count: 4, score: 1 },
338
- { character: 't', count: 6, score: 1 },
339
- { character: 'u', count: 4, score: 1 },
340
- { character: 'v', count: 2, score: 4 },
341
- { character: 'w', count: 2, score: 4 },
342
- { character: 'x', count: 1, score: 8 },
343
- { character: 'y', count: 2, score: 4 },
344
- { character: 'z', count: 1, score: 10 },
506
+ const types_1 = __webpack_require__(46452);
507
+ const games_1 = __webpack_require__(18673);
508
+ const deDe = [
509
+ new types_1.Config({
510
+ ...games_1.scrabble,
511
+ locale: types_1.Locale.DE_DE,
512
+ tiles: [
513
+ { character: 'a', count: 5, score: 1 },
514
+ { character: 'ä', count: 1, score: 6 },
515
+ { character: 'b', count: 2, score: 3 },
516
+ { character: 'c', count: 2, score: 4 },
517
+ { character: 'd', count: 4, score: 1 },
518
+ { character: 'e', count: 15, score: 1 },
519
+ { character: 'f', count: 2, score: 4 },
520
+ { character: 'g', count: 3, score: 2 },
521
+ { character: 'h', count: 4, score: 2 },
522
+ { character: 'i', count: 6, score: 1 },
523
+ { character: 'j', count: 1, score: 6 },
524
+ { character: 'k', count: 2, score: 4 },
525
+ { character: 'l', count: 3, score: 2 },
526
+ { character: 'm', count: 4, score: 3 },
527
+ { character: 'n', count: 9, score: 1 },
528
+ { character: 'o', count: 3, score: 2 },
529
+ { character: 'ö', count: 1, score: 8 },
530
+ { character: 'p', count: 1, score: 4 },
531
+ { character: 'q', count: 1, score: 10 },
532
+ { character: 'r', count: 6, score: 1 },
533
+ { character: 's', count: 7, score: 1 },
534
+ { character: 't', count: 6, score: 1 },
535
+ { character: 'u', count: 6, score: 1 },
536
+ { character: 'ü', count: 1, score: 6 },
537
+ { character: 'v', count: 1, score: 6 },
538
+ { character: 'w', count: 1, score: 3 },
539
+ { character: 'x', count: 1, score: 8 },
540
+ { character: 'y', count: 1, score: 10 },
541
+ { character: 'z', count: 1, score: 3 },
542
+ ],
543
+ }),
345
544
  ];
346
- exports["default"] = tilesEn;
545
+ exports["default"] = deDe;
347
546
 
348
547
 
349
548
  /***/ }),
350
549
 
351
- /***/ 43914:
352
- /***/ ((__unused_webpack_module, exports) => {
550
+ /***/ 21901:
551
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
353
552
 
354
553
 
355
554
  Object.defineProperty(exports, "__esModule", ({ value: true }));
356
- const tilesEs = [
357
- { character: 'a', count: 12, score: 1 },
358
- { character: 'b', count: 2, score: 3 },
359
- { character: 'c', count: 4, score: 3 },
360
- { character: 'ch', count: 1, score: 5 },
361
- { character: 'd', count: 5, score: 2 },
362
- { character: 'e', count: 12, score: 1 },
363
- { character: 'f', count: 1, score: 4 },
364
- { character: 'g', count: 2, score: 2 },
365
- { character: 'h', count: 2, score: 4 },
366
- { character: 'i', count: 6, score: 1 },
367
- { character: 'j', count: 1, score: 8 },
368
- { character: 'll', count: 1, score: 8 },
369
- { character: 'l', count: 4, score: 1 },
370
- { character: 'm', count: 2, score: 3 },
371
- { character: 'n', count: 5, score: 1 },
372
- { character: 'ñ', count: 1, score: 8 },
373
- { character: 'o', count: 9, score: 1 },
374
- { character: 'p', count: 2, score: 3 },
375
- { character: 'q', count: 1, score: 5 },
376
- { character: 'r', count: 5, score: 1 },
377
- { character: 'rr', count: 1, score: 8 },
378
- { character: 's', count: 6, score: 1 },
379
- { character: 't', count: 4, score: 1 },
380
- { character: 'u', count: 5, score: 1 },
381
- { character: 'v', count: 1, score: 4 },
382
- { character: 'x', count: 1, score: 8 },
383
- { character: 'y', count: 1, score: 4 },
384
- { character: 'z', count: 1, score: 10 },
555
+ const types_1 = __webpack_require__(46452);
556
+ const games_1 = __webpack_require__(18673);
557
+ const enGb = [
558
+ new types_1.Config({
559
+ ...games_1.scrabble,
560
+ locale: types_1.Locale.EN_GB,
561
+ tiles: [
562
+ { character: 'a', count: 9, score: 1 },
563
+ { character: 'b', count: 2, score: 3 },
564
+ { character: 'c', count: 2, score: 3 },
565
+ { character: 'd', count: 4, score: 2 },
566
+ { character: 'e', count: 12, score: 1 },
567
+ { character: 'f', count: 2, score: 4 },
568
+ { character: 'g', count: 3, score: 2 },
569
+ { character: 'h', count: 2, score: 4 },
570
+ { character: 'i', count: 9, score: 1 },
571
+ { character: 'j', count: 1, score: 8 },
572
+ { character: 'k', count: 1, score: 5 },
573
+ { character: 'l', count: 4, score: 1 },
574
+ { character: 'm', count: 2, score: 3 },
575
+ { character: 'n', count: 6, score: 1 },
576
+ { character: 'o', count: 8, score: 1 },
577
+ { character: 'p', count: 2, score: 3 },
578
+ { character: 'q', count: 1, score: 10 },
579
+ { character: 'r', count: 6, score: 1 },
580
+ { character: 's', count: 4, score: 1 },
581
+ { character: 't', count: 6, score: 1 },
582
+ { character: 'u', count: 4, score: 1 },
583
+ { character: 'v', count: 2, score: 4 },
584
+ { character: 'w', count: 2, score: 4 },
585
+ { character: 'x', count: 1, score: 8 },
586
+ { character: 'y', count: 2, score: 4 },
587
+ { character: 'z', count: 1, score: 10 },
588
+ ],
589
+ }),
590
+ new types_1.Config({
591
+ ...games_1.superScrabble,
592
+ locale: types_1.Locale.EN_GB,
593
+ tiles: [
594
+ { character: 'a', count: 16, score: 1 },
595
+ { character: 'b', count: 4, score: 3 },
596
+ { character: 'c', count: 6, score: 3 },
597
+ { character: 'd', count: 8, score: 2 },
598
+ { character: 'e', count: 24, score: 1 },
599
+ { character: 'f', count: 4, score: 4 },
600
+ { character: 'g', count: 5, score: 2 },
601
+ { character: 'h', count: 5, score: 4 },
602
+ { character: 'i', count: 13, score: 1 },
603
+ { character: 'j', count: 2, score: 8 },
604
+ { character: 'k', count: 2, score: 5 },
605
+ { character: 'l', count: 7, score: 1 },
606
+ { character: 'm', count: 6, score: 3 },
607
+ { character: 'n', count: 13, score: 1 },
608
+ { character: 'o', count: 15, score: 1 },
609
+ { character: 'p', count: 4, score: 3 },
610
+ { character: 'q', count: 2, score: 10 },
611
+ { character: 'r', count: 13, score: 1 },
612
+ { character: 's', count: 10, score: 1 },
613
+ { character: 't', count: 15, score: 1 },
614
+ { character: 'u', count: 7, score: 1 },
615
+ { character: 'v', count: 3, score: 4 },
616
+ { character: 'w', count: 4, score: 4 },
617
+ { character: 'x', count: 2, score: 8 },
618
+ { character: 'y', count: 4, score: 4 },
619
+ { character: 'z', count: 2, score: 10 },
620
+ ],
621
+ }),
622
+ new types_1.Config({
623
+ ...games_1.literaki,
624
+ locale: types_1.Locale.EN_GB,
625
+ name: 'Literaxx',
626
+ tiles: [
627
+ { character: 'a', count: 9, score: 1 },
628
+ { character: 'b', count: 2, score: 3 },
629
+ { character: 'c', count: 2, score: 3 },
630
+ { character: 'd', count: 4, score: 2 },
631
+ { character: 'e', count: 12, score: 1 },
632
+ { character: 'f', count: 2, score: 4 },
633
+ { character: 'g', count: 3, score: 2 },
634
+ { character: 'h', count: 2, score: 4 },
635
+ { character: 'i', count: 9, score: 1 },
636
+ { character: 'j', count: 1, score: 8 },
637
+ { character: 'k', count: 1, score: 5 },
638
+ { character: 'l', count: 4, score: 1 },
639
+ { character: 'm', count: 2, score: 3 },
640
+ { character: 'n', count: 6, score: 1 },
641
+ { character: 'o', count: 8, score: 1 },
642
+ { character: 'p', count: 2, score: 3 },
643
+ { character: 'q', count: 1, score: 10 },
644
+ { character: 'r', count: 6, score: 1 },
645
+ { character: 's', count: 4, score: 1 },
646
+ { character: 't', count: 6, score: 1 },
647
+ { character: 'u', count: 4, score: 1 },
648
+ { character: 'v', count: 2, score: 4 },
649
+ { character: 'w', count: 2, score: 4 },
650
+ { character: 'x', count: 1, score: 8 },
651
+ { character: 'y', count: 2, score: 4 },
652
+ { character: 'z', count: 1, score: 10 },
653
+ ],
654
+ }),
385
655
  ];
386
- exports["default"] = tilesEs;
656
+ exports["default"] = enGb;
387
657
 
388
658
 
389
659
  /***/ }),
390
660
 
391
- /***/ 76529:
392
- /***/ ((__unused_webpack_module, exports) => {
661
+ /***/ 72744:
662
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
393
663
 
394
664
 
395
665
  Object.defineProperty(exports, "__esModule", ({ value: true }));
396
- const tilesFa = [
397
- { character: 'ا', count: 12, score: 1 },
398
- { character: 'ب', count: 4, score: 1 },
399
- { character: 'پ', count: 1, score: 6 },
400
- { character: 'ت', count: 4, score: 1 },
401
- { character: 'ث', count: 1, score: 10 },
402
- { character: 'ج', count: 2, score: 5 },
403
- { character: 'چ', count: 1, score: 6 },
404
- { character: 'ح', count: 1, score: 6 },
405
- { character: 'خ', count: 2, score: 5 },
406
- { character: 'د', count: 6, score: 1 },
407
- { character: 'ذ', count: 1, score: 10 },
408
- { character: 'ر', count: 7, score: 1 },
409
- { character: 'ز', count: 3, score: 4 },
410
- { character: 'ژ', count: 1, score: 10 },
411
- { character: 'س', count: 3, score: 2 },
412
- { character: 'ش', count: 3, score: 3 },
413
- { character: 'ص', count: 1, score: 6 },
414
- { character: 'ض', count: 1, score: 8 },
415
- { character: 'ط', count: 1, score: 8 },
416
- { character: 'ظ', count: 1, score: 10 },
417
- { character: 'ع', count: 2, score: 5 },
418
- { character: 'غ', count: 1, score: 8 },
419
- { character: 'ف', count: 2, score: 4 },
420
- { character: 'ق', count: 2, score: 5 },
421
- { character: 'ک', count: 3, score: 3 },
422
- { character: 'گ', count: 2, score: 4 },
423
- { character: 'ل', count: 3, score: 2 },
424
- { character: 'م', count: 5, score: 1 },
425
- { character: 'ن', count: 6, score: 1 },
426
- { character: 'و', count: 5, score: 1 },
427
- { character: 'ه', count: 5, score: 1 },
428
- { character: 'ی', count: 8, score: 1 },
666
+ const types_1 = __webpack_require__(46452);
667
+ const games_1 = __webpack_require__(18673);
668
+ const enUs = [
669
+ new types_1.Config({
670
+ ...games_1.scrabble,
671
+ locale: types_1.Locale.EN_US,
672
+ tiles: [
673
+ { character: 'a', count: 9, score: 1 },
674
+ { character: 'b', count: 2, score: 3 },
675
+ { character: 'c', count: 2, score: 3 },
676
+ { character: 'd', count: 4, score: 2 },
677
+ { character: 'e', count: 12, score: 1 },
678
+ { character: 'f', count: 2, score: 4 },
679
+ { character: 'g', count: 3, score: 2 },
680
+ { character: 'h', count: 2, score: 4 },
681
+ { character: 'i', count: 9, score: 1 },
682
+ { character: 'j', count: 1, score: 8 },
683
+ { character: 'k', count: 1, score: 5 },
684
+ { character: 'l', count: 4, score: 1 },
685
+ { character: 'm', count: 2, score: 3 },
686
+ { character: 'n', count: 6, score: 1 },
687
+ { character: 'o', count: 8, score: 1 },
688
+ { character: 'p', count: 2, score: 3 },
689
+ { character: 'q', count: 1, score: 10 },
690
+ { character: 'r', count: 6, score: 1 },
691
+ { character: 's', count: 4, score: 1 },
692
+ { character: 't', count: 6, score: 1 },
693
+ { character: 'u', count: 4, score: 1 },
694
+ { character: 'v', count: 2, score: 4 },
695
+ { character: 'w', count: 2, score: 4 },
696
+ { character: 'x', count: 1, score: 8 },
697
+ { character: 'y', count: 2, score: 4 },
698
+ { character: 'z', count: 1, score: 10 },
699
+ ],
700
+ }),
701
+ new types_1.Config({
702
+ ...games_1.superScrabble,
703
+ locale: types_1.Locale.EN_US,
704
+ tiles: [
705
+ { character: 'a', count: 16, score: 1 },
706
+ { character: 'b', count: 4, score: 3 },
707
+ { character: 'c', count: 6, score: 3 },
708
+ { character: 'd', count: 8, score: 2 },
709
+ { character: 'e', count: 24, score: 1 },
710
+ { character: 'f', count: 4, score: 4 },
711
+ { character: 'g', count: 5, score: 2 },
712
+ { character: 'h', count: 5, score: 4 },
713
+ { character: 'i', count: 13, score: 1 },
714
+ { character: 'j', count: 2, score: 8 },
715
+ { character: 'k', count: 2, score: 5 },
716
+ { character: 'l', count: 7, score: 1 },
717
+ { character: 'm', count: 6, score: 3 },
718
+ { character: 'n', count: 13, score: 1 },
719
+ { character: 'o', count: 15, score: 1 },
720
+ { character: 'p', count: 4, score: 3 },
721
+ { character: 'q', count: 2, score: 10 },
722
+ { character: 'r', count: 13, score: 1 },
723
+ { character: 's', count: 10, score: 1 },
724
+ { character: 't', count: 15, score: 1 },
725
+ { character: 'u', count: 7, score: 1 },
726
+ { character: 'v', count: 3, score: 4 },
727
+ { character: 'w', count: 4, score: 4 },
728
+ { character: 'x', count: 2, score: 8 },
729
+ { character: 'y', count: 4, score: 4 },
730
+ { character: 'z', count: 2, score: 10 },
731
+ ],
732
+ }),
733
+ new types_1.Config({
734
+ ...games_1.literaki,
735
+ locale: types_1.Locale.EN_US,
736
+ name: 'Literaxx',
737
+ tiles: [
738
+ { character: 'a', count: 9, score: 1 },
739
+ { character: 'b', count: 2, score: 3 },
740
+ { character: 'c', count: 2, score: 3 },
741
+ { character: 'd', count: 4, score: 2 },
742
+ { character: 'e', count: 12, score: 1 },
743
+ { character: 'f', count: 2, score: 4 },
744
+ { character: 'g', count: 3, score: 2 },
745
+ { character: 'h', count: 2, score: 4 },
746
+ { character: 'i', count: 9, score: 1 },
747
+ { character: 'j', count: 1, score: 8 },
748
+ { character: 'k', count: 1, score: 5 },
749
+ { character: 'l', count: 4, score: 1 },
750
+ { character: 'm', count: 2, score: 3 },
751
+ { character: 'n', count: 6, score: 1 },
752
+ { character: 'o', count: 8, score: 1 },
753
+ { character: 'p', count: 2, score: 3 },
754
+ { character: 'q', count: 1, score: 10 },
755
+ { character: 'r', count: 6, score: 1 },
756
+ { character: 's', count: 4, score: 1 },
757
+ { character: 't', count: 6, score: 1 },
758
+ { character: 'u', count: 4, score: 1 },
759
+ { character: 'v', count: 2, score: 4 },
760
+ { character: 'w', count: 2, score: 4 },
761
+ { character: 'x', count: 1, score: 8 },
762
+ { character: 'y', count: 2, score: 4 },
763
+ { character: 'z', count: 1, score: 10 },
764
+ ],
765
+ }),
429
766
  ];
430
- exports["default"] = tilesFa;
767
+ exports["default"] = enUs;
431
768
 
432
769
 
433
770
  /***/ }),
434
771
 
435
- /***/ 24387:
436
- /***/ ((__unused_webpack_module, exports) => {
772
+ /***/ 78138:
773
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
437
774
 
438
775
 
439
776
  Object.defineProperty(exports, "__esModule", ({ value: true }));
440
- const tilesFr = [
441
- { character: 'a', count: 9, score: 1 },
442
- { character: 'b', count: 2, score: 3 },
443
- { character: 'c', count: 2, score: 3 },
444
- { character: 'd', count: 3, score: 2 },
445
- { character: 'e', count: 15, score: 1 },
446
- { character: 'f', count: 2, score: 1 },
447
- { character: 'g', count: 2, score: 2 },
448
- { character: 'h', count: 2, score: 4 },
449
- { character: 'i', count: 8, score: 1 },
450
- { character: 'j', count: 1, score: 8 },
451
- { character: 'k', count: 1, score: 10 },
452
- { character: 'l', count: 5, score: 1 },
453
- { character: 'm', count: 3, score: 2 },
454
- { character: 'n', count: 6, score: 1 },
455
- { character: 'o', count: 6, score: 1 },
456
- { character: 'p', count: 2, score: 3 },
457
- { character: 'q', count: 1, score: 8 },
458
- { character: 'r', count: 6, score: 1 },
459
- { character: 's', count: 6, score: 1 },
460
- { character: 't', count: 6, score: 1 },
461
- { character: 'u', count: 6, score: 1 },
462
- { character: 'v', count: 2, score: 4 },
463
- { character: 'w', count: 1, score: 10 },
464
- { character: 'x', count: 1, score: 10 },
465
- { character: 'y', count: 1, score: 10 },
466
- { character: 'z', count: 1, score: 10 },
777
+ const types_1 = __webpack_require__(46452);
778
+ const games_1 = __webpack_require__(18673);
779
+ const esEs = [
780
+ new types_1.Config({
781
+ ...games_1.scrabble,
782
+ locale: types_1.Locale.ES_ES,
783
+ tiles: [
784
+ { character: 'a', count: 12, score: 1 },
785
+ { character: 'b', count: 2, score: 3 },
786
+ { character: 'c', count: 4, score: 3 },
787
+ { character: 'ch', count: 1, score: 5 },
788
+ { character: 'd', count: 5, score: 2 },
789
+ { character: 'e', count: 12, score: 1 },
790
+ { character: 'f', count: 1, score: 4 },
791
+ { character: 'g', count: 2, score: 2 },
792
+ { character: 'h', count: 2, score: 4 },
793
+ { character: 'i', count: 6, score: 1 },
794
+ { character: 'j', count: 1, score: 8 },
795
+ { character: 'll', count: 1, score: 8 },
796
+ { character: 'l', count: 4, score: 1 },
797
+ { character: 'm', count: 2, score: 3 },
798
+ { character: 'n', count: 5, score: 1 },
799
+ { character: 'ñ', count: 1, score: 8 },
800
+ { character: 'o', count: 9, score: 1 },
801
+ { character: 'p', count: 2, score: 3 },
802
+ { character: 'q', count: 1, score: 5 },
803
+ { character: 'r', count: 5, score: 1 },
804
+ { character: 'rr', count: 1, score: 8 },
805
+ { character: 's', count: 6, score: 1 },
806
+ { character: 't', count: 4, score: 1 },
807
+ { character: 'u', count: 5, score: 1 },
808
+ { character: 'v', count: 1, score: 4 },
809
+ { character: 'x', count: 1, score: 8 },
810
+ { character: 'y', count: 1, score: 4 },
811
+ { character: 'z', count: 1, score: 10 },
812
+ ],
813
+ }),
467
814
  ];
468
- exports["default"] = tilesFr;
815
+ exports["default"] = esEs;
469
816
 
470
817
 
471
818
  /***/ }),
472
819
 
473
- /***/ 69371:
474
- /***/ ((__unused_webpack_module, exports) => {
820
+ /***/ 16711:
821
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
475
822
 
476
823
 
477
824
  Object.defineProperty(exports, "__esModule", ({ value: true }));
478
- const tilesPl = [
479
- { character: 'a', count: 9, score: 1 },
480
- { character: 'ą', count: 1, score: 5 },
481
- { character: 'b', count: 2, score: 3 },
482
- { character: 'c', count: 3, score: 2 },
483
- { character: 'ć', count: 1, score: 5 },
484
- { character: 'd', count: 3, score: 2 },
485
- { character: 'e', count: 7, score: 1 },
486
- { character: 'ę', count: 1, score: 5 },
487
- { character: 'f', count: 1, score: 5 },
488
- { character: 'g', count: 2, score: 3 },
489
- { character: 'h', count: 2, score: 3 },
490
- { character: 'i', count: 8, score: 1 },
491
- { character: 'j', count: 2, score: 3 },
492
- { character: 'k', count: 3, score: 2 },
493
- { character: 'l', count: 3, score: 2 },
494
- { character: 'ł', count: 2, score: 3 },
495
- { character: 'm', count: 3, score: 2 },
496
- { character: 'n', count: 5, score: 1 },
497
- { character: 'ń', count: 1, score: 5 },
498
- { character: 'o', count: 6, score: 1 },
499
- { character: 'ó', count: 1, score: 5 },
500
- { character: 'p', count: 3, score: 2 },
501
- { character: 'r', count: 4, score: 1 },
502
- { character: 's', count: 4, score: 1 },
503
- { character: 'ś', count: 1, score: 5 },
504
- { character: 't', count: 3, score: 2 },
505
- { character: 'u', count: 2, score: 3 },
506
- { character: 'w', count: 4, score: 1 },
507
- { character: 'y', count: 4, score: 2 },
508
- { character: 'z', count: 5, score: 1 },
509
- { character: 'ź', count: 1, score: 5 },
510
- { character: 'ż', count: 1, score: 5 },
825
+ const types_1 = __webpack_require__(46452);
826
+ const games_1 = __webpack_require__(18673);
827
+ const faIr = [
828
+ new types_1.Config({
829
+ ...games_1.scrabble,
830
+ locale: types_1.Locale.FA_IR,
831
+ tiles: [
832
+ { character: 'ا', count: 12, score: 1 },
833
+ { character: 'ب', count: 4, score: 1 },
834
+ { character: 'پ', count: 1, score: 6 },
835
+ { character: 'ت', count: 4, score: 1 },
836
+ { character: 'ث', count: 1, score: 10 },
837
+ { character: 'ج', count: 2, score: 5 },
838
+ { character: 'چ', count: 1, score: 6 },
839
+ { character: 'ح', count: 1, score: 6 },
840
+ { character: 'خ', count: 2, score: 5 },
841
+ { character: 'د', count: 6, score: 1 },
842
+ { character: 'ذ', count: 1, score: 10 },
843
+ { character: 'ر', count: 7, score: 1 },
844
+ { character: 'ز', count: 3, score: 4 },
845
+ { character: 'ژ', count: 1, score: 10 },
846
+ { character: 'س', count: 3, score: 2 },
847
+ { character: 'ش', count: 3, score: 3 },
848
+ { character: 'ص', count: 1, score: 6 },
849
+ { character: 'ض', count: 1, score: 8 },
850
+ { character: 'ط', count: 1, score: 8 },
851
+ { character: 'ظ', count: 1, score: 10 },
852
+ { character: 'ع', count: 2, score: 5 },
853
+ { character: 'غ', count: 1, score: 8 },
854
+ { character: 'ف', count: 2, score: 4 },
855
+ { character: 'ق', count: 2, score: 5 },
856
+ { character: 'ک', count: 3, score: 3 },
857
+ { character: 'گ', count: 2, score: 4 },
858
+ { character: 'ل', count: 3, score: 2 },
859
+ { character: 'م', count: 5, score: 1 },
860
+ { character: 'ن', count: 6, score: 1 },
861
+ { character: 'و', count: 5, score: 1 },
862
+ { character: 'ه', count: 5, score: 1 },
863
+ { character: 'ی', count: 8, score: 1 },
864
+ ],
865
+ }),
511
866
  ];
512
- exports["default"] = tilesPl;
867
+ exports["default"] = faIr;
513
868
 
514
869
 
515
870
  /***/ }),
516
871
 
517
- /***/ 16841:
872
+ /***/ 54539:
518
873
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
519
874
 
520
875
 
521
876
  Object.defineProperty(exports, "__esModule", ({ value: true }));
522
- const constants_1 = __webpack_require__(38436);
523
- const bonuses = [
524
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 0 },
525
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 0 },
526
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 0 },
527
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 0 },
528
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 0 },
529
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 1 },
530
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 1 },
531
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 1 },
532
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 1 },
533
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 2 },
534
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 2 },
535
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 2 },
536
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 2 },
537
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 3 },
538
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 3 },
539
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 7, y: 3 },
540
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 3 },
541
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 3 },
542
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 4 },
543
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 4 },
544
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 1, y: 5 },
545
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 5 },
546
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 5 },
547
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 13, y: 5 },
548
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 6 },
549
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 6 },
550
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 6 },
551
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 6 },
552
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 7 },
553
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 7 },
554
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 7, y: 7 },
555
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 7 },
556
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 7 },
557
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 8 },
558
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 8 },
559
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 8 },
560
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 8 },
561
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 1, y: 9 },
562
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 9 },
563
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 9 },
564
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 13, y: 9 },
565
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 10 },
566
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 10 },
567
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 11 },
568
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 11 },
569
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 7, y: 11 },
570
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 11 },
571
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 11 },
572
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 12 },
573
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 12 },
574
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 12 },
575
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 12, y: 12 },
576
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 13 },
577
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 5, y: 13 },
578
- { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 9, y: 13 },
579
- { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 13 },
580
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 14 },
581
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 14 },
582
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 14 },
583
- { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 14 },
584
- { multiplier: 3, type: constants_1.BONUS_WORD, x: 14, y: 14 },
877
+ const types_1 = __webpack_require__(46452);
878
+ const games_1 = __webpack_require__(18673);
879
+ const frFr = [
880
+ new types_1.Config({
881
+ ...games_1.scrabble,
882
+ locale: types_1.Locale.FR_FR,
883
+ tiles: [
884
+ { character: 'a', count: 9, score: 1 },
885
+ { character: 'b', count: 2, score: 3 },
886
+ { character: 'c', count: 2, score: 3 },
887
+ { character: 'd', count: 3, score: 2 },
888
+ { character: 'e', count: 15, score: 1 },
889
+ { character: 'f', count: 2, score: 4 },
890
+ { character: 'g', count: 2, score: 2 },
891
+ { character: 'h', count: 2, score: 4 },
892
+ { character: 'i', count: 8, score: 1 },
893
+ { character: 'j', count: 1, score: 8 },
894
+ { character: 'k', count: 1, score: 10 },
895
+ { character: 'l', count: 5, score: 1 },
896
+ { character: 'm', count: 3, score: 2 },
897
+ { character: 'n', count: 6, score: 1 },
898
+ { character: 'o', count: 6, score: 1 },
899
+ { character: 'p', count: 2, score: 3 },
900
+ { character: 'q', count: 1, score: 8 },
901
+ { character: 'r', count: 6, score: 1 },
902
+ { character: 's', count: 6, score: 1 },
903
+ { character: 't', count: 6, score: 1 },
904
+ { character: 'u', count: 6, score: 1 },
905
+ { character: 'v', count: 2, score: 4 },
906
+ { character: 'w', count: 1, score: 10 },
907
+ { character: 'x', count: 1, score: 10 },
908
+ { character: 'y', count: 1, score: 10 },
909
+ { character: 'z', count: 1, score: 10 },
910
+ ],
911
+ }),
585
912
  ];
586
- exports["default"] = bonuses;
913
+ exports["default"] = frFr;
587
914
 
588
915
 
589
916
  /***/ }),
590
917
 
591
- /***/ 40136:
918
+ /***/ 77472:
592
919
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
593
920
 
594
921
 
@@ -596,317 +923,111 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
596
923
  return (mod && mod.__esModule) ? mod : { "default": mod };
597
924
  };
598
925
  Object.defineProperty(exports, "__esModule", ({ value: true }));
599
- exports["default"] = void 0;
600
- var scrabble_1 = __webpack_require__(64689);
601
- Object.defineProperty(exports, "default", ({ enumerable: true, get: function () { return __importDefault(scrabble_1).default; } }));
926
+ exports.plPl = exports.frFr = exports.faIr = exports.esEs = exports.enUs = exports.enGb = exports.deDe = void 0;
927
+ var deDe_1 = __webpack_require__(43204);
928
+ Object.defineProperty(exports, "deDe", ({ enumerable: true, get: function () { return __importDefault(deDe_1).default; } }));
929
+ var enGb_1 = __webpack_require__(21901);
930
+ Object.defineProperty(exports, "enGb", ({ enumerable: true, get: function () { return __importDefault(enGb_1).default; } }));
931
+ var enUs_1 = __webpack_require__(72744);
932
+ Object.defineProperty(exports, "enUs", ({ enumerable: true, get: function () { return __importDefault(enUs_1).default; } }));
933
+ var esEs_1 = __webpack_require__(78138);
934
+ Object.defineProperty(exports, "esEs", ({ enumerable: true, get: function () { return __importDefault(esEs_1).default; } }));
935
+ var faIr_1 = __webpack_require__(16711);
936
+ Object.defineProperty(exports, "faIr", ({ enumerable: true, get: function () { return __importDefault(faIr_1).default; } }));
937
+ var frFr_1 = __webpack_require__(54539);
938
+ Object.defineProperty(exports, "frFr", ({ enumerable: true, get: function () { return __importDefault(frFr_1).default; } }));
939
+ var plPl_1 = __webpack_require__(64642);
940
+ Object.defineProperty(exports, "plPl", ({ enumerable: true, get: function () { return __importDefault(plPl_1).default; } }));
602
941
 
603
942
 
604
943
  /***/ }),
605
944
 
606
- /***/ 64689:
607
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
945
+ /***/ 64642:
946
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
608
947
 
609
948
 
610
- var __importDefault = (this && this.__importDefault) || function (mod) {
611
- return (mod && mod.__esModule) ? mod : { "default": mod };
612
- };
613
949
  Object.defineProperty(exports, "__esModule", ({ value: true }));
614
950
  const types_1 = __webpack_require__(46452);
615
- const bonuses_1 = __importDefault(__webpack_require__(16841));
616
- const tiles_1 = __webpack_require__(75797);
617
- const base = {
618
- allTilesBonusScore: 50,
619
- blankScore: 0,
620
- blanksCount: 2,
621
- boardHeight: 15,
622
- boardWidth: 15,
623
- bonuses: bonuses_1.default,
624
- id: 'scrabble',
625
- maximumCharactersCount: 7,
626
- name: 'Scrabble',
627
- };
628
- const scrabble = {
629
- id: base.id,
630
- name: base.name,
631
- [types_1.Locale.EN_GB]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.EN_GB, tiles: tiles_1.tilesEn }),
632
- [types_1.Locale.DE_DE]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.DE_DE, tiles: tiles_1.tilesDe }),
633
- [types_1.Locale.EN_US]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.EN_US, tiles: tiles_1.tilesEn }),
634
- [types_1.Locale.ES_ES]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.ES_ES, tiles: tiles_1.tilesEs }),
635
- [types_1.Locale.FA_IR]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.FA_IR, tiles: tiles_1.tilesFa }),
636
- [types_1.Locale.FR_FR]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.FR_FR, tiles: tiles_1.tilesFr }),
637
- [types_1.Locale.PL_PL]: types_1.Config.fromJson({ ...base, locale: types_1.Locale.PL_PL, tiles: tiles_1.tilesPl }),
638
- };
639
- exports["default"] = scrabble;
640
-
641
-
642
- /***/ }),
643
-
644
- /***/ 75797:
645
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
646
-
647
-
648
- var __importDefault = (this && this.__importDefault) || function (mod) {
649
- return (mod && mod.__esModule) ? mod : { "default": mod };
650
- };
651
- Object.defineProperty(exports, "__esModule", ({ value: true }));
652
- exports.tilesDe = exports.tilesPl = exports.tilesFr = exports.tilesFa = exports.tilesEs = exports.tilesEn = void 0;
653
- var tilesEn_1 = __webpack_require__(4119);
654
- Object.defineProperty(exports, "tilesEn", ({ enumerable: true, get: function () { return __importDefault(tilesEn_1).default; } }));
655
- var tilesEs_1 = __webpack_require__(73873);
656
- Object.defineProperty(exports, "tilesEs", ({ enumerable: true, get: function () { return __importDefault(tilesEs_1).default; } }));
657
- var tilesFa_1 = __webpack_require__(16984);
658
- Object.defineProperty(exports, "tilesFa", ({ enumerable: true, get: function () { return __importDefault(tilesFa_1).default; } }));
659
- var tilesFr_1 = __webpack_require__(22789);
660
- Object.defineProperty(exports, "tilesFr", ({ enumerable: true, get: function () { return __importDefault(tilesFr_1).default; } }));
661
- var tilesPl_1 = __webpack_require__(67211);
662
- Object.defineProperty(exports, "tilesPl", ({ enumerable: true, get: function () { return __importDefault(tilesPl_1).default; } }));
663
- var tilesDe_1 = __webpack_require__(10659);
664
- Object.defineProperty(exports, "tilesDe", ({ enumerable: true, get: function () { return __importDefault(tilesDe_1).default; } }));
665
-
666
-
667
- /***/ }),
668
-
669
- /***/ 10659:
670
- /***/ ((__unused_webpack_module, exports) => {
671
-
672
-
673
- Object.defineProperty(exports, "__esModule", ({ value: true }));
674
- const tilesDe = [
675
- { character: 'a', count: 5, score: 1 },
676
- { character: 'ä', count: 1, score: 6 },
677
- { character: 'b', count: 2, score: 3 },
678
- { character: 'c', count: 2, score: 4 },
679
- { character: 'd', count: 4, score: 1 },
680
- { character: 'e', count: 15, score: 1 },
681
- { character: 'f', count: 2, score: 4 },
682
- { character: 'g', count: 3, score: 2 },
683
- { character: 'h', count: 4, score: 2 },
684
- { character: 'i', count: 6, score: 1 },
685
- { character: 'j', count: 1, score: 6 },
686
- { character: 'k', count: 2, score: 4 },
687
- { character: 'l', count: 3, score: 2 },
688
- { character: 'm', count: 4, score: 3 },
689
- { character: 'n', count: 9, score: 1 },
690
- { character: 'o', count: 3, score: 2 },
691
- { character: 'ö', count: 1, score: 8 },
692
- { character: 'p', count: 1, score: 4 },
693
- { character: 'q', count: 1, score: 10 },
694
- { character: 'r', count: 6, score: 1 },
695
- { character: 's', count: 7, score: 1 },
696
- { character: 't', count: 6, score: 1 },
697
- { character: 'u', count: 6, score: 1 },
698
- { character: 'ü', count: 1, score: 6 },
699
- { character: 'v', count: 1, score: 6 },
700
- { character: 'w', count: 1, score: 3 },
701
- { character: 'x', count: 1, score: 8 },
702
- { character: 'y', count: 1, score: 10 },
703
- { character: 'z', count: 1, score: 3 },
704
- ];
705
- exports["default"] = tilesDe;
706
-
707
-
708
- /***/ }),
709
-
710
- /***/ 4119:
711
- /***/ ((__unused_webpack_module, exports) => {
712
-
713
-
714
- Object.defineProperty(exports, "__esModule", ({ value: true }));
715
- const tilesEn = [
716
- { character: 'a', count: 9, score: 1 },
717
- { character: 'b', count: 2, score: 3 },
718
- { character: 'c', count: 2, score: 3 },
719
- { character: 'd', count: 4, score: 2 },
720
- { character: 'e', count: 12, score: 1 },
721
- { character: 'f', count: 2, score: 4 },
722
- { character: 'g', count: 3, score: 2 },
723
- { character: 'h', count: 2, score: 4 },
724
- { character: 'i', count: 9, score: 1 },
725
- { character: 'j', count: 1, score: 8 },
726
- { character: 'k', count: 1, score: 5 },
727
- { character: 'l', count: 4, score: 1 },
728
- { character: 'm', count: 2, score: 3 },
729
- { character: 'n', count: 6, score: 1 },
730
- { character: 'o', count: 8, score: 1 },
731
- { character: 'p', count: 2, score: 3 },
732
- { character: 'q', count: 1, score: 10 },
733
- { character: 'r', count: 6, score: 1 },
734
- { character: 's', count: 4, score: 1 },
735
- { character: 't', count: 6, score: 1 },
736
- { character: 'u', count: 4, score: 1 },
737
- { character: 'v', count: 2, score: 4 },
738
- { character: 'w', count: 2, score: 4 },
739
- { character: 'x', count: 1, score: 8 },
740
- { character: 'y', count: 2, score: 4 },
741
- { character: 'z', count: 1, score: 10 },
742
- ];
743
- exports["default"] = tilesEn;
744
-
745
-
746
- /***/ }),
747
-
748
- /***/ 73873:
749
- /***/ ((__unused_webpack_module, exports) => {
750
-
751
-
752
- Object.defineProperty(exports, "__esModule", ({ value: true }));
753
- const tilesEs = [
754
- { character: 'a', count: 12, score: 1 },
755
- { character: 'b', count: 2, score: 3 },
756
- { character: 'c', count: 4, score: 3 },
757
- { character: 'ch', count: 1, score: 5 },
758
- { character: 'd', count: 5, score: 2 },
759
- { character: 'e', count: 12, score: 1 },
760
- { character: 'f', count: 1, score: 4 },
761
- { character: 'g', count: 2, score: 2 },
762
- { character: 'h', count: 2, score: 4 },
763
- { character: 'i', count: 6, score: 1 },
764
- { character: 'j', count: 1, score: 8 },
765
- { character: 'll', count: 1, score: 8 },
766
- { character: 'l', count: 4, score: 1 },
767
- { character: 'm', count: 2, score: 3 },
768
- { character: 'n', count: 5, score: 1 },
769
- { character: 'ñ', count: 1, score: 8 },
770
- { character: 'o', count: 9, score: 1 },
771
- { character: 'p', count: 2, score: 3 },
772
- { character: 'q', count: 1, score: 5 },
773
- { character: 'r', count: 5, score: 1 },
774
- { character: 'rr', count: 1, score: 8 },
775
- { character: 's', count: 6, score: 1 },
776
- { character: 't', count: 4, score: 1 },
777
- { character: 'u', count: 5, score: 1 },
778
- { character: 'v', count: 1, score: 4 },
779
- { character: 'x', count: 1, score: 8 },
780
- { character: 'y', count: 1, score: 4 },
781
- { character: 'z', count: 1, score: 10 },
782
- ];
783
- exports["default"] = tilesEs;
784
-
785
-
786
- /***/ }),
787
-
788
- /***/ 16984:
789
- /***/ ((__unused_webpack_module, exports) => {
790
-
791
-
792
- Object.defineProperty(exports, "__esModule", ({ value: true }));
793
- const tilesFa = [
794
- { character: 'ا', count: 12, score: 1 },
795
- { character: 'ب', count: 4, score: 1 },
796
- { character: 'پ', count: 1, score: 6 },
797
- { character: 'ت', count: 4, score: 1 },
798
- { character: 'ث', count: 1, score: 10 },
799
- { character: 'ج', count: 2, score: 5 },
800
- { character: 'چ', count: 1, score: 6 },
801
- { character: 'ح', count: 1, score: 6 },
802
- { character: 'خ', count: 2, score: 5 },
803
- { character: 'د', count: 6, score: 1 },
804
- { character: 'ذ', count: 1, score: 10 },
805
- { character: 'ر', count: 7, score: 1 },
806
- { character: 'ز', count: 3, score: 4 },
807
- { character: 'ژ', count: 1, score: 10 },
808
- { character: 'س', count: 3, score: 2 },
809
- { character: 'ش', count: 3, score: 3 },
810
- { character: 'ص', count: 1, score: 6 },
811
- { character: 'ض', count: 1, score: 8 },
812
- { character: 'ط', count: 1, score: 8 },
813
- { character: 'ظ', count: 1, score: 10 },
814
- { character: 'ع', count: 2, score: 5 },
815
- { character: 'غ', count: 1, score: 8 },
816
- { character: 'ف', count: 2, score: 4 },
817
- { character: 'ق', count: 2, score: 5 },
818
- { character: 'ک', count: 3, score: 3 },
819
- { character: 'گ', count: 2, score: 4 },
820
- { character: 'ل', count: 3, score: 2 },
821
- { character: 'م', count: 5, score: 1 },
822
- { character: 'ن', count: 6, score: 1 },
823
- { character: 'و', count: 5, score: 1 },
824
- { character: 'ه', count: 5, score: 1 },
825
- { character: 'ی', count: 8, score: 1 },
826
- ];
827
- exports["default"] = tilesFa;
828
-
829
-
830
- /***/ }),
831
-
832
- /***/ 22789:
833
- /***/ ((__unused_webpack_module, exports) => {
834
-
835
-
836
- Object.defineProperty(exports, "__esModule", ({ value: true }));
837
- const tilesFr = [
838
- { character: 'a', count: 9, score: 1 },
839
- { character: 'b', count: 2, score: 3 },
840
- { character: 'c', count: 2, score: 3 },
841
- { character: 'd', count: 3, score: 2 },
842
- { character: 'e', count: 15, score: 1 },
843
- { character: 'f', count: 2, score: 4 },
844
- { character: 'g', count: 2, score: 2 },
845
- { character: 'h', count: 2, score: 4 },
846
- { character: 'i', count: 8, score: 1 },
847
- { character: 'j', count: 1, score: 8 },
848
- { character: 'k', count: 1, score: 10 },
849
- { character: 'l', count: 5, score: 1 },
850
- { character: 'm', count: 3, score: 2 },
851
- { character: 'n', count: 6, score: 1 },
852
- { character: 'o', count: 6, score: 1 },
853
- { character: 'p', count: 2, score: 3 },
854
- { character: 'q', count: 1, score: 8 },
855
- { character: 'r', count: 6, score: 1 },
856
- { character: 's', count: 6, score: 1 },
857
- { character: 't', count: 6, score: 1 },
858
- { character: 'u', count: 6, score: 1 },
859
- { character: 'v', count: 2, score: 4 },
860
- { character: 'w', count: 1, score: 10 },
861
- { character: 'x', count: 1, score: 10 },
862
- { character: 'y', count: 1, score: 10 },
863
- { character: 'z', count: 1, score: 10 },
864
- ];
865
- exports["default"] = tilesFr;
866
-
867
-
868
- /***/ }),
869
-
870
- /***/ 67211:
871
- /***/ ((__unused_webpack_module, exports) => {
872
-
873
-
874
- Object.defineProperty(exports, "__esModule", ({ value: true }));
875
- const tilesPl = [
876
- { character: 'a', count: 9, score: 1 },
877
- { character: 'ą', count: 1, score: 5 },
878
- { character: 'b', count: 2, score: 3 },
879
- { character: 'c', count: 3, score: 2 },
880
- { character: 'ć', count: 1, score: 6 },
881
- { character: 'd', count: 3, score: 2 },
882
- { character: 'e', count: 7, score: 1 },
883
- { character: 'ę', count: 1, score: 5 },
884
- { character: 'f', count: 1, score: 5 },
885
- { character: 'g', count: 2, score: 3 },
886
- { character: 'h', count: 2, score: 3 },
887
- { character: 'i', count: 8, score: 1 },
888
- { character: 'j', count: 2, score: 3 },
889
- { character: 'k', count: 3, score: 2 },
890
- { character: 'l', count: 3, score: 2 },
891
- { character: 'ł', count: 2, score: 3 },
892
- { character: 'm', count: 3, score: 2 },
893
- { character: 'n', count: 5, score: 1 },
894
- { character: 'ń', count: 1, score: 7 },
895
- { character: 'o', count: 6, score: 1 },
896
- { character: 'ó', count: 1, score: 5 },
897
- { character: 'p', count: 3, score: 2 },
898
- { character: 'r', count: 4, score: 1 },
899
- { character: 's', count: 4, score: 1 },
900
- { character: 'ś', count: 1, score: 5 },
901
- { character: 't', count: 3, score: 2 },
902
- { character: 'u', count: 2, score: 3 },
903
- { character: 'w', count: 4, score: 1 },
904
- { character: 'y', count: 4, score: 2 },
905
- { character: 'z', count: 5, score: 1 },
906
- { character: 'ź', count: 1, score: 9 },
907
- { character: 'ż', count: 1, score: 5 },
951
+ const games_1 = __webpack_require__(18673);
952
+ const plPL = [
953
+ new types_1.Config({
954
+ ...games_1.scrabble,
955
+ locale: types_1.Locale.PL_PL,
956
+ tiles: [
957
+ { character: 'a', count: 9, score: 1 },
958
+ { character: 'ą', count: 1, score: 5 },
959
+ { character: 'b', count: 2, score: 3 },
960
+ { character: 'c', count: 3, score: 2 },
961
+ { character: 'ć', count: 1, score: 6 },
962
+ { character: 'd', count: 3, score: 2 },
963
+ { character: 'e', count: 7, score: 1 },
964
+ { character: 'ę', count: 1, score: 5 },
965
+ { character: 'f', count: 1, score: 5 },
966
+ { character: 'g', count: 2, score: 3 },
967
+ { character: 'h', count: 2, score: 3 },
968
+ { character: 'i', count: 8, score: 1 },
969
+ { character: 'j', count: 2, score: 3 },
970
+ { character: 'k', count: 3, score: 2 },
971
+ { character: 'l', count: 3, score: 2 },
972
+ { character: 'ł', count: 2, score: 3 },
973
+ { character: 'm', count: 3, score: 2 },
974
+ { character: 'n', count: 5, score: 1 },
975
+ { character: 'ń', count: 1, score: 7 },
976
+ { character: 'o', count: 6, score: 1 },
977
+ { character: 'ó', count: 1, score: 5 },
978
+ { character: 'p', count: 3, score: 2 },
979
+ { character: 'r', count: 4, score: 1 },
980
+ { character: 's', count: 4, score: 1 },
981
+ { character: 'ś', count: 1, score: 5 },
982
+ { character: 't', count: 3, score: 2 },
983
+ { character: 'u', count: 2, score: 3 },
984
+ { character: 'w', count: 4, score: 1 },
985
+ { character: 'y', count: 4, score: 2 },
986
+ { character: 'z', count: 5, score: 1 },
987
+ { character: 'ź', count: 1, score: 9 },
988
+ { character: 'ż', count: 1, score: 5 },
989
+ ],
990
+ }),
991
+ new types_1.Config({
992
+ ...games_1.literaki,
993
+ locale: types_1.Locale.PL_PL,
994
+ tiles: [
995
+ { character: 'a', count: 9, score: 1 },
996
+ { character: 'ą', count: 1, score: 5 },
997
+ { character: 'b', count: 2, score: 3 },
998
+ { character: 'c', count: 3, score: 2 },
999
+ { character: 'ć', count: 1, score: 5 },
1000
+ { character: 'd', count: 3, score: 2 },
1001
+ { character: 'e', count: 7, score: 1 },
1002
+ { character: 'ę', count: 1, score: 5 },
1003
+ { character: 'f', count: 1, score: 5 },
1004
+ { character: 'g', count: 2, score: 3 },
1005
+ { character: 'h', count: 2, score: 3 },
1006
+ { character: 'i', count: 8, score: 1 },
1007
+ { character: 'j', count: 2, score: 3 },
1008
+ { character: 'k', count: 3, score: 2 },
1009
+ { character: 'l', count: 3, score: 2 },
1010
+ { character: 'ł', count: 2, score: 3 },
1011
+ { character: 'm', count: 3, score: 2 },
1012
+ { character: 'n', count: 5, score: 1 },
1013
+ { character: 'ń', count: 1, score: 5 },
1014
+ { character: 'o', count: 6, score: 1 },
1015
+ { character: 'ó', count: 1, score: 5 },
1016
+ { character: 'p', count: 3, score: 2 },
1017
+ { character: 'r', count: 4, score: 1 },
1018
+ { character: 's', count: 4, score: 1 },
1019
+ { character: 'ś', count: 1, score: 5 },
1020
+ { character: 't', count: 3, score: 2 },
1021
+ { character: 'u', count: 2, score: 3 },
1022
+ { character: 'w', count: 4, score: 1 },
1023
+ { character: 'y', count: 4, score: 2 },
1024
+ { character: 'z', count: 5, score: 1 },
1025
+ { character: 'ź', count: 1, score: 5 },
1026
+ { character: 'ż', count: 1, score: 5 },
1027
+ ],
1028
+ }),
908
1029
  ];
909
- exports["default"] = tilesPl;
1030
+ exports["default"] = plPL;
910
1031
 
911
1032
 
912
1033
  /***/ })