Spaces:
Runtime error
Runtime error
| 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},') | |