From a6100fd0a2b40b05e6ca5f61a3a962cc4db71d2a Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Thu, 15 Feb 2018 02:31:53 -0600 Subject: [PATCH] Update roller.py tab is differently spaced on github, comment alignment updated to reflect that --- roller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roller.py b/roller.py index 6566f31..0b574cd 100644 --- a/roller.py +++ b/roller.py @@ -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])))