@scrabble-solver/configs 2.15.9 → 2.15.10
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.
- package/build/games/index.d.ts +1 -0
- package/build/games/index.js +1 -0
- package/build/games/kelimelik.d.ts +2 -1
- package/build/games/kelimelik.js +2 -1
- package/build/games/literaki.d.ts +2 -1
- package/build/games/literaki.js +2 -1
- package/build/games/scrabble.d.ts +2 -1
- package/build/games/scrabble.js +2 -1
- package/build/games/scrabbleDuel.d.ts +17 -0
- package/build/games/scrabbleDuel.js +50 -0
- package/build/games/superScrabble.d.ts +2 -1
- package/build/games/superScrabble.js +2 -1
- package/build/languages/english.d.ts +2 -0
- package/build/languages/english.js +65 -1
- package/package.json +4 -4
- package/src/games/index.ts +1 -0
- package/src/games/kelimelik.ts +2 -1
- package/src/games/literaki.ts +2 -1
- package/src/games/scrabble.ts +2 -1
- package/src/games/scrabbleDuel.ts +56 -0
- package/src/games/superScrabble.ts +2 -1
- package/src/languages/english.ts +67 -1
package/build/games/index.d.ts
CHANGED
package/build/games/index.js
CHANGED
|
@@ -17,4 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./kelimelik"), exports);
|
|
18
18
|
__exportStar(require("./literaki"), exports);
|
|
19
19
|
__exportStar(require("./scrabble"), exports);
|
|
20
|
+
__exportStar(require("./scrabbleDuel"), exports);
|
|
20
21
|
__exportStar(require("./superScrabble"), exports);
|
package/build/games/kelimelik.js
CHANGED
package/build/games/literaki.js
CHANGED
package/build/games/scrabble.js
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Game } from '@scrabble-solver/types';
|
|
2
|
+
export declare const scrabbleDuel: {
|
|
3
|
+
bingoScore: number;
|
|
4
|
+
blankScore: number;
|
|
5
|
+
blanksCount: number;
|
|
6
|
+
boardHeight: number;
|
|
7
|
+
boardWidth: number;
|
|
8
|
+
game: Game;
|
|
9
|
+
name: string;
|
|
10
|
+
rackSize: number;
|
|
11
|
+
bonuses: {
|
|
12
|
+
multiplier: number;
|
|
13
|
+
type: string;
|
|
14
|
+
x: number;
|
|
15
|
+
y: number;
|
|
16
|
+
}[];
|
|
17
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.scrabbleDuel = void 0;
|
|
4
|
+
const constants_1 = require("@scrabble-solver/constants");
|
|
5
|
+
const types_1 = require("@scrabble-solver/types");
|
|
6
|
+
exports.scrabbleDuel = {
|
|
7
|
+
bingoScore: 50,
|
|
8
|
+
blankScore: 0,
|
|
9
|
+
blanksCount: 2,
|
|
10
|
+
boardHeight: 11,
|
|
11
|
+
boardWidth: 11,
|
|
12
|
+
game: types_1.Game.ScrabbleDuel,
|
|
13
|
+
name: 'Scrabble Duel',
|
|
14
|
+
rackSize: 7,
|
|
15
|
+
bonuses: [
|
|
16
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 5 },
|
|
17
|
+
{ multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 0 },
|
|
18
|
+
{ multiplier: 3, type: constants_1.BONUS_WORD, x: 10, y: 0 },
|
|
19
|
+
{ multiplier: 3, type: constants_1.BONUS_WORD, x: 0, y: 10 },
|
|
20
|
+
{ multiplier: 3, type: constants_1.BONUS_WORD, x: 10, y: 10 },
|
|
21
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 1 },
|
|
22
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 2 },
|
|
23
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 1 },
|
|
24
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 8, y: 2 },
|
|
25
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 9 },
|
|
26
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 2, y: 8 },
|
|
27
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 9 },
|
|
28
|
+
{ multiplier: 2, type: constants_1.BONUS_WORD, x: 8, y: 8 },
|
|
29
|
+
{ multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 3, y: 3 },
|
|
30
|
+
{ multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 3, y: 7 },
|
|
31
|
+
{ multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 7, y: 3 },
|
|
32
|
+
{ multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 7, y: 7 },
|
|
33
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 10 },
|
|
34
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 9 },
|
|
35
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 10 },
|
|
36
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 4 },
|
|
37
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 9, y: 5 },
|
|
38
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 6 },
|
|
39
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 0 },
|
|
40
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 5, y: 1 },
|
|
41
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 0 },
|
|
42
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 4 },
|
|
43
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 5 },
|
|
44
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 6 },
|
|
45
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 4 },
|
|
46
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 4 },
|
|
47
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 6 },
|
|
48
|
+
{ multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 6 },
|
|
49
|
+
],
|
|
50
|
+
};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Config } from '@scrabble-solver/types';
|
|
2
2
|
export declare const englishGbScrabble: Config;
|
|
3
|
+
export declare const englishGbScrabbleDuel: Config;
|
|
3
4
|
export declare const englishGbSuperScrabble: Config;
|
|
4
5
|
export declare const englishGbLiteraki: Config;
|
|
5
6
|
export declare const englishUsScrabble: Config;
|
|
7
|
+
export declare const englishUsScrabbleDuel: Config;
|
|
6
8
|
export declare const englishUsSuperScrabble: Config;
|
|
7
9
|
export declare const englishUsLiteraki: Config;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* eslint-disable max-lines */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.englishUsLiteraki = exports.englishUsSuperScrabble = exports.englishUsScrabble = exports.englishGbLiteraki = exports.englishGbSuperScrabble = exports.englishGbScrabble = void 0;
|
|
4
|
+
exports.englishUsLiteraki = exports.englishUsSuperScrabble = exports.englishUsScrabbleDuel = exports.englishUsScrabble = exports.englishGbLiteraki = exports.englishGbSuperScrabble = exports.englishGbScrabbleDuel = exports.englishGbScrabble = void 0;
|
|
5
5
|
const types_1 = require("@scrabble-solver/types");
|
|
6
6
|
const games_1 = require("../games");
|
|
7
7
|
exports.englishGbScrabble = new types_1.Config({
|
|
@@ -36,6 +36,38 @@ exports.englishGbScrabble = new types_1.Config({
|
|
|
36
36
|
{ character: 'z', count: 1, score: 10 },
|
|
37
37
|
],
|
|
38
38
|
});
|
|
39
|
+
exports.englishGbScrabbleDuel = new types_1.Config({
|
|
40
|
+
...games_1.scrabbleDuel,
|
|
41
|
+
locale: types_1.Locale.EN_GB,
|
|
42
|
+
tiles: [
|
|
43
|
+
{ character: 'a', count: 9, score: 1 },
|
|
44
|
+
{ character: 'b', count: 2, score: 3 },
|
|
45
|
+
{ character: 'c', count: 2, score: 3 },
|
|
46
|
+
{ character: 'd', count: 4, score: 2 },
|
|
47
|
+
{ character: 'e', count: 12, score: 1 },
|
|
48
|
+
{ character: 'f', count: 2, score: 4 },
|
|
49
|
+
{ character: 'g', count: 3, score: 2 },
|
|
50
|
+
{ character: 'h', count: 2, score: 4 },
|
|
51
|
+
{ character: 'i', count: 9, score: 1 },
|
|
52
|
+
{ character: 'j', count: 1, score: 8 },
|
|
53
|
+
{ character: 'k', count: 1, score: 5 },
|
|
54
|
+
{ character: 'l', count: 4, score: 1 },
|
|
55
|
+
{ character: 'm', count: 2, score: 3 },
|
|
56
|
+
{ character: 'n', count: 6, score: 1 },
|
|
57
|
+
{ character: 'o', count: 8, score: 1 },
|
|
58
|
+
{ character: 'p', count: 2, score: 3 },
|
|
59
|
+
{ character: 'q', count: 1, score: 10 },
|
|
60
|
+
{ character: 'r', count: 6, score: 1 },
|
|
61
|
+
{ character: 's', count: 4, score: 1 },
|
|
62
|
+
{ character: 't', count: 6, score: 1 },
|
|
63
|
+
{ character: 'u', count: 4, score: 1 },
|
|
64
|
+
{ character: 'v', count: 2, score: 4 },
|
|
65
|
+
{ character: 'w', count: 2, score: 4 },
|
|
66
|
+
{ character: 'x', count: 1, score: 8 },
|
|
67
|
+
{ character: 'y', count: 2, score: 4 },
|
|
68
|
+
{ character: 'z', count: 1, score: 10 },
|
|
69
|
+
],
|
|
70
|
+
});
|
|
39
71
|
exports.englishGbSuperScrabble = new types_1.Config({
|
|
40
72
|
...games_1.superScrabble,
|
|
41
73
|
locale: types_1.Locale.EN_GB,
|
|
@@ -133,6 +165,38 @@ exports.englishUsScrabble = new types_1.Config({
|
|
|
133
165
|
{ character: 'z', count: 1, score: 10 },
|
|
134
166
|
],
|
|
135
167
|
});
|
|
168
|
+
exports.englishUsScrabbleDuel = new types_1.Config({
|
|
169
|
+
...games_1.scrabbleDuel,
|
|
170
|
+
locale: types_1.Locale.EN_US,
|
|
171
|
+
tiles: [
|
|
172
|
+
{ character: 'a', count: 9, score: 1 },
|
|
173
|
+
{ character: 'b', count: 2, score: 3 },
|
|
174
|
+
{ character: 'c', count: 2, score: 3 },
|
|
175
|
+
{ character: 'd', count: 4, score: 2 },
|
|
176
|
+
{ character: 'e', count: 12, score: 1 },
|
|
177
|
+
{ character: 'f', count: 2, score: 4 },
|
|
178
|
+
{ character: 'g', count: 3, score: 2 },
|
|
179
|
+
{ character: 'h', count: 2, score: 4 },
|
|
180
|
+
{ character: 'i', count: 9, score: 1 },
|
|
181
|
+
{ character: 'j', count: 1, score: 8 },
|
|
182
|
+
{ character: 'k', count: 1, score: 5 },
|
|
183
|
+
{ character: 'l', count: 4, score: 1 },
|
|
184
|
+
{ character: 'm', count: 2, score: 3 },
|
|
185
|
+
{ character: 'n', count: 6, score: 1 },
|
|
186
|
+
{ character: 'o', count: 8, score: 1 },
|
|
187
|
+
{ character: 'p', count: 2, score: 3 },
|
|
188
|
+
{ character: 'q', count: 1, score: 10 },
|
|
189
|
+
{ character: 'r', count: 6, score: 1 },
|
|
190
|
+
{ character: 's', count: 4, score: 1 },
|
|
191
|
+
{ character: 't', count: 6, score: 1 },
|
|
192
|
+
{ character: 'u', count: 4, score: 1 },
|
|
193
|
+
{ character: 'v', count: 2, score: 4 },
|
|
194
|
+
{ character: 'w', count: 2, score: 4 },
|
|
195
|
+
{ character: 'x', count: 1, score: 8 },
|
|
196
|
+
{ character: 'y', count: 2, score: 4 },
|
|
197
|
+
{ character: 'z', count: 1, score: 10 },
|
|
198
|
+
],
|
|
199
|
+
});
|
|
136
200
|
exports.englishUsSuperScrabble = new types_1.Config({
|
|
137
201
|
...games_1.superScrabble,
|
|
138
202
|
locale: types_1.Locale.EN_US,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrabble-solver/configs",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.10",
|
|
4
4
|
"description": "Scrabble Solver 2 - Configs",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"clean": "rimraf build/"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@scrabble-solver/constants": "^2.15.
|
|
27
|
-
"@scrabble-solver/types": "^2.15.
|
|
26
|
+
"@scrabble-solver/constants": "^2.15.10",
|
|
27
|
+
"@scrabble-solver/types": "^2.15.10"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "dab5a817c1bde1a3ebf8e8907215adf12af5cb27"
|
|
30
30
|
}
|
package/src/games/index.ts
CHANGED
package/src/games/kelimelik.ts
CHANGED
package/src/games/literaki.ts
CHANGED
package/src/games/scrabble.ts
CHANGED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
|
|
2
|
+
import { Game } from '@scrabble-solver/types';
|
|
3
|
+
|
|
4
|
+
export const scrabbleDuel = {
|
|
5
|
+
bingoScore: 50,
|
|
6
|
+
blankScore: 0,
|
|
7
|
+
blanksCount: 2,
|
|
8
|
+
boardHeight: 11,
|
|
9
|
+
boardWidth: 11,
|
|
10
|
+
game: Game.ScrabbleDuel,
|
|
11
|
+
name: 'Scrabble Duel',
|
|
12
|
+
rackSize: 7,
|
|
13
|
+
bonuses: [
|
|
14
|
+
{ multiplier: 2, type: BONUS_WORD, x: 5, y: 5 },
|
|
15
|
+
|
|
16
|
+
{ multiplier: 3, type: BONUS_WORD, x: 0, y: 0 },
|
|
17
|
+
{ multiplier: 3, type: BONUS_WORD, x: 10, y: 0 },
|
|
18
|
+
{ multiplier: 3, type: BONUS_WORD, x: 0, y: 10 },
|
|
19
|
+
{ multiplier: 3, type: BONUS_WORD, x: 10, y: 10 },
|
|
20
|
+
|
|
21
|
+
{ multiplier: 2, type: BONUS_WORD, x: 1, y: 1 },
|
|
22
|
+
{ multiplier: 2, type: BONUS_WORD, x: 2, y: 2 },
|
|
23
|
+
{ multiplier: 2, type: BONUS_WORD, x: 9, y: 1 },
|
|
24
|
+
{ multiplier: 2, type: BONUS_WORD, x: 8, y: 2 },
|
|
25
|
+
{ multiplier: 2, type: BONUS_WORD, x: 1, y: 9 },
|
|
26
|
+
{ multiplier: 2, type: BONUS_WORD, x: 2, y: 8 },
|
|
27
|
+
{ multiplier: 2, type: BONUS_WORD, x: 9, y: 9 },
|
|
28
|
+
{ multiplier: 2, type: BONUS_WORD, x: 8, y: 8 },
|
|
29
|
+
|
|
30
|
+
{ multiplier: 3, type: BONUS_CHARACTER, x: 3, y: 3 },
|
|
31
|
+
{ multiplier: 3, type: BONUS_CHARACTER, x: 3, y: 7 },
|
|
32
|
+
{ multiplier: 3, type: BONUS_CHARACTER, x: 7, y: 3 },
|
|
33
|
+
{ multiplier: 3, type: BONUS_CHARACTER, x: 7, y: 7 },
|
|
34
|
+
|
|
35
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 10 },
|
|
36
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 5, y: 9 },
|
|
37
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 10 },
|
|
38
|
+
|
|
39
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 10, y: 4 },
|
|
40
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 9, y: 5 },
|
|
41
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 10, y: 6 },
|
|
42
|
+
|
|
43
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 0 },
|
|
44
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 5, y: 1 },
|
|
45
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 0 },
|
|
46
|
+
|
|
47
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 0, y: 4 },
|
|
48
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 1, y: 5 },
|
|
49
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 0, y: 6 },
|
|
50
|
+
|
|
51
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 4 },
|
|
52
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 4 },
|
|
53
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 6 },
|
|
54
|
+
{ multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 6 },
|
|
55
|
+
],
|
|
56
|
+
};
|
package/src/languages/english.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { Config, Locale } from '@scrabble-solver/types';
|
|
4
4
|
|
|
5
|
-
import { literaki, scrabble, superScrabble } from '../games';
|
|
5
|
+
import { literaki, scrabble, scrabbleDuel, superScrabble } from '../games';
|
|
6
6
|
|
|
7
7
|
export const englishGbScrabble = new Config({
|
|
8
8
|
...scrabble,
|
|
@@ -37,6 +37,39 @@ export const englishGbScrabble = new Config({
|
|
|
37
37
|
],
|
|
38
38
|
});
|
|
39
39
|
|
|
40
|
+
export const englishGbScrabbleDuel = new Config({
|
|
41
|
+
...scrabbleDuel,
|
|
42
|
+
locale: Locale.EN_GB,
|
|
43
|
+
tiles: [
|
|
44
|
+
{ character: 'a', count: 9, score: 1 },
|
|
45
|
+
{ character: 'b', count: 2, score: 3 },
|
|
46
|
+
{ character: 'c', count: 2, score: 3 },
|
|
47
|
+
{ character: 'd', count: 4, score: 2 },
|
|
48
|
+
{ character: 'e', count: 12, score: 1 },
|
|
49
|
+
{ character: 'f', count: 2, score: 4 },
|
|
50
|
+
{ character: 'g', count: 3, score: 2 },
|
|
51
|
+
{ character: 'h', count: 2, score: 4 },
|
|
52
|
+
{ character: 'i', count: 9, score: 1 },
|
|
53
|
+
{ character: 'j', count: 1, score: 8 },
|
|
54
|
+
{ character: 'k', count: 1, score: 5 },
|
|
55
|
+
{ character: 'l', count: 4, score: 1 },
|
|
56
|
+
{ character: 'm', count: 2, score: 3 },
|
|
57
|
+
{ character: 'n', count: 6, score: 1 },
|
|
58
|
+
{ character: 'o', count: 8, score: 1 },
|
|
59
|
+
{ character: 'p', count: 2, score: 3 },
|
|
60
|
+
{ character: 'q', count: 1, score: 10 },
|
|
61
|
+
{ character: 'r', count: 6, score: 1 },
|
|
62
|
+
{ character: 's', count: 4, score: 1 },
|
|
63
|
+
{ character: 't', count: 6, score: 1 },
|
|
64
|
+
{ character: 'u', count: 4, score: 1 },
|
|
65
|
+
{ character: 'v', count: 2, score: 4 },
|
|
66
|
+
{ character: 'w', count: 2, score: 4 },
|
|
67
|
+
{ character: 'x', count: 1, score: 8 },
|
|
68
|
+
{ character: 'y', count: 2, score: 4 },
|
|
69
|
+
{ character: 'z', count: 1, score: 10 },
|
|
70
|
+
],
|
|
71
|
+
});
|
|
72
|
+
|
|
40
73
|
export const englishGbSuperScrabble = new Config({
|
|
41
74
|
...superScrabble,
|
|
42
75
|
locale: Locale.EN_GB,
|
|
@@ -137,6 +170,39 @@ export const englishUsScrabble = new Config({
|
|
|
137
170
|
],
|
|
138
171
|
});
|
|
139
172
|
|
|
173
|
+
export const englishUsScrabbleDuel = new Config({
|
|
174
|
+
...scrabbleDuel,
|
|
175
|
+
locale: Locale.EN_US,
|
|
176
|
+
tiles: [
|
|
177
|
+
{ character: 'a', count: 9, score: 1 },
|
|
178
|
+
{ character: 'b', count: 2, score: 3 },
|
|
179
|
+
{ character: 'c', count: 2, score: 3 },
|
|
180
|
+
{ character: 'd', count: 4, score: 2 },
|
|
181
|
+
{ character: 'e', count: 12, score: 1 },
|
|
182
|
+
{ character: 'f', count: 2, score: 4 },
|
|
183
|
+
{ character: 'g', count: 3, score: 2 },
|
|
184
|
+
{ character: 'h', count: 2, score: 4 },
|
|
185
|
+
{ character: 'i', count: 9, score: 1 },
|
|
186
|
+
{ character: 'j', count: 1, score: 8 },
|
|
187
|
+
{ character: 'k', count: 1, score: 5 },
|
|
188
|
+
{ character: 'l', count: 4, score: 1 },
|
|
189
|
+
{ character: 'm', count: 2, score: 3 },
|
|
190
|
+
{ character: 'n', count: 6, score: 1 },
|
|
191
|
+
{ character: 'o', count: 8, score: 1 },
|
|
192
|
+
{ character: 'p', count: 2, score: 3 },
|
|
193
|
+
{ character: 'q', count: 1, score: 10 },
|
|
194
|
+
{ character: 'r', count: 6, score: 1 },
|
|
195
|
+
{ character: 's', count: 4, score: 1 },
|
|
196
|
+
{ character: 't', count: 6, score: 1 },
|
|
197
|
+
{ character: 'u', count: 4, score: 1 },
|
|
198
|
+
{ character: 'v', count: 2, score: 4 },
|
|
199
|
+
{ character: 'w', count: 2, score: 4 },
|
|
200
|
+
{ character: 'x', count: 1, score: 8 },
|
|
201
|
+
{ character: 'y', count: 2, score: 4 },
|
|
202
|
+
{ character: 'z', count: 1, score: 10 },
|
|
203
|
+
],
|
|
204
|
+
});
|
|
205
|
+
|
|
140
206
|
export const englishUsSuperScrabble = new Config({
|
|
141
207
|
...superScrabble,
|
|
142
208
|
locale: Locale.EN_US,
|