Formulator / parse_skill.py
ango
5.16 commit
1cc60af
raw
history blame contribute delete
263 Bytes
from utils.lua import parse_player
lua = """
"""
result = parse_player(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},')