pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
29 lines • 861 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinesDefinitionsFor5x4 = void 0;
class LinesDefinitionsFor5x4 {
constructor() {
this.definitions = {
0: [0, 0, 0, 0, 0],
1: [1, 1, 1, 1, 1],
2: [2, 2, 2, 2, 2],
3: [3, 3, 3, 3, 3],
4: [0, 1, 2, 1, 0],
5: [1, 2, 3, 2, 1],
6: [3, 2, 1, 2, 3],
7: [2, 1, 0, 1, 2],
8: [0, 0, 1, 2, 2],
9: [1, 1, 2, 3, 3],
10: [3, 3, 2, 1, 1],
11: [2, 2, 1, 0, 0],
};
}
getLineDefinition(lineId) {
return this.definitions[lineId];
}
getLinesIds() {
return Object.keys(this.definitions);
}
}
exports.LinesDefinitionsFor5x4 = LinesDefinitionsFor5x4;
//# sourceMappingURL=LinesDefinitionsFor5x4.js.map