diff --git a/src/script/Common/Game/Slot32.ts b/src/script/Common/Game/Slot32.ts new file mode 100644 index 0000000..1019f5a --- /dev/null +++ b/src/script/Common/Game/Slot32.ts @@ -0,0 +1,13 @@ +import SlotBase from "./Base/SlotBase"; + + +export class Slot32 extends SlotBase { + //#region public + + public get ID(): number { return 32; } + public get HasRetriggerFreeSpin(): boolean { return true; } + + //#endregion +} + +export default Slot32; \ No newline at end of file diff --git a/src/script/Common/Game/Slot34.ts b/src/script/Common/Game/Slot34.ts new file mode 100644 index 0000000..ba754bf --- /dev/null +++ b/src/script/Common/Game/Slot34.ts @@ -0,0 +1,13 @@ +import SlotBase from "./Base/SlotBase"; + + +export class Slot34 extends SlotBase { + //#region public + + public get ID(): number { return 34; } + public get HasRetriggerFreeSpin(): boolean { return true; } + + //#endregion +} + +export default Slot34; \ No newline at end of file