From aafd91facd7de0951e85bbc09e05f36f118e3080 Mon Sep 17 00:00:00 2001 From: JianMiau Date: Tue, 9 Aug 2022 14:14:27 +0800 Subject: [PATCH] [mod] --- src/script/Common/Game/Slot32.ts | 13 +++++++++++++ src/script/Common/Game/Slot34.ts | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/script/Common/Game/Slot32.ts create mode 100644 src/script/Common/Game/Slot34.ts 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