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