Update roller.py

tab is differently spaced on github, comment alignment updated to reflect that
This commit is contained in:
Brad Stein 2018-02-15 02:31:53 -06:00 committed by GitHub
parent ed1d6a2b0a
commit a6100fd0a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,7 +182,7 @@ stat_time = time.time()
# 9) How distant sum of each character's stats can be - player balance
# 10) Upper bound for each player stat sum (inclusive bound) - standard fantasy is 15 point buy on top of 10's, so 75
# 11) Lower bound for each player stat sum (inclusive bound)
# See key above 9 10 11 1 2 1 2 1 2 1 2 3 4 5 6 7 8
# See key above 9 10 11 1 2 1 2 1 2 1 2 3 4 5 6 7 8
stats = party_roller(0, 74, 76, [["Wis", "Str"], ["Cha", "Wis"], ["Int", "Cha"], ["Cha", "Dex"]], 14, 7, 16, 2, 1, 3, c)
print("Inquisitor roll is\t" + str(stats[0]) + taber(stats, 0) + "sum: " + str(sum(s for s in stats[0])))
print("Sorcerer roll is\t" + str(stats[1]) + taber(stats, 1) + "sum: " + str(sum(s for s in stats[1])))