@scrabble-solver/configs 2.5.0 → 2.7.0

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.
@@ -2,8 +2,10 @@ import { Config, Locale } from '@scrabble-solver/types';
2
2
  declare const literaki: {
3
3
  id: string;
4
4
  name: string;
5
+ "de-DE": Config;
5
6
  "en-GB": Config;
6
7
  "en-US": Config;
8
+ "es-ES": Config;
7
9
  "fr-FR": Config;
8
10
  "pl-PL": Config;
9
11
  };
@@ -33,8 +33,10 @@ var literaki = (_a = {
33
33
  id: base.id,
34
34
  name: base.name
35
35
  },
36
+ _a[types_1.Locale.DE_DE] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesDe })),
36
37
  _a[types_1.Locale.EN_GB] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesEn })),
37
38
  _a[types_1.Locale.EN_US] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesEn })),
39
+ _a[types_1.Locale.ES_ES] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesEs })),
38
40
  _a[types_1.Locale.FR_FR] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesFr })),
39
41
  _a[types_1.Locale.PL_PL] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesPl })),
40
42
  _a);
@@ -1,3 +1,5 @@
1
1
  export { default as tilesEn } from './tilesEn';
2
+ export { default as tilesEs } from './tilesEs';
2
3
  export { default as tilesFr } from './tilesFr';
3
4
  export { default as tilesPl } from './tilesPl';
5
+ export { default as tilesDe } from './tilesDe';
@@ -3,10 +3,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.tilesPl = exports.tilesFr = exports.tilesEn = void 0;
6
+ exports.tilesDe = exports.tilesPl = exports.tilesFr = exports.tilesEs = exports.tilesEn = void 0;
7
7
  var tilesEn_1 = require("./tilesEn");
8
8
  Object.defineProperty(exports, "tilesEn", { enumerable: true, get: function () { return __importDefault(tilesEn_1).default; } });
9
+ var tilesEs_1 = require("./tilesEs");
10
+ Object.defineProperty(exports, "tilesEs", { enumerable: true, get: function () { return __importDefault(tilesEs_1).default; } });
9
11
  var tilesFr_1 = require("./tilesFr");
10
12
  Object.defineProperty(exports, "tilesFr", { enumerable: true, get: function () { return __importDefault(tilesFr_1).default; } });
11
13
  var tilesPl_1 = require("./tilesPl");
12
14
  Object.defineProperty(exports, "tilesPl", { enumerable: true, get: function () { return __importDefault(tilesPl_1).default; } });
15
+ var tilesDe_1 = require("./tilesDe");
16
+ Object.defineProperty(exports, "tilesDe", { enumerable: true, get: function () { return __importDefault(tilesDe_1).default; } });
@@ -0,0 +1,6 @@
1
+ declare const tilesDe: {
2
+ character: string;
3
+ count: number;
4
+ score: number;
5
+ }[];
6
+ export default tilesDe;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tilesDe = [
4
+ { character: 'a', count: 5, score: 1 },
5
+ { character: 'ä', count: 1, score: 6 },
6
+ { character: 'b', count: 2, score: 3 },
7
+ { character: 'c', count: 2, score: 4 },
8
+ { character: 'd', count: 4, score: 1 },
9
+ { character: 'e', count: 15, score: 1 },
10
+ { character: 'f', count: 2, score: 4 },
11
+ { character: 'g', count: 3, score: 2 },
12
+ { character: 'h', count: 4, score: 2 },
13
+ { character: 'i', count: 6, score: 1 },
14
+ { character: 'j', count: 1, score: 6 },
15
+ { character: 'k', count: 2, score: 4 },
16
+ { character: 'l', count: 3, score: 2 },
17
+ { character: 'm', count: 4, score: 3 },
18
+ { character: 'n', count: 9, score: 1 },
19
+ { character: 'o', count: 3, score: 2 },
20
+ { character: 'ö', count: 1, score: 8 },
21
+ { character: 'p', count: 1, score: 4 },
22
+ { character: 'q', count: 1, score: 10 },
23
+ { character: 'r', count: 6, score: 1 },
24
+ { character: 's', count: 7, score: 1 },
25
+ { character: 't', count: 6, score: 1 },
26
+ { character: 'u', count: 6, score: 1 },
27
+ { character: 'ü', count: 1, score: 6 },
28
+ { character: 'v', count: 1, score: 6 },
29
+ { character: 'w', count: 1, score: 3 },
30
+ { character: 'x', count: 1, score: 8 },
31
+ { character: 'y', count: 1, score: 10 },
32
+ { character: 'z', count: 1, score: 3 },
33
+ ];
34
+ exports.default = tilesDe;
@@ -0,0 +1,6 @@
1
+ declare const tilesEs: {
2
+ character: string;
3
+ count: number;
4
+ score: number;
5
+ }[];
6
+ export default tilesEs;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tilesEs = [
4
+ { character: 'a', count: 12, score: 1 },
5
+ { character: 'b', count: 2, score: 3 },
6
+ { character: 'c', count: 4, score: 3 },
7
+ { character: 'ch', count: 1, score: 5 },
8
+ { character: 'd', count: 5, score: 2 },
9
+ { character: 'e', count: 12, score: 1 },
10
+ { character: 'f', count: 1, score: 4 },
11
+ { character: 'g', count: 2, score: 2 },
12
+ { character: 'h', count: 2, score: 4 },
13
+ { character: 'i', count: 6, score: 1 },
14
+ { character: 'j', count: 1, score: 8 },
15
+ { character: 'll', count: 1, score: 8 },
16
+ { character: 'l', count: 4, score: 1 },
17
+ { character: 'm', count: 2, score: 3 },
18
+ { character: 'n', count: 5, score: 1 },
19
+ { character: 'ñ', count: 1, score: 8 },
20
+ { character: 'o', count: 9, score: 1 },
21
+ { character: 'p', count: 2, score: 3 },
22
+ { character: 'q', count: 1, score: 5 },
23
+ { character: 'r', count: 5, score: 1 },
24
+ { character: 'rr', count: 1, score: 8 },
25
+ { character: 's', count: 6, score: 1 },
26
+ { character: 't', count: 4, score: 1 },
27
+ { character: 'u', count: 5, score: 1 },
28
+ { character: 'v', count: 1, score: 4 },
29
+ { character: 'x', count: 1, score: 8 },
30
+ { character: 'y', count: 1, score: 4 },
31
+ { character: 'z', count: 1, score: 10 },
32
+ ];
33
+ exports.default = tilesEs;
@@ -3,7 +3,9 @@ declare const scrabble: {
3
3
  id: string;
4
4
  name: string;
5
5
  "en-GB": Config;
6
+ "de-DE": Config;
6
7
  "en-US": Config;
8
+ "es-ES": Config;
7
9
  "fr-FR": Config;
8
10
  "pl-PL": Config;
9
11
  };
@@ -34,7 +34,9 @@ var scrabble = (_a = {
34
34
  name: base.name
35
35
  },
36
36
  _a[types_1.Locale.EN_GB] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesEn })),
37
+ _a[types_1.Locale.DE_DE] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesDe })),
37
38
  _a[types_1.Locale.EN_US] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesEn })),
39
+ _a[types_1.Locale.ES_ES] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesEs })),
38
40
  _a[types_1.Locale.FR_FR] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesFr })),
39
41
  _a[types_1.Locale.PL_PL] = types_1.Config.fromJson(__assign(__assign({}, base), { tiles: tiles_1.tilesPl })),
40
42
  _a);
@@ -1,3 +1,5 @@
1
1
  export { default as tilesEn } from './tilesEn';
2
+ export { default as tilesEs } from './tilesEs';
2
3
  export { default as tilesFr } from './tilesFr';
3
4
  export { default as tilesPl } from './tilesPl';
5
+ export { default as tilesDe } from './tilesDe';
@@ -3,10 +3,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.tilesPl = exports.tilesFr = exports.tilesEn = void 0;
6
+ exports.tilesDe = exports.tilesPl = exports.tilesFr = exports.tilesEs = exports.tilesEn = void 0;
7
7
  var tilesEn_1 = require("./tilesEn");
8
8
  Object.defineProperty(exports, "tilesEn", { enumerable: true, get: function () { return __importDefault(tilesEn_1).default; } });
9
+ var tilesEs_1 = require("./tilesEs");
10
+ Object.defineProperty(exports, "tilesEs", { enumerable: true, get: function () { return __importDefault(tilesEs_1).default; } });
9
11
  var tilesFr_1 = require("./tilesFr");
10
12
  Object.defineProperty(exports, "tilesFr", { enumerable: true, get: function () { return __importDefault(tilesFr_1).default; } });
11
13
  var tilesPl_1 = require("./tilesPl");
12
14
  Object.defineProperty(exports, "tilesPl", { enumerable: true, get: function () { return __importDefault(tilesPl_1).default; } });
15
+ var tilesDe_1 = require("./tilesDe");
16
+ Object.defineProperty(exports, "tilesDe", { enumerable: true, get: function () { return __importDefault(tilesDe_1).default; } });
@@ -0,0 +1,6 @@
1
+ declare const tilesDe: {
2
+ character: string;
3
+ count: number;
4
+ score: number;
5
+ }[];
6
+ export default tilesDe;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tilesDe = [
4
+ { character: 'a', count: 5, score: 1 },
5
+ { character: 'ä', count: 1, score: 6 },
6
+ { character: 'b', count: 2, score: 3 },
7
+ { character: 'c', count: 2, score: 4 },
8
+ { character: 'd', count: 4, score: 1 },
9
+ { character: 'e', count: 15, score: 1 },
10
+ { character: 'f', count: 2, score: 4 },
11
+ { character: 'g', count: 3, score: 2 },
12
+ { character: 'h', count: 4, score: 2 },
13
+ { character: 'i', count: 6, score: 1 },
14
+ { character: 'j', count: 1, score: 6 },
15
+ { character: 'k', count: 2, score: 4 },
16
+ { character: 'l', count: 3, score: 2 },
17
+ { character: 'm', count: 4, score: 3 },
18
+ { character: 'n', count: 9, score: 1 },
19
+ { character: 'o', count: 3, score: 2 },
20
+ { character: 'ö', count: 1, score: 8 },
21
+ { character: 'p', count: 1, score: 4 },
22
+ { character: 'q', count: 1, score: 10 },
23
+ { character: 'r', count: 6, score: 1 },
24
+ { character: 's', count: 7, score: 1 },
25
+ { character: 't', count: 6, score: 1 },
26
+ { character: 'u', count: 6, score: 1 },
27
+ { character: 'ü', count: 1, score: 6 },
28
+ { character: 'v', count: 1, score: 6 },
29
+ { character: 'w', count: 1, score: 3 },
30
+ { character: 'x', count: 1, score: 8 },
31
+ { character: 'y', count: 1, score: 10 },
32
+ { character: 'z', count: 1, score: 3 },
33
+ ];
34
+ exports.default = tilesDe;
@@ -0,0 +1,6 @@
1
+ declare const tilesEs: {
2
+ character: string;
3
+ count: number;
4
+ score: number;
5
+ }[];
6
+ export default tilesEs;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var tilesEs = [
4
+ { character: 'a', count: 12, score: 1 },
5
+ { character: 'b', count: 2, score: 3 },
6
+ { character: 'c', count: 4, score: 3 },
7
+ { character: 'ch', count: 1, score: 5 },
8
+ { character: 'd', count: 5, score: 2 },
9
+ { character: 'e', count: 12, score: 1 },
10
+ { character: 'f', count: 1, score: 4 },
11
+ { character: 'g', count: 2, score: 2 },
12
+ { character: 'h', count: 2, score: 4 },
13
+ { character: 'i', count: 6, score: 1 },
14
+ { character: 'j', count: 1, score: 8 },
15
+ { character: 'll', count: 1, score: 8 },
16
+ { character: 'l', count: 4, score: 1 },
17
+ { character: 'm', count: 2, score: 3 },
18
+ { character: 'n', count: 5, score: 1 },
19
+ { character: 'ñ', count: 1, score: 8 },
20
+ { character: 'o', count: 9, score: 1 },
21
+ { character: 'p', count: 2, score: 3 },
22
+ { character: 'q', count: 1, score: 5 },
23
+ { character: 'r', count: 5, score: 1 },
24
+ { character: 'rr', count: 1, score: 8 },
25
+ { character: 's', count: 6, score: 1 },
26
+ { character: 't', count: 4, score: 1 },
27
+ { character: 'u', count: 5, score: 1 },
28
+ { character: 'v', count: 1, score: 4 },
29
+ { character: 'x', count: 1, score: 8 },
30
+ { character: 'y', count: 1, score: 4 },
31
+ { character: 'z', count: 1, score: 10 },
32
+ ];
33
+ exports.default = tilesEs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/configs",
3
- "version": "2.5.0",
3
+ "version": "2.7.0",
4
4
  "description": "Scrabble Solver 2 - Configs",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "author": {
12
12
  "name": "Kamil Mielnik",
13
13
  "email": "kamil.adam.mielnik@gmail.com",
14
- "url": "http://kamilmielnik.com/"
14
+ "url": "https://kamilmielnik.com/"
15
15
  },
16
16
  "license": "CC-BY-NC-ND-4.0",
17
17
  "bugs": {
@@ -24,8 +24,8 @@
24
24
  "clean:force": "npm run clean && rimraf package-lock.json"
25
25
  },
26
26
  "dependencies": {
27
- "@scrabble-solver/constants": "^2.5.0",
28
- "@scrabble-solver/types": "^2.5.0"
27
+ "@scrabble-solver/constants": "^2.7.0",
28
+ "@scrabble-solver/types": "^2.7.0"
29
29
  },
30
- "gitHead": "e698e6466c1872c2c325cfce1585f3e22892e633"
30
+ "gitHead": "db0e2eab74ee597f70df456444312241f2646f9e"
31
31
  }
@@ -1,7 +1,7 @@
1
1
  import { Config, Locale } from '@scrabble-solver/types';
2
2
 
3
3
  import bonuses from './bonuses';
4
- import { tilesEn, tilesFr, tilesPl } from './tiles';
4
+ import { tilesDe, tilesEn, tilesEs, tilesFr, tilesPl } from './tiles';
5
5
 
6
6
  const base = {
7
7
  allTilesBonusScore: 50,
@@ -18,8 +18,10 @@ const base = {
18
18
  const literaki = {
19
19
  id: base.id,
20
20
  name: base.name,
21
+ [Locale.DE_DE]: Config.fromJson({ ...base, tiles: tilesDe }),
21
22
  [Locale.EN_GB]: Config.fromJson({ ...base, tiles: tilesEn }),
22
23
  [Locale.EN_US]: Config.fromJson({ ...base, tiles: tilesEn }),
24
+ [Locale.ES_ES]: Config.fromJson({ ...base, tiles: tilesEs }),
23
25
  [Locale.FR_FR]: Config.fromJson({ ...base, tiles: tilesFr }),
24
26
  [Locale.PL_PL]: Config.fromJson({ ...base, tiles: tilesPl }),
25
27
  };
@@ -1,3 +1,5 @@
1
1
  export { default as tilesEn } from './tilesEn';
2
+ export { default as tilesEs } from './tilesEs';
2
3
  export { default as tilesFr } from './tilesFr';
3
4
  export { default as tilesPl } from './tilesPl';
5
+ export { default as tilesDe } from './tilesDe';
@@ -0,0 +1,33 @@
1
+ const tilesDe = [
2
+ { character: 'a', count: 5, score: 1 },
3
+ { character: 'ä', count: 1, score: 6 },
4
+ { character: 'b', count: 2, score: 3 },
5
+ { character: 'c', count: 2, score: 4 },
6
+ { character: 'd', count: 4, score: 1 },
7
+ { character: 'e', count: 15, score: 1 },
8
+ { character: 'f', count: 2, score: 4 },
9
+ { character: 'g', count: 3, score: 2 },
10
+ { character: 'h', count: 4, score: 2 },
11
+ { character: 'i', count: 6, score: 1 },
12
+ { character: 'j', count: 1, score: 6 },
13
+ { character: 'k', count: 2, score: 4 },
14
+ { character: 'l', count: 3, score: 2 },
15
+ { character: 'm', count: 4, score: 3 },
16
+ { character: 'n', count: 9, score: 1 },
17
+ { character: 'o', count: 3, score: 2 },
18
+ { character: 'ö', count: 1, score: 8 },
19
+ { character: 'p', count: 1, score: 4 },
20
+ { character: 'q', count: 1, score: 10 },
21
+ { character: 'r', count: 6, score: 1 },
22
+ { character: 's', count: 7, score: 1 },
23
+ { character: 't', count: 6, score: 1 },
24
+ { character: 'u', count: 6, score: 1 },
25
+ { character: 'ü', count: 1, score: 6 },
26
+ { character: 'v', count: 1, score: 6 },
27
+ { character: 'w', count: 1, score: 3 },
28
+ { character: 'x', count: 1, score: 8 },
29
+ { character: 'y', count: 1, score: 10 },
30
+ { character: 'z', count: 1, score: 3 },
31
+ ];
32
+
33
+ export default tilesDe;
@@ -0,0 +1,32 @@
1
+ const tilesEs = [
2
+ { character: 'a', count: 12, score: 1 },
3
+ { character: 'b', count: 2, score: 3 },
4
+ { character: 'c', count: 4, score: 3 },
5
+ { character: 'ch', count: 1, score: 5 },
6
+ { character: 'd', count: 5, score: 2 },
7
+ { character: 'e', count: 12, score: 1 },
8
+ { character: 'f', count: 1, score: 4 },
9
+ { character: 'g', count: 2, score: 2 },
10
+ { character: 'h', count: 2, score: 4 },
11
+ { character: 'i', count: 6, score: 1 },
12
+ { character: 'j', count: 1, score: 8 },
13
+ { character: 'll', count: 1, score: 8 },
14
+ { character: 'l', count: 4, score: 1 },
15
+ { character: 'm', count: 2, score: 3 },
16
+ { character: 'n', count: 5, score: 1 },
17
+ { character: 'ñ', count: 1, score: 8 },
18
+ { character: 'o', count: 9, score: 1 },
19
+ { character: 'p', count: 2, score: 3 },
20
+ { character: 'q', count: 1, score: 5 },
21
+ { character: 'r', count: 5, score: 1 },
22
+ { character: 'rr', count: 1, score: 8 },
23
+ { character: 's', count: 6, score: 1 },
24
+ { character: 't', count: 4, score: 1 },
25
+ { character: 'u', count: 5, score: 1 },
26
+ { character: 'v', count: 1, score: 4 },
27
+ { character: 'x', count: 1, score: 8 },
28
+ { character: 'y', count: 1, score: 4 },
29
+ { character: 'z', count: 1, score: 10 },
30
+ ];
31
+
32
+ export default tilesEs;
@@ -1,7 +1,7 @@
1
1
  import { Config, Locale } from '@scrabble-solver/types';
2
2
 
3
3
  import bonuses from './bonuses';
4
- import { tilesEn, tilesFr, tilesPl } from './tiles';
4
+ import { tilesEn, tilesEs, tilesFr, tilesPl, tilesDe } from './tiles';
5
5
 
6
6
  const base = {
7
7
  allTilesBonusScore: 50,
@@ -19,7 +19,9 @@ const scrabble = {
19
19
  id: base.id,
20
20
  name: base.name,
21
21
  [Locale.EN_GB]: Config.fromJson({ ...base, tiles: tilesEn }),
22
+ [Locale.DE_DE]: Config.fromJson({ ...base, tiles: tilesDe }),
22
23
  [Locale.EN_US]: Config.fromJson({ ...base, tiles: tilesEn }),
24
+ [Locale.ES_ES]: Config.fromJson({ ...base, tiles: tilesEs }),
23
25
  [Locale.FR_FR]: Config.fromJson({ ...base, tiles: tilesFr }),
24
26
  [Locale.PL_PL]: Config.fromJson({ ...base, tiles: tilesPl }),
25
27
  };
@@ -1,3 +1,5 @@
1
1
  export { default as tilesEn } from './tilesEn';
2
+ export { default as tilesEs } from './tilesEs';
2
3
  export { default as tilesFr } from './tilesFr';
3
4
  export { default as tilesPl } from './tilesPl';
5
+ export { default as tilesDe } from './tilesDe';
@@ -0,0 +1,33 @@
1
+ const tilesDe = [
2
+ { character: 'a', count: 5, score: 1 },
3
+ { character: 'ä', count: 1, score: 6 },
4
+ { character: 'b', count: 2, score: 3 },
5
+ { character: 'c', count: 2, score: 4 },
6
+ { character: 'd', count: 4, score: 1 },
7
+ { character: 'e', count: 15, score: 1 },
8
+ { character: 'f', count: 2, score: 4 },
9
+ { character: 'g', count: 3, score: 2 },
10
+ { character: 'h', count: 4, score: 2 },
11
+ { character: 'i', count: 6, score: 1 },
12
+ { character: 'j', count: 1, score: 6 },
13
+ { character: 'k', count: 2, score: 4 },
14
+ { character: 'l', count: 3, score: 2 },
15
+ { character: 'm', count: 4, score: 3 },
16
+ { character: 'n', count: 9, score: 1 },
17
+ { character: 'o', count: 3, score: 2 },
18
+ { character: 'ö', count: 1, score: 8 },
19
+ { character: 'p', count: 1, score: 4 },
20
+ { character: 'q', count: 1, score: 10 },
21
+ { character: 'r', count: 6, score: 1 },
22
+ { character: 's', count: 7, score: 1 },
23
+ { character: 't', count: 6, score: 1 },
24
+ { character: 'u', count: 6, score: 1 },
25
+ { character: 'ü', count: 1, score: 6 },
26
+ { character: 'v', count: 1, score: 6 },
27
+ { character: 'w', count: 1, score: 3 },
28
+ { character: 'x', count: 1, score: 8 },
29
+ { character: 'y', count: 1, score: 10 },
30
+ { character: 'z', count: 1, score: 3 },
31
+ ];
32
+
33
+ export default tilesDe;
@@ -0,0 +1,32 @@
1
+ const tilesEs = [
2
+ { character: 'a', count: 12, score: 1 },
3
+ { character: 'b', count: 2, score: 3 },
4
+ { character: 'c', count: 4, score: 3 },
5
+ { character: 'ch', count: 1, score: 5 },
6
+ { character: 'd', count: 5, score: 2 },
7
+ { character: 'e', count: 12, score: 1 },
8
+ { character: 'f', count: 1, score: 4 },
9
+ { character: 'g', count: 2, score: 2 },
10
+ { character: 'h', count: 2, score: 4 },
11
+ { character: 'i', count: 6, score: 1 },
12
+ { character: 'j', count: 1, score: 8 },
13
+ { character: 'll', count: 1, score: 8 },
14
+ { character: 'l', count: 4, score: 1 },
15
+ { character: 'm', count: 2, score: 3 },
16
+ { character: 'n', count: 5, score: 1 },
17
+ { character: 'ñ', count: 1, score: 8 },
18
+ { character: 'o', count: 9, score: 1 },
19
+ { character: 'p', count: 2, score: 3 },
20
+ { character: 'q', count: 1, score: 5 },
21
+ { character: 'r', count: 5, score: 1 },
22
+ { character: 'rr', count: 1, score: 8 },
23
+ { character: 's', count: 6, score: 1 },
24
+ { character: 't', count: 4, score: 1 },
25
+ { character: 'u', count: 5, score: 1 },
26
+ { character: 'v', count: 1, score: 4 },
27
+ { character: 'x', count: 1, score: 8 },
28
+ { character: 'y', count: 1, score: 4 },
29
+ { character: 'z', count: 1, score: 10 },
30
+ ];
31
+
32
+ export default tilesEs;