something I coded up quickly to start an exploration of odds.
requires python, termcolor and colorama (available via easy_install or pip)
just uncomment or comment the runes you want to use, and change the DESTINY as needed.
Code:
import random
# thought i might use this, but didn't
#import itertools
from termcolor import colored
from colorama import init
# number of runes you draw
DESTINY = 5
# you can comment out the runes you don't have
# in essence using the # (hash)
RUNES = [ ('tiwaz','red')
,('berkano','red')
# ,('ehwo','red')
# ,('mann','red')
# ,('claguz','red')
# ,('ing','red')
# ,('dagaz','red')
# ,('othala','red')
,('hagalaz','blue')
,('naudhneed','blue')
# ,('isaice','blue')
# ,('jethe','blue')
# ,('eihwas','blue')
# ,('pertho','blue')
# ,('elhaz','blue')
# ,('sowsun','blue')
,('fehu','green')
,('uruz','green')
# ,('thurisaz','green')
# ,('ansuz','green')
# ,('raidho','green')
# ,('kenaz','green')
# ,('gebo','green')
# ,('wunjo','green')
]
if len(RUNES) < DESTINY:
DESTINY = len(RUNES)
hand = random.sample(RUNES, DESTINY)
for x in hand:
print(colored(x[0],x[1]))