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