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