11-09-2016, 05:03 PM
We have just proven that we do not deserve what we have.
Anyway.
Pool rolls. They derive from pools. Pools have 1 to 11 dice. They have all those rolls. They have a means of determining all those successes from those rolls. So let's see if I can figure out this inheritance stuff, if it's necessary.
class Pool(poolroll):
pool = []
def __init__(self, oldpool, newdie, maybe other stuff)
self.pool = oldpool.pool[:]
self.pool.append(newdie)
self.pool.sort() #largest die to the right, add pool.reverse() to put it to the left.
for
You know. Suddenly I realize just how unimportant this is right now.
Anyway.
Pool rolls. They derive from pools. Pools have 1 to 11 dice. They have all those rolls. They have a means of determining all those successes from those rolls. So let's see if I can figure out this inheritance stuff, if it's necessary.
class Pool(poolroll):
pool = []
def __init__(self, oldpool, newdie, maybe other stuff)
self.pool = oldpool.pool[:]
self.pool.append(newdie)
self.pool.sort() #largest die to the right, add pool.reverse() to put it to the left.
for
You know. Suddenly I realize just how unimportant this is right now.
Getting me free admission into gaming conventions for a decade

