🎰 ギリ勝てそうスロット 🎰
let coins = 200;
let spinCount = 0;
let bet = 10;
const reward = { three: 50, two: 5, none: 0 };
const rateThree = 0.03, rateTwo = 0.15;
const safeSpins = 3;
function randomSymbol() { const symbols = ['🍒','🍋','🍇','⭐','💎','🍀']; return symbols[Math.floor(Math.random()*symbols.length)]; }
function getThreeDifferentSymbols() { const symbols = ['🍒','🍋','🍇','⭐','💎','🍀']; return symbols.sort(()=>Math.random()-0.5).slice(0,3); }
function shuffle(arr){ for(let i=arr.length-1;i