Skip to content

Instantly share code, notes, and snippets.

@m-allen-hall
m-allen-hall / classlessSCVM no GUI.py
Last active August 15, 2022 21:40
Character generator for MorkBorg characters that do not use the optional classes. Runs without a GUI.
#classlessSCVM v0.1
#classless character generator for MÖRK BORG
#classlessSCVM is an independent production by M. Allen Hall
#and is not affiliated with Ockult Örtmästare Games or Stockholm
#Kartell. It is published under the MÖRK BORG Third Party License.
#MÖRK BORG is copyright Ockult Örtmästare Games and Stockholm Kartell.
#
print('classlessSCVM v0.1')
print('classless character generator for MÖRK BORG')
print('classlessSCVM is an independent production by M. Allen Hall')
@m-allen-hall
m-allen-hall / classlessSCVM with GUI.py
Last active August 15, 2022 21:41
Character generator for MorkBorg characters that do not use the optional classes. Runs with a simple GUI.
#classlessSCVM v0.1 with GUI
#classless character generator for MÖRK BORG
#classlessSCVM is an independent production by M. Allen Hall
#and is not affiliated with Ockult Örtmästare Games or Stockholm
#Kartell. It is published under the MÖRK BORG Third Party License.
#MÖRK BORG is copyright Ockult Örtmästare Games and Stockholm Kartell.
#random tables as lists
name_list = ['Lars', 'Torleif', 'Aesir', 'Arne', 'Aric', 'Arkyn', 'Bragi', 'Espen',
'Frey', 'Frode', 'Gisli', 'Hrafen', 'Ivar', 'Njord', 'Rune', 'Sindri',
import random
from statistics import mean
from statistics import median
from statistics import mode
from statistics import stdev
import seaborn as sns
import matplotlib.pyplot as plt
# this function is not really necessary,
# but it makes the gameplay loop easier to read