From 4ff7c72c781185dc1dbcad24caaca345ef680ffc Mon Sep 17 00:00:00 2001 From: JianMiau Date: Tue, 5 Mar 2024 10:29:46 +0800 Subject: [PATCH] [add] 1302 --- src/define/Game/Base/SlotBase.ts | 2 +- src/define/Game/Slot1302.ts | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/define/Game/Slot1302.ts diff --git a/src/define/Game/Base/SlotBase.ts b/src/define/Game/Base/SlotBase.ts index 79f3080..51caea5 100644 --- a/src/define/Game/Base/SlotBase.ts +++ b/src/define/Game/Base/SlotBase.ts @@ -101,7 +101,7 @@ export class SlotBase { OnClickStop(); } if (ratio > 100) { - this.addLog(`Slot${this.ID} Spin Bet: ${GameManager.SlotData.NowBet}, Ratio: ${ratio}, Money: ${money}${winMoneyLog}${freeLog}`); + this.addLog(`Slot${this.ID} Spin Bet: ${GameManager.SlotData.NowBet}, Money: ${money}${winMoneyLog}${freeLog}, Ratio: ${ratio}`); } this.addLog(`Slot${this.ID} Spin Bet: ${GameManager.SlotData.NowBet}, Money: ${money}${winMoneyLog}${freeLog}`); if (ratio > 0) { diff --git a/src/define/Game/Slot1302.ts b/src/define/Game/Slot1302.ts new file mode 100644 index 0000000..9927b40 --- /dev/null +++ b/src/define/Game/Slot1302.ts @@ -0,0 +1,13 @@ +import SlotBase from "./Base/SlotBase"; + + +export class Slot1302 extends SlotBase { + //#region public + + public get ID(): number { return 1302; } + public get HasRetriggerFreeSpin(): boolean { return true; } + + //#endregion +} + +export default Slot1302; \ No newline at end of file