Formulator / parse_skill.py
AngoHF's picture
5.1 commit
55f0dce
raw
history blame
249 Bytes
from utils.lua import parse
lua = """
"""
result = parse(lua)
damage_base = [row['nDamageBase'] for row in result]
print(f'"damage_base": {damage_base},')
damage_rand = [row['nDamageRand'] for row in result]
print(f'"damage_rand": {damage_rand},')