Spaces:
Runtime error
Runtime error
File size: 249 Bytes
55f0dce |
1 2 3 4 5 6 7 8 9 10 |
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},')
|