import random
def gates_of_olympus_spin(force_500x=False):
# Olası çarpanlar listesi (örnek)
multipliers = [2, 3, 5, 10, 15, 25, 50, 100, 250, 500]
if force_500x:
# Her zaman 500x döndür
chosen_multiplier = 500
else:
# Rastgele çarpan döndür
chosen_multiplier = random.choice(multipliers)
return chosen_multiplier
# Kullanim:
# Her zaman 500x gelmesi için force_500x=True yapın
print("Gelen Çarpan:", gates_of_olympus_spin(force_500x=True))
# Rastgele çarpan gelmesi için (500x de gelebilir)
print("Gelen Çarpan:", gates_of_olympus_spin())