コード例 #1
0
def total_hp_getMainGun(a, b, dmg_total):
    return a if total_hp.mainGun(dmg_total) is not None else b
コード例 #2
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 ''
コード例 #3
0
ファイル: xvm.py プロジェクト: peterbartha/ImmunoMod
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
ファイル: xvm.py プロジェクト: KOlap5/OSW_Essentials
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 ''