gambling-bot-shared 0.1.9 → 0.1.11
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,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.defaultCasinoSettings = exports.readableGameValueNames = void 0;
|
|
3
|
+
exports.defaultCasinoSettings = exports.readableGameNames = exports.readableGameValueNames = void 0;
|
|
4
4
|
exports.readableGameValueNames = [
|
|
5
5
|
{ name: 'Maximum Bet Amount', value: 'maxBet' },
|
|
6
6
|
{ name: 'Minimum Bet Amount', value: 'minBet' },
|
|
@@ -10,6 +10,17 @@ exports.readableGameValueNames = [
|
|
|
10
10
|
{ name: 'One-In Chance (e.g. 1 in 10,000)', value: 'oneInChance' },
|
|
11
11
|
{ name: 'Symbol Weights', value: 'symbolWeights' },
|
|
12
12
|
];
|
|
13
|
+
exports.readableGameNames = [
|
|
14
|
+
{ name: 'Dice', value: 'dice' },
|
|
15
|
+
{ name: 'Coin Flip', value: 'coinflip' },
|
|
16
|
+
{ name: 'Slots', value: 'slots' },
|
|
17
|
+
{ name: 'Lottery', value: 'lottery' },
|
|
18
|
+
{ name: 'Roulette', value: 'roulette' },
|
|
19
|
+
{ name: 'Rock Paper Scissors', value: 'rps' },
|
|
20
|
+
{ name: 'Golden Jackpot', value: 'goldenJackpot' },
|
|
21
|
+
{ name: 'Blackjack', value: 'blackjack' },
|
|
22
|
+
{ name: 'Prediction', value: 'prediction' },
|
|
23
|
+
];
|
|
13
24
|
exports.defaultCasinoSettings = {
|
|
14
25
|
dice: {
|
|
15
26
|
winMultiplier: 5,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gambling-bot-shared",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
],
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
+
"import": "./dist/index.js",
|
|
13
14
|
"require": "./dist/index.js",
|
|
14
15
|
"types": "./dist/index.d.ts"
|
|
15
16
|
}
|