@scrabble-solver/configs 2.15.10 → 2.15.12

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.
@@ -1,4 +1,5 @@
1
1
  export * from './kelimelik';
2
+ export * from './letterLeague';
2
3
  export * from './literaki';
3
4
  export * from './scrabble';
4
5
  export * from './scrabbleDuel';
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./kelimelik"), exports);
18
+ __exportStar(require("./letterLeague"), exports);
18
19
  __exportStar(require("./literaki"), exports);
19
20
  __exportStar(require("./scrabble"), exports);
20
21
  __exportStar(require("./scrabbleDuel"), exports);
@@ -1,6 +1,8 @@
1
1
  import { Game } from '@scrabble-solver/types';
2
2
  export declare const kelimelik: {
3
- bingoScore: number;
3
+ bingo: {
4
+ score: number;
5
+ };
4
6
  blankScore: number;
5
7
  blanksCount: number;
6
8
  boardHeight: number;
@@ -4,7 +4,7 @@ exports.kelimelik = void 0;
4
4
  const constants_1 = require("@scrabble-solver/constants");
5
5
  const types_1 = require("@scrabble-solver/types");
6
6
  exports.kelimelik = {
7
- bingoScore: 30,
7
+ bingo: { score: 30 },
8
8
  blankScore: 0,
9
9
  blanksCount: 2,
10
10
  boardHeight: 15,
@@ -0,0 +1,19 @@
1
+ import { Game } from '@scrabble-solver/types';
2
+ export declare const letterLeague: {
3
+ bingo: {
4
+ multiplier: number;
5
+ };
6
+ blankScore: number;
7
+ blanksCount: number;
8
+ boardHeight: number;
9
+ boardWidth: number;
10
+ game: Game;
11
+ name: string;
12
+ rackSize: number;
13
+ bonuses: {
14
+ multiplier: number;
15
+ type: string;
16
+ x: number;
17
+ y: number;
18
+ }[];
19
+ };
@@ -0,0 +1,161 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.letterLeague = void 0;
4
+ const constants_1 = require("@scrabble-solver/constants");
5
+ const types_1 = require("@scrabble-solver/types");
6
+ exports.letterLeague = {
7
+ bingo: { multiplier: 2 },
8
+ blankScore: 0,
9
+ blanksCount: 2,
10
+ boardHeight: 19,
11
+ boardWidth: 27,
12
+ game: types_1.Game.LetterLeague,
13
+ name: 'Letter League',
14
+ rackSize: 7,
15
+ bonuses: [
16
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 0 },
17
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 0 },
18
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 0 },
19
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 0 },
20
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 15, y: 0 },
21
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 18, y: 0 },
22
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 0 },
23
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 23, y: 0 },
24
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 1 },
25
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 1 },
26
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 1 },
27
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 1 },
28
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 17, y: 1 },
29
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 21, y: 1 },
30
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 25, y: 1 },
31
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 2 },
32
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 2 },
33
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 2 },
34
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 2 },
35
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 16, y: 2 },
36
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 18, y: 2 },
37
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 20, y: 2 },
38
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 22, y: 2 },
39
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 3 },
40
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 3 },
41
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 3 },
42
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 3 },
43
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 3 },
44
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 3 },
45
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 3 },
46
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 19, y: 3 },
47
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 24, y: 3 },
48
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 25, y: 3 },
49
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 26, y: 3 },
50
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 4 },
51
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 4 },
52
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 4 },
53
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 4 },
54
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 16, y: 4 },
55
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 18, y: 4 },
56
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 20, y: 4 },
57
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 22, y: 4 },
58
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 5 },
59
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 5 },
60
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 5 },
61
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 5 },
62
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 17, y: 5 },
63
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 21, y: 5 },
64
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 25, y: 5 },
65
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 6 },
66
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 6 },
67
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 6 },
68
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 6 },
69
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 15, y: 6 },
70
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 18, y: 6 },
71
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 6 },
72
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 23, y: 6 },
73
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 7 },
74
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 7 },
75
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 16, y: 7 },
76
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 22, y: 7 },
77
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 0, y: 8 },
78
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 2, y: 8 },
79
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 7, y: 8 },
80
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 12, y: 8 },
81
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 14, y: 8 },
82
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 19, y: 8 },
83
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 24, y: 8 },
84
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 26, y: 8 },
85
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 3, y: 9 },
86
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 7, y: 9 },
87
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 11, y: 9 },
88
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 15, y: 9 },
89
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 19, y: 9 },
90
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 23, y: 9 },
91
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 0, y: 10 },
92
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 2, y: 10 },
93
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 7, y: 10 },
94
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 12, y: 10 },
95
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 14, y: 10 },
96
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 19, y: 10 },
97
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 24, y: 10 },
98
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 26, y: 10 },
99
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 4, y: 11 },
100
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 10, y: 11 },
101
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 16, y: 11 },
102
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 22, y: 11 },
103
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 12 },
104
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 12 },
105
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 12 },
106
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 12 },
107
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 15, y: 12 },
108
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 18, y: 12 },
109
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 12 },
110
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 23, y: 12 },
111
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 13 },
112
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 13 },
113
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 13 },
114
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 13 },
115
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 17, y: 13 },
116
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 21, y: 13 },
117
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 25, y: 13 },
118
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 14 },
119
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 14 },
120
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 14 },
121
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 14 },
122
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 16, y: 14 },
123
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 18, y: 14 },
124
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 20, y: 14 },
125
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 22, y: 14 },
126
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 0, y: 15 },
127
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 1, y: 15 },
128
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 2, y: 15 },
129
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 7, y: 15 },
130
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 12, y: 15 },
131
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 13, y: 15 },
132
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 14, y: 15 },
133
+ { multiplier: 3, type: constants_1.BONUS_WORD, x: 19, y: 15 },
134
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 24, y: 15 },
135
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 25, y: 15 },
136
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 26, y: 15 },
137
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 4, y: 16 },
138
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 6, y: 16 },
139
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 8, y: 16 },
140
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 10, y: 16 },
141
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 16, y: 16 },
142
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 18, y: 16 },
143
+ { multiplier: 3, type: constants_1.BONUS_CHARACTER, x: 20, y: 16 },
144
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 22, y: 16 },
145
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 1, y: 17 },
146
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 5, y: 17 },
147
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 9, y: 17 },
148
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 13, y: 17 },
149
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 17, y: 17 },
150
+ { multiplier: 2, type: constants_1.BONUS_WORD, x: 21, y: 17 },
151
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 25, y: 17 },
152
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 3, y: 18 },
153
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 6, y: 18 },
154
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 8, y: 18 },
155
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 11, y: 18 },
156
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 15, y: 18 },
157
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 18, y: 18 },
158
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 20, y: 18 },
159
+ { multiplier: 2, type: constants_1.BONUS_CHARACTER, x: 23, y: 18 },
160
+ ],
161
+ };
@@ -1,6 +1,8 @@
1
1
  import { Game } from '@scrabble-solver/types';
2
2
  export declare const literaki: {
3
- bingoScore: number;
3
+ bingo: {
4
+ score: number;
5
+ };
4
6
  blankScore: number;
5
7
  blanksCount: number;
6
8
  boardHeight: number;
@@ -4,7 +4,7 @@ exports.literaki = void 0;
4
4
  const constants_1 = require("@scrabble-solver/constants");
5
5
  const types_1 = require("@scrabble-solver/types");
6
6
  exports.literaki = {
7
- bingoScore: 50,
7
+ bingo: { score: 50 },
8
8
  blankScore: 0,
9
9
  blanksCount: 2,
10
10
  boardHeight: 15,
@@ -1,6 +1,8 @@
1
1
  import { Game } from '@scrabble-solver/types';
2
2
  export declare const scrabble: {
3
- bingoScore: number;
3
+ bingo: {
4
+ score: number;
5
+ };
4
6
  blankScore: number;
5
7
  blanksCount: number;
6
8
  boardHeight: number;
@@ -4,7 +4,7 @@ exports.scrabble = void 0;
4
4
  const constants_1 = require("@scrabble-solver/constants");
5
5
  const types_1 = require("@scrabble-solver/types");
6
6
  exports.scrabble = {
7
- bingoScore: 50,
7
+ bingo: { score: 50 },
8
8
  blankScore: 0,
9
9
  blanksCount: 2,
10
10
  boardHeight: 15,
@@ -1,6 +1,8 @@
1
1
  import { Game } from '@scrabble-solver/types';
2
2
  export declare const scrabbleDuel: {
3
- bingoScore: number;
3
+ bingo: {
4
+ score: number;
5
+ };
4
6
  blankScore: number;
5
7
  blanksCount: number;
6
8
  boardHeight: number;
@@ -4,7 +4,7 @@ exports.scrabbleDuel = void 0;
4
4
  const constants_1 = require("@scrabble-solver/constants");
5
5
  const types_1 = require("@scrabble-solver/types");
6
6
  exports.scrabbleDuel = {
7
- bingoScore: 50,
7
+ bingo: { score: 50 },
8
8
  blankScore: 0,
9
9
  blanksCount: 2,
10
10
  boardHeight: 11,
@@ -1,6 +1,8 @@
1
1
  import { Game } from '@scrabble-solver/types';
2
2
  export declare const superScrabble: {
3
- bingoScore: number;
3
+ bingo: {
4
+ score: number;
5
+ };
4
6
  blankScore: number;
5
7
  blanksCount: number;
6
8
  boardHeight: number;
@@ -4,7 +4,7 @@ exports.superScrabble = void 0;
4
4
  const constants_1 = require("@scrabble-solver/constants");
5
5
  const types_1 = require("@scrabble-solver/types");
6
6
  exports.superScrabble = {
7
- bingoScore: 50,
7
+ bingo: { score: 50 },
8
8
  blankScore: 0,
9
9
  blanksCount: 4,
10
10
  boardHeight: 21,
@@ -1,2 +1,2 @@
1
- import { Config, Game, Locale } from '@scrabble-solver/types';
1
+ import { type Config, type Game, type Locale } from '@scrabble-solver/types';
2
2
  export declare const getConfig: (game: Game, locale: Locale) => Config;
@@ -1,2 +1,2 @@
1
- import { Game, Locale } from '@scrabble-solver/types';
1
+ import { type Game, type Locale } from '@scrabble-solver/types';
2
2
  export declare const hasConfig: (game: Game, locale: Locale) => boolean;
@@ -1,9 +1,11 @@
1
1
  import { Config } from '@scrabble-solver/types';
2
+ export declare const englishGbLetterLeague: Config;
3
+ export declare const englishGbLiteraki: Config;
2
4
  export declare const englishGbScrabble: Config;
3
5
  export declare const englishGbScrabbleDuel: Config;
4
6
  export declare const englishGbSuperScrabble: Config;
5
- export declare const englishGbLiteraki: Config;
7
+ export declare const englishUsLetterLeague: Config;
8
+ export declare const englishUsLiteraki: Config;
6
9
  export declare const englishUsScrabble: Config;
7
10
  export declare const englishUsScrabbleDuel: Config;
8
11
  export declare const englishUsSuperScrabble: Config;
9
- export declare const englishUsLiteraki: Config;
@@ -1,9 +1,74 @@
1
1
  "use strict";
2
2
  /* eslint-disable max-lines */
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.englishUsLiteraki = exports.englishUsSuperScrabble = exports.englishUsScrabbleDuel = exports.englishUsScrabble = exports.englishGbLiteraki = exports.englishGbSuperScrabble = exports.englishGbScrabbleDuel = exports.englishGbScrabble = void 0;
4
+ exports.englishUsSuperScrabble = exports.englishUsScrabbleDuel = exports.englishUsScrabble = exports.englishUsLiteraki = exports.englishUsLetterLeague = exports.englishGbSuperScrabble = exports.englishGbScrabbleDuel = exports.englishGbScrabble = exports.englishGbLiteraki = exports.englishGbLetterLeague = void 0;
5
5
  const types_1 = require("@scrabble-solver/types");
6
6
  const games_1 = require("../games");
7
+ exports.englishGbLetterLeague = new types_1.Config({
8
+ ...games_1.letterLeague,
9
+ locale: types_1.Locale.EN_GB,
10
+ tiles: [
11
+ { character: 'a', score: 1 },
12
+ { character: 'b', score: 3 },
13
+ { character: 'c', score: 3 },
14
+ { character: 'd', score: 2 },
15
+ { character: 'e', score: 1 },
16
+ { character: 'f', score: 4 },
17
+ { character: 'g', score: 2 },
18
+ { character: 'h', score: 4 },
19
+ { character: 'i', score: 1 },
20
+ { character: 'j', score: 8 },
21
+ { character: 'k', score: 5 },
22
+ { character: 'l', score: 2 },
23
+ { character: 'm', score: 3 },
24
+ { character: 'n', score: 1 },
25
+ { character: 'o', score: 1 },
26
+ { character: 'p', score: 3 },
27
+ { character: 'q', score: 10 },
28
+ { character: 'r', score: 1 },
29
+ { character: 's', score: 1 },
30
+ { character: 't', score: 1 },
31
+ { character: 'u', score: 1 },
32
+ { character: 'v', score: 4 },
33
+ { character: 'w', score: 4 },
34
+ { character: 'x', score: 8 },
35
+ { character: 'y', score: 4 },
36
+ { character: 'z', score: 10 },
37
+ ],
38
+ });
39
+ exports.englishGbLiteraki = new types_1.Config({
40
+ ...games_1.literaki,
41
+ locale: types_1.Locale.EN_GB,
42
+ name: 'Literaxx',
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
+ });
7
72
  exports.englishGbScrabble = new types_1.Config({
8
73
  ...games_1.scrabble,
9
74
  locale: types_1.Locale.EN_GB,
@@ -100,9 +165,41 @@ exports.englishGbSuperScrabble = new types_1.Config({
100
165
  { character: 'z', count: 2, score: 10 },
101
166
  ],
102
167
  });
103
- exports.englishGbLiteraki = new types_1.Config({
168
+ exports.englishUsLetterLeague = new types_1.Config({
169
+ ...games_1.letterLeague,
170
+ locale: types_1.Locale.EN_US,
171
+ tiles: [
172
+ { character: 'a', score: 1 },
173
+ { character: 'b', score: 3 },
174
+ { character: 'c', score: 3 },
175
+ { character: 'd', score: 2 },
176
+ { character: 'e', score: 1 },
177
+ { character: 'f', score: 4 },
178
+ { character: 'g', score: 2 },
179
+ { character: 'h', score: 4 },
180
+ { character: 'i', score: 1 },
181
+ { character: 'j', score: 8 },
182
+ { character: 'k', score: 5 },
183
+ { character: 'l', score: 2 },
184
+ { character: 'm', score: 3 },
185
+ { character: 'n', score: 1 },
186
+ { character: 'o', score: 1 },
187
+ { character: 'p', score: 3 },
188
+ { character: 'q', score: 10 },
189
+ { character: 'r', score: 1 },
190
+ { character: 's', score: 1 },
191
+ { character: 't', score: 1 },
192
+ { character: 'u', score: 1 },
193
+ { character: 'v', score: 4 },
194
+ { character: 'w', score: 4 },
195
+ { character: 'x', score: 8 },
196
+ { character: 'y', score: 4 },
197
+ { character: 'z', score: 10 },
198
+ ],
199
+ });
200
+ exports.englishUsLiteraki = new types_1.Config({
104
201
  ...games_1.literaki,
105
- locale: types_1.Locale.EN_GB,
202
+ locale: types_1.Locale.EN_US,
106
203
  name: 'Literaxx',
107
204
  tiles: [
108
205
  { character: 'a', count: 9, score: 1 },
@@ -229,36 +326,3 @@ exports.englishUsSuperScrabble = new types_1.Config({
229
326
  { character: 'z', count: 2, score: 10 },
230
327
  ],
231
328
  });
232
- exports.englishUsLiteraki = new types_1.Config({
233
- ...games_1.literaki,
234
- locale: types_1.Locale.EN_US,
235
- name: 'Literaxx',
236
- tiles: [
237
- { character: 'a', count: 9, score: 1 },
238
- { character: 'b', count: 2, score: 3 },
239
- { character: 'c', count: 2, score: 3 },
240
- { character: 'd', count: 4, score: 2 },
241
- { character: 'e', count: 12, score: 1 },
242
- { character: 'f', count: 2, score: 4 },
243
- { character: 'g', count: 3, score: 2 },
244
- { character: 'h', count: 2, score: 4 },
245
- { character: 'i', count: 9, score: 1 },
246
- { character: 'j', count: 1, score: 8 },
247
- { character: 'k', count: 1, score: 5 },
248
- { character: 'l', count: 4, score: 1 },
249
- { character: 'm', count: 2, score: 3 },
250
- { character: 'n', count: 6, score: 1 },
251
- { character: 'o', count: 8, score: 1 },
252
- { character: 'p', count: 2, score: 3 },
253
- { character: 'q', count: 1, score: 10 },
254
- { character: 'r', count: 6, score: 1 },
255
- { character: 's', count: 4, score: 1 },
256
- { character: 't', count: 6, score: 1 },
257
- { character: 'u', count: 4, score: 1 },
258
- { character: 'v', count: 2, score: 4 },
259
- { character: 'w', count: 2, score: 4 },
260
- { character: 'x', count: 1, score: 8 },
261
- { character: 'y', count: 2, score: 4 },
262
- { character: 'z', count: 1, score: 10 },
263
- ],
264
- });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/configs",
3
- "version": "2.15.10",
3
+ "version": "2.15.12",
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.10",
27
- "@scrabble-solver/types": "^2.15.10"
26
+ "@scrabble-solver/constants": "^2.15.12",
27
+ "@scrabble-solver/types": "^2.15.12"
28
28
  },
29
- "gitHead": "dab5a817c1bde1a3ebf8e8907215adf12af5cb27"
29
+ "gitHead": "1eeef2b2975e63b195885dd2636c53624d300c6b"
30
30
  }
@@ -1,4 +1,5 @@
1
1
  export * from './kelimelik';
2
+ export * from './letterLeague';
2
3
  export * from './literaki';
3
4
  export * from './scrabble';
4
5
  export * from './scrabbleDuel';
@@ -2,7 +2,7 @@ import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
2
2
  import { Game } from '@scrabble-solver/types';
3
3
 
4
4
  export const kelimelik = {
5
- bingoScore: 30,
5
+ bingo: { score: 30 },
6
6
  blankScore: 0,
7
7
  blanksCount: 2,
8
8
  boardHeight: 15,
@@ -0,0 +1,177 @@
1
+ import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
2
+ import { Game } from '@scrabble-solver/types';
3
+
4
+ export const letterLeague = {
5
+ bingo: { multiplier: 2 },
6
+ blankScore: 0,
7
+ blanksCount: 2,
8
+ boardHeight: 19,
9
+ boardWidth: 27,
10
+ game: Game.LetterLeague,
11
+ name: 'Letter League',
12
+ rackSize: 7,
13
+ bonuses: [
14
+ { multiplier: 2, type: BONUS_CHARACTER, x: 3, y: 0 },
15
+ { multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 0 },
16
+ { multiplier: 2, type: BONUS_CHARACTER, x: 8, y: 0 },
17
+ { multiplier: 2, type: BONUS_CHARACTER, x: 11, y: 0 },
18
+ { multiplier: 2, type: BONUS_CHARACTER, x: 15, y: 0 },
19
+ { multiplier: 2, type: BONUS_CHARACTER, x: 18, y: 0 },
20
+ { multiplier: 2, type: BONUS_CHARACTER, x: 20, y: 0 },
21
+ { multiplier: 2, type: BONUS_CHARACTER, x: 23, y: 0 },
22
+
23
+ { multiplier: 2, type: BONUS_CHARACTER, x: 1, y: 1 },
24
+ { multiplier: 2, type: BONUS_WORD, x: 5, y: 1 },
25
+ { multiplier: 2, type: BONUS_WORD, x: 9, y: 1 },
26
+ { multiplier: 2, type: BONUS_CHARACTER, x: 13, y: 1 },
27
+ { multiplier: 2, type: BONUS_WORD, x: 17, y: 1 },
28
+ { multiplier: 2, type: BONUS_WORD, x: 21, y: 1 },
29
+ { multiplier: 2, type: BONUS_CHARACTER, x: 25, y: 1 },
30
+
31
+ { multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 2 },
32
+ { multiplier: 3, type: BONUS_CHARACTER, x: 6, y: 2 },
33
+ { multiplier: 3, type: BONUS_CHARACTER, x: 8, y: 2 },
34
+ { multiplier: 2, type: BONUS_CHARACTER, x: 10, y: 2 },
35
+ { multiplier: 2, type: BONUS_CHARACTER, x: 16, y: 2 },
36
+ { multiplier: 3, type: BONUS_CHARACTER, x: 18, y: 2 },
37
+ { multiplier: 3, type: BONUS_CHARACTER, x: 20, y: 2 },
38
+ { multiplier: 2, type: BONUS_CHARACTER, x: 22, y: 2 },
39
+
40
+ { multiplier: 2, type: BONUS_CHARACTER, x: 0, y: 3 },
41
+ { multiplier: 2, type: BONUS_WORD, x: 1, y: 3 },
42
+ { multiplier: 2, type: BONUS_CHARACTER, x: 2, y: 3 },
43
+ { multiplier: 3, type: BONUS_WORD, x: 7, y: 3 },
44
+ { multiplier: 2, type: BONUS_CHARACTER, x: 12, y: 3 },
45
+ { multiplier: 2, type: BONUS_WORD, x: 13, y: 3 },
46
+ { multiplier: 2, type: BONUS_CHARACTER, x: 14, y: 3 },
47
+ { multiplier: 3, type: BONUS_WORD, x: 19, y: 3 },
48
+ { multiplier: 2, type: BONUS_CHARACTER, x: 24, y: 3 },
49
+ { multiplier: 2, type: BONUS_WORD, x: 25, y: 3 },
50
+ { multiplier: 2, type: BONUS_CHARACTER, x: 26, y: 3 },
51
+
52
+ { multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 4 },
53
+ { multiplier: 3, type: BONUS_CHARACTER, x: 6, y: 4 },
54
+ { multiplier: 3, type: BONUS_CHARACTER, x: 8, y: 4 },
55
+ { multiplier: 2, type: BONUS_CHARACTER, x: 10, y: 4 },
56
+ { multiplier: 2, type: BONUS_CHARACTER, x: 16, y: 4 },
57
+ { multiplier: 3, type: BONUS_CHARACTER, x: 18, y: 4 },
58
+ { multiplier: 3, type: BONUS_CHARACTER, x: 20, y: 4 },
59
+ { multiplier: 2, type: BONUS_CHARACTER, x: 22, y: 4 },
60
+
61
+ { multiplier: 2, type: BONUS_CHARACTER, x: 1, y: 5 },
62
+ { multiplier: 2, type: BONUS_WORD, x: 5, y: 5 },
63
+ { multiplier: 2, type: BONUS_WORD, x: 9, y: 5 },
64
+ { multiplier: 2, type: BONUS_CHARACTER, x: 13, y: 5 },
65
+ { multiplier: 2, type: BONUS_WORD, x: 17, y: 5 },
66
+ { multiplier: 2, type: BONUS_WORD, x: 21, y: 5 },
67
+ { multiplier: 2, type: BONUS_CHARACTER, x: 25, y: 5 },
68
+
69
+ { multiplier: 2, type: BONUS_CHARACTER, x: 3, y: 6 },
70
+ { multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 6 },
71
+ { multiplier: 2, type: BONUS_CHARACTER, x: 8, y: 6 },
72
+ { multiplier: 2, type: BONUS_CHARACTER, x: 11, y: 6 },
73
+ { multiplier: 2, type: BONUS_CHARACTER, x: 15, y: 6 },
74
+ { multiplier: 2, type: BONUS_CHARACTER, x: 18, y: 6 },
75
+ { multiplier: 2, type: BONUS_CHARACTER, x: 20, y: 6 },
76
+ { multiplier: 2, type: BONUS_CHARACTER, x: 23, y: 6 },
77
+
78
+ { multiplier: 2, type: BONUS_WORD, x: 4, y: 7 },
79
+ { multiplier: 2, type: BONUS_WORD, x: 10, y: 7 },
80
+ { multiplier: 2, type: BONUS_WORD, x: 16, y: 7 },
81
+ { multiplier: 2, type: BONUS_WORD, x: 22, y: 7 },
82
+
83
+ { multiplier: 3, type: BONUS_CHARACTER, x: 0, y: 8 },
84
+ { multiplier: 3, type: BONUS_CHARACTER, x: 2, y: 8 },
85
+ { multiplier: 2, type: BONUS_CHARACTER, x: 7, y: 8 },
86
+ { multiplier: 3, type: BONUS_CHARACTER, x: 12, y: 8 },
87
+ { multiplier: 3, type: BONUS_CHARACTER, x: 14, y: 8 },
88
+ { multiplier: 2, type: BONUS_CHARACTER, x: 19, y: 8 },
89
+ { multiplier: 3, type: BONUS_CHARACTER, x: 24, y: 8 },
90
+ { multiplier: 3, type: BONUS_CHARACTER, x: 26, y: 8 },
91
+
92
+ { multiplier: 2, type: BONUS_WORD, x: 3, y: 9 },
93
+ { multiplier: 2, type: BONUS_WORD, x: 7, y: 9 },
94
+ { multiplier: 2, type: BONUS_WORD, x: 11, y: 9 },
95
+ { multiplier: 2, type: BONUS_WORD, x: 15, y: 9 },
96
+ { multiplier: 2, type: BONUS_WORD, x: 19, y: 9 },
97
+ { multiplier: 2, type: BONUS_WORD, x: 23, y: 9 },
98
+
99
+ { multiplier: 3, type: BONUS_CHARACTER, x: 0, y: 10 },
100
+ { multiplier: 3, type: BONUS_CHARACTER, x: 2, y: 10 },
101
+ { multiplier: 2, type: BONUS_CHARACTER, x: 7, y: 10 },
102
+ { multiplier: 3, type: BONUS_CHARACTER, x: 12, y: 10 },
103
+ { multiplier: 3, type: BONUS_CHARACTER, x: 14, y: 10 },
104
+ { multiplier: 2, type: BONUS_CHARACTER, x: 19, y: 10 },
105
+ { multiplier: 3, type: BONUS_CHARACTER, x: 24, y: 10 },
106
+ { multiplier: 3, type: BONUS_CHARACTER, x: 26, y: 10 },
107
+
108
+ { multiplier: 2, type: BONUS_WORD, x: 4, y: 11 },
109
+ { multiplier: 2, type: BONUS_WORD, x: 10, y: 11 },
110
+ { multiplier: 2, type: BONUS_WORD, x: 16, y: 11 },
111
+ { multiplier: 2, type: BONUS_WORD, x: 22, y: 11 },
112
+
113
+ { multiplier: 2, type: BONUS_CHARACTER, x: 3, y: 12 },
114
+ { multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 12 },
115
+ { multiplier: 2, type: BONUS_CHARACTER, x: 8, y: 12 },
116
+ { multiplier: 2, type: BONUS_CHARACTER, x: 11, y: 12 },
117
+ { multiplier: 2, type: BONUS_CHARACTER, x: 15, y: 12 },
118
+ { multiplier: 2, type: BONUS_CHARACTER, x: 18, y: 12 },
119
+ { multiplier: 2, type: BONUS_CHARACTER, x: 20, y: 12 },
120
+ { multiplier: 2, type: BONUS_CHARACTER, x: 23, y: 12 },
121
+
122
+ { multiplier: 2, type: BONUS_CHARACTER, x: 1, y: 13 },
123
+ { multiplier: 2, type: BONUS_WORD, x: 5, y: 13 },
124
+ { multiplier: 2, type: BONUS_WORD, x: 9, y: 13 },
125
+ { multiplier: 2, type: BONUS_CHARACTER, x: 13, y: 13 },
126
+ { multiplier: 2, type: BONUS_WORD, x: 17, y: 13 },
127
+ { multiplier: 2, type: BONUS_WORD, x: 21, y: 13 },
128
+ { multiplier: 2, type: BONUS_CHARACTER, x: 25, y: 13 },
129
+
130
+ { multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 14 },
131
+ { multiplier: 3, type: BONUS_CHARACTER, x: 6, y: 14 },
132
+ { multiplier: 3, type: BONUS_CHARACTER, x: 8, y: 14 },
133
+ { multiplier: 2, type: BONUS_CHARACTER, x: 10, y: 14 },
134
+ { multiplier: 2, type: BONUS_CHARACTER, x: 16, y: 14 },
135
+ { multiplier: 3, type: BONUS_CHARACTER, x: 18, y: 14 },
136
+ { multiplier: 3, type: BONUS_CHARACTER, x: 20, y: 14 },
137
+ { multiplier: 2, type: BONUS_CHARACTER, x: 22, y: 14 },
138
+
139
+ { multiplier: 2, type: BONUS_CHARACTER, x: 0, y: 15 },
140
+ { multiplier: 2, type: BONUS_WORD, x: 1, y: 15 },
141
+ { multiplier: 2, type: BONUS_CHARACTER, x: 2, y: 15 },
142
+ { multiplier: 3, type: BONUS_WORD, x: 7, y: 15 },
143
+ { multiplier: 2, type: BONUS_CHARACTER, x: 12, y: 15 },
144
+ { multiplier: 2, type: BONUS_WORD, x: 13, y: 15 },
145
+ { multiplier: 2, type: BONUS_CHARACTER, x: 14, y: 15 },
146
+ { multiplier: 3, type: BONUS_WORD, x: 19, y: 15 },
147
+ { multiplier: 2, type: BONUS_CHARACTER, x: 24, y: 15 },
148
+ { multiplier: 2, type: BONUS_WORD, x: 25, y: 15 },
149
+ { multiplier: 2, type: BONUS_CHARACTER, x: 26, y: 15 },
150
+
151
+ { multiplier: 2, type: BONUS_CHARACTER, x: 4, y: 16 },
152
+ { multiplier: 3, type: BONUS_CHARACTER, x: 6, y: 16 },
153
+ { multiplier: 3, type: BONUS_CHARACTER, x: 8, y: 16 },
154
+ { multiplier: 2, type: BONUS_CHARACTER, x: 10, y: 16 },
155
+ { multiplier: 2, type: BONUS_CHARACTER, x: 16, y: 16 },
156
+ { multiplier: 3, type: BONUS_CHARACTER, x: 18, y: 16 },
157
+ { multiplier: 3, type: BONUS_CHARACTER, x: 20, y: 16 },
158
+ { multiplier: 2, type: BONUS_CHARACTER, x: 22, y: 16 },
159
+
160
+ { multiplier: 2, type: BONUS_CHARACTER, x: 1, y: 17 },
161
+ { multiplier: 2, type: BONUS_WORD, x: 5, y: 17 },
162
+ { multiplier: 2, type: BONUS_WORD, x: 9, y: 17 },
163
+ { multiplier: 2, type: BONUS_CHARACTER, x: 13, y: 17 },
164
+ { multiplier: 2, type: BONUS_WORD, x: 17, y: 17 },
165
+ { multiplier: 2, type: BONUS_WORD, x: 21, y: 17 },
166
+ { multiplier: 2, type: BONUS_CHARACTER, x: 25, y: 17 },
167
+
168
+ { multiplier: 2, type: BONUS_CHARACTER, x: 3, y: 18 },
169
+ { multiplier: 2, type: BONUS_CHARACTER, x: 6, y: 18 },
170
+ { multiplier: 2, type: BONUS_CHARACTER, x: 8, y: 18 },
171
+ { multiplier: 2, type: BONUS_CHARACTER, x: 11, y: 18 },
172
+ { multiplier: 2, type: BONUS_CHARACTER, x: 15, y: 18 },
173
+ { multiplier: 2, type: BONUS_CHARACTER, x: 18, y: 18 },
174
+ { multiplier: 2, type: BONUS_CHARACTER, x: 20, y: 18 },
175
+ { multiplier: 2, type: BONUS_CHARACTER, x: 23, y: 18 },
176
+ ],
177
+ };
@@ -2,7 +2,7 @@ import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
2
2
  import { Game } from '@scrabble-solver/types';
3
3
 
4
4
  export const literaki = {
5
- bingoScore: 50,
5
+ bingo: { score: 50 },
6
6
  blankScore: 0,
7
7
  blanksCount: 2,
8
8
  boardHeight: 15,
@@ -2,7 +2,7 @@ import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
2
2
  import { Game } from '@scrabble-solver/types';
3
3
 
4
4
  export const scrabble = {
5
- bingoScore: 50,
5
+ bingo: { score: 50 },
6
6
  blankScore: 0,
7
7
  blanksCount: 2,
8
8
  boardHeight: 15,
@@ -2,7 +2,7 @@ import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
2
2
  import { Game } from '@scrabble-solver/types';
3
3
 
4
4
  export const scrabbleDuel = {
5
- bingoScore: 50,
5
+ bingo: { score: 50 },
6
6
  blankScore: 0,
7
7
  blanksCount: 2,
8
8
  boardHeight: 11,
@@ -2,7 +2,7 @@ import { BONUS_CHARACTER, BONUS_WORD } from '@scrabble-solver/constants';
2
2
  import { Game } from '@scrabble-solver/types';
3
3
 
4
4
  export const superScrabble = {
5
- bingoScore: 50,
5
+ bingo: { score: 50 },
6
6
  blankScore: 0,
7
7
  blanksCount: 4,
8
8
  boardHeight: 21,
package/src/getConfig.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Config, Game, Locale } from '@scrabble-solver/types';
1
+ import { type Config, type Game, type Locale } from '@scrabble-solver/types';
2
2
 
3
3
  import * as languages from './languages';
4
4
 
package/src/hasConfig.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Game, Locale } from '@scrabble-solver/types';
1
+ import { type Game, type Locale } from '@scrabble-solver/types';
2
2
 
3
3
  import * as languages from './languages';
4
4
 
@@ -2,7 +2,74 @@
2
2
 
3
3
  import { Config, Locale } from '@scrabble-solver/types';
4
4
 
5
- import { literaki, scrabble, scrabbleDuel, superScrabble } from '../games';
5
+ import { letterLeague, literaki, scrabble, scrabbleDuel, superScrabble } from '../games';
6
+
7
+ export const englishGbLetterLeague = new Config({
8
+ ...letterLeague,
9
+ locale: Locale.EN_GB,
10
+ tiles: [
11
+ { character: 'a', score: 1 },
12
+ { character: 'b', score: 3 },
13
+ { character: 'c', score: 3 },
14
+ { character: 'd', score: 2 },
15
+ { character: 'e', score: 1 },
16
+ { character: 'f', score: 4 },
17
+ { character: 'g', score: 2 },
18
+ { character: 'h', score: 4 },
19
+ { character: 'i', score: 1 },
20
+ { character: 'j', score: 8 },
21
+ { character: 'k', score: 5 },
22
+ { character: 'l', score: 2 },
23
+ { character: 'm', score: 3 },
24
+ { character: 'n', score: 1 },
25
+ { character: 'o', score: 1 },
26
+ { character: 'p', score: 3 },
27
+ { character: 'q', score: 10 },
28
+ { character: 'r', score: 1 },
29
+ { character: 's', score: 1 },
30
+ { character: 't', score: 1 },
31
+ { character: 'u', score: 1 },
32
+ { character: 'v', score: 4 },
33
+ { character: 'w', score: 4 },
34
+ { character: 'x', score: 8 },
35
+ { character: 'y', score: 4 },
36
+ { character: 'z', score: 10 },
37
+ ],
38
+ });
39
+
40
+ export const englishGbLiteraki = new Config({
41
+ ...literaki,
42
+ locale: Locale.EN_GB,
43
+ name: 'Literaxx',
44
+ tiles: [
45
+ { character: 'a', count: 9, score: 1 },
46
+ { character: 'b', count: 2, score: 3 },
47
+ { character: 'c', count: 2, score: 3 },
48
+ { character: 'd', count: 4, score: 2 },
49
+ { character: 'e', count: 12, score: 1 },
50
+ { character: 'f', count: 2, score: 4 },
51
+ { character: 'g', count: 3, score: 2 },
52
+ { character: 'h', count: 2, score: 4 },
53
+ { character: 'i', count: 9, score: 1 },
54
+ { character: 'j', count: 1, score: 8 },
55
+ { character: 'k', count: 1, score: 5 },
56
+ { character: 'l', count: 4, score: 1 },
57
+ { character: 'm', count: 2, score: 3 },
58
+ { character: 'n', count: 6, score: 1 },
59
+ { character: 'o', count: 8, score: 1 },
60
+ { character: 'p', count: 2, score: 3 },
61
+ { character: 'q', count: 1, score: 10 },
62
+ { character: 'r', count: 6, score: 1 },
63
+ { character: 's', count: 4, score: 1 },
64
+ { character: 't', count: 6, score: 1 },
65
+ { character: 'u', count: 4, score: 1 },
66
+ { character: 'v', count: 2, score: 4 },
67
+ { character: 'w', count: 2, score: 4 },
68
+ { character: 'x', count: 1, score: 8 },
69
+ { character: 'y', count: 2, score: 4 },
70
+ { character: 'z', count: 1, score: 10 },
71
+ ],
72
+ });
6
73
 
7
74
  export const englishGbScrabble = new Config({
8
75
  ...scrabble,
@@ -103,9 +170,42 @@ export const englishGbSuperScrabble = new Config({
103
170
  ],
104
171
  });
105
172
 
106
- export const englishGbLiteraki = new Config({
173
+ export const englishUsLetterLeague = new Config({
174
+ ...letterLeague,
175
+ locale: Locale.EN_US,
176
+ tiles: [
177
+ { character: 'a', score: 1 },
178
+ { character: 'b', score: 3 },
179
+ { character: 'c', score: 3 },
180
+ { character: 'd', score: 2 },
181
+ { character: 'e', score: 1 },
182
+ { character: 'f', score: 4 },
183
+ { character: 'g', score: 2 },
184
+ { character: 'h', score: 4 },
185
+ { character: 'i', score: 1 },
186
+ { character: 'j', score: 8 },
187
+ { character: 'k', score: 5 },
188
+ { character: 'l', score: 2 },
189
+ { character: 'm', score: 3 },
190
+ { character: 'n', score: 1 },
191
+ { character: 'o', score: 1 },
192
+ { character: 'p', score: 3 },
193
+ { character: 'q', score: 10 },
194
+ { character: 'r', score: 1 },
195
+ { character: 's', score: 1 },
196
+ { character: 't', score: 1 },
197
+ { character: 'u', score: 1 },
198
+ { character: 'v', score: 4 },
199
+ { character: 'w', score: 4 },
200
+ { character: 'x', score: 8 },
201
+ { character: 'y', score: 4 },
202
+ { character: 'z', score: 10 },
203
+ ],
204
+ });
205
+
206
+ export const englishUsLiteraki = new Config({
107
207
  ...literaki,
108
- locale: Locale.EN_GB,
208
+ locale: Locale.EN_US,
109
209
  name: 'Literaxx',
110
210
  tiles: [
111
211
  { character: 'a', count: 9, score: 1 },
@@ -235,37 +335,3 @@ export const englishUsSuperScrabble = new Config({
235
335
  { character: 'z', count: 2, score: 10 },
236
336
  ],
237
337
  });
238
-
239
- export const englishUsLiteraki = new Config({
240
- ...literaki,
241
- locale: Locale.EN_US,
242
- name: 'Literaxx',
243
- tiles: [
244
- { character: 'a', count: 9, score: 1 },
245
- { character: 'b', count: 2, score: 3 },
246
- { character: 'c', count: 2, score: 3 },
247
- { character: 'd', count: 4, score: 2 },
248
- { character: 'e', count: 12, score: 1 },
249
- { character: 'f', count: 2, score: 4 },
250
- { character: 'g', count: 3, score: 2 },
251
- { character: 'h', count: 2, score: 4 },
252
- { character: 'i', count: 9, score: 1 },
253
- { character: 'j', count: 1, score: 8 },
254
- { character: 'k', count: 1, score: 5 },
255
- { character: 'l', count: 4, score: 1 },
256
- { character: 'm', count: 2, score: 3 },
257
- { character: 'n', count: 6, score: 1 },
258
- { character: 'o', count: 8, score: 1 },
259
- { character: 'p', count: 2, score: 3 },
260
- { character: 'q', count: 1, score: 10 },
261
- { character: 'r', count: 6, score: 1 },
262
- { character: 's', count: 4, score: 1 },
263
- { character: 't', count: 6, score: 1 },
264
- { character: 'u', count: 4, score: 1 },
265
- { character: 'v', count: 2, score: 4 },
266
- { character: 'w', count: 2, score: 4 },
267
- { character: 'x', count: 1, score: 8 },
268
- { character: 'y', count: 2, score: 4 },
269
- { character: 'z', count: 1, score: 10 },
270
- ],
271
- });