【打者成績の入力】
打率:
出塁率:
OPS:
【試合数の設定】
しばらくお待ちください・・・ {{ totalInfo.gameCount + (gameStatus.gameNow ? 1 : 0) }}試合目
{{ header }}
{{ score }} {{ gameStatus.score }}
{{ gameStatus.hitCount + gameStatus.twoBaseCount + gameStatus.threeBaseCount + gameStatus.homerunCount }}安打 {{ gameStatus.fourballCount }}四球
単打: {{ gameStatus.hitCount }}本 3塁打: {{ gameStatus.threeBaseCount }}本
2塁打: {{ gameStatus.twoBaseCount }}本 本塁打: {{ gameStatus.homerunCount }}本
ゲームセット {{ gameStatus.inning }}回
アウト
打席結果
{{ getNowResultText() }}
試合の進行速度
{{ idx + 1 }}回の攻撃
{{ getResultText(result.result) }} {{ (result.addScore > 0) ? ' +' + result.addScore + '点' : '' }} {{ getOutRunnerText(result) === 'チェンジ' && ((idx) + 1 === 9) ? 'ゲームセット' : getOutRunnerText(result) }}
{{ totalInfo.gameCount }}試合分のチーム成績
一試合平均
得点 {{ round(totalInfo.averageScore, 3) }}点
安打数 {{ round((totalInfo.hitCount + totalInfo.twoBaseCount + totalInfo.threeBaseCount + totalInfo.homerunCount ) / (totalInfo.gameCount || 1), 3) }}安打
単打 {{ round(totalInfo.hitCount / (totalInfo.gameCount || 1), 3) }}本
2塁打 {{ round(totalInfo.twoBaseCount / (totalInfo.gameCount || 1), 3) }}本
3塁打 {{ round(totalInfo.threeBaseCount / (totalInfo.gameCount || 1), 3) }}本
本塁打 {{ round(totalInfo.homerunCount / (totalInfo.gameCount || 1), 3) }}本
四球数 {{ round(totalInfo.fourballCount / (totalInfo.gameCount || 1), 3) }}個
累計成績
得点 {{ totalInfo.score }}点
安打数 {{ totalInfo.hitCount + totalInfo.twoBaseCount + totalInfo.threeBaseCount + totalInfo.homerunCount }}安打
単打 {{ totalInfo.hitCount }}本
2塁打 {{ totalInfo.twoBaseCount }}本
3塁打 {{ totalInfo.threeBaseCount }}本
本塁打 {{ totalInfo.homerunCount }}本
四球数 {{ totalInfo.fourballCount }}個
シーズン成績
1シーズン 試合
得点 {{ round(totalInfo.score * (gameCountPerSeason / (totalInfo.gameCount || 1)), 3) }}点
安打数 {{ round((totalInfo.hitCount + totalInfo.twoBaseCount + totalInfo.threeBaseCount + totalInfo.homerunCount) * (gameCountPerSeason / (totalInfo.gameCount || 1)), 3) }}安打
単打 {{ round(totalInfo.hitCount * (gameCountPerSeason / (totalInfo.gameCount || 1)), 3) }}本
2塁打 {{ round(totalInfo.twoBaseCount * (gameCountPerSeason / (totalInfo.gameCount || 1)), 3) }}本
3塁打 {{ round(totalInfo.threeBaseCount * (gameCountPerSeason / (totalInfo.gameCount || 1)), 3) }}本
本塁打 {{ round(totalInfo.homerunCount * (gameCountPerSeason / (totalInfo.gameCount || 1)), 3) }}本
四球数 {{ round((totalInfo.fourballCount * (gameCountPerSeason / (totalInfo.gameCount || 1))), 3) }}個