def total_hp_getMainGun(a, b, dmg_total):
    return a if total_hp.mainGun(dmg_total) is not None else b
def total_hp_mainGun(header, dmg_total):
    return "%s%s" % (header, total_hp.mainGun(dmg_total)) if total_hp.mainGun(dmg_total) is not None else ''
Esempio n. 3
0
def total_hp_mainGun(header, dmg_total):
    _mainGun = total_hp.mainGun(dmg_total)
    return "%s%s" % (header, _mainGun) if _mainGun is not None else None
Esempio n. 4
0
def total_hp_getMainGun(a, b, dmg_total):
    return a if total_hp.mainGun(dmg_total) is not None else b
Esempio n. 5
0
def total_hp_mainGun(header, dmg_total):
    _mainGun = total_hp.mainGun(dmg_total)
    return "%s%s" % (header, _mainGun) if _mainGun is not None else None
Esempio n. 6
0
def total_hp_mainGun(header, dmg_total):
    return "%s%s" % (header, total_hp.mainGun(dmg_total)) if total_hp.mainGun(
        dmg_total) is not None else ''