[add] 1302

This commit is contained in:
建喵 2024-03-05 10:29:46 +08:00
parent 34d283d6a9
commit 4ff7c72c78
2 changed files with 14 additions and 1 deletions

View File

@ -101,7 +101,7 @@ export class SlotBase {
OnClickStop(); OnClickStop();
} }
if (ratio > 100) { 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}`); this.addLog(`Slot${this.ID} Spin Bet: ${GameManager.SlotData.NowBet}, Money: ${money}${winMoneyLog}${freeLog}`);
if (ratio > 0) { if (ratio > 0) {

View File

@ -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;