mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-25 15:14:18 +00:00
Aumentata la probabilità di terrorista nel preset Classico
This commit is contained in:
parent
d390ae98ad
commit
323842ded8
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -329,7 +329,7 @@ class Game:
|
|||
"Investigatore": math.floor(len(self.players) / 12) + 1, # 1 Detective ogni 12 giocatori
|
||||
"Corrotto": 0,
|
||||
"Angelo": math.floor(len(self.players) / 10) + 1, # 1 Angelo ogni 10 giocatori
|
||||
"Terrorista": 1 if random.randrange(0, 100) > 70 else 0, # 30% di avere un terrorista
|
||||
"Terrorista": 1 if random.randrange(0, 100) >= 50 else 0, # 50% di avere un terrorista
|
||||
"Derek": 0,
|
||||
"Disastro": 0,
|
||||
"Mamma": 0,
|
||||
|
|
Loading…
Reference in a new issue