diff options
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2,6 +2,8 @@ import math from sys import base_exec_prefix from distribution import Distribution +import pb2e + def d(edge_count): res = Distribution() @@ -185,6 +187,11 @@ def test3(): show_stat("attack", attack) show_stat("falcata", falcata.strike(bonus, dmg_bonus, ac, 0)) +def main4(): + # char = pb2e.download_character(pfb_id=160180) + char = pb2e.open_character("quizrel2") + print(char) + if __name__ == '__main__': - test3() + main4() |
