13 lines
185 B
Python
13 lines
185 B
Python
import pandas as pd
|
|
import numpy as np
|
|
|
|
|
|
class WeaponClassAttackMatrix:
|
|
def __init__(self):
|
|
data = {}
|
|
|
|
|
|
class HitDiceAttackMatrix:
|
|
def __init__(self):
|
|
data = {}
|