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 ''
예제 #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
예제 #4
0
파일: xvm.py 프로젝트: chipsi007/modxvm
def total_hp_getMainGun(a, b, dmg_total):
    return a if total_hp.mainGun(dmg_total) is not None else b
예제 #5
0
파일: xvm.py 프로젝트: chipsi007/modxvm
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
예제 #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 ''