@scrabble-solver/configs 2.15.0 → 2.15.1

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,2 +1,3 @@
1
1
  import { Config } from '@scrabble-solver/types';
2
2
  export declare const romanianScrabble: Config;
3
+ export declare const romanianSuperScrabble: Config;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.romanianScrabble = void 0;
3
+ exports.romanianSuperScrabble = exports.romanianScrabble = void 0;
4
4
  const types_1 = require("@scrabble-solver/types");
5
5
  const games_1 = require("../games");
6
6
  exports.romanianScrabble = new types_1.Config({
@@ -34,3 +34,31 @@ exports.romanianScrabble = new types_1.Config({
34
34
  { character: 'z', count: 1, score: 10 },
35
35
  ],
36
36
  });
37
+ exports.romanianSuperScrabble = new types_1.Config({
38
+ ...games_1.superScrabble,
39
+ locale: types_1.Locale.RO_RO,
40
+ tiles: [
41
+ { character: 'a', count: 22, score: 1 },
42
+ { character: 'b', count: 4, score: 9 },
43
+ { character: 'c', count: 10, score: 1 },
44
+ { character: 'd', count: 8, score: 2 },
45
+ { character: 'e', count: 18, score: 1 },
46
+ { character: 'f', count: 4, score: 8 },
47
+ { character: 'g', count: 4, score: 9 },
48
+ { character: 'h', count: 2, score: 10 },
49
+ { character: 'i', count: 20, score: 1 },
50
+ { character: 'j', count: 2, score: 10 },
51
+ { character: 'l', count: 8, score: 1 },
52
+ { character: 'm', count: 6, score: 4 },
53
+ { character: 'n', count: 12, score: 1 },
54
+ { character: 'o', count: 10, score: 1 },
55
+ { character: 'p', count: 8, score: 2 },
56
+ { character: 'r', count: 14, score: 1 },
57
+ { character: 's', count: 10, score: 1 },
58
+ { character: 't', count: 14, score: 1 },
59
+ { character: 'u', count: 12, score: 1 },
60
+ { character: 'v', count: 4, score: 8 },
61
+ { character: 'x', count: 2, score: 10 },
62
+ { character: 'z', count: 2, score: 10 },
63
+ ],
64
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/configs",
3
- "version": "2.15.0",
3
+ "version": "2.15.1",
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.0",
27
- "@scrabble-solver/types": "^2.15.0"
26
+ "@scrabble-solver/constants": "^2.15.1",
27
+ "@scrabble-solver/types": "^2.15.1"
28
28
  },
29
- "gitHead": "4c23b3525f7cb2b1fae4ec0d9271cffab810f7d3"
29
+ "gitHead": "87368a417385a1757e05d1a165bf0e644d94f425"
30
30
  }
@@ -1,6 +1,6 @@
1
1
  import { Config, Locale } from '@scrabble-solver/types';
2
2
 
3
- import { scrabble } from '../games';
3
+ import { scrabble, superScrabble } from '../games';
4
4
 
5
5
  export const romanianScrabble = new Config({
6
6
  ...scrabble,
@@ -33,3 +33,32 @@ export const romanianScrabble = new Config({
33
33
  { character: 'z', count: 1, score: 10 },
34
34
  ],
35
35
  });
36
+
37
+ export const romanianSuperScrabble = new Config({
38
+ ...superScrabble,
39
+ locale: Locale.RO_RO,
40
+ tiles: [
41
+ { character: 'a', count: 22, score: 1 },
42
+ { character: 'b', count: 4, score: 9 },
43
+ { character: 'c', count: 10, score: 1 },
44
+ { character: 'd', count: 8, score: 2 },
45
+ { character: 'e', count: 18, score: 1 },
46
+ { character: 'f', count: 4, score: 8 },
47
+ { character: 'g', count: 4, score: 9 },
48
+ { character: 'h', count: 2, score: 10 },
49
+ { character: 'i', count: 20, score: 1 },
50
+ { character: 'j', count: 2, score: 10 },
51
+ { character: 'l', count: 8, score: 1 },
52
+ { character: 'm', count: 6, score: 4 },
53
+ { character: 'n', count: 12, score: 1 },
54
+ { character: 'o', count: 10, score: 1 },
55
+ { character: 'p', count: 8, score: 2 },
56
+ { character: 'r', count: 14, score: 1 },
57
+ { character: 's', count: 10, score: 1 },
58
+ { character: 't', count: 14, score: 1 },
59
+ { character: 'u', count: 12, score: 1 },
60
+ { character: 'v', count: 4, score: 8 },
61
+ { character: 'x', count: 2, score: 10 },
62
+ { character: 'z', count: 2, score: 10 },
63
+ ],
64
+ });