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 ''