adjusted the mulligan curve
This commit is contained in:
parent
ccd7702db8
commit
55f589dde1
4
games.py
4
games.py
|
@ -501,8 +501,8 @@ class game(object):
|
||||||
defense_team = self.teams["away"]
|
defense_team = self.teams["away"]
|
||||||
|
|
||||||
if self.weather.name == "Slight Tailwind" and "mulligan" not in self.last_update[0].keys() and not result["ishit"] and result["text"] != appearance_outcomes.walk:
|
if self.weather.name == "Slight Tailwind" and "mulligan" not in self.last_update[0].keys() and not result["ishit"] and result["text"] != appearance_outcomes.walk:
|
||||||
mulligan_roll_target = -((((self.get_batter().stlats["batting_stars"])-7)/7)**2)+1
|
mulligan_roll_target = -((((self.get_batter().stlats["batting_stars"])-5)/6)**2)+1
|
||||||
if random.random() > mulligan_roll_target:
|
if random.random() > mulligan_roll_target and self.get_batter().stlats["batting_stars"] >= 5:
|
||||||
result["mulligan"] = True
|
result["mulligan"] = True
|
||||||
return (result, 0)
|
return (result, 0)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user