From c60f939f911b046ca88ac59bec1dd7ca7d7d7b81 Mon Sep 17 00:00:00 2001 From: JianMiau Date: Fri, 12 Aug 2022 12:17:20 +0800 Subject: [PATCH] [add] Slot66 --- src/script/Common/Game/Base/Slot.ts | 4 ++++ src/script/Common/Game/Slot66.ts | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/script/Common/Game/Slot66.ts diff --git a/src/script/Common/Game/Base/Slot.ts b/src/script/Common/Game/Base/Slot.ts index 175c262..346f958 100644 --- a/src/script/Common/Game/Base/Slot.ts +++ b/src/script/Common/Game/Base/Slot.ts @@ -1,6 +1,10 @@ export * from "../Slot1"; export * from "../Slot1201"; +export * from "../Slot32"; +export * from "../Slot34"; export * from "../Slot48"; export * from "../Slot50"; export * from "../Slot62"; +export * from "../Slot64"; +export * from "../Slot66"; export * from "./SlotBase"; diff --git a/src/script/Common/Game/Slot66.ts b/src/script/Common/Game/Slot66.ts new file mode 100644 index 0000000..eecc60c --- /dev/null +++ b/src/script/Common/Game/Slot66.ts @@ -0,0 +1,13 @@ +import SlotBase from "./Base/SlotBase"; + + +export class Slot66 extends SlotBase { + //#region public + + public get ID(): number { return 66; } + public get HasRetriggerFreeSpin(): boolean { return true; } + + //#endregion +} + +export default Slot66; \ No newline at end of file